[Python-modules-commits] r31837 - in packages/blessings/trunk/debian (6 files)
sramacher at users.alioth.debian.org
sramacher at users.alioth.debian.org
Tue Feb 10 13:27:40 UTC 2015
Date: Tuesday, February 10, 2015 @ 13:27:38
Author: sramacher
Revision: 31837
* Team upload.
* New upstream release. (Closes: #765866)
* Add Python 3 package. (Closes: #707782)
* Switch to pybuild build system.
* Bump Standards-Version, no changes needed.
* Use pypi.debian.net redirector in watch file.
Added:
packages/blessings/trunk/debian/python-blessings.install
packages/blessings/trunk/debian/python3-blessings.install
Modified:
packages/blessings/trunk/debian/changelog
packages/blessings/trunk/debian/control
packages/blessings/trunk/debian/rules
packages/blessings/trunk/debian/watch
Modified: packages/blessings/trunk/debian/changelog
===================================================================
--- packages/blessings/trunk/debian/changelog 2015-02-10 01:49:38 UTC (rev 31836)
+++ packages/blessings/trunk/debian/changelog 2015-02-10 13:27:38 UTC (rev 31837)
@@ -1,9 +1,19 @@
-blessings (1.5-2) UNRELEASED; urgency=low
+blessings (1.6-1) experimental; urgency=low
+ * Team upload.
+
+ [ Jakub Wilk ]
* Use canonical URIs for Vcs-* fields.
- -- Jakub Wilk <jwilk at debian.org> Sun, 05 May 2013 16:00:32 +0200
+ [ Sebastian Ramacher ]
+ * New upstream release. (Closes: #765866)
+ * Add Python 3 package. (Closes: #707782)
+ * Switch to pybuild build system.
+ * Bump Standards-Version, no changes needed.
+ * Use pypi.debian.net redirector in watch file.
+ -- Sebastian Ramacher <sramacher at debian.org> Tue, 10 Feb 2015 14:08:17 +0100
+
blessings (1.5-1) unstable; urgency=low
* New package (Closes: #696034)
Modified: packages/blessings/trunk/debian/control
===================================================================
--- packages/blessings/trunk/debian/control 2015-02-10 01:49:38 UTC (rev 31836)
+++ packages/blessings/trunk/debian/control 2015-02-10 13:27:38 UTC (rev 31837)
@@ -5,9 +5,12 @@
Uploaders: Debian Python Modules Team <python-modules-team at lists.alioth.debian.org>
Build-Depends:
python-setuptools (>= 0.6b3),
+ python3-setuptools,
python-all (>= 2.6.6-3),
- debhelper (>= 7.0.50)
-Standards-Version: 3.9.3
+ python3-all,
+ debhelper (>= 7.0.50),
+ dh-python
+Standards-Version: 3.9.6
Homepage: https://github.com/erikrose/blessings
Vcs-Svn: svn://anonscm.debian.org/python-modules/packages/blessings/trunk/
Vcs-Browser: http://anonscm.debian.org/viewvc/python-modules/packages/blessings/trunk/
@@ -15,12 +18,24 @@
Package: python-blessings
Architecture: all
Depends: ${misc:Depends}, ${python:Depends}
-Description: simple but powerful module to manage terminal color and styling
+Description: simple but powerful module to manage terminal color and styling (Python 2)
Blessings is a pythonic API to manipulate terminal. It provides similar
features to curses but beating some of their limitations: it does not require
clearing the whole screen for little changes, scrollback buffer after program
exits, avoid styling when on output redirection, etc.
+ .
+ This package contains the module for Python 2.
+Package: python3-blessings
+Architecture: all
+Depends: ${misc:Depends}, ${python3:Depends}
+Description: simple but powerful module to manage terminal color and styling (Python 3)
+ Blessings is a pythonic API to manipulate terminal. It provides similar
+ features to curses but beating some of their limitations: it does not require
+ clearing the whole screen for little changes, scrollback buffer after program
+ exits, avoid styling when on output redirection, etc.
+ .
+ This package contains the module for Python 3.
## Local Variables:
## coding: utf-8
Added: packages/blessings/trunk/debian/python-blessings.install
===================================================================
--- packages/blessings/trunk/debian/python-blessings.install (rev 0)
+++ packages/blessings/trunk/debian/python-blessings.install 2015-02-10 13:27:38 UTC (rev 31837)
@@ -0,0 +1 @@
+usr/lib/python2*
Added: packages/blessings/trunk/debian/python3-blessings.install
===================================================================
--- packages/blessings/trunk/debian/python3-blessings.install (rev 0)
+++ packages/blessings/trunk/debian/python3-blessings.install 2015-02-10 13:27:38 UTC (rev 31837)
@@ -0,0 +1 @@
+usr/lib/python3*
Modified: packages/blessings/trunk/debian/rules
===================================================================
--- packages/blessings/trunk/debian/rules 2015-02-10 01:49:38 UTC (rev 31836)
+++ packages/blessings/trunk/debian/rules 2015-02-10 13:27:38 UTC (rev 31837)
@@ -1,10 +1,7 @@
#!/usr/bin/make -f
%:
- dh $@ --with python2
+ dh $@ --with python2,python3 --buildsystem pybuild
+override_dh_auto_test:
-override_dh_auto_clean:
- dh_auto_clean
- rm -rf build
- rm -rf *.egg-info
Modified: packages/blessings/trunk/debian/watch
===================================================================
--- packages/blessings/trunk/debian/watch 2015-02-10 01:49:38 UTC (rev 31836)
+++ packages/blessings/trunk/debian/watch 2015-02-10 13:27:38 UTC (rev 31837)
@@ -1,2 +1,3 @@
version=3
-http://pypi.python.org/packages/source/b/blessings/blessings-([\d.]+)\.tar\.gz
+opts=uversionmangle=s/(rc|a|b|c)/~$1/ \
+http://pypi.debian.net/blessings/blessings-(.+)\.(?:zip|tgz|tbz|txz|(?:tar\.(?:gz|bz2|xz)))
More information about the Python-modules-commits
mailing list