r8864 - in /vdr/vdr-plugin-spider/trunk/debian: changelog compat control copyright install rules

tiber-guest at users.alioth.debian.org tiber-guest at users.alioth.debian.org
Wed Apr 6 21:52:43 UTC 2011


Author: tiber-guest
Date: Wed Apr  6 21:52:40 2011
New Revision: 8864

URL: http://svn.debian.org/wsvn/pkg-vdr-dvb/?sc=1&rev=8864
Log:
* Build-depend on vdr-dev >= 1.7.17
* Updated debian/copyright
* Standards-Version: 3.9.1
* Switched to debhelper 7 and dropped cdbs

Modified:
    vdr/vdr-plugin-spider/trunk/debian/changelog
    vdr/vdr-plugin-spider/trunk/debian/compat
    vdr/vdr-plugin-spider/trunk/debian/control
    vdr/vdr-plugin-spider/trunk/debian/copyright
    vdr/vdr-plugin-spider/trunk/debian/install
    vdr/vdr-plugin-spider/trunk/debian/rules

Modified: vdr/vdr-plugin-spider/trunk/debian/changelog
URL: http://svn.debian.org/wsvn/pkg-vdr-dvb/vdr/vdr-plugin-spider/trunk/debian/changelog?rev=8864&op=diff
==============================================================================
--- vdr/vdr-plugin-spider/trunk/debian/changelog (original)
+++ vdr/vdr-plugin-spider/trunk/debian/changelog Wed Apr  6 21:52:40 2011
@@ -1,3 +1,12 @@
+vdr-plugin-spider (0.2.2-5) unstable; urgency=low
+
+  * Build-depend on vdr-dev >= 1.7.17
+  * Updated debian/copyright
+  * Standards-Version: 3.9.1
+  * Switched to debhelper 7 and dropped cdbs
+
+ -- Tobias Grimm <etobi at debian.org>  Wed, 06 Apr 2011 23:48:34 +0200
+
 vdr-plugin-spider (0.2.2-4) unstable; urgency=low
 
   * Build-depend on vdr-dev >= 1.6.0-16

Modified: vdr/vdr-plugin-spider/trunk/debian/compat
URL: http://svn.debian.org/wsvn/pkg-vdr-dvb/vdr/vdr-plugin-spider/trunk/debian/compat?rev=8864&op=diff
==============================================================================
--- vdr/vdr-plugin-spider/trunk/debian/compat (original)
+++ vdr/vdr-plugin-spider/trunk/debian/compat Wed Apr  6 21:52:40 2011
@@ -1,1 +1,1 @@
-5
+7

Modified: vdr/vdr-plugin-spider/trunk/debian/control
URL: http://svn.debian.org/wsvn/pkg-vdr-dvb/vdr/vdr-plugin-spider/trunk/debian/control?rev=8864&op=diff
==============================================================================
--- vdr/vdr-plugin-spider/trunk/debian/control (original)
+++ vdr/vdr-plugin-spider/trunk/debian/control Wed Apr  6 21:52:40 2011
@@ -3,8 +3,8 @@
 Priority: extra
 Maintainer: Debian VDR Team <pkg-vdr-dvb-devel at lists.alioth.debian.org>
 Uploaders: Thomas Günther <tom at toms-cafe.de>, Thomas Schmidt <tschmidt at debian.org>, Tobias Grimm <etobi at debian.org>
-Build-Depends: debhelper (>= 5), cdbs, vdr-dev (>= 1.6.0-16), gettext
-Standards-Version: 3.8.4
+Build-Depends: debhelper (>= 7.0.50~), vdr-dev (>= 1.7.17), gettext
+Standards-Version: 3.9.1
 Vcs-Svn: svn://svn.debian.org/pkg-vdr-dvb/vdr/vdr-plugin-spider/trunk/
 Vcs-Browser: http://svn.debian.org/wsvn/pkg-vdr-dvb/vdr/vdr-plugin-spider/trunk/
 Homepage: http://toms-cafe.de/vdr/spider/

Modified: vdr/vdr-plugin-spider/trunk/debian/copyright
URL: http://svn.debian.org/wsvn/pkg-vdr-dvb/vdr/vdr-plugin-spider/trunk/debian/copyright?rev=8864&op=diff
==============================================================================
--- vdr/vdr-plugin-spider/trunk/debian/copyright (original)
+++ vdr/vdr-plugin-spider/trunk/debian/copyright Wed Apr  6 21:52:40 2011
@@ -16,7 +16,7 @@
     (C) 2004 - 2005 Patrick Maier
 
 Copyright (Debian packaging):
-    (C) 2005 - 2010 Tobias Grimm, Thomas Günther, Thomas Schmidt
+    (C) 2005 - 2011 Tobias Grimm, Thomas Günther, Thomas Schmidt
 
 License:
     This program is free software; you can redistribute it and/or modify

Modified: vdr/vdr-plugin-spider/trunk/debian/install
URL: http://svn.debian.org/wsvn/pkg-vdr-dvb/vdr/vdr-plugin-spider/trunk/debian/install?rev=8864&op=diff
==============================================================================
--- vdr/vdr-plugin-spider/trunk/debian/install (original)
+++ vdr/vdr-plugin-spider/trunk/debian/install Wed Apr  6 21:52:40 2011
@@ -1,3 +1,3 @@
 libvdr-spider.so.*              usr/lib/vdr/plugins/
 spider                          usr/share/vdr-plugin-spider/
-debian/tmp/usr/share/locale
+locale                          usr/share/

Modified: vdr/vdr-plugin-spider/trunk/debian/rules
URL: http://svn.debian.org/wsvn/pkg-vdr-dvb/vdr/vdr-plugin-spider/trunk/debian/rules?rev=8864&op=diff
==============================================================================
--- vdr/vdr-plugin-spider/trunk/debian/rules (original)
+++ vdr/vdr-plugin-spider/trunk/debian/rules Wed Apr  6 21:52:40 2011
@@ -1,18 +1,20 @@
 #!/usr/bin/make -f
 
-include /usr/share/cdbs/1/rules/debhelper.mk
+# Uncomment this to turn on verbose mode.
+#export DH_VERBOSE=1
 
-DEB_INSTALL_CHANGELOGS_ALL = HISTORY
+MAKE_OPTIONS = VDRDIR=/usr/include/vdr LIBDIR=. LOCALEDIR=locale
 
-MAKE_OPTIONS = VDRDIR=/usr/include/vdr LIBDIR=. \
-               LOCALEDIR=debian/tmp/usr/share/locale
+%:
+	dh $@
 
-common-build-arch::
-	$(MAKE) all $(MAKE_OPTIONS)
+override_dh_auto_build:
+	dh_auto_build -- all $(MAKE_OPTIONS)
 
-cleanbuilddir::
+override_dh_auto_clean:
 	$(MAKE) -o .dependencies clean $(MAKE_OPTIONS)
-	rm -f libvdr-*.so.*
+	rm -rf locale libvdr-*.so.*
 
-common-binary-predeb-arch::
+override_dh_gencontrol:
 	sh /usr/share/vdr-dev/dependencies.sh
+	dh_gencontrol




More information about the pkg-vdr-dvb-changes mailing list