[Python-modules-commits] [adapt-parser] 03/04: Initial Debian release (closes: #869100)

Ethan Ward ethanward-guest at moszumanska.debian.org
Mon Jul 24 19:35:23 UTC 2017


This is an automated email from the git hooks/post-receive script.

ethanward-guest pushed a commit to branch master
in repository adapt-parser.

commit 061c0980015a9ce063d469997c76c741653d7537
Author: Ethan Ward <ethan.ward at mycroft.ai>
Date:   Mon Jul 24 14:32:50 2017 -0500

    Initial Debian release (closes: #869100)
---
 debian/changelog                                   |  5 ++++
 debian/compat                                      |  1 +
 debian/control                                     | 33 ++++++++++++++++++++++
 debian/copyright                                   | 31 ++++++++++++++++++++
 debian/docs                                        |  0
 .../patches/0001-Loosen-restriction-on-six.patch   | 20 +++++++++++++
 debian/patches/series                              |  1 +
 debian/rules                                       |  8 ++++++
 debian/source/options                              |  1 +
 debian/watch                                       |  2 ++
 10 files changed, 102 insertions(+)

diff --git a/debian/changelog b/debian/changelog
new file mode 100644
index 0000000..71b41e8
--- /dev/null
+++ b/debian/changelog
@@ -0,0 +1,5 @@
+adapt-parser (0.3.0-1) UNRELEASED; urgency=medium
+
+  * Initial Debian release (closes: #869100)
+
+ -- Mycroft Devs <devops at mycroft.ai>  Fri, 14 Jul 2017 09:53:40 -0500
diff --git a/debian/compat b/debian/compat
new file mode 100644
index 0000000..ec63514
--- /dev/null
+++ b/debian/compat
@@ -0,0 +1 @@
+9
diff --git a/debian/control b/debian/control
new file mode 100644
index 0000000..698d048
--- /dev/null
+++ b/debian/control
@@ -0,0 +1,33 @@
+Source: adapt-parser
+Section: python
+Priority: optional
+Maintainer: Debian Python Modules Team <python-modules-team at lists.alioth.debian.org>
+Uploaders: Mycroft Devs <devops at mycroft.ai>
+Build-Depends: debhelper (>= 9),
+               dh-python,
+               python-all,
+               python-setuptools,
+               python-pyee,
+               python3-pyee,
+               python3-all,
+               python3-setuptools
+Standards-Version: 4.0.0
+
+Package: python-adapt-parser
+Architecture: all
+Depends: ${misc:Depends}, ${python:Depends}, ${shlibs:Depends}
+XB-Python-Version: ${python:Versions}
+Description: Text-to-intent parsing framework
+ This package contains the adapt module for Python 2. 
+ The Adapt Intent Parser is a flexible and extensible intent definition and
+ determination framework. It is intended to parse natural language text into
+ a structured intent that can then be invoked programmatically.
+
+Package: python3-adapt-parser
+Architecture: all
+Depends: ${misc:Depends}, ${python3:Depends}, ${shlibs:Depends}
+Description: Text-to-intent parsing framework
+ This package contains the adapt module for Python 3. 
+ The Adapt Intent Parser is a flexible and extensible intent definition and
+ determination framework. It is intended to parse natural language text into
+ a structured intent that can then be invoked programmatically.
diff --git a/debian/copyright b/debian/copyright
new file mode 100644
index 0000000..2f1e398
--- /dev/null
+++ b/debian/copyright
@@ -0,0 +1,31 @@
+Format: http://www.debian.org/doc/packaging-manuals/copyright-format/1.0/
+Upstream-Name: adapt-parser
+Source: https://pypi.python.org/pypi/adapt-parser
+
+Files: *
+Copyright: (c) 2017 Sean Fitzgerald
+License: MIT-style
+
+Files: debian/*
+Copyright: (c) 2017 Ethan Ward <ethan.ward at mycroft.ai>
+License: MIT-style
+
+
+License: MIT-style
+ Permission is hereby granted, free of charge, to any person obtaining a copy
+ of this software and associated documentation files (the "Software"), to deal
+ in the Software without restriction, including without limitation the rights
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
+ copies of the Software, and to permit persons to whom the Software is
+ furnished to do so, subject to the following conditions:
+ .
+ The above copyright notice and this permission notice shall be included in all
+ copies or substantial portions of the Software.
+ .
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
+ SOFTWARE.
diff --git a/debian/docs b/debian/docs
new file mode 100644
index 0000000..e69de29
diff --git a/debian/patches/0001-Loosen-restriction-on-six.patch b/debian/patches/0001-Loosen-restriction-on-six.patch
new file mode 100644
index 0000000..81c52c6
--- /dev/null
+++ b/debian/patches/0001-Loosen-restriction-on-six.patch
@@ -0,0 +1,20 @@
+From: Ethan Ward <ethan.ward at mycroft.ai>
+Date: Fri, 21 Jul 2017 17:52:15 -0500
+Subject: Loosen restriction on six
+
+---
+ setup.py | 2 +-
+ 1 file changed, 1 insertion(+), 1 deletion(-)
+
+diff --git a/setup.py b/setup.py
+index 3826629..a54764c 100644
+--- a/setup.py
++++ b/setup.py
+@@ -15,6 +15,6 @@ setup(
+ 
+     install_requires = [
+         "pyee==1.0.1",
+-        "six==1.10.0"
++        "six>=1.10.0"
+     ]
+ )
diff --git a/debian/patches/series b/debian/patches/series
new file mode 100644
index 0000000..61105ef
--- /dev/null
+++ b/debian/patches/series
@@ -0,0 +1 @@
+0001-Loosen-restriction-on-six.patch
diff --git a/debian/rules b/debian/rules
new file mode 100755
index 0000000..17b7f68
--- /dev/null
+++ b/debian/rules
@@ -0,0 +1,8 @@
+#!/usr/bin/make -f
+
+#export DH_VERBOSE=1
+export PYBUILD_NAME=adapt-parser
+
+
+%:
+	dh $@ --with python2,python3 --buildsystem=pybuild
diff --git a/debian/source/options b/debian/source/options
new file mode 100644
index 0000000..cb61fa5
--- /dev/null
+++ b/debian/source/options
@@ -0,0 +1 @@
+extend-diff-ignore = "^[^/]*[.]egg-info/"
diff --git a/debian/watch b/debian/watch
new file mode 100644
index 0000000..d7447ca
--- /dev/null
+++ b/debian/watch
@@ -0,0 +1,2 @@
+version=3
+https://pypi.python.org/packages/source/a/adapt-parser/adapt-parser-(.*).tar.gz

-- 
Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/python-modules/packages/adapt-parser.git



More information about the Python-modules-commits mailing list