[Python-apps-commits] r2595 - in packages/decibel-audio-player/trunk/debian (8 files)

pochu-guest at users.alioth.debian.org pochu-guest at users.alioth.debian.org
Sat Mar 14 10:07:07 UTC 2009


    Date: Saturday, March 14, 2009 @ 10:07:06
  Author: pochu-guest
Revision: 2595

* Install a tiny script to launch decibel-audio-player rather than
  symlinking the binary.
* Use debhelper 7.
* Depend on ${misc:Depends}

Added:
  packages/decibel-audio-player/trunk/debian/bin/
  packages/decibel-audio-player/trunk/debian/bin/decibel-audio-player
  packages/decibel-audio-player/trunk/debian/install
  packages/decibel-audio-player/trunk/debian/manpages
Modified:
  packages/decibel-audio-player/trunk/debian/changelog
  packages/decibel-audio-player/trunk/debian/compat
  packages/decibel-audio-player/trunk/debian/control
  packages/decibel-audio-player/trunk/debian/rules

Added: packages/decibel-audio-player/trunk/debian/bin/decibel-audio-player
===================================================================
--- packages/decibel-audio-player/trunk/debian/bin/decibel-audio-player	                        (rev 0)
+++ packages/decibel-audio-player/trunk/debian/bin/decibel-audio-player	2009-03-14 10:07:06 UTC (rev 2595)
@@ -0,0 +1,2 @@
+#!/bin/sh
+exec python /usr/share/decibel-audio-player/src/decibel-audio-player.py $@

Modified: packages/decibel-audio-player/trunk/debian/changelog
===================================================================
--- packages/decibel-audio-player/trunk/debian/changelog	2009-03-14 09:22:32 UTC (rev 2594)
+++ packages/decibel-audio-player/trunk/debian/changelog	2009-03-14 10:07:06 UTC (rev 2595)
@@ -15,6 +15,10 @@
     please lintian, and update years.
   * Clean up whitespaces.
   * Switch to python-support.
+  * Install a tiny script to launch decibel-audio-player rather than
+    symlinking the binary.
+  * Use debhelper 7.
+  * Depend on ${misc:Depends}
 
  -- Emilio Pozuelo Monfort <pochu at ubuntu.com>  Mon, 09 Mar 2009 23:14:14 +0100
 

Modified: packages/decibel-audio-player/trunk/debian/compat
===================================================================
--- packages/decibel-audio-player/trunk/debian/compat	2009-03-14 09:22:32 UTC (rev 2594)
+++ packages/decibel-audio-player/trunk/debian/compat	2009-03-14 10:07:06 UTC (rev 2595)
@@ -1 +1 @@
-5
+7

Modified: packages/decibel-audio-player/trunk/debian/control
===================================================================
--- packages/decibel-audio-player/trunk/debian/control	2009-03-14 09:22:32 UTC (rev 2594)
+++ packages/decibel-audio-player/trunk/debian/control	2009-03-14 10:07:06 UTC (rev 2595)
@@ -3,7 +3,7 @@
 Priority: optional
 Maintainer: Emilio Pozuelo Monfort <pochu at ubuntu.com>
 Uploaders: Python Applications Packaging Team <python-apps-team at lists.alioth.debian.org>
-Build-Depends: debhelper (>= 5)
+Build-Depends: debhelper (>= 7)
 Build-Depends-Indep: python (>=2.4), python-support
 Standards-Version: 3.8.0
 Homepage: http://decibel.silent-blade.org/
@@ -14,6 +14,7 @@
 Package: decibel-audio-player
 Architecture: all
 Depends: ${python:Depends},
+         ${misc:Depends},
          python-gtk2 (>=2.6.3-2),
          python-glade2 (>=2.6.3-2),
          python-mutagen (>= 1.10),

Added: packages/decibel-audio-player/trunk/debian/install
===================================================================
--- packages/decibel-audio-player/trunk/debian/install	                        (rev 0)
+++ packages/decibel-audio-player/trunk/debian/install	2009-03-14 10:07:06 UTC (rev 2595)
@@ -0,0 +1 @@
+debian/bin/decibel-audio-player usr/bin

Added: packages/decibel-audio-player/trunk/debian/manpages
===================================================================
--- packages/decibel-audio-player/trunk/debian/manpages	                        (rev 0)
+++ packages/decibel-audio-player/trunk/debian/manpages	2009-03-14 10:07:06 UTC (rev 2595)
@@ -0,0 +1 @@
+doc/decibel-audio-player.1

Modified: packages/decibel-audio-player/trunk/debian/rules
===================================================================
--- packages/decibel-audio-player/trunk/debian/rules	2009-03-14 09:22:32 UTC (rev 2594)
+++ packages/decibel-audio-player/trunk/debian/rules	2009-03-14 10:07:06 UTC (rev 2595)
@@ -1,40 +1,10 @@
 #!/usr/bin/make -f
-# -*- makefile -*-
 
-build:
+%:
+	dh $@
 
-clean:
-	dh_testdir
-	dh_testroot
-	rm -f build-stamp configure-stamp
-	$(MAKE) clean
-	dh_clean 
-
-install: build
-	dh_testdir
-	dh_testroot
-	dh_installdirs
+override_dh_auto_install:
 	$(MAKE) DESTDIR=$(CURDIR)/debian/decibel-audio-player prefix=/usr install
 
-binary-indep: build install
-	dh_testdir
-	dh_testroot
+override_dh_installchangelogs:
 	dh_installchangelogs doc/ChangeLog
-	dh_installdocs
-	dh_installmenu
-	dh_installman doc/decibel-audio-player.1
-	dh_desktop
-	dh_link usr/share/decibel-audio-player/src/decibel-audio-player.py /usr/bin/decibel-audio-player
-	dh_compress
-	dh_fixperms
-	chmod +x debian/decibel-audio-player/usr/share/decibel-audio-player/src/decibel-audio-player.py
-	dh_pysupport
-	dh_installdeb
-	dh_gencontrol
-	dh_md5sums
-	dh_builddeb
-
-binary-arch: build install
-
-binary: binary-indep binary-arch
-.PHONY: build clean binary-indep binary-arch binary install




More information about the Python-apps-commits mailing list