[Python-modules-commits] [python-twilio] 02/02: Initial release (Closes: #880184)

Sophie Brun sbrun-guest at moszumanska.debian.org
Mon Oct 30 13:50:31 UTC 2017


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

sbrun-guest pushed a commit to branch debian/master
in repository python-twilio.

commit bd7cdc7d73b0606558f5450c07ae2b24719c779d
Author: Sophie Brun <sophie at freexian.com>
Date:   Mon Oct 30 14:27:01 2017 +0100

    Initial release (Closes: #880184)
---
 debian/changelog                       |  5 +++++
 debian/compat                          |  1 +
 debian/control                         | 31 +++++++++++++++++++++++++++++++
 debian/copyright                       | 31 +++++++++++++++++++++++++++++++
 debian/python-twilio.lintian-overrides |  3 +++
 debian/python3-twilio.examples         |  1 +
 debian/rules                           |  7 +++++++
 debian/source/format                   |  1 +
 debian/source/options                  |  1 +
 debian/watch                           |  4 ++++
 10 files changed, 85 insertions(+)

diff --git a/debian/changelog b/debian/changelog
new file mode 100644
index 0000000..70d16ab
--- /dev/null
+++ b/debian/changelog
@@ -0,0 +1,5 @@
+python-twilio (6.8.2-1) UNRELEASED; urgency=medium
+
+  * Initial release (Closes: #880184)
+
+ -- Sophie Brun <sophie at freexian.com>  Mon, 30 Oct 2017 14:20:51 +0100
diff --git a/debian/compat b/debian/compat
new file mode 100644
index 0000000..f599e28
--- /dev/null
+++ b/debian/compat
@@ -0,0 +1 @@
+10
diff --git a/debian/control b/debian/control
new file mode 100644
index 0000000..28ad062
--- /dev/null
+++ b/debian/control
@@ -0,0 +1,31 @@
+Source: python-twilio
+Section: python
+Priority: optional
+Maintainer: Debian Python Modules Team <python-modules-team at lists.alioth.debian.org> 
+Uploaders: Sophie Brun <sophie at freexian.com>
+Build-Depends: debhelper (>= 10), dh-python, python-all, python-setuptools, python3-all, python3-setuptools, python-cryptography, python-jwt, python-mock, python-nose, python-requests, python-six, python-tz, python3-cryptography, python3-jwt, python3-mock, python3-nose, python-pytest, python3-requests, python3-six, python3-tz, python3-pytest
+Standards-Version: 4.1.1
+Homepage: https://github.com/twilio/twilio-python
+Vcs-Git: https://anonscm.debian.org/git/python-modules/packages/python-twilio.git
+Vcs-Browser: https://anonscm.debian.org/cgit/python-modules/packages/python-twilio.git/
+Testsuite: autopkgtest-pkg-python
+
+Package: python-twilio
+Architecture: all
+Depends: ${python:Depends}, ${misc:Depends}
+Description: Twilio API client and TwiML generator (Python 2)
+ This package contains a Twilio helper library. The Twilio REST SDK simplifies
+ the process of making calls using the Twilio REST API.  The Twilio REST API
+ lets to you initiate outgoing calls, list previous calls, and much more.
+ .
+ This package installs the library for Python 2.
+
+Package: python3-twilio
+Architecture: all
+Depends: ${python3:Depends}, ${misc:Depends}
+Description: Twilio API client and TwiML generator (Python 3)
+ This package contains a Twilio helper library. The Twilio REST SDK simplifies
+ the process of making calls using the Twilio REST API.  The Twilio REST API
+ lets to you initiate outgoing calls, list previous calls, and much more.
+ .
+ This package installs the library for Python 3.
diff --git a/debian/copyright b/debian/copyright
new file mode 100644
index 0000000..3b1068f
--- /dev/null
+++ b/debian/copyright
@@ -0,0 +1,31 @@
+Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/
+Upstream-Name: twilio-python
+Source: https://github.com/twilio/twilio-python
+
+Files: *
+Copyright: 2017, Twilio, Inc. <help at twilio.com>
+License: MIT
+
+Files: debian/*
+Copyright: 2017 Sophie Brun <sophie at freexian.com>
+License: MIT
+
+License: MIT
+ 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/python-twilio.lintian-overrides b/debian/python-twilio.lintian-overrides
new file mode 100644
index 0000000..c632927
--- /dev/null
+++ b/debian/python-twilio.lintian-overrides
@@ -0,0 +1,3 @@
+# we package python2 module as it's for elastalert using
+# Python 2.7 only
+python-twilio: new-package-should-not-package-python2-module
diff --git a/debian/python3-twilio.examples b/debian/python3-twilio.examples
new file mode 100644
index 0000000..e39721e
--- /dev/null
+++ b/debian/python3-twilio.examples
@@ -0,0 +1 @@
+examples/*
diff --git a/debian/rules b/debian/rules
new file mode 100755
index 0000000..68b6436
--- /dev/null
+++ b/debian/rules
@@ -0,0 +1,7 @@
+#!/usr/bin/make -f
+#export DH_VERBOSE = 1
+
+export PYBUILD_NAME=twilio
+
+%:
+	dh $@ --with python2,python3 --buildsystem=pybuild
diff --git a/debian/source/format b/debian/source/format
new file mode 100644
index 0000000..163aaf8
--- /dev/null
+++ b/debian/source/format
@@ -0,0 +1 @@
+3.0 (quilt)
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..15343f7
--- /dev/null
+++ b/debian/watch
@@ -0,0 +1,4 @@
+version=4
+opts="filenamemangle=s%(?:.*?)?v?(\d[\d.]*)\.tar\.gz%python-twilio-$1.tar.gz%" \
+   https://github.com/twilio/twilio-python/tags \
+   (?:.*?/)?v?(\d[\d.]*)\.tar\.gz debian uupdate

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



More information about the Python-modules-commits mailing list