r50550 - in /desktop/unstable/totem-pl-parser/debian: changelog control control.in docs rules

ah at users.alioth.debian.org ah at users.alioth.debian.org
Wed Sep 14 13:47:53 UTC 2016


Author: ah
Date: Wed Sep 14 13:47:50 2016
New Revision: 50550

URL: http://svn.debian.org/wsvn/pkg-gnome/?sc=1&rev=50550
Log:
Convert from cdbs to dh.

Added:
    desktop/unstable/totem-pl-parser/debian/docs
Modified:
    desktop/unstable/totem-pl-parser/debian/changelog
    desktop/unstable/totem-pl-parser/debian/control
    desktop/unstable/totem-pl-parser/debian/control.in
    desktop/unstable/totem-pl-parser/debian/rules

Modified: desktop/unstable/totem-pl-parser/debian/changelog
URL: http://svn.debian.org/wsvn/pkg-gnome/desktop/unstable/totem-pl-parser/debian/changelog?rev=50550&op=diff
==============================================================================
--- desktop/unstable/totem-pl-parser/debian/changelog	[utf-8] (original)
+++ desktop/unstable/totem-pl-parser/debian/changelog	[utf-8] Wed Sep 14 13:47:50 2016
@@ -1,3 +1,9 @@
+totem-pl-parser (3.10.6-5) UNRELEASED; urgency=medium
+
+  * Convert from cdbs to dh.
+
+ -- Andreas Henriksson <andreas at fatal.se>  Wed, 14 Sep 2016 15:34:44 +0200
+
 totem-pl-parser (3.10.6-4) unstable; urgency=medium
 
   * debian/rules: set libexecdir to a (multiarched) so-versioned path

Modified: desktop/unstable/totem-pl-parser/debian/control
URL: http://svn.debian.org/wsvn/pkg-gnome/desktop/unstable/totem-pl-parser/debian/control?rev=50550&op=diff
==============================================================================
--- desktop/unstable/totem-pl-parser/debian/control	[utf-8] (original)
+++ desktop/unstable/totem-pl-parser/debian/control	[utf-8] Wed Sep 14 13:47:50 2016
@@ -6,9 +6,8 @@
 Section: libs
 Priority: optional
 Maintainer: Debian GNOME Maintainers <pkg-gnome-maintainers at lists.alioth.debian.org>
-Uploaders: Andreas Henriksson <andreas at fatal.se>, Emilio Pozuelo Monfort <pochu at debian.org>, Michael Biebl <biebl at debian.org>, Sjoerd Simons <sjoerd at debian.org>
+Uploaders: Andreas Henriksson <andreas at fatal.se>, Emilio Pozuelo Monfort <pochu at debian.org>, Michael Biebl <biebl at debian.org>
 Build-Depends: autotools-dev,
-               cdbs (>= 0.4.93),
                debhelper (>= 9),
                dh-autoreconf,
                gnome-pkg-tools,
@@ -25,7 +24,7 @@
                libsoup-gnome2.4-dev (>= 2.43.0),
                libxml-parser-perl,
                libxml2-dev
-Standards-Version: 3.9.6
+Standards-Version: 3.9.7
 Vcs-Svn: svn://anonscm.debian.org/pkg-gnome/desktop/unstable/totem-pl-parser
 Vcs-Browser: https://anonscm.debian.org/viewvc/pkg-gnome/desktop/unstable/totem-pl-parser
 

Modified: desktop/unstable/totem-pl-parser/debian/control.in
URL: http://svn.debian.org/wsvn/pkg-gnome/desktop/unstable/totem-pl-parser/debian/control.in?rev=50550&op=diff
==============================================================================
--- desktop/unstable/totem-pl-parser/debian/control.in	[utf-8] (original)
+++ desktop/unstable/totem-pl-parser/debian/control.in	[utf-8] Wed Sep 14 13:47:50 2016
@@ -4,7 +4,6 @@
 Maintainer: Debian GNOME Maintainers <pkg-gnome-maintainers at lists.alioth.debian.org>
 Uploaders: @GNOME_TEAM@
 Build-Depends: autotools-dev,
-               cdbs (>= 0.4.93),
                debhelper (>= 9),
                dh-autoreconf,
                gnome-pkg-tools,

Added: desktop/unstable/totem-pl-parser/debian/docs
URL: http://svn.debian.org/wsvn/pkg-gnome/desktop/unstable/totem-pl-parser/debian/docs?rev=50550&op=file
==============================================================================
--- desktop/unstable/totem-pl-parser/debian/docs	(added)
+++ desktop/unstable/totem-pl-parser/debian/docs	[utf-8] Wed Sep 14 13:47:50 2016
@@ -0,0 +1,3 @@
+AUTHORS
+NEWS
+README

Modified: desktop/unstable/totem-pl-parser/debian/rules
URL: http://svn.debian.org/wsvn/pkg-gnome/desktop/unstable/totem-pl-parser/debian/rules?rev=50550&op=diff
==============================================================================
--- desktop/unstable/totem-pl-parser/debian/rules	[utf-8] (original)
+++ desktop/unstable/totem-pl-parser/debian/rules	[utf-8] Wed Sep 14 13:47:50 2016
@@ -1,17 +1,23 @@
 #!/usr/bin/make -f
 
-include /usr/share/cdbs/1/rules/debhelper.mk
-include /usr/share/cdbs/1/class/gnome.mk
-include /usr/share/gnome-pkg-tools/1/rules/uploaders.mk
-include /usr/share/cdbs/1/rules/autoreconf.mk
 -include /usr/share/gnome-pkg-tools/1/rules/gnome-get-source.mk
 
 libtotem-plparserN := $(shell sed -rn 's/^Package:[[:space:]]*(libtotem-plparser[0-9]+)[[:space:]]*$$/\1/p' debian/control)
 
-DEB_DH_MAKESHLIBS_ARGS_$(libtotem-plparserN) += -V -- -c4
+%:
+	dh $@ --with gnome,gir,autoreconf
 
-DEB_CONFIGURE_EXTRA_FLAGS += --libdir=\$${prefix}/lib/$(DEB_HOST_MULTIARCH) \
-                             --libexecdir=\$${libdir}/$(libtotem-plparserN) \
-                             --enable-gtk-doc
+override_dh_auto_configure:
+	dh_auto_configure -- \
+		--libexecdir=\$${libdir}/$(libtotem-plparserN) \
+		--enable-gtk-doc
 
-DEB_DH_AUTORECONF_ARGS += ./autogen.sh
+override_dh_autoreconf:
+	dh_autoreconf ./autogen.sh
+
+override_dh_makeshlibs:
+	dh_makeshlibs -p $(libtotem-plparserN) -V -- -c4
+	dh_makeshlibs --remaining-packages
+
+override_dh_auto_test:
+




More information about the pkg-gnome-commits mailing list