[Date Prev][Date Next] [Thread Prev][Thread Next] [Date Index] [Thread Index]

Re: Question about dh_python2



Hi Jakub,

On Wed, Aug 08, 2012 at 11:18:53AM +0200, Jakub Wilk wrote:
> * Leonardo Marín <leojmarin@zoho.com>, 2012-08-08, 03:53:
> >I converted package to dh_python2 and i have trouble with deb package,
> >
> [...]
> >
> >the trouble:
> >inside (deb package) "/usr/bin/decibel-audio-player" i see:
> >python /home/.../Decibel-audio-player/Devel/decibel-audio-player/build-area/decibel-audio-player-1.08/debian/decibel-audio-player/usr/share/decibel-audio-player/src/decibel-audio-player.py "$@" &
> >
> >instead of:
> >python /usr/share/decibel-audio-player/src/decibel-audio-player.py "$@" &
> >
> >any idea how to fix this?
> 
> No idea, it works fine here. Did you change anything else besides
> debian/rules and debian/control? Please attach the full diff.
yes, I've attached diff (debian-1-2) and (decibel-audio-player_1.08-1_i386.build),

my devscripts contain this:
DEBCHANGE_RELEASE_HEURISTIC=changelog
DEBSIGN_KEYID="696B8C85"
DEBUILD_TGZ_CHECK=yes
DEBUILD_ROOTCMD=fakeroot
DEBUILD_LINTIAN=yes
DEBUILD_LINTIAN_OPTS="-i -I --pedantic --show-overrides"

I use to build the package:
[1] $ debuild

Thanks for your help :)
Leonardo.

