[Python-apps-commits] r2806 - in packages/jokosher/trunk/debian (4 files)
dktrkranz-guest at users.alioth.debian.org
dktrkranz-guest at users.alioth.debian.org
Tue Apr 28 08:24:26 UTC 2009
Date: Tuesday, April 28, 2009 @ 08:24:25
Author: dktrkranz-guest
Revision: 2806
Unpack egg files to let python-support handle them
Added:
packages/jokosher/trunk/debian/unpack_eggs.sh
Modified:
packages/jokosher/trunk/debian/changelog
packages/jokosher/trunk/debian/control
packages/jokosher/trunk/debian/rules
Modified: packages/jokosher/trunk/debian/changelog
===================================================================
--- packages/jokosher/trunk/debian/changelog 2009-04-28 00:23:40 UTC (rev 2805)
+++ packages/jokosher/trunk/debian/changelog 2009-04-28 08:24:25 UTC (rev 2806)
@@ -19,6 +19,7 @@
- Provide debian/watch file.
* Switch to debhelper 7.
* Install Jokosher module in private directory.
+ * Unpack egg files to let python-support handle them.
* Drop python-dev from Build-Depends, use python (>= 2.4) instead.
* Depend on python-gobject.
* Switch dependency from python-setuptools to python-pkg-resources
@@ -34,7 +35,7 @@
- Provide Homepage field in source stanza.
- Provide debian/README.source to document dpatch usage.
- -- Luca Falavigna <dktrkranz at ubuntu.com> Mon, 27 Apr 2009 09:03:01 +0000
+ -- Luca Falavigna <dktrkranz at ubuntu.com> Tue, 28 Apr 2009 08:18:06 +0000
jokosher (0.9-1) unstable; urgency=low
Modified: packages/jokosher/trunk/debian/control
===================================================================
--- packages/jokosher/trunk/debian/control 2009-04-28 00:23:40 UTC (rev 2805)
+++ packages/jokosher/trunk/debian/control 2009-04-28 08:24:25 UTC (rev 2806)
@@ -4,7 +4,7 @@
Maintainer: Luca Falavigna <dktrkranz at ubuntu.com>
Uploaders: Python Applications Packaging Team <python-apps-team at lists.alioth.debian.org>
Build-Depends: debhelper (>= 7), dpatch, python (>= 2.4)
-Build-Depends-Indep: python-support (>= 0.5.3)
+Build-Depends-Indep: python-support (>= 0.5.3), unzip
Homepage: http://www.jokosher.org
Vcs-Svn: svn://svn.debian.org/python-apps/packages/jokosher/trunk/
Vcs-Browser: http://svn.debian.org/viewsvn/python-apps/packages/jokosher/trunk/
Modified: packages/jokosher/trunk/debian/rules
===================================================================
--- packages/jokosher/trunk/debian/rules 2009-04-28 00:23:40 UTC (rev 2805)
+++ packages/jokosher/trunk/debian/rules 2009-04-28 08:24:25 UTC (rev 2806)
@@ -10,4 +10,5 @@
override_dh_auto_install:
dh_auto_install -- --install-scripts=/usr/share/jokosher --install-lib=/usr/share/jokosher
+ debian/unpack_eggs.sh
Added: packages/jokosher/trunk/debian/unpack_eggs.sh
===================================================================
--- packages/jokosher/trunk/debian/unpack_eggs.sh (rev 0)
+++ packages/jokosher/trunk/debian/unpack_eggs.sh 2009-04-28 08:24:25 UTC (rev 2806)
@@ -0,0 +1,11 @@
+#!/bin/sh
+
+cd debian/jokosher/usr/share/jokosher/extensions
+for egg in `ls *.egg`
+do
+ EGGNAME=`echo $egg | cut -d"-" -f1`
+ EGGVERS=`echo $egg | cut -d"-" -f2`
+ unzip -q $egg
+ mv EGG-INFO $EGGNAME-$EGGVERS.egg-info
+ rm $egg
+done
Property changes on: packages/jokosher/trunk/debian/unpack_eggs.sh
___________________________________________________________________
Added: svn:executable
+ *
More information about the Python-apps-commits
mailing list