[Python-apps-commits] r3216 - in packages/pylint/trunk/debian (changelog rules)

afayolle at users.alioth.debian.org afayolle at users.alioth.debian.org
Thu Jul 2 10:12:17 UTC 2009


    Date: Thursday, July 2, 2009 @ 10:12:14
  Author: afayolle
Revision: 3216

ported changes featured in upstream's packaging to Debian

Modified:
  packages/pylint/trunk/debian/changelog
  packages/pylint/trunk/debian/rules

Modified: packages/pylint/trunk/debian/changelog
===================================================================
--- packages/pylint/trunk/debian/changelog	2009-07-02 02:15:21 UTC (rev 3215)
+++ packages/pylint/trunk/debian/changelog	2009-07-02 10:12:14 UTC (rev 3216)
@@ -1,10 +1,14 @@
 pylint (0.18.0-2) UNRELEASED; urgency=low
 
+  [Juline Lavergne]
   * Python transition, thanks Alessio Treglia for the patch (Closes: #530509)
    - Use --install-layout=deb for setup.py install.
    - Replace site-packages by *-packages.
    - Build-depends on python >= 2.5.4-1~ for --install-layout=deb.
 
+   [Alexandre Fayolle]
+   * debian/rules: set NO_SETUPTOOLS when calling python setup.py
+
  -- Julien Lavergne <julien.lavergne at gmail.com>  Sun, 31 May 2009 01:24:53 +0200
 
 pylint (0.18.0-1) unstable; urgency=low

Modified: packages/pylint/trunk/debian/rules
===================================================================
--- packages/pylint/trunk/debian/rules	2009-07-02 02:15:21 UTC (rev 3215)
+++ packages/pylint/trunk/debian/rules	2009-07-02 10:12:14 UTC (rev 3216)
@@ -5,7 +5,7 @@
 # adapted by Logilab for automatic generation by debianize
 # (part of the devtools project, http://www.logilab.org/projects/devtools)
 #
-# Copyright (c) 2003-2005 LOGILAB S.A. (Paris, FRANCE).
+# Copyright (c) 2003-2009 LOGILAB S.A. (Paris, FRANCE).
 # http://www.logilab.fr/ -- mailto:contact at logilab.fr
 
 # Uncomment this to turn on verbose mode.
@@ -14,14 +14,14 @@
 build: build-stamp
 build-stamp:
 	dh_testdir
-	python setup.py -q build
+	NO_SETUPTOOLS=1 python setup.py -q build
 	touch build-stamp
 
 clean:
 	dh_testdir
 	dh_testroot
 
-	python setup.py clean
+	NO_SETUPTOOLS=1 python setup.py clean
 
 	find . -name "*.pyc" -delete
 
@@ -35,7 +35,7 @@
 	dh_clean -k
 	dh_installdirs
 
-	python setup.py -q install --no-compile \
+	NO_SETUPTOOLS=1 python setup.py -q install --no-compile \
 			--root=$(CURDIR)/debian/pylint \
 			--install-layout=deb
 




More information about the Python-apps-commits mailing list