[1] http://www.debian.org/doc/manuals/maint-guide/build.en.html#debuild
diff -u debian_1/changelog debian_2/changelog
--- debian_1/changelog	2011-09-04 21:57:18.000000000 -0430
+++ debian_2/changelog	2011-10-05 17:40:45.000000000 -0430
@@ -1,3 +1,20 @@
+decibel-audio-player (1.08-1) unstable; urgency=low
+
+  * New upstream release.
+  * New maintainer (Closes: #614275).
+  * debian/control:
+    - Standards-Version is 3.9.2, no changes needed.
+    - Add X-Python-Version.
+    - Remove Build-Depends-Indep.
+    - Add python-imaging to depends. Closes: #629031.
+    - Recommend gstreamer0.10-alsa. Closes: #539802.
+  * Change from python-support to dh_python2.
+  * Use debhelper 8.
+  * Removed 01_desktop_file_exec_F.patch completely from debian/patches,
+    fixed upstream now.
+
+ -- Leonardo Marín <leojmarin@gmail.com>  Tue, 04 Oct 2011 16:31:51 -0430
+
 decibel-audio-player (1.06-1) experimental; urgency=low
 
   * New upstream release.
diff -u debian_1/compat debian_2/compat
--- debian_1/compat	2011-09-04 21:57:18.000000000 -0430
+++ debian_2/compat	2011-09-09 20:08:23.000000000 -0430
@@ -1 +1 @@
-7
+8
diff -u debian_1/control debian_2/control
--- debian_1/control	2011-09-04 21:57:18.000000000 -0430
+++ debian_2/control	2011-10-05 17:05:45.000000000 -0430
@@ -1,14 +1,14 @@
 Source: decibel-audio-player
 Section: sound
 Priority: optional
-Maintainer: Emilio Pozuelo Monfort <pochu@debian.org>
+Maintainer: Leonardo Marín <leojmarin@gmail.com>
 Uploaders: Python Applications Packaging Team <python-apps-team@lists.alioth.debian.org>
-Build-Depends: debhelper (>= 7.0.50~)
-Build-Depends-Indep: python (>=2.4), python-support
-Standards-Version: 3.9.1
+Build-Depends: debhelper (>= 8.0.0), python (>= 2.6.6-3~)
+Standards-Version: 3.9.2
 Homepage: http://decibel.silent-blade.org/
 Vcs-Svn: svn://svn.debian.org/python-apps/packages/decibel-audio-player/trunk/
 Vcs-Browser: http://svn.debian.org/viewsvn/python-apps/packages/decibel-audio-player/trunk/
+X-Python-Version: >= 2.5
 
 Package: decibel-audio-player
 Architecture: all
@@ -18,10 +18,12 @@
          python-glade2 (>=2.6.3-2),
          python-mutagen (>= 1.10),
          python-gst0.10 (>=0.10),
+         python-imaging (>=1.1.6),
          python-dbus,
          gstreamer0.10-plugins-base,
          gstreamer0.10-plugins-good
 Recommends: gstreamer0.10-plugins-ugly,
+            gstreamer0.10-alsa,
             python-notify (>=0.1),
             python-gnome2,
             python-gnomekeyring,
diff -u debian_1/copyright debian_2/copyright
--- debian_1/copyright	2011-09-04 21:57:18.000000000 -0430
+++ debian_2/copyright	2011-10-16 22:39:12.000000000 -0430
@@ -1,6 +1,9 @@
 This package was debianized by Emilio Pozuelo Monfort <pochu@ubuntu.com> on
 Wed, 23 May 2007 21:43:12 +0200.
 
+As of October, 2011, package maintenance was taken over by Leonardo
+Marín <leojmarin@gmail.com>.
+
 It was downloaded from http://decibel.silent-blade.org/index.php?n=Main.Download
 
 Upstream Author:
@@ -41,5 +44,5 @@
 
 -------------------------------------------
 
-The Debian packaging is Copyright © 2007-2009, Emilio Pozuelo Monfort <pochu@ubuntu.com> and
-is licensed under the GPL, see above.
+The Debian packaging is Copyright © 2007-2009, Emilio Pozuelo Monfort <pochu@ubuntu.com>,
+(C) 2011 Leonardo Marín <leojmarin@gmail.com> and is licensed under the GPL, see above.
Subdirectorios comunes: debian_1/patches y debian_2/patches
diff -u debian_1/rules debian_2/rules
--- debian_1/rules	2011-09-04 21:57:18.000000000 -0430
+++ debian_2/rules	2011-09-19 17:32:31.000000000 -0430
@@ -1,7 +1,7 @@
 #!/usr/bin/make -f
 
 %:
-	dh $@
+	dh $@ --with python2
 
 override_dh_auto_install:
 	dh_auto_install -- prefix=/usr
Subdirectorios comunes: debian_1/source y debian_2/source
Subdirectorios comunes: debian_1/.svn y debian_2/.svn
 dpkg-buildpackage -rfakeroot -D -us -uc
dpkg-buildpackage: paquete fuente decibel-audio-player
dpkg-buildpackage: versión de las fuentes 1.08-1
dpkg-buildpackage: fuentes modificadas por Leonardo Marín <leojmarin@gmail.com>
 dpkg-source --before-build decibel-audio-player-1.08
dpkg-buildpackage: arquitectura del sistema i386
dpkg-checkbuilddeps: aviso: no se puede analizar la dependencia libobasis35-en_us
dpkg-checkbuilddeps: aviso: no se puede analizar la dependencia libobasis35-en_us-calc
dpkg-checkbuilddeps: aviso: no se puede analizar la dependencia libobasis35-en_us-res
dpkg-checkbuilddeps: aviso: no se puede analizar la dependencia libobasis35-en_us-writer
dpkg-checkbuilddeps: aviso: no se puede analizar la dependencia libobasis35-en_us-math
dpkg-checkbuilddeps: aviso: no se puede analizar la dependencia libobasis35-en_us-base
 fakeroot debian/rules clean
dh clean --with python2
   dh_testdir
   dh_auto_clean
make[1]: se ingresa al directorio `/home/ljmarin/Decibel/decibel-audio-player-1.08'
make -C po clean
make[2]: se ingresa al directorio `/home/ljmarin/Decibel/decibel-audio-player-1.08/po'
rm -f ../res/AudioCD.ui.h ../res/Authentication.ui.h ../res/AutoShuffle.ui.h ../res/Covers.ui.h ../res/DesktopNotification.ui.h ../res/Equalizer.ui.h ../res/FileExplorer.ui.h ../res/HelpDlg.ui.h ../res/IMStatus.ui.h ../res/Library.ui.h ../res/MainWindow.ui.h ../res/Preferences.ui.h ../res/Progress.ui.h ../res/SelectPath.ui.h ../res/StatusFile.ui.h ../res/StatusIconMenu.ui.h ../res/Twitter.ui.h
rm -f ../locale/ar/LC_MESSAGES/decibel-audio-player.mo ../locale/bg/LC_MESSAGES/decibel-audio-player.mo ../locale/bs/LC_MESSAGES/decibel-audio-player.mo ../locale/ca/LC_MESSAGES/decibel-audio-player.mo ../locale/cs/LC_MESSAGES/decibel-audio-player.mo ../locale/da/LC_MESSAGES/decibel-audio-player.mo ../locale/de/LC_MESSAGES/decibel-audio-player.mo ../locale/el/LC_MESSAGES/decibel-audio-player.mo ../locale/en_GB/LC_MESSAGES/decibel-audio-player.mo ../locale/eo/LC_MESSAGES/decibel-audio-player.mo ../locale/es/LC_MESSAGES/decibel-audio-player.mo ../locale/fa/LC_MESSAGES/decibel-audio-player.mo ../locale/fr/LC_MESSAGES/decibel-audio-player.mo ../locale/ga/LC_MESSAGES/decibel-audio-player.mo ../locale/he/LC_MESSAGES/decibel-audio-player.mo ../locale/hr/LC_MESSAGES/decibel-audio-player.mo ../locale/hu/LC_MESSAGES/decibel-audio-player.mo ../locale/it/LC_MESSAGES/decibel-audio-player.mo ../locale/ja/LC_MESSAGES/decibel-audio-player.mo ../locale/kk/LC_MESSAGES/decibel-audio-player.mo ../locale/ko/LC_MESSAGES/decibel-audio-player.mo ../locale/nb/LC_MESSAGES/decibel-audio-player.mo ../locale/nl/LC_MESSAGES/decibel-audio-player.mo ../locale/nn/LC_MESSAGES/decibel-audio-player.mo ../locale/pl/LC_MESSAGES/decibel-audio-player.mo ../locale/pt_BR/LC_MESSAGES/decibel-audio-player.mo ../locale/pt/LC_MESSAGES/decibel-audio-player.mo ../locale/ro/LC_MESSAGES/decibel-audio-player.mo ../locale/ru/LC_MESSAGES/decibel-audio-player.mo ../locale/sl/LC_MESSAGES/decibel-audio-player.mo ../locale/sr/LC_MESSAGES/decibel-audio-player.mo ../locale/sv/LC_MESSAGES/decibel-audio-player.mo ../locale/tr/LC_MESSAGES/decibel-audio-player.mo ../locale/zh_CN/LC_MESSAGES/decibel-audio-player.mo
#rm -f messages.pot
make[2]: se sale del directorio `/home/ljmarin/Decibel/decibel-audio-player-1.08/po'
rm -f src/*.py[co] res/*~ res/*.bak
rm -f decibel-audio-player decibel-audio-player-remote
make[1]: se sale del directorio `/home/ljmarin/Decibel/decibel-audio-player-1.08'
   dh_clean
 dpkg-source -b decibel-audio-player-1.08
dpkg-source: información: usando el formato de fuente «3.0 (quilt)»
dpkg-source: información: construyendo «decibel-audio-player» usando «./decibel-audio-player_1.08.orig.tar.gz», que está presente en el sistema
dpkg-source: información: construyendo decibel-audio-player en decibel-audio-player_1.08-1.debian.tar.gz
dpkg-source: información: construyendo decibel-audio-player en decibel-audio-player_1.08-1.dsc
 debian/rules build
dh build --with python2
   dh_testdir
   dh_auto_configure
   dh_auto_build
make[1]: se ingresa al directorio `/home/ljmarin/Decibel/decibel-audio-player-1.08'
Usage:
make		- not used
make clean	- removes temporary data
make install	- installs data
make uninstall	- uninstalls data
make help	- prints this help

make[1]: se sale del directorio `/home/ljmarin/Decibel/decibel-audio-player-1.08'
   dh_auto_test
 fakeroot debian/rules binary
dh binary --with python2
   dh_testroot
   dh_prep
   dh_installdirs
   debian/rules override_dh_auto_install
make[1]: se ingresa al directorio `/home/ljmarin/Decibel/decibel-audio-player-1.08'
dh_auto_install -- prefix=/usr
make[2]: se ingresa al directorio `/home/ljmarin/Decibel/decibel-audio-player-1.08'
cat start.sh | sed -e 's!prefix!/home/ljmarin/Decibel/decibel-audio-player-1.08/debian/decibel-audio-player/usr!g' > decibel-audio-player;
cat start-remote.sh | sed -e 's!prefix!/home/ljmarin/Decibel/decibel-audio-player-1.08/debian/decibel-audio-player/usr!g' > decibel-audio-player-remote;
echo /home/ljmarin/Decibel/decibel-audio-player-1.08/debian/decibel-audio-player/usr
/home/ljmarin/Decibel/decibel-audio-player-1.08/debian/decibel-audio-player/usr
install -m 755 -d /home/ljmarin/Decibel/decibel-audio-player-1.08/debian/decibel-audio-player/usr/bin /home/ljmarin/Decibel/decibel-audio-player-1.08/debian/decibel-audio-player/usr/share/man/man1 /home/ljmarin/Decibel/decibel-audio-player-1.08/debian/decibel-audio-player/usr/share/decibel-audio-player /home/ljmarin/Decibel/decibel-audio-player-1.08/debian/decibel-audio-player/usr/share/decibel-audio-player/src /home/ljmarin/Decibel/decibel-audio-player-1.08/debian/decibel-audio-player/usr/share/decibel-audio-player/res /home/ljmarin/Decibel/decibel-audio-player-1.08/debian/decibel-audio-player/usr/share/applications /home/ljmarin/Decibel/decibel-audio-player-1.08/debian/decibel-audio-player/usr/share/decibel-audio-player/pix /home/ljmarin/Decibel/decibel-audio-player-1.08/debian/decibel-audio-player/usr/share/pixmaps
install -m 755 -d /home/ljmarin/Decibel/decibel-audio-player-1.08/debian/decibel-audio-player/usr/share/decibel-audio-player/src/gui
install -m 755 -d /home/ljmarin/Decibel/decibel-audio-player-1.08/debian/decibel-audio-player/usr/share/decibel-audio-player/src/media
install -m 755 -d /home/ljmarin/Decibel/decibel-audio-player-1.08/debian/decibel-audio-player/usr/share/decibel-audio-player/src/media/format
install -m 755 -d /home/ljmarin/Decibel/decibel-audio-player-1.08/debian/decibel-audio-player/usr/share/decibel-audio-player/src/media/track
install -m 755 -d /home/ljmarin/Decibel/decibel-audio-player-1.08/debian/decibel-audio-player/usr/share/decibel-audio-player/src/tools
install -m 755 -d /home/ljmarin/Decibel/decibel-audio-player-1.08/debian/decibel-audio-player/usr/share/decibel-audio-player/src/modules
install -m 644 src/*.py /home/ljmarin/Decibel/decibel-audio-player-1.08/debian/decibel-audio-player/usr/share/decibel-audio-player/src
install -m 644 src/gui/*.py /home/ljmarin/Decibel/decibel-audio-player-1.08/debian/decibel-audio-player/usr/share/decibel-audio-player/src/gui
install -m 644 src/tools/*.py /home/ljmarin/Decibel/decibel-audio-player-1.08/debian/decibel-audio-player/usr/share/decibel-audio-player/src/tools
install -m 644 src/media/*.py /home/ljmarin/Decibel/decibel-audio-player-1.08/debian/decibel-audio-player/usr/share/decibel-audio-player/src/media
install -m 644 src/media/track/*.py /home/ljmarin/Decibel/decibel-audio-player-1.08/debian/decibel-audio-player/usr/share/decibel-audio-player/src/media/track
install -m 644 src/media/format/*.py /home/ljmarin/Decibel/decibel-audio-player-1.08/debian/decibel-audio-player/usr/share/decibel-audio-player/src/media/format
install -m 644 src/modules/*.py /home/ljmarin/Decibel/decibel-audio-player-1.08/debian/decibel-audio-player/usr/share/decibel-audio-player/src/modules
install -m 644 res/*.ui /home/ljmarin/Decibel/decibel-audio-player-1.08/debian/decibel-audio-player/usr/share/decibel-audio-player/res
install -m 644 doc/decibel-audio-player.1 /home/ljmarin/Decibel/decibel-audio-player-1.08/debian/decibel-audio-player/usr/share/man/man1
install -m 644 doc/decibel-audio-player-remote.1 /home/ljmarin/Decibel/decibel-audio-player-1.08/debian/decibel-audio-player/usr/share/man/man1
install -m 644 pix/*.png /home/ljmarin/Decibel/decibel-audio-player-1.08/debian/decibel-audio-player/usr/share/decibel-audio-player/pix
install -m 644 pix/decibel-audio-player.png /home/ljmarin/Decibel/decibel-audio-player-1.08/debian/decibel-audio-player/usr/share/pixmaps
install -m 644 res/decibel-audio-player.desktop /home/ljmarin/Decibel/decibel-audio-player-1.08/debian/decibel-audio-player/usr/share/applications
if test -L /home/ljmarin/Decibel/decibel-audio-player-1.08/debian/decibel-audio-player/usr/bin/decibel-audio-player; then rm -f /home/ljmarin/Decibel/decibel-audio-player-1.08/debian/decibel-audio-player/usr/bin/decibel-audio-player; fi
install -m 755 decibel-audio-player /home/ljmarin/Decibel/decibel-audio-player-1.08/debian/decibel-audio-player/usr/bin
if test -L /home/ljmarin/Decibel/decibel-audio-player-1.08/debian/decibel-audio-player/usr/bin/decibel-audio-player-remote; then rm -f /home/ljmarin/Decibel/decibel-audio-player-1.08/debian/decibel-audio-player/usr/bin/decibel-audio-player-remote; fi
install -m 755 decibel-audio-player-remote /home/ljmarin/Decibel/decibel-audio-player-1.08/debian/decibel-audio-player/usr/bin
make -C po dist
make[3]: se ingresa al directorio `/home/ljmarin/Decibel/decibel-audio-player-1.08/po'
for pofile in ar.po; do \
		install -m 755 -d ../locale/ar/LC_MESSAGES/;\
		msgconv -t UTF-8 ${pofile} -o ${pofile}_utf8;\
		msgfmt ${pofile}_utf8 -o ../locale/ar/LC_MESSAGES/decibel-audio-player.mo;\
		rm ${pofile}_utf8;\
	done
for pofile in bg.po; do \
		install -m 755 -d ../locale/bg/LC_MESSAGES/;\
		msgconv -t UTF-8 ${pofile} -o ${pofile}_utf8;\
		msgfmt ${pofile}_utf8 -o ../locale/bg/LC_MESSAGES/decibel-audio-player.mo;\
		rm ${pofile}_utf8;\
	done
for pofile in bs.po; do \
		install -m 755 -d ../locale/bs/LC_MESSAGES/;\
		msgconv -t UTF-8 ${pofile} -o ${pofile}_utf8;\
		msgfmt ${pofile}_utf8 -o ../locale/bs/LC_MESSAGES/decibel-audio-player.mo;\
		rm ${pofile}_utf8;\
	done
for pofile in ca.po; do \
		install -m 755 -d ../locale/ca/LC_MESSAGES/;\
		msgconv -t UTF-8 ${pofile} -o ${pofile}_utf8;\
		msgfmt ${pofile}_utf8 -o ../locale/ca/LC_MESSAGES/decibel-audio-player.mo;\
		rm ${pofile}_utf8;\
	done
for pofile in cs.po; do \
		install -m 755 -d ../locale/cs/LC_MESSAGES/;\
		msgconv -t UTF-8 ${pofile} -o ${pofile}_utf8;\
		msgfmt ${pofile}_utf8 -o ../locale/cs/LC_MESSAGES/decibel-audio-player.mo;\
		rm ${pofile}_utf8;\
	done
for pofile in da.po; do \
		install -m 755 -d ../locale/da/LC_MESSAGES/;\
		msgconv -t UTF-8 ${pofile} -o ${pofile}_utf8;\
		msgfmt ${pofile}_utf8 -o ../locale/da/LC_MESSAGES/decibel-audio-player.mo;\
		rm ${pofile}_utf8;\
	done
for pofile in de.po; do \
		install -m 755 -d ../locale/de/LC_MESSAGES/;\
		msgconv -t UTF-8 ${pofile} -o ${pofile}_utf8;\
		msgfmt ${pofile}_utf8 -o ../locale/de/LC_MESSAGES/decibel-audio-player.mo;\
		rm ${pofile}_utf8;\
	done
for pofile in el.po; do \
		install -m 755 -d ../locale/el/LC_MESSAGES/;\
		msgconv -t UTF-8 ${pofile} -o ${pofile}_utf8;\
		msgfmt ${pofile}_utf8 -o ../locale/el/LC_MESSAGES/decibel-audio-player.mo;\
		rm ${pofile}_utf8;\
	done
for pofile in en_GB.po; do \
		install -m 755 -d ../locale/en_GB/LC_MESSAGES/;\
		msgconv -t UTF-8 ${pofile} -o ${pofile}_utf8;\
		msgfmt ${pofile}_utf8 -o ../locale/en_GB/LC_MESSAGES/decibel-audio-player.mo;\
		rm ${pofile}_utf8;\
	done
for pofile in eo.po; do \
		install -m 755 -d ../locale/eo/LC_MESSAGES/;\
		msgconv -t UTF-8 ${pofile} -o ${pofile}_utf8;\
		msgfmt ${pofile}_utf8 -o ../locale/eo/LC_MESSAGES/decibel-audio-player.mo;\
		rm ${pofile}_utf8;\
	done
for pofile in es.po; do \
		install -m 755 -d ../locale/es/LC_MESSAGES/;\
		msgconv -t UTF-8 ${pofile} -o ${pofile}_utf8;\
		msgfmt ${pofile}_utf8 -o ../locale/es/LC_MESSAGES/decibel-audio-player.mo;\
		rm ${pofile}_utf8;\
	done
es.po:258: atención: Los mensajes internacionalizados no deben contener la secuencia de escape `\r'
for pofile in fa.po; do \
		install -m 755 -d ../locale/fa/LC_MESSAGES/;\
		msgconv -t UTF-8 ${pofile} -o ${pofile}_utf8;\
		msgfmt ${pofile}_utf8 -o ../locale/fa/LC_MESSAGES/decibel-audio-player.mo;\
		rm ${pofile}_utf8;\
	done
for pofile in fr.po; do \
		install -m 755 -d ../locale/fr/LC_MESSAGES/;\
		msgconv -t UTF-8 ${pofile} -o ${pofile}_utf8;\
		msgfmt ${pofile}_utf8 -o ../locale/fr/LC_MESSAGES/decibel-audio-player.mo;\
		rm ${pofile}_utf8;\
	done
for pofile in ga.po; do \
		install -m 755 -d ../locale/ga/LC_MESSAGES/;\
		msgconv -t UTF-8 ${pofile} -o ${pofile}_utf8;\
		msgfmt ${pofile}_utf8 -o ../locale/ga/LC_MESSAGES/decibel-audio-player.mo;\
		rm ${pofile}_utf8;\
	done
for pofile in he.po; do \
		install -m 755 -d ../locale/he/LC_MESSAGES/;\
		msgconv -t UTF-8 ${pofile} -o ${pofile}_utf8;\
		msgfmt ${pofile}_utf8 -o ../locale/he/LC_MESSAGES/decibel-audio-player.mo;\
		rm ${pofile}_utf8;\
	done
for pofile in hr.po; do \
		install -m 755 -d ../locale/hr/LC_MESSAGES/;\
		msgconv -t UTF-8 ${pofile} -o ${pofile}_utf8;\
		msgfmt ${pofile}_utf8 -o ../locale/hr/LC_MESSAGES/decibel-audio-player.mo;\
		rm ${pofile}_utf8;\
	done
for pofile in hu.po; do \
		install -m 755 -d ../locale/hu/LC_MESSAGES/;\
		msgconv -t UTF-8 ${pofile} -o ${pofile}_utf8;\
		msgfmt ${pofile}_utf8 -o ../locale/hu/LC_MESSAGES/decibel-audio-player.mo;\
		rm ${pofile}_utf8;\
	done
for pofile in it.po; do \
		install -m 755 -d ../locale/it/LC_MESSAGES/;\
		msgconv -t UTF-8 ${pofile} -o ${pofile}_utf8;\
		msgfmt ${pofile}_utf8 -o ../locale/it/LC_MESSAGES/decibel-audio-player.mo;\
		rm ${pofile}_utf8;\
	done
for pofile in ja.po; do \
		install -m 755 -d ../locale/ja/LC_MESSAGES/;\
		msgconv -t UTF-8 ${pofile} -o ${pofile}_utf8;\
		msgfmt ${pofile}_utf8 -o ../locale/ja/LC_MESSAGES/decibel-audio-player.mo;\
		rm ${pofile}_utf8;\
	done
for pofile in kk.po; do \
		install -m 755 -d ../locale/kk/LC_MESSAGES/;\
		msgconv -t UTF-8 ${pofile} -o ${pofile}_utf8;\
		msgfmt ${pofile}_utf8 -o ../locale/kk/LC_MESSAGES/decibel-audio-player.mo;\
		rm ${pofile}_utf8;\
	done
for pofile in ko.po; do \
		install -m 755 -d ../locale/ko/LC_MESSAGES/;\
		msgconv -t UTF-8 ${pofile} -o ${pofile}_utf8;\
		msgfmt ${pofile}_utf8 -o ../locale/ko/LC_MESSAGES/decibel-audio-player.mo;\
		rm ${pofile}_utf8;\
	done
for pofile in nb.po; do \
		install -m 755 -d ../locale/nb/LC_MESSAGES/;\
		msgconv -t UTF-8 ${pofile} -o ${pofile}_utf8;\
		msgfmt ${pofile}_utf8 -o ../locale/nb/LC_MESSAGES/decibel-audio-player.mo;\
		rm ${pofile}_utf8;\
	done
for pofile in nl.po; do \
		install -m 755 -d ../locale/nl/LC_MESSAGES/;\
		msgconv -t UTF-8 ${pofile} -o ${pofile}_utf8;\
		msgfmt ${pofile}_utf8 -o ../locale/nl/LC_MESSAGES/decibel-audio-player.mo;\
		rm ${pofile}_utf8;\
	done
for pofile in nn.po; do \
		install -m 755 -d ../locale/nn/LC_MESSAGES/;\
		msgconv -t UTF-8 ${pofile} -o ${pofile}_utf8;\
		msgfmt ${pofile}_utf8 -o ../locale/nn/LC_MESSAGES/decibel-audio-player.mo;\
		rm ${pofile}_utf8;\
	done
for pofile in pl.po; do \
		install -m 755 -d ../locale/pl/LC_MESSAGES/;\
		msgconv -t UTF-8 ${pofile} -o ${pofile}_utf8;\
		msgfmt ${pofile}_utf8 -o ../locale/pl/LC_MESSAGES/decibel-audio-player.mo;\
		rm ${pofile}_utf8;\
	done
pl.po:268: atención: Los mensajes internacionalizados no deben contener la secuencia de escape `\r'
for pofile in pt_BR.po; do \
		install -m 755 -d ../locale/pt_BR/LC_MESSAGES/;\
		msgconv -t UTF-8 ${pofile} -o ${pofile}_utf8;\
		msgfmt ${pofile}_utf8 -o ../locale/pt_BR/LC_MESSAGES/decibel-audio-player.mo;\
		rm ${pofile}_utf8;\
	done
for pofile in pt.po; do \
		install -m 755 -d ../locale/pt/LC_MESSAGES/;\
		msgconv -t UTF-8 ${pofile} -o ${pofile}_utf8;\
		msgfmt ${pofile}_utf8 -o ../locale/pt/LC_MESSAGES/decibel-audio-player.mo;\
		rm ${pofile}_utf8;\
	done
for pofile in ro.po; do \
		install -m 755 -d ../locale/ro/LC_MESSAGES/;\
		msgconv -t UTF-8 ${pofile} -o ${pofile}_utf8;\
		msgfmt ${pofile}_utf8 -o ../locale/ro/LC_MESSAGES/decibel-audio-player.mo;\
		rm ${pofile}_utf8;\
	done
for pofile in ru.po; do \
		install -m 755 -d ../locale/ru/LC_MESSAGES/;\
		msgconv -t UTF-8 ${pofile} -o ${pofile}_utf8;\
		msgfmt ${pofile}_utf8 -o ../locale/ru/LC_MESSAGES/decibel-audio-player.mo;\
		rm ${pofile}_utf8;\
	done
for pofile in sl.po; do \
		install -m 755 -d ../locale/sl/LC_MESSAGES/;\
		msgconv -t UTF-8 ${pofile} -o ${pofile}_utf8;\
		msgfmt ${pofile}_utf8 -o ../locale/sl/LC_MESSAGES/decibel-audio-player.mo;\
		rm ${pofile}_utf8;\
	done
for pofile in sr.po; do \
		install -m 755 -d ../locale/sr/LC_MESSAGES/;\
		msgconv -t UTF-8 ${pofile} -o ${pofile}_utf8;\
		msgfmt ${pofile}_utf8 -o ../locale/sr/LC_MESSAGES/decibel-audio-player.mo;\
		rm ${pofile}_utf8;\
	done
for pofile in sv.po; do \
		install -m 755 -d ../locale/sv/LC_MESSAGES/;\
		msgconv -t UTF-8 ${pofile} -o ${pofile}_utf8;\
		msgfmt ${pofile}_utf8 -o ../locale/sv/LC_MESSAGES/decibel-audio-player.mo;\
		rm ${pofile}_utf8;\
	done
sv.po:191: atención: Los mensajes internacionalizados no deben contener la secuencia de escape `\r'
for pofile in tr.po; do \
		install -m 755 -d ../locale/tr/LC_MESSAGES/;\
		msgconv -t UTF-8 ${pofile} -o ${pofile}_utf8;\
		msgfmt ${pofile}_utf8 -o ../locale/tr/LC_MESSAGES/decibel-audio-player.mo;\
		rm ${pofile}_utf8;\
	done
for pofile in zh_CN.po; do \
		install -m 755 -d ../locale/zh_CN/LC_MESSAGES/;\
		msgconv -t UTF-8 ${pofile} -o ${pofile}_utf8;\
		msgfmt ${pofile}_utf8 -o ../locale/zh_CN/LC_MESSAGES/decibel-audio-player.mo;\
		rm ${pofile}_utf8;\
	done
make[3]: se sale del directorio `/home/ljmarin/Decibel/decibel-audio-player-1.08/po'
for lang in `find locale/ -maxdepth 1 -mindepth 1 -type d -printf "%f "`; do \
		install -m 755 -d /home/ljmarin/Decibel/decibel-audio-player-1.08/debian/decibel-audio-player/usr/share/locale/$lang/LC_MESSAGES;\
		install -m 644 locale/$lang/LC_MESSAGES/decibel-audio-player.mo /home/ljmarin/Decibel/decibel-audio-player-1.08/debian/decibel-audio-player/usr/share/locale/$lang/LC_MESSAGES/; \
	done
make[2]: se sale del directorio `/home/ljmarin/Decibel/decibel-audio-player-1.08'
make[1]: se sale del directorio `/home/ljmarin/Decibel/decibel-audio-player-1.08'
   dh_install
   dh_installdocs
   debian/rules override_dh_installchangelogs
make[1]: se ingresa al directorio `/home/ljmarin/Decibel/decibel-audio-player-1.08'
dh_installchangelogs doc/ChangeLog
make[1]: se sale del directorio `/home/ljmarin/Decibel/decibel-audio-player-1.08'
   dh_installexamples
   dh_installman
   dh_installcatalogs
   dh_installcron
   dh_installdebconf
   dh_installemacsen
   dh_installifupdown
   dh_installinfo
   dh_installinit
   dh_installmenu
   dh_installmime
   dh_installmodules
   dh_installlogcheck
   dh_installlogrotate
   dh_installpam
   dh_installppp
   dh_installudev
   dh_installwm
   dh_installxfonts
   dh_installgsettings
   dh_bugfiles
   dh_ucf
   dh_lintian
   dh_gconf
   dh_icons
   dh_perl
   dh_python2
   dh_usrlocal
   dh_link
   dh_compress
   dh_fixperms
   dh_installdeb
   dh_gencontrol
   dh_md5sums
   dh_builddeb
dpkg-deb: construyendo el paquete `decibel-audio-player' en `../decibel-audio-player_1.08-1_all.deb'.
 dpkg-genchanges  >../decibel-audio-player_1.08-1_i386.changes
dpkg-genchanges: incluyendo el código fuente completo en la subida
 dpkg-source --after-build decibel-audio-player-1.08
dpkg-buildpackage: subida completa (se incluye la fuente original)
Now running lintian...
P: decibel-audio-player: experimental-to-unstable-without-comment
N: 
N:    The previous version of this package had a distribution of experimental,
N:    this version has a distribution of unstable, and there's apparently no
N:    comment about the change of distributions (Lintian looks for the phrase
N:    "to unstable"). This may indicate a mistake in setting the distribution
N:    and accidentally uploading to unstable a package intended for
N:    experimental.
N:    
N:    Severity: pedantic, Certainty: possible
N:    
N:    Check: changelog-file, Type: binary
N: 
Finished running lintian.
Now signing changes and any dsc files...
 signfile decibel-audio-player_1.08-1.dsc 696B8C85

Attachment: pgpVaoFz_fh2Y.pgp
Description: PGP signature


Reply to: