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

danstender-guest at users.alioth.debian.org danstender-guest at users.alioth.debian.org
Wed Sep 9 08:07:50 UTC 2015


    Date: Wednesday, September 9, 2015 @ 08:07:48
  Author: danstender-guest
Revision: 12341

build only a single package, but py3

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

Modified: packages/vulture/trunk/debian/control
===================================================================
--- packages/vulture/trunk/debian/control	2015-09-08 15:58:13 UTC (rev 12340)
+++ packages/vulture/trunk/debian/control	2015-09-09 08:07:48 UTC (rev 12341)
@@ -7,9 +7,7 @@
 Build-Depends:
  debhelper (>= 9),
  dh-python,
- python,
  python3,
- python-setuptools,
  python3-setuptools,
  txt2man
 Standards-Version: 3.9.6
@@ -17,28 +15,13 @@
 Vcs-Svn: svn://anonscm.debian.org/python-apps/packages/vulture/trunk/
 Vcs-Browser: http://anonscm.debian.org/viewvc/python-apps/packages/vulture/trunk/
 
-Package: python-vulture
+Package: vulture
 Architecture: all
 Depends:
  ${misc:Depends},
- ${python:Depends}
+ ${python3:Depends}
 Description: scans for unused ("dead") code in a Python program
  Vulture uses static code analysis to find unused classes, functions and
  variables in Python code. This helps to cleanup and find errors in
  programs. However, the user has to be aware that the static method has
  its limitations.
- .
- This package provides Vulture running on Python 2.
-
-Package: python3-vulture
-Architecture: all
-Depends:
- ${misc:Depends},
- ${python3:Depends}
-Description: scans for unused ("dead") code in a Python program (Py3)
- Vulture uses static code analysis to find unused classes, functions and
- variables in Python code. This helps to cleanup and find errors in
- programs. However, the user has to be aware that the static method has
- its limitations.
- .
- This package provides Vulture running on Python 3.

Modified: packages/vulture/trunk/debian/rules
===================================================================
--- packages/vulture/trunk/debian/rules	2015-09-08 15:58:13 UTC (rev 12340)
+++ packages/vulture/trunk/debian/rules	2015-09-09 08:07:48 UTC (rev 12341)
@@ -7,14 +7,14 @@
 DEBDATE := $(shell dpkg-parsechangelog -Sdate | date -u +"%F" -f -)
 
 %:
-	dh $@ --with python2,python3 --buildsystem=pybuild
+	dh $@ --with python3 --buildsystem=pybuild
 
 override_dh_installdocs:
-	dh_installdocs -A README.txt
+	dh_installdocs README.txt
 
 override_dh_installchangelogs:
-	dh_installchangelogs -A NEWS.txt
+	dh_installchangelogs NEWS.txt
 
 override_dh_installman:
-	txt2man -s 1 -v "python-vulture" -t "vulture" -r "$(VERSION)" -d "$(DEBDATE)" debian/vulture.txt > .pybuild/vulture.1
-	dh_installman -A .pybuild/vulture.1
+	txt2man -s 1 -v "vulture" -t "vulture" -r "$(VERSION)" -d "$(DEBDATE)" debian/vulture.txt > .pybuild/vulture.1
+	dh_installman .pybuild/vulture.1




More information about the Python-apps-commits mailing list