From 3e34ad82c385f2ee77f9c3478532bdf7100f529a Mon Sep 17 00:00:00 2001 From: Tristan Seligmann Date: Sun, 21 Feb 2016 22:45:12 +0200 Subject: Import python-service-identity_16.0.0-1.dsc --- debian/changelog | 31 ++++++++++++++++++++++++++++ debian/compat | 1 + debian/control | 36 +++++++++++++++++++++++++++++++++ debian/copyright | 27 +++++++++++++++++++++++++ debian/python-service-identity.install | 1 + debian/python3-service-identity.install | 1 + debian/rules | 11 ++++++++++ debian/source/format | 1 + debian/watch | 3 +++ 9 files changed, 112 insertions(+) create mode 100644 debian/changelog create mode 100644 debian/compat create mode 100644 debian/control create mode 100644 debian/copyright create mode 100644 debian/python-service-identity.install create mode 100644 debian/python3-service-identity.install create mode 100755 debian/rules create mode 100644 debian/source/format create mode 100644 debian/watch (limited to 'debian') diff --git a/debian/changelog b/debian/changelog new file mode 100644 index 0000000..1be52f0 --- /dev/null +++ b/debian/changelog @@ -0,0 +1,31 @@ +python-service-identity (16.0.0-1) unstable; urgency=medium + + * New upstream release. + * Relax build dependencies. Closes: #799687. + + -- Matthias Klose Sat, 20 Feb 2016 22:23:25 +0100 + +python-service-identity (14.0.0-1) unstable; urgency=medium + + * New upstream release. + * Build-depend on python3-idna, python-idna. + + -- Matthias Klose Wed, 02 Sep 2015 21:17:52 +0200 + +python-service-identity (1.0.0-3) unstable; urgency=medium + + * Drop build dependency on python{,3}-idna (needs some more packaging work). + + -- Matthias Klose Sat, 09 Aug 2014 21:02:48 +0200 + +python-service-identity (1.0.0-2) unstable; urgency=medium + + * Enable running the testsuite during the build. + + -- Matthias Klose Sun, 03 Aug 2014 19:44:42 +0200 + +python-service-identity (1.0.0-1) unstable; urgency=low + + * Initial release (Closes: #754866). + + -- Matthias Klose Tue, 15 Jul 2014 09:35:43 +0000 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..f47c296 --- /dev/null +++ b/debian/control @@ -0,0 +1,36 @@ +Source: python-service-identity +Priority: optional +Maintainer: Matthias Klose +Uploaders: Free Ekanayaka +Build-Depends: debhelper (>= 9), dh-python, + python-all, python-setuptools, python-openssl, python-pyasn1-modules, python-characteristic, python-pytest, + python3-all, python3-setuptools, python3-openssl, python3-pyasn1-modules, python3-characteristic, python3-pytest, + python3-idna, python-idna +Build-Depends-Indep: python3-sphinx +Standards-Version: 3.9.7 +Section: python +Homepage: https://pypi.python.org/pypi/service_identity + +Package: python-service-identity +Architecture: all +Depends: ${python:Depends}, ${misc:Depends} +Recommends: python-idna +Description: Service identity verification for pyOpenSSL (Python 2 module) + Service_identity aspires to give you all the tools you need for verifying + whether a certificate is valid for the intended purposes. + . + In the simplest case, this means host name verification. However, + service_identity implements RFC 6125 fully and plans to add other + relevant RFCs too. + +Package: python3-service-identity +Architecture: all +Depends: ${python3:Depends}, ${misc:Depends} +Recommends: python3-idna +Description: Service identity verification for pyOpenSSL (Python 3 module) + Service_identity aspires to give you all the tools you need for verifying + whether a certificate is valid for the intended purposes. + . + In the simplest case, this means host name verification. However, + service_identity implements RFC 6125 fully and plans to add other + relevant RFCs too. diff --git a/debian/copyright b/debian/copyright new file mode 100644 index 0000000..4093a24 --- /dev/null +++ b/debian/copyright @@ -0,0 +1,27 @@ +Format: http://www.debian.org/doc/packaging-manuals/copyright-format/1.0/ +Upstream-Name: service_identity +Source: https://pypi.python.org/pypi/service_identity/ + +Files: * +Copyright: Copyright (c) 2014 Hynek Schlawack +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. + +Files: debian/* +Copyright: 2014 Matthias Klose diff --git a/debian/python-service-identity.install b/debian/python-service-identity.install new file mode 100644 index 0000000..b2cc136 --- /dev/null +++ b/debian/python-service-identity.install @@ -0,0 +1 @@ +usr/lib/python2* diff --git a/debian/python3-service-identity.install b/debian/python3-service-identity.install new file mode 100644 index 0000000..4606faa --- /dev/null +++ b/debian/python3-service-identity.install @@ -0,0 +1 @@ +usr/lib/python3* diff --git a/debian/rules b/debian/rules new file mode 100755 index 0000000..0073265 --- /dev/null +++ b/debian/rules @@ -0,0 +1,11 @@ +#!/usr/bin/make -f +# See debhelper(7) (uncomment to enable) +# output every command that modifies files on the build system. +#DH_VERBOSE = 1 + +%: + dh $@ --with python2,python3 --buildsystem=pybuild + +override_dh_auto_test: + : # ignore test results, idna test fail + -dh_auto_test -- --test-pytest --test-args='{dir}/tests' 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/watch b/debian/watch new file mode 100644 index 0000000..2ccab6c --- /dev/null +++ b/debian/watch @@ -0,0 +1,3 @@ +version=3 +opts=uversionmangle=s/(\d)[_\.\-\+]?((RC|rc|pre|dev|beta|alpha|b|a)[\-\.]?\d*)$/$1~$2/ \ +http://pypi.debian.net/service_identity/service_identity-(.*).tar.gz -- cgit v1.2.3