[Python-modules-commits] r8910 - in packages/logilab-astng/trunk/debian (3 files)
afayolle at users.alioth.debian.org
afayolle at users.alioth.debian.org
Thu Jul 2 10:11:35 UTC 2009
Date: Thursday, July 2, 2009 @ 10:11:32
Author: afayolle
Revision: 8910
ported changes featured in upstream's packaging to Debian
Modified:
packages/logilab-astng/trunk/debian/changelog
packages/logilab-astng/trunk/debian/control
packages/logilab-astng/trunk/debian/rules
Modified: packages/logilab-astng/trunk/debian/changelog
===================================================================
--- packages/logilab-astng/trunk/debian/changelog 2009-07-02 09:13:00 UTC (rev 8909)
+++ packages/logilab-astng/trunk/debian/changelog 2009-07-02 10:11:32 UTC (rev 8910)
@@ -16,8 +16,12 @@
+ added versioned depend on python and debhelper to have functions we need
+ used --install-layout=deb to setup.py install
+ replaced site-packages by *-packages
+
+ [ Alexandre Fayolle ]
+ * debian/rules:
+ - set NO_SETUPTOOLS when calling setup.py
- -- Sandro Tosi <morph at debian.org> Thu, 18 Jun 2009 07:14:21 +0200
+ -- Alexandre Fayolle <afayolle at debian.org> Thu, 02 Jul 2009 12:10:56 +0200
logilab-astng (0.19.0-1) unstable; urgency=low
Modified: packages/logilab-astng/trunk/debian/control
===================================================================
--- packages/logilab-astng/trunk/debian/control 2009-07-02 09:13:00 UTC (rev 8909)
+++ packages/logilab-astng/trunk/debian/control 2009-07-02 10:11:32 UTC (rev 8910)
@@ -19,7 +19,7 @@
The aim of this module is to provide a common base representation of
Python source code for projects such as pyreverse or pylint.
.
- It extends class defined in the compiler.ast module (Python <= 2.4)
+ It extends classes defined in the compiler.ast module (Python <= 2.4)
or in the builtin _ast module (Python >= 2.5) with some additional
methods and attributes. Instance attributes are added by a builder
object, which can either generate extended ast (let's call them astng
Modified: packages/logilab-astng/trunk/debian/rules
===================================================================
--- packages/logilab-astng/trunk/debian/rules 2009-07-02 09:13:00 UTC (rev 8909)
+++ packages/logilab-astng/trunk/debian/rules 2009-07-02 10:11:32 UTC (rev 8910)
@@ -15,7 +15,7 @@
build-stamp:
dh_testdir
- python setup.py -q build
+ NO_SETUPTOOLS=1 python setup.py -q build
touch build-stamp
@@ -23,7 +23,7 @@
dh_testdir
dh_testroot
- python setup.py clean
+ NO_SETUPTOOLS=1 python setup.py clean
find . -name "*.pyc" -delete
@@ -36,7 +36,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/python-logilab-astng/ \
--install-layout=deb
More information about the Python-modules-commits
mailing list