--- authres-0.3.orig/debian/changelog +++ authres-0.3/debian/changelog @@ -0,0 +1,44 @@ +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.3.orig/debian/python3-authres.docs +++ authres-0.3/debian/python3-authres.docs @@ -0,0 +1 @@ +README --- authres-0.3.orig/debian/rules +++ authres-0.3/debian/rules @@ -0,0 +1,25 @@ +#!/usr/bin/make -f +# -*- makefile -*- + +%: + dh $@ --with python2,python3 + +override_dh_auto_install: + 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 + dh_install + +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 + dh_clean --- authres-0.3.orig/debian/watch +++ authres-0.3/debian/watch @@ -0,0 +1,5 @@ +version=3 +http://launchpad.net/authentication-results-python/+download \ +http://launchpad.net/authentication-results-python/.*/.*/authres-(.*)\.tar\.gz \ +debian uupdate + --- authres-0.3.orig/debian/copyright +++ authres-0.3/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.3.orig/debian/python-authres.docs +++ authres-0.3/debian/python-authres.docs @@ -0,0 +1 @@ +README --- authres-0.3.orig/debian/README.source +++ authres-0.3/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.3.orig/debian/control +++ authres-0.3/debian/control @@ -0,0 +1,33 @@ +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.2 +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. + . + 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. + . + http://tools.ietf.org/rfc/rfc5451.txt --- authres-0.3.orig/debian/compat +++ authres-0.3/debian/compat @@ -0,0 +1 @@ +7