[Python-modules-commits] r16126 - in packages/authres/tags (10 files)

kitterman at users.alioth.debian.org kitterman at users.alioth.debian.org
Mon Mar 14 17:05:53 UTC 2011


    Date: Monday, March 14, 2011 @ 17:05:17
  Author: kitterman
Revision: 16126

Tagging 0.1-1.

Added:
  packages/authres/tags/0.1-1/
  packages/authres/tags/0.1-1/debian/
  packages/authres/tags/0.1-1/debian/README.source
  packages/authres/tags/0.1-1/debian/changelog
  packages/authres/tags/0.1-1/debian/compat
  packages/authres/tags/0.1-1/debian/control
  packages/authres/tags/0.1-1/debian/copyright
  packages/authres/tags/0.1-1/debian/python-authres.docs
  packages/authres/tags/0.1-1/debian/rules
  packages/authres/tags/0.1-1/debian/watch

Added: packages/authres/tags/0.1-1/debian/README.source
===================================================================
--- packages/authres/tags/0.1-1/debian/README.source	                        (rev 0)
+++ packages/authres/tags/0.1-1/debian/README.source	2011-03-14 17:05:17 UTC (rev 16126)
@@ -0,0 +1,5 @@
+This package uses quilt for patches.  dpkg-source -x does produce source
+ready for building with dpkg-buildpackage.  It does not procude source ready
+for editing.  See /usr/share/doc/quilt/README.source for information on using
+quilt.
+

Added: packages/authres/tags/0.1-1/debian/changelog
===================================================================
--- packages/authres/tags/0.1-1/debian/changelog	                        (rev 0)
+++ packages/authres/tags/0.1-1/debian/changelog	2011-03-14 17:05:17 UTC (rev 16126)
@@ -0,0 +1,5 @@
+authres (0.1-1) unstable; urgency=low
+
+  * Initial release (Closes: #618302)
+
+ -- Scott Kitterman <scott at kitterman.com>  Mon, 14 Mar 2011 12:19:42 -0400

Added: packages/authres/tags/0.1-1/debian/compat
===================================================================
--- packages/authres/tags/0.1-1/debian/compat	                        (rev 0)
+++ packages/authres/tags/0.1-1/debian/compat	2011-03-14 17:05:17 UTC (rev 16126)
@@ -0,0 +1 @@
+7

Added: packages/authres/tags/0.1-1/debian/control
===================================================================
--- packages/authres/tags/0.1-1/debian/control	                        (rev 0)
+++ packages/authres/tags/0.1-1/debian/control	2011-03-14 17:05:17 UTC (rev 16126)
@@ -0,0 +1,24 @@
+Source: authres
+Section: python
+Priority: optional
+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~)
+Standards-Version: 3.9.1
+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}
+Breaks: ${python:Breaks}
+Description: RFC 5451 Authentication Results Header manipulation Python module
+ Python module to create and decode RFC 5451 Authentication Results headers.
+ .
+ The module currently provides a class for creating RFC compliant headers for
+ use in Python applications. Future releases will also provide a class for
+ decoding Authentication Results headers. 
+ .
+ http://tools.ietf.org/rfc/rfc5451.txt

Added: packages/authres/tags/0.1-1/debian/copyright
===================================================================
--- packages/authres/tags/0.1-1/debian/copyright	                        (rev 0)
+++ packages/authres/tags/0.1-1/debian/copyright	2011-03-14 17:05:17 UTC (rev 16126)
@@ -0,0 +1,32 @@
+This package was debianized by Scott Kitterman <scott at kitterman.com> on
+Mon, 14 Mar 2011 12:19:42 -0400.
+
+It was downloaded from <https://launchpad.net/authentication-results-python>
+
+Upstream Author:
+
+    Scott Kitterman <scott at kitterman.com.com>
+
+Copyright:
+
+    Copyright © 2011 Scott Kitterman
+
+License:
+
+ Licensed under the Apache License, Version 2.0 (the "License");
+ you may not use this file except in compliance with the License.
+ You may obtain a copy of the License at
+
+      http://www.apache.org/licenses/LICENSE-2.0
+
+ Unless required by applicable law or agreed to in writing, software
+ distributed under the License is distributed on an "AS IS" BASIS,
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
+ implied. See the License for the specific language governing
+ permissions and limitations under the License.
+
+See /usr/share/common-licenses/Apache-2.0 for the full text of the license
+
+The Debian packaging is © 2011, Scott Kitterman <scott at kitterman.com> and
+is licensed under the same terms as the upstream package, see above.
+

Added: packages/authres/tags/0.1-1/debian/python-authres.docs
===================================================================
--- packages/authres/tags/0.1-1/debian/python-authres.docs	                        (rev 0)
+++ packages/authres/tags/0.1-1/debian/python-authres.docs	2011-03-14 17:05:17 UTC (rev 16126)
@@ -0,0 +1,2 @@
+README
+

Added: packages/authres/tags/0.1-1/debian/rules
===================================================================
--- packages/authres/tags/0.1-1/debian/rules	                        (rev 0)
+++ packages/authres/tags/0.1-1/debian/rules	2011-03-14 17:05:17 UTC (rev 16126)
@@ -0,0 +1,19 @@
+#!/usr/bin/make -f
+# -*- makefile -*-
+
+%:
+	dh $@ --with python2
+
+override_dh_auto_install:
+	for pyvers in $(shell pyversions -vr); do \
+		python$$pyvers setup.py install --no-compile -O0 --install-layout=deb \
+			--root $(CURDIR)/debian/python-authres; \
+	done
+	dh_install
+
+override_dh_auto_clean:
+	for pyvers in $(shell pyversions -vr); do \
+		python$$pyvers setup.py clean -a; \
+	done
+	find . -name \*.pyc -exec rm {} \;
+	dh_clean


Property changes on: packages/authres/tags/0.1-1/debian/rules
___________________________________________________________________
Added: svn:executable
   + *

Added: packages/authres/tags/0.1-1/debian/watch
===================================================================
--- packages/authres/tags/0.1-1/debian/watch	                        (rev 0)
+++ packages/authres/tags/0.1-1/debian/watch	2011-03-14 17:05:17 UTC (rev 16126)
@@ -0,0 +1,5 @@
+version=3
+http://launchpad.net/authentication-results-python/+download \
+http://launchpad.net/authentication-results-python/.*/.*/authres-(.*)\.tar\.gz \
+debian uupdate
+




More information about the Python-modules-commits mailing list