[Python-modules-commits] r29481 - in packages/authres/trunk/debian (changelog control rules)
kitterman at users.alioth.debian.org
kitterman at users.alioth.debian.org
Wed Jun 25 10:50:21 UTC 2014
Date: Wednesday, June 25, 2014 @ 10:50:20
Author: kitterman
Revision: 29481
* New upstream release
* Update package descriptions to refer to RFC 7001 instead of RFC 5451
* Bump standards version to 3.9.5 without further change
Modified:
packages/authres/trunk/debian/changelog
packages/authres/trunk/debian/control
packages/authres/trunk/debian/rules
Modified: packages/authres/trunk/debian/changelog
===================================================================
--- packages/authres/trunk/debian/changelog 2014-06-25 09:50:28 UTC (rev 29480)
+++ packages/authres/trunk/debian/changelog 2014-06-25 10:50:20 UTC (rev 29481)
@@ -1,3 +1,11 @@
+authres (0.701-1) unstable; urgency=medium
+
+ * New upstream release
+ * Update package descriptions to refer to RFC 7001 instead of RFC 5451
+ * Bump standards version to 3.9.5 without further change
+
+ -- Scott Kitterman <scott at kitterman.com> Wed, 25 Jun 2014 06:37:40 -0400
+
authres (0.602-1) unstable; urgency=low
[ Jakub Wilk ]
Modified: packages/authres/trunk/debian/control
===================================================================
--- packages/authres/trunk/debian/control 2014-06-25 09:50:28 UTC (rev 29480)
+++ packages/authres/trunk/debian/control 2014-06-25 10:50:20 UTC (rev 29481)
@@ -4,7 +4,7 @@
Maintainer: Scott Kitterman <scott at kitterman.com>
Uploaders: Debian Python Modules Team <python-modules-team at lists.alioth.debian.org>
Build-Depends: debhelper (>= 7.3.16), python-all (>= 2.6.5-2~), python3-all (>= 3.1.2-10~)
-Standards-Version: 3.9.4
+Standards-Version: 3.9.5
Homepage: https://launchpad.net/authentication-results-python
X-Python-Version: >= 2.6
Vcs-Svn: svn://anonscm.debian.org/python-modules/packages/authres/trunk/
@@ -13,23 +13,23 @@
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.
+Description: RFC 7001 Authentication Results Header manipulation for Python
+ Python module to create and parse RFC 7001 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.
+ extensions in addition to the core RFC 7001 types.
.
- http://tools.ietf.org/rfc/rfc5451.txt
+ http://tools.ietf.org/rfc/rfc7001.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.
+Description: RFC 7001 Authentication Results Header manipulation for Python3
+ Python3 module to create and parse RFC 7001 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.
+ extensions in addition to the core RFC 7001 types.
.
- http://tools.ietf.org/rfc/rfc5451.txt
+ http://tools.ietf.org/rfc/rfc7001.txt
Modified: packages/authres/trunk/debian/rules
===================================================================
--- packages/authres/trunk/debian/rules 2014-06-25 09:50:28 UTC (rev 29480)
+++ packages/authres/trunk/debian/rules 2014-06-25 10:50:20 UTC (rev 29481)
@@ -11,13 +11,13 @@
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); \
+ python$$pyvers -m authres; 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); \
+ python$$pyvers -m authres; cd $(CURDIR); \
done
else
set -e && for pyvers in $(shell pyversions -vr); do \
More information about the Python-modules-commits
mailing list