[Python-apps-commits] r3473 - in packages/remuco/trunk/debian (changelog control rules)

hyperair-guest at users.alioth.debian.org hyperair-guest at users.alioth.debian.org
Tue Aug 18 19:19:42 UTC 2009


    Date: Tuesday, August 18, 2009 @ 19:19:41
  Author: hyperair-guest
Revision: 3473

Build remuco.jar and use dh_auto_*

  + No-change bump to Standards 3.8.3
  + Add proguard and ant to the build dependencies
* debian/rules:
  + Pass -Spython_distutils to dh_auto_* instead of calling setup.py
    manually
  + Build remuco.jar and install it

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

Modified: packages/remuco/trunk/debian/changelog
===================================================================
--- packages/remuco/trunk/debian/changelog	2009-08-18 19:19:21 UTC (rev 3472)
+++ packages/remuco/trunk/debian/changelog	2009-08-18 19:19:41 UTC (rev 3473)
@@ -4,6 +4,12 @@
   * debian/control:
     + Rename source to "remuco" rather than "remuco-server" now that the
       client has been included
+    + No-change bump to Standards 3.8.3
+    + Add proguard and ant to the build dependencies
+  * debian/rules:
+    + Pass -Spython_distutils to dh_auto_* instead of calling setup.py
+      manually
+    + Build remuco.jar and install it
 
  -- Chow Loong Jin <hyperair at ubuntu.com>  Tue, 18 Aug 2009 18:50:09 +0800
 

Modified: packages/remuco/trunk/debian/control
===================================================================
--- packages/remuco/trunk/debian/control	2009-08-18 19:19:21 UTC (rev 3472)
+++ packages/remuco/trunk/debian/control	2009-08-18 19:19:41 UTC (rev 3473)
@@ -4,8 +4,10 @@
 Maintainer: Chow Loong Jin <hyperair at ubuntu.com>
 Build-Depends: debhelper (>= 7.0.50)
 Build-Depends-Indep: python (>= 2.5.4-1~),
-                     python-support (>= 0.5.3)
-Standards-Version: 3.8.2
+                     python-support (>= 0.5.3),
+                     proguard,
+                     ant
+Standards-Version: 3.8.3
 Homepage: http://remuco.sourceforge.net/
 Vcs-Svn: svn://svn.debian.org/svn/python-apps/packages/remuco-server
 Vcs-Browser: http://svn.debian.org/viewsvn/python-apps/packages/remuco-server
@@ -184,6 +186,6 @@
  your other playlists, rate your media, adjust volume, and more. On the mobile
  device, it displays information about the current media, including cover art.
  .
- This package contains the Remuco adapter for XMMS2. XMMS2 is a client/server 
+ This package contains the Remuco adapter for XMMS2. XMMS2 is a client/server
  based media player system.
 

Modified: packages/remuco/trunk/debian/rules
===================================================================
--- packages/remuco/trunk/debian/rules	2009-08-18 19:19:21 UTC (rev 3472)
+++ packages/remuco/trunk/debian/rules	2009-08-18 19:19:41 UTC (rev 3473)
@@ -1,16 +1,16 @@
 #!/usr/bin/make -f
 
 override_dh_auto_clean:
-	python setup.py clean --all
-	
+	dh_auto_clean -Spython_distutils
+
 override_dh_auto_build:
-	python setup.py build
+	ant -f client/libgen/build.xml setup \
+		-Dproguard.jar=/usr/share/ant/lib/ant-proguard.jar
+	ant -f client/build.xml dist
+	dh_auto_build -Spython_distutils
 
 override_dh_auto_install:
-	python setup.py install \
-		--root=debian/tmp \
-		--install-layout=deb \
-		--no-compile
+	dh_auto_install -Spython_distutils
 
 override_dh_installchangelogs:
 	dh_installchangelogs doc/ChangeLog




More information about the Python-apps-commits mailing list