[Python-modules-commits] r10490 - in packages/python-event/trunk/debian (changelog rules)

jwilk-guest at users.alioth.debian.org jwilk-guest at users.alioth.debian.org
Tue Nov 17 20:31:58 UTC 2009


    Date: Tuesday, November 17, 2009 @ 20:31:57
  Author: jwilk-guest
Revision: 10490

* Prepare for the Python 2.6 transition:
  - pass "--prefix=/usr" to setup.py call.

Modified:
  packages/python-event/trunk/debian/changelog
  packages/python-event/trunk/debian/rules

Modified: packages/python-event/trunk/debian/changelog
===================================================================
--- packages/python-event/trunk/debian/changelog	2009-11-17 19:10:14 UTC (rev 10489)
+++ packages/python-event/trunk/debian/changelog	2009-11-17 20:31:57 UTC (rev 10490)
@@ -1,3 +1,10 @@
+python-event (0.3+svn60-2) UNRELEASED; urgency=low
+
+  * Prepare for the Python 2.6 transition:
+    - pass "--prefix=/usr" to setup.py call.
+
+ -- Jakub Wilk <ubanus at users.sf.net>  Tue, 17 Nov 2009 21:29:35 +0100
+
 python-event (0.3+svn60-1) unstable; urgency=low
 
   * Welcome to sid

Modified: packages/python-event/trunk/debian/rules
===================================================================
--- packages/python-event/trunk/debian/rules	2009-11-17 19:10:14 UTC (rev 10489)
+++ packages/python-event/trunk/debian/rules	2009-11-17 20:31:57 UTC (rev 10490)
@@ -27,12 +27,12 @@
 install: $(PYVERS:%=install-python%) $(PYVERS:%=install-debug-python%)
 
 install-python%: build
-	python$* setup.py install \
+	python$* setup.py install --prefix=/usr \
 		--skip-build --root=$(CURDIR)/debian/python-event;
 	touch $@
 
 install-debug-python%: build
-	python$*-dbg setup.py install \
+	python$*-dbg setup.py install --prefix=/usr \
 		--skip-build --root=$(CURDIR)/debian/python-event-dbg/
 	find $(CURDIR)/debian/python-event-dbg/usr/lib/python$*/ ! -type d ! -name '*_d\.so' -delete
 	find $(CURDIR)/debian/python-event-dbg/usr/lib/python$*/ -depth -empty -delete




More information about the Python-modules-commits mailing list