r2979 - in vdr/vdr-genindex/trunk: . debian

Thomas Günther tom-guest at costa.debian.org
Fri Jun 23 00:03:09 UTC 2006


Author: tom-guest
Date: 2006-06-23 00:03:08 +0000 (Fri, 23 Jun 2006)
New Revision: 2979

Added:
   vdr/vdr-genindex/trunk/debian/
   vdr/vdr-genindex/trunk/debian/changelog
   vdr/vdr-genindex/trunk/debian/compat
   vdr/vdr-genindex/trunk/debian/control
   vdr/vdr-genindex/trunk/debian/copyright
   vdr/vdr-genindex/trunk/debian/docs
   vdr/vdr-genindex/trunk/debian/install
   vdr/vdr-genindex/trunk/debian/rules
   vdr/vdr-genindex/trunk/debian/watch
Log:
Load newtrunk into vdr/vdr-genindex/trunk.


Added: vdr/vdr-genindex/trunk/debian/changelog
===================================================================
--- vdr/vdr-genindex/trunk/debian/changelog	2006-06-23 00:02:52 UTC (rev 2978)
+++ vdr/vdr-genindex/trunk/debian/changelog	2006-06-23 00:03:08 UTC (rev 2979)
@@ -0,0 +1,6 @@
+vdr-genindex (0.1.3-1) unstable; urgency=low
+
+  * Initial Release.
+
+ -- Debian VDR Team <pkg-vdr-dvb-devel at lists.alioth.debian.org>  Sun, 18 Jun 2006 20:24:40 +0200
+

Added: vdr/vdr-genindex/trunk/debian/compat
===================================================================
--- vdr/vdr-genindex/trunk/debian/compat	2006-06-23 00:02:52 UTC (rev 2978)
+++ vdr/vdr-genindex/trunk/debian/compat	2006-06-23 00:03:08 UTC (rev 2979)
@@ -0,0 +1 @@
+4

Added: vdr/vdr-genindex/trunk/debian/control
===================================================================
--- vdr/vdr-genindex/trunk/debian/control	2006-06-23 00:02:52 UTC (rev 2978)
+++ vdr/vdr-genindex/trunk/debian/control	2006-06-23 00:03:08 UTC (rev 2979)
@@ -0,0 +1,14 @@
+Source: vdr-genindex
+Section: misc
+Priority: extra
+Maintainer: Debian VDR Team <pkg-vdr-dvb-devel at lists.alioth.debian.org>
+Uploaders: Thomas Günther <tom at toms-cafe.de>, Tobias Grimm <tg at e-tobi.net>, Thomas Schmidt <tschmidt at debian.org>
+Build-Depends: debhelper (>= 4.0.0)
+Standards-Version: 3.6.2
+
+Package: vdr-genindex
+Architecture: any
+Depends: ${shlibs:Depends}
+Description: Tool to generate a VDR index file
+ Usefull if you lost the orginal index file or if you want to create an index
+ file for some other video stuff.

Added: vdr/vdr-genindex/trunk/debian/copyright
===================================================================
--- vdr/vdr-genindex/trunk/debian/copyright	2006-06-23 00:02:52 UTC (rev 2978)
+++ vdr/vdr-genindex/trunk/debian/copyright	2006-06-23 00:03:08 UTC (rev 2979)
@@ -0,0 +1,11 @@
+This package was debianized by Thomas Günther <tom at toms-cafe.de> on
+Sun, 18 Jun 2006 20:24:40 +0200.
+
+It was downloaded from http://www.muempf.de
+
+Copyright Holder: Stefan Hülswitt <s.huelswitt at gmx.de>
+
+License:
+
+It may be redistributed under the terms of the GNU GPL, Version 2
+found on Debian systems in the file /usr/share/common-licenses/GPL .

Added: vdr/vdr-genindex/trunk/debian/docs
===================================================================
--- vdr/vdr-genindex/trunk/debian/docs	2006-06-23 00:02:52 UTC (rev 2978)
+++ vdr/vdr-genindex/trunk/debian/docs	2006-06-23 00:03:08 UTC (rev 2979)
@@ -0,0 +1 @@
+README

Added: vdr/vdr-genindex/trunk/debian/install
===================================================================
--- vdr/vdr-genindex/trunk/debian/install	2006-06-23 00:02:52 UTC (rev 2978)
+++ vdr/vdr-genindex/trunk/debian/install	2006-06-23 00:03:08 UTC (rev 2979)
@@ -0,0 +1 @@
+genindex                usr/bin/

Added: vdr/vdr-genindex/trunk/debian/rules
===================================================================
--- vdr/vdr-genindex/trunk/debian/rules	2006-06-23 00:02:52 UTC (rev 2978)
+++ vdr/vdr-genindex/trunk/debian/rules	2006-06-23 00:03:08 UTC (rev 2979)
@@ -0,0 +1,86 @@
+#!/usr/bin/make -f
+# -*- makefile -*-
+# Sample debian/rules that uses debhelper.
+# This file was originally written by Joey Hess and Craig Small.
+# As a special exception, when this file is copied by dh-make into a
+# dh-make output file, you may use that output file without restriction.
+# This special exception was added by Craig Small in version 0.37 of dh-make.
+
+# Uncomment this to turn on verbose mode.
+#export DH_VERBOSE=1
+
+
+
+
+CFLAGS = -Wall -g
+
+ifneq (,$(findstring noopt,$(DEB_BUILD_OPTIONS)))
+	CFLAGS += -O0
+else
+	CFLAGS += -O2
+endif
+
+configure: configure-stamp
+configure-stamp:
+	dh_testdir
+	touch configure-stamp
+
+
+build: build-stamp
+
+build-stamp: configure-stamp 
+	dh_testdir
+	$(MAKE)
+	touch build-stamp
+
+clean:
+	dh_testdir
+	dh_testroot
+	rm -f build-stamp configure-stamp
+	-$(MAKE) clean
+	dh_clean 
+
+install: build
+	dh_testdir
+	dh_testroot
+	dh_clean -k 
+	dh_installdirs
+
+
+# Build architecture-independent files here.
+binary-indep: build install
+# We have nothing to do by default.
+
+# Build architecture-dependent files here.
+binary-arch: build install
+	dh_testdir
+	dh_testroot
+	dh_installchangelogs 
+	dh_installdocs
+	dh_installexamples
+	dh_install
+#	dh_installmenu
+#	dh_installdebconf	
+#	dh_installlogrotate
+#	dh_installemacsen
+#	dh_installpam
+#	dh_installmime
+#	dh_installinit
+#	dh_installcron
+#	dh_installinfo
+	dh_installman
+	dh_link
+	dh_strip
+	dh_compress
+	dh_fixperms
+#	dh_perl
+#	dh_python
+#	dh_makeshlibs
+	dh_installdeb
+	dh_shlibdeps
+	dh_gencontrol
+	dh_md5sums
+	dh_builddeb
+
+binary: binary-indep binary-arch
+.PHONY: build clean binary-indep binary-arch binary install configure


Property changes on: vdr/vdr-genindex/trunk/debian/rules
___________________________________________________________________
Name: svn:executable
   + *

Added: vdr/vdr-genindex/trunk/debian/watch
===================================================================
--- vdr/vdr-genindex/trunk/debian/watch	2006-06-23 00:02:52 UTC (rev 2978)
+++ vdr/vdr-genindex/trunk/debian/watch	2006-06-23 00:03:08 UTC (rev 2979)
@@ -0,0 +1,2 @@
+version=2
+http://www.muempf.de/down/genindex-(.*)\.tar\.gz




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