[Python-modules-commits] r1581 - in /packages/ruledispatch/trunk/debian: changelog control rules

kov at users.alioth.debian.org kov at users.alioth.debian.org
Tue Dec 5 02:01:05 CET 2006


Author: kov
Date: Tue Dec  5 02:01:05 2006
New Revision: 1581

URL: http://svn.debian.org/wsvn/python-modules/?sc=1&rev=1581
Log:
  - debian/rules:
    + fix code to handle the case in which the egg-info directory
      is in /usr/share/python-support already (Closes: #375528)
  - debian/control:
    + add build-depends on python-support >= 0.3.4
release to unstable

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

Modified: packages/ruledispatch/trunk/debian/changelog
URL: http://svn.debian.org/wsvn/python-modules/packages/ruledispatch/trunk/debian/changelog?rev=1581&op=diff
==============================================================================
--- packages/ruledispatch/trunk/debian/changelog (original)
+++ packages/ruledispatch/trunk/debian/changelog Tue Dec  5 02:01:05 2006
@@ -1,8 +1,16 @@
-ruledispatch (0.5adev-5) UNRELEASED; urgency=low
+ruledispatch (0.5adev-5) unstable; urgency=low
 
-  * Added XS-Vcs-Svn field
+  * Piotr Ozarowski <ozarow at gmail.com>:
+  - Added XS-Vcs-Svn field
 
- -- Piotr Ozarowski <ozarow at gmail.com>  Thu, 23 Nov 2006 14:44:57 +0100
+  * Gustavo Noronha:
+  - debian/rules:
+    + fix code to handle the case in which the egg-info directory
+      is in /usr/share/python-support already (Closes: #375528)
+  - debian/control:
+    + add build-depends on python-support >= 0.3.4
+
+ -- Gustavo Noronha Silva <kov at debian.org>  Mon,  4 Dec 2006 22:54:47 -0200
 
 ruledispatch (0.5adev-4) unstable; urgency=low
 

Modified: packages/ruledispatch/trunk/debian/control
URL: http://svn.debian.org/wsvn/python-modules/packages/ruledispatch/trunk/debian/control?rev=1581&op=diff
==============================================================================
--- packages/ruledispatch/trunk/debian/control (original)
+++ packages/ruledispatch/trunk/debian/control Tue Dec  5 02:01:05 2006
@@ -2,7 +2,7 @@
 Section: python
 Priority: optional
 Maintainer: Gustavo Noronha Silva <kov at debian.org>
-Build-Depends: cdbs (>= 0.4.43), debhelper (>= 5.0.37.3), python, python-setuptools (>= 0.6a9-1), python-all-dev, python-support (>= 0.3), python-protocols (>> 1.0)
+Build-Depends: cdbs (>= 0.4.43), debhelper (>= 5.0.37.3), python, python-setuptools (>= 0.6a9-1), python-all-dev, python-support (>= 0.3.4), python-protocols (>> 1.0)
 XS-Python-Version: >= 2.3
 XS-Vcs-Svn: svn://svn.debian.org/python-modules/packages/ruledispatch/trunk/
 Standards-Version: 3.7.2

Modified: packages/ruledispatch/trunk/debian/rules
URL: http://svn.debian.org/wsvn/python-modules/packages/ruledispatch/trunk/debian/rules?rev=1581&op=diff
==============================================================================
--- packages/ruledispatch/trunk/debian/rules (original)
+++ packages/ruledispatch/trunk/debian/rules Tue Dec  5 02:01:05 2006
@@ -9,8 +9,7 @@
 UPSTREAM_VERSION=$(shell echo ${DEB_UPSTREAM_VERSION} | sed s,dev,0,g)
 
 binary-post-install/python-dispatch::
-	EGGDIR=$$(find debian/python-dispatch/usr/lib/ -name RuleDispatch\*.egg-info | head -n 1); \
+	EGGDIR=$$(find debian/python-dispatch/ -name RuleDispatch\*.egg-info | head -n 1); \
 	mv $${EGGDIR} \
 		debian/python-dispatch/usr/share/python-support/python-dispatch/RuleDispatch-${UPSTREAM_VERSION}.egg-info
-	find debian/python-dispatch/usr/lib/ -name RuleDispatch\*.egg-info | xargs rm -rf
 




More information about the Python-modules-commits mailing list