[Python-modules-commits] r24630 - in packages/unidecode/trunk/debian (9 files)
stefanor at users.alioth.debian.org
stefanor at users.alioth.debian.org
Sun Jun 2 17:07:13 UTC 2013
Date: Sunday, June 2, 2013 @ 17:07:10
Author: stefanor
Revision: 24630
* New upstream release.
* Switch watch file to https.
* Bump machine-readable copyright format to 1.0.
* Bump Standards-Version to 3.9.4
- Bump debhelper B-D to 8.1, for build-{arch,indep} support.
* Bump debhelper compat level to 8.
* Add autopkgtests.
Added:
packages/unidecode/trunk/debian/tests/
packages/unidecode/trunk/debian/tests/control
packages/unidecode/trunk/debian/tests/unittests
packages/unidecode/trunk/debian/tests/unittests3
Modified:
packages/unidecode/trunk/debian/changelog
packages/unidecode/trunk/debian/compat
packages/unidecode/trunk/debian/control
packages/unidecode/trunk/debian/copyright
packages/unidecode/trunk/debian/watch
Modified: packages/unidecode/trunk/debian/changelog
===================================================================
--- packages/unidecode/trunk/debian/changelog 2013-06-02 14:08:11 UTC (rev 24629)
+++ packages/unidecode/trunk/debian/changelog 2013-06-02 17:07:10 UTC (rev 24630)
@@ -1,5 +1,14 @@
-unidecode (0.04.9-2) UNRELEASED; urgency=low
+unidecode (0.04.12-1) unstable; urgency=low
+ [ Stefano Rivera ]
+ * New upstream release.
+ * Switch watch file to https.
+ * Bump machine-readable copyright format to 1.0.
+ * Bump Standards-Version to 3.9.4
+ - Bump debhelper B-D to 8.1, for build-{arch,indep} support.
+ * Bump debhelper compat level to 8.
+ * Add autopkgtests.
+
[ Piotr Ożarowski ]
* Bump minimum required Python version to 2.6
(due to 'from . import * ' syntax)
@@ -7,7 +16,7 @@
[ Jakub Wilk ]
* Use canonical URIs for Vcs-* fields.
- -- Jakub Wilk <jwilk at debian.org> Sun, 05 May 2013 16:04:14 +0200
+ -- Stefano Rivera <stefanor at debian.org> Sun, 02 Jun 2013 19:04:31 +0200
unidecode (0.04.9-1) unstable; urgency=low
Modified: packages/unidecode/trunk/debian/compat
===================================================================
--- packages/unidecode/trunk/debian/compat 2013-06-02 14:08:11 UTC (rev 24629)
+++ packages/unidecode/trunk/debian/compat 2013-06-02 17:07:10 UTC (rev 24630)
@@ -1 +1 @@
-7
+8
Modified: packages/unidecode/trunk/debian/control
===================================================================
--- packages/unidecode/trunk/debian/control 2013-06-02 14:08:11 UTC (rev 24629)
+++ packages/unidecode/trunk/debian/control 2013-06-02 17:07:10 UTC (rev 24630)
@@ -4,15 +4,16 @@
Maintainer: Debian Python Modules Team <python-modules-team at lists.alioth.debian.org>
Uploaders: Stefano Rivera <stefanor at debian.org>
Build-Depends:
- debhelper (>= 7.0.50~),
+ debhelper (>= 8.1),
python-all (>= 2.6.6-3~),
python3-all (>= 3.1.2-6~)
X-Python-Version: >= 2.6
X-Python3-Version: >= 3.0
-Standards-Version: 3.9.2
+Standards-Version: 3.9.4
Homepage: http://pypi.python.org/pypi/Unidecode
Vcs-Svn: svn://anonscm.debian.org/python-modules/packages/unidecode/trunk/
Vcs-Browser: http://anonscm.debian.org/viewvc/python-modules/packages/unidecode/trunk/
+XS-Testsuite: autopkgtest
Package: python-unidecode
Architecture: all
Modified: packages/unidecode/trunk/debian/copyright
===================================================================
--- packages/unidecode/trunk/debian/copyright 2013-06-02 14:08:11 UTC (rev 24629)
+++ packages/unidecode/trunk/debian/copyright 2013-06-02 17:07:10 UTC (rev 24630)
@@ -1,15 +1,15 @@
-Format: http://anonscm.debian.org/viewvc/dep/web/deps/dep5.mdwn?view=markup&revision=174
+Format: http://www.debian.org/doc/packaging-manuals/copyright-format/1.0/
Upstream-Name: Unidecode
Upstream-Contact: Tomaz Solc <tomaz.solc at tablix.org>
Source: http://pypi.python.org/pypi/Unidecode
Files: *
Copyright: 2001, Sean M. Burke <sburke at cpan.org>
- 2011, Tomaz Solc <tomaz.solc at tablix.org>
+ 2011-2013, Tomaz Solc <tomaz.solc at tablix.org>
License: GPL-2+
Files: debian/*
-Copyright: 2010-2011, Stefano Rivera <stefanor at debian.org>
+Copyright: 2010-2013, Stefano Rivera <stefanor at debian.org>
License: GPL-2+
License: GPL-2+
Added: packages/unidecode/trunk/debian/tests/control
===================================================================
--- packages/unidecode/trunk/debian/tests/control (rev 0)
+++ packages/unidecode/trunk/debian/tests/control 2013-06-02 17:07:10 UTC (rev 24630)
@@ -0,0 +1,5 @@
+Tests: unittests
+Depends: python-unidecode, python-all
+
+Tests: unittests3
+Depends: python3-unidecode, python3-all
Added: packages/unidecode/trunk/debian/tests/unittests
===================================================================
--- packages/unidecode/trunk/debian/tests/unittests (rev 0)
+++ packages/unidecode/trunk/debian/tests/unittests 2013-06-02 17:07:10 UTC (rev 24630)
@@ -0,0 +1,12 @@
+#!/bin/sh
+set -efu
+
+pys="$(pyversions -rv 2> /dev/null)"
+
+cp -a tests "$ADTTMP"
+cd "$ADTTMP"
+
+for py in $pys; do
+ echo "=== python$py ==="
+ python$py tests/basic_2.py 2>&1
+done
Property changes on: packages/unidecode/trunk/debian/tests/unittests
___________________________________________________________________
Added: svn:executable
+ *
Added: packages/unidecode/trunk/debian/tests/unittests3
===================================================================
--- packages/unidecode/trunk/debian/tests/unittests3 (rev 0)
+++ packages/unidecode/trunk/debian/tests/unittests3 2013-06-02 17:07:10 UTC (rev 24630)
@@ -0,0 +1,12 @@
+#!/bin/sh
+set -efu
+
+pys="$(py3versions -rv 2> /dev/null)"
+
+cp -a tests "$ADTTMP"
+cd "$ADTTMP"
+
+for py in $pys; do
+ echo "=== python$py ==="
+ python$py tests/basic_3.py 2>&1
+done
Property changes on: packages/unidecode/trunk/debian/tests/unittests3
___________________________________________________________________
Added: svn:executable
+ *
Modified: packages/unidecode/trunk/debian/watch
===================================================================
--- packages/unidecode/trunk/debian/watch 2013-06-02 14:08:11 UTC (rev 24629)
+++ packages/unidecode/trunk/debian/watch 2013-06-02 17:07:10 UTC (rev 24630)
@@ -1,3 +1,3 @@
version=3
-http://pypi.python.org/packages/source/U/Unidecode/Unidecode-(.+).tar.gz
+https://pypi.python.org/packages/source/U/Unidecode/Unidecode-(.+).tar.gz
More information about the Python-modules-commits
mailing list