[Python-modules-commits] r23083 - in packages/ipdb/trunk/debian (4 files)
wrar-guest at users.alioth.debian.org
wrar-guest at users.alioth.debian.org
Mon Nov 26 18:34:42 UTC 2012
Date: Monday, November 26, 2012 @ 18:34:40
Author: wrar-guest
Revision: 23083
Some changes for 0.7.
Modified:
packages/ipdb/trunk/debian/changelog
packages/ipdb/trunk/debian/control
packages/ipdb/trunk/debian/copyright
packages/ipdb/trunk/debian/rules
Modified: packages/ipdb/trunk/debian/changelog
===================================================================
--- packages/ipdb/trunk/debian/changelog 2012-11-26 16:53:24 UTC (rev 23082)
+++ packages/ipdb/trunk/debian/changelog 2012-11-26 18:34:40 UTC (rev 23083)
@@ -1,3 +1,12 @@
+ipdb (0.7-1~exp1) UNRELEASED; urgency=low
+
+ * Upload to experimental
+ * New upstream release
+ * Change the license to GPL-2+ per the upstream clarification
+ * Bump Standards-Version to 3.9.4 (no change needed)
+
+ -- Andrey Rahmatullin <wrar at wrar.name> Mon, 26 Nov 2012 22:35:00 +0600
+
ipdb (0.6.1-1) unstable; urgency=low
* Initial release. (Closes: #642311)
Modified: packages/ipdb/trunk/debian/control
===================================================================
--- packages/ipdb/trunk/debian/control 2012-11-26 16:53:24 UTC (rev 23082)
+++ packages/ipdb/trunk/debian/control 2012-11-26 18:34:40 UTC (rev 23083)
@@ -4,7 +4,7 @@
Maintainer: Debian Python Modules Team <python-modules-team at lists.alioth.debian.org>
Uploaders: Andrey Rahmatullin <wrar at wrar.name>
Build-Depends: debhelper (>= 9), python-all (>= 2.6.6-3~), python-setuptools
-Standards-Version: 3.9.3
+Standards-Version: 3.9.4
Homepage: https://github.com/gotcha/ipdb
Vcs-Svn: svn://svn.debian.org/python-modules/packages/ipdb/trunk/
Vcs-Browser: http://svn.debian.org/viewsvn/python-modules/packages/ipdb/trunk/
Modified: packages/ipdb/trunk/debian/copyright
===================================================================
--- packages/ipdb/trunk/debian/copyright 2012-11-26 16:53:24 UTC (rev 23082)
+++ packages/ipdb/trunk/debian/copyright 2012-11-26 18:34:40 UTC (rev 23083)
@@ -4,18 +4,18 @@
Source: https://github.com/gotcha/ipdb
Files: *
-Copyright: 2007-2011, Godefroid Chapelle <gotcha at bubblenet.be>
-License: GPL-1+
+Copyright: 2007-2012, Godefroid Chapelle <gotcha at bubblenet.be>
+License: GPL-2+
Files: debian/*
Copyright: 2011-2012, Andrey Rahmatullin <wrar at wrar.name>
-License: GPL-1+
+License: GPL-2+
-License: GPL-1+
+License: GPL-2+
This program is free software; you can redistribute it
and/or modify it under the terms of the GNU General Public
License as published by the Free Software Foundation; either
- version 1 of the License, or (at your option) any later
+ version 2 of the License, or (at your option) any later
version.
.
This program is distributed in the hope that it will be
@@ -30,5 +30,5 @@
Boston, MA 02110-1301 USA
.
On Debian systems, the full text of the GNU General Public
- License version 1 can be found in the file
- `/usr/share/common-licenses/GPL-1'.
+ License version 2 can be found in the file
+ `/usr/share/common-licenses/GPL-2'.
Modified: packages/ipdb/trunk/debian/rules
===================================================================
--- packages/ipdb/trunk/debian/rules 2012-11-26 16:53:24 UTC (rev 23082)
+++ packages/ipdb/trunk/debian/rules 2012-11-26 18:34:40 UTC (rev 23083)
@@ -1,4 +1,15 @@
#!/usr/bin/make -f
+PYVERS=$(shell pyversions -r)
+
%:
dh $@ --with python2
+
+override_dh_auto_test:
+ -
+ifeq (,$(filter nocheck,$(DEB_BUILD_OPTIONS)))
+ set -e; \
+ for python in $(PYVERS); do \
+ $$python setup.py test -vv; \
+ done
+endif
More information about the Python-modules-commits
mailing list