[Python-modules-commits] [python3-openid] 02/02: New upstream release, with packaging changes, and git-dpm-ifying.

Barry Warsaw barry at moszumanska.debian.org
Tue Nov 10 02:53:32 UTC 2015


This is an automated email from the git hooks/post-receive script.

barry pushed a commit to branch master
in repository python3-openid.

commit 35fab31b6b501f6a4527c0072e6b9c08332680c2
Author: Barry Warsaw <barry at python.org>
Date:   Mon Nov 9 21:52:08 2015 -0500

    New upstream release, with packaging changes, and git-dpm-ifying.
    
    * New upstream release.
    * d/control:
      - Add myself to Uploaders.
      - Add Vcs-* headers.
      - Bump Standards-Version to 3.9.6 with no other changes necessary.
      - wrap-and-sort
    * d/copyright: Use standard short name for Apache 2.0 license for
      lintian happiness.
    * d/tests/control: Add simple import smoke test.
    * d/watch: Use pypi.debian.net redirector.
---
 debian/changelog     | 15 +++++++++++++++
 debian/control       | 12 ++++++------
 debian/copyright     | 12 ++++++------
 debian/rules         | 10 ++++++----
 debian/tests/control |  1 +
 debian/watch         |  4 ++--
 6 files changed, 36 insertions(+), 18 deletions(-)

diff --git a/debian/changelog b/debian/changelog
index bf725d6..a744e48 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,3 +1,18 @@
+python3-openid (3.0.9-1) UNRELEASED; urgency=medium
+
+  * New upstream release.
+  * d/control:
+    - Add myself to Uploaders.
+    - Add Vcs-* headers.
+    - Bump Standards-Version to 3.9.6 with no other changes necessary.
+    - wrap-and-sort
+  * d/copyright: Use standard short name for Apache 2.0 license for
+    lintian happiness.
+  * d/tests/control: Add simple import smoke test.
+  * d/watch: Use pypi.debian.net redirector.
+
+ -- Barry Warsaw <barry at debian.org>  Mon, 09 Nov 2015 21:27:18 -0500
+
 python3-openid (3.0.2+git20140828-1) unstable; urgency=low
 
   * Initial release (Closes: #758686)
diff --git a/debian/control b/debian/control
index 4893d5a..b0e0714 100644
--- a/debian/control
+++ b/debian/control
@@ -2,14 +2,14 @@ Source: python3-openid
 Section: python
 Priority: optional
 Maintainer: Debian Python Modules Team <python-modules-team at lists.alioth.debian.org>
-Uploaders: Thomi Richards <thomi.richards at canonical.com>
-Build-Depends: debhelper (>= 9),
-               dh-python,
-               python3-all,
-               python3-setuptools
-Standards-Version: 3.9.5
+Uploaders: Thomi Richards <thomi.richards at canonical.com>,
+           Barry Warsaw <barry at debian.org>
+Build-Depends: debhelper (>= 9), dh-python, python3-all, python3-setuptools
+Standards-Version: 3.9.6
 Homepage: https://github.com/necaris/python3-openid
 X-Python3-Version: >= 3.3
+Vcs-Git: git://anonscm.debian.org/python-modules/packages/python3-openid.git
+Vcs-Browser: https://anonscm.debian.org/cgit/python-modules/packages/python3-openid.git
 
 Package: python3-openid
 Architecture: all
diff --git a/debian/copyright b/debian/copyright
index 8626134..49d4816 100644
--- a/debian/copyright
+++ b/debian/copyright
@@ -4,22 +4,22 @@ Source: http://github.com/necaris/python3-openid
 
 Files: *
 Copyright: Rami Chowdhury <rami.chowdhury at gmail.com>
-License: Apache 2.0
+License: Apache
 
 Files: openid/__init__.py
 Copyright: 2005-2008 JanRain, Inc.
-		   2012-2013 Rami Chowdhury
-License: Apache 2.0
+           2012-2013 Rami Chowdhury
+License: Apache
 
 Files: openid/test/linkparse.txt
 Copyright: 2005-2008, JanRain, Inc.
-License: Apache 2.0
+License: Apache
 
 Files: debian/*
 Copyright: 2014 Thomi Richards <thomi.richards at canonical.com>
-License: Apache 2.0
+License: Apache
 
-License: Apache 2.0
+License: Apache
  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
diff --git a/debian/rules b/debian/rules
index 8572ef0..dfbf2b2 100755
--- a/debian/rules
+++ b/debian/rules
@@ -1,7 +1,8 @@
 #!/usr/bin/make -f
-# See debhelper(7) (uncomment to enable)
-# output every command that modifies files on the build system.
-#DH_VERBOSE = 1
+
+export PYBUILD_NAME=openid
+#export PYBUILD_VERBOSE=1
+#export DH_VERBOSE = 1
 
 
 %:
@@ -11,4 +12,5 @@
 override_dh_auto_test:
 	# The test suite starts a dummy HTTP(S) server, so we need to allow
 	# those ports to be opened:
-	http_proxy= https_proxy= python3 -m unittest openid.test.test_suite
\ No newline at end of file
+	#http_proxy= https_proxy= python3 -m unittest openid.test.test_suite
+	http_proxy= https_proxy= dh_auto_test
diff --git a/debian/tests/control b/debian/tests/control
new file mode 100644
index 0000000..b99d98e
--- /dev/null
+++ b/debian/tests/control
@@ -0,0 +1 @@
+Test-Command: python3 -c "import openid; print(openid)"
diff --git a/debian/watch b/debian/watch
index 3644eca..374a376 100644
--- a/debian/watch
+++ b/debian/watch
@@ -1,3 +1,3 @@
 version=3
-opts=filenamemangle=s/.+\/v?(\d\S*)\.tar\.gz/python3-openid-$1\.tar\.gz/ \
-  https://github.com/necaris/python3-openid/tags .*/v?(\d\S*)\.tar\.gz
+opts=uversionmangle=s/(rc|a|b|c)/~$1/ \
+https://pypi.debian.net/python3-openid/python3-openid-(.+)\.(?:zip|tgz|tbz|txz|(?:tar\.(?:gz|bz2|xz)))

-- 
Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/python-modules/packages/python3-openid.git



More information about the Python-modules-commits mailing list