diff -u moodbar-0.1.2/debian/dirs moodbar-0.1.2/debian/dirs --- moodbar-0.1.2/debian/dirs +++ moodbar-0.1.2/debian/dirs @@ -2 +1,0 @@ -usr/sbin diff -u moodbar-0.1.2/debian/control moodbar-0.1.2/debian/control --- moodbar-0.1.2/debian/control +++ moodbar-0.1.2/debian/control @@ -2,13 +2,13 @@ Section: sound Priority: extra Maintainer: Bryan Donlan -Build-Depends: debhelper (>= 5), autotools-dev, fftw3-dev, libgstreamer0.10-dev, xsltproc, docbook-xsl, dpatch -Standards-Version: 3.7.2 +Build-Depends: debhelper (>= 5), autotools-dev, libfftw3-dev, libgstreamer0.10-dev, xsltproc, docbook-xsl, dpatch +Standards-Version: 3.8.3 +Homepage: http://amarok.kde.org/wiki/Moodbar Package: moodbar Architecture: any -Recommends: gstreamer0.10-plugins-ugly, gstreamer0.10-plugins-good, gstreamer0.10-plugins-bad | gstreamer0.10-plugins-really-bad, amarok -Enhances: amarok +Recommends: gstreamer0.10-plugins-ugly, gstreamer0.10-plugins-good, gstreamer0.10-plugins-bad Depends: ${shlibs:Depends}, ${misc:Depends}, gstreamer0.10-plugins-base Description: Analysis program for creating a colorful visual representation of an audio file The Moodbar is an algorithm for creating a colorful visual diff -u moodbar-0.1.2/debian/rules moodbar-0.1.2/debian/rules --- moodbar-0.1.2/debian/rules +++ moodbar-0.1.2/debian/rules @@ -48,7 +48,7 @@ rm -f build-stamp debian/moodbar.1 # Add here commands to clean up after the build process. - -$(MAKE) distclean + [ ! -f Makefile ] || $(MAKE) distclean dh_clean diff -u moodbar-0.1.2/debian/changelog moodbar-0.1.2/debian/changelog --- moodbar-0.1.2/debian/changelog +++ moodbar-0.1.2/debian/changelog @@ -1,3 +1,23 @@ +moodbar (0.1.2-2.1) unstable; urgency=low + + * Non-maintainer upload. + * debian/control: + - Change build-dep on fftw3-dev to libfftw3-dev. (Closes: #494938) + - Drop Recommends/Enchances on Amarok as in unstable/testing it + doesn't have a moodbar plugin anymore. + - Drop Recommends on gstreamer0.10-plugins-really-bad + as it no longer exists. + - Add homepage field. + - Bump Standards-Version to 3.8.3 + * debian/dirs: Don't install empty usr/sbin/ dir. + * debian/copyright: point to GPL-2 not versionless sym-link. + * debian/rules: Don't ignore error messages in clean target. + * Add debian/README.source explaining dpatch. + * debian/patches/01_config_status: + - Fix bashism. + + -- Andrew Starr-Bochicchio Tue, 22 Sep 2009 12:06:43 -0400 + moodbar (0.1.2-2) unstable; urgency=low * debian/control: Add Recommends: amarok, as only amarok can actually use diff -u moodbar-0.1.2/debian/patches/01_config_status moodbar-0.1.2/debian/patches/01_config_status --- moodbar-0.1.2/debian/patches/01_config_status +++ moodbar-0.1.2/debian/patches/01_config_status @@ -1,5 +1,5 @@ #!/bin/sh -## 10_gthread_init.dpatch by Bryan Donlan +## 01_config_status by Bryan Donlan ## ## DP: Update config.sub and config.guess @@ -8,7 +8,7 @@ WD="$2" -if [ "x$WD" == "x" ]; then +if [ "x$WD" = "x" ]; then WD=. fi diff -u moodbar-0.1.2/debian/copyright moodbar-0.1.2/debian/copyright --- moodbar-0.1.2/debian/copyright +++ moodbar-0.1.2/debian/copyright @@ -26,5 +26,5 @@ On Debian systems, the complete text of the GNU General -Public License can be found in `/usr/share/common-licenses/GPL'. +Public License can be found in `/usr/share/common-licenses/GPL-2'. -The Debian packaging is (C) 2007, Bryan Donlan and +The Debian packaging is © 2007, Bryan Donlan and is licensed under the GPL, see above. only in patch2: unchanged: --- moodbar-0.1.2.orig/debian/README.source +++ moodbar-0.1.2/debian/README.source @@ -0,0 +1,33 @@ +This package uses dpatch in order to apply patches to the upstream source. +Patches are stored in debian/patches and their filenames usually end in .dpatch . +For further details, see the man pages for dpatch and dpatch-edit-patch. + +All commands described below should be run from the top directory of the +package source tree, unless otherwise stated. + + * To generate the fully patched source, in a form ready for + editing, that would be built to create Debian packages, run: + + dpatch apply-all + + Note: It has been proposed that in future, this should happen + automatically when you run dpkg-source -x on a dpatch source + package. However, this proposal has apparently not yet been + implemented, so for now you have to do it yourself like this. + + * To modify the source and save those modifications so that + they will be applied when building the package, pick a + suitably informative patch file name, for example + 01_add_README.source_file.dpatch, and then run: + + dpatch-edit-patch 01_add_README.source_file.dpatch + + This will place you in a new shell in a temporary copy of the + source tree. Make your desired modifications to it, and then + exit the shell to create the patch file containing them (this + file will appear in debian/patches). + + * To remove source modifications that are currently being + applied when building the package, run: + + dpatch deapply-all