--- authres-0.402.orig/debian/changelog +++ authres-0.402/debian/changelog @@ -0,0 +1,80 @@ +authres (0.402-1) unstable; urgency=low + + * New upstream release + - Drop installation of authres/tests with debian/rules since setup.py is + fixed to do it now + * Explicitly run tests at build time (is used to be implicitly via byte + compilation) and support nocheck option + * Completely remove build directory in clean + + -- Scott Kitterman Sat, 23 Jun 2012 01:22:43 -0400 + +authres (0.401-2) unstable; urgency=low + + * Install authres/tests so doctests work with installed pacakges + + -- Scott Kitterman Sun, 13 May 2012 14:10:46 -0400 + +authres (0.401-1) unstable; urgency=low + + * New upstream release + * Fix debian watch to work with Launchpad again + * Bump standards version to 3.9.3 without further change + + -- Scott Kitterman Fri, 13 Apr 2012 15:17:30 -0400 + +authres (0.399-1) unstable; urgency=low + + * New upstream release + - Now supports all registered Authentication Results extensions: + RFC 5617 DKIM/ADSP + RFC 6008 DKIM signature identification (header.b) + RFC 6212 Vouch By Reference (VBR) + - Update package descriptions to include the changed functionality + + -- Scott Kitterman Thu, 09 Feb 2012 01:20:55 -0500 + +authres (0.3-1) unstable; urgency=low + + * New upstream release + - Slightly adjusted function input order + - Now supports generation of comments + - Generates and parses (less comment parsing) all RFC 5451 examples + + -- Scott Kitterman Mon, 09 Jan 2012 08:54:49 -0500 + +authres (0.2-2) unstable; urgency=low + + * No change rebuild for switch to python2.7 as default + + -- Scott Kitterman Tue, 27 Sep 2011 17:23:07 -0400 + +authres (0.2-1) unstable; urgency=low + + * New upstream release + - Completely reworked API + - Update debian/copyright + - Supports python3 + * Simplify clean rule + * Add python3-authres package + - Add to debian/control + - Add python3-all-dev to build-depends + - Adjust debian/rules + - Add debian/python3-authres.docs + + -- Scott Kitterman Thu, 11 Aug 2011 11:04:00 -0400 + +authres (0.1-2) unstable; urgency=low + + * Protect for loops in debian/rules with set -e + * Drop ${python:Breaks}, no longer used by dh_python2 + * Bump standards version to 3.9.2 without further change + * Rebuild for Python transition + + -- Scott Kitterman Fri, 15 Apr 2011 19:32:34 -0400 + +authres (0.1-1) unstable; urgency=low + + * Initial release (Closes: #618302) + + -- Scott Kitterman Mon, 14 Mar 2011 12:19:42 -0400 --- authres-0.402.orig/debian/python3-authres.docs +++ authres-0.402/debian/python3-authres.docs @@ -0,0 +1 @@ +README --- authres-0.402.orig/debian/rules +++ authres-0.402/debian/rules @@ -0,0 +1,41 @@ +#!/usr/bin/make -f +# -*- makefile -*- + +%: + dh $@ --with python2,python3 + +override_dh_auto_install: + dh_install +ifeq (,$(findstring nocheck,$(DEB_BUILD_OPTIONS))) + set -e && for pyvers in $(shell pyversions -vr); do \ + python$$pyvers setup.py install --install-layout=deb \ + --root $(CURDIR)/debian/python-authres; \ + cd $(CURDIR)/debian/python-authres/usr/lib/python$$pyvers/dist-packages; \ + python$$pyvers -m authres.__main__; cd $(CURDIR); \ + done + set -e && for pyvers in $(shell py3versions -vr); do \ + python$$pyvers setup.py install --install-layout=deb \ + --root $(CURDIR)/debian/python3-authres; \ + cd $(CURDIR)/debian/python3-authres/usr/lib/python3/dist-packages; \ + python$$pyvers -m authres.__main__; cd $(CURDIR); \ + done +else + set -e && for pyvers in $(shell pyversions -vr); do \ + python$$pyvers setup.py install --install-layout=deb \ + --root $(CURDIR)/debian/python-authres; \ + done + set -e && for pyvers in $(shell py3versions -vr); do \ + python$$pyvers setup.py install --install-layout=deb \ + --root $(CURDIR)/debian/python3-authres; \ + done +endif + +override_dh_auto_clean: + set -e && for pyvers in $(shell pyversions -vr); do \ + python$$pyvers setup.py clean -a; \ + done + set -e && for pyvers in $(shell py3versions -vr); do \ + python$$pyvers setup.py clean -a; \ + done + rm -rf build + dh_clean --- authres-0.402.orig/debian/watch +++ authres-0.402/debian/watch @@ -0,0 +1,5 @@ +version=3 +http://launchpad.net/authentication-results-python/+download \ +https://launchpad.net/authentication-results-python/.*/.*/authres-(.*)\.tar\.gz \ +debian uupdate + --- authres-0.402.orig/debian/copyright +++ authres-0.402/debian/copyright @@ -0,0 +1,34 @@ +This package was debianized by Scott Kitterman on +Mon, 14 Mar 2011 12:19:42 -0400. + +It was downloaded from + +Upstream Authors: + + Julian Mehnle + Scott Kitterman + +Copyright: + + Copyright © 2011 Julian Mehnle + Copyright © 2011 Scott Kitterman and +is licensed under the same terms as the upstream package, see above. + --- authres-0.402.orig/debian/python-authres.docs +++ authres-0.402/debian/python-authres.docs @@ -0,0 +1 @@ +README --- authres-0.402.orig/debian/README.source +++ authres-0.402/debian/README.source @@ -0,0 +1,5 @@ +This package will use quilt for patches if needed. dpkg-source -x does +produce source ready for building with dpkg-buildpackage. It does not produce +source ready for editing. See /usr/share/doc/quilt/README.source for +information on using quilt. + --- authres-0.402.orig/debian/control +++ authres-0.402/debian/control @@ -0,0 +1,35 @@ +Source: authres +Section: python +Priority: optional +Maintainer: Scott Kitterman +Uploaders: Debian Python Modules Team +Build-Depends: debhelper (>= 7.3.16), python-all (>= 2.6.5-2~), python3-all (>= 3.1.2-10~) +Standards-Version: 3.9.3 +Homepage: https://launchpad.net/authentication-results-python +X-Python-Version: >= 2.6 +Vcs-Svn: svn://svn.debian.org/python-modules/packages/authres/trunk/ +Vcs-Browser: http://svn.debian.org/viewsvn/python-modules/packages/authres/trunk/ + +Package: python-authres +Architecture: all +Depends: ${python:Depends}, ${misc:Depends} +Description: RFC 5451 Authentication Results Header manipulation for Python + Python module to create and parse RFC 5451 Authentication Results headers. + . + The module provides a class for creating and parsing RFC compliant headers + for use in Python applications. It supports all currently registered + extensions in addition to the core RFC 5451 types. + . + http://tools.ietf.org/rfc/rfc5451.txt + +Package: python3-authres +Architecture: all +Depends: ${python3:Depends}, ${misc:Depends} +Description: RFC 5451 Authentication Results Header manipulation for Python3 + Python3 module to create and parse RFC 5451 Authentication Results headers. + . + The module provides a class for creating and parsing RFC compliant headers + for use in Python3 applications. It supports all currently registered + extensions in addition to the core RFC 5451 types. + . + http://tools.ietf.org/rfc/rfc5451.txt --- authres-0.402.orig/debian/compat +++ authres-0.402/debian/compat @@ -0,0 +1 @@ +7