[Python-apps-commits] r12989 - in packages/vulture/trunk/debian (changelog control rules)

danstender-guest at users.alioth.debian.org danstender-guest at users.alioth.debian.org
Mon Mar 21 19:52:49 UTC 2016


    Date: Monday, March 21, 2016 @ 19:52:48
  Author: danstender-guest
Revision: 12989

run/build on Python3

Modified:
  packages/vulture/trunk/debian/changelog
  packages/vulture/trunk/debian/control
  packages/vulture/trunk/debian/rules

Modified: packages/vulture/trunk/debian/changelog
===================================================================
--- packages/vulture/trunk/debian/changelog	2016-03-21 19:46:28 UTC (rev 12988)
+++ packages/vulture/trunk/debian/changelog	2016-03-21 19:52:48 UTC (rev 12989)
@@ -14,8 +14,10 @@
     + run py.test with dh_auto_test override in deb/rules.
     + added pytest-no-cov.patch (coverage could be sparted, dropped build-
       dep against pytest-cov in deb/control).
+  * run/build on Python3 (deb/control: changed deps, deb/rules: build with
+    dh_python3)
 
- -- Daniel Stender <stender at debian.org>  Mon, 21 Mar 2016 20:40:30 +0100
+ -- Daniel Stender <stender at debian.org>  Mon, 21 Mar 2016 20:50:46 +0100
 
 vulture (0.8.1-1) unstable; urgency=medium
 

Modified: packages/vulture/trunk/debian/control
===================================================================
--- packages/vulture/trunk/debian/control	2016-03-21 19:46:28 UTC (rev 12988)
+++ packages/vulture/trunk/debian/control	2016-03-21 19:52:48 UTC (rev 12989)
@@ -6,10 +6,10 @@
 Build-Depends:
  debhelper (>= 9),
  dh-python,
- python,
- python-setuptools,
+ python3,
+ python3-setuptools,
  txt2man,
- python-pytest
+ python3-pytest
 Standards-Version: 3.9.7
 Homepage: https://bitbucket.org/jendrikseipp/vulture
 Vcs-Svn: svn://anonscm.debian.org/python-apps/packages/vulture/trunk/
@@ -19,7 +19,7 @@
 Architecture: all
 Depends:
  ${misc:Depends},
- ${python:Depends}
+ ${python3:Depends}
 Enhances:
  prospector
 Description: scans for unused ("dead") code in a Python program

Modified: packages/vulture/trunk/debian/rules
===================================================================
--- packages/vulture/trunk/debian/rules	2016-03-21 19:46:28 UTC (rev 12988)
+++ packages/vulture/trunk/debian/rules	2016-03-21 19:52:48 UTC (rev 12989)
@@ -7,7 +7,7 @@
 DEBDATE := $(shell dpkg-parsechangelog -Sdate | date -u +"%F" -f -)
 
 %:
-	dh $@ --with python2 --buildsystem=pybuild
+	dh $@ --with python3 --buildsystem=pybuild
 
 override_dh_auto_test:
 	PYBUILD_SYSTEM=custom PYBUILD_TEST_ARGS="{interpreter} -m pytest -v -x" dh_auto_test




More information about the Python-apps-commits mailing list