diff --git a/packager/debian/debian-template/changelog b/packager/debian/debian-template/changelog index 73f92ac6..f25fb198 100644 --- a/packager/debian/debian-template/changelog +++ b/packager/debian/debian-template/changelog @@ -1,3 +1,46 @@ +parallel (20100922-4) unstable; urgency=low + + * Change package to be non-native. + * Move to format "3.0 (quilt)". + * debian/compat: + + update to 7. + * debian/rules: + + don't configure the package in the clean target. + + create a configure (and configure-stamp) target. + * debian/control: + + update debhelper dependency to >= 7. + + add dh-autoreconf to build-dependency. + + indicate that the package conforms to Policy 3.9.1. + + set myself as maintainer and Ole as uploader. + * debian/rules: + + use dh(7) style file with autoreconf add-on. + * debian/doc-base: + + properly register the documentation with doc-base. + * debian/patches: + + include some patches to fix spelling errors detected by lintian. + * debian/dirs: + + remove, not needed. + + -- Rogério Brito Mon, 25 Oct 2010 03:44:37 -0200 + +parallel (20100922-3) unstable; urgency=low + + * New upstream version - 3rd try + + -- Ole Tange Tue, 21 Sep 2010 22:15:05 +0200 + +parallel (20100922-2) unstable; urgency=low + + * New upstream version + + -- Ole Tange Tue, 21 Sep 2010 22:13:53 +0200 + +parallel (20100922-1) unstable; urgency=low + + * New upstream version + + -- Ole Tange Tue, 21 Sep 2010 22:12:22 +0200 + parallel (20100906-1) unstable; urgency=low * New upstream version diff --git a/packager/debian/debian-template/compat b/packager/debian/debian-template/compat index 7ed6ff82..7f8f011e 100644 --- a/packager/debian/debian-template/compat +++ b/packager/debian/debian-template/compat @@ -1 +1 @@ -5 +7 diff --git a/packager/debian/debian-template/control b/packager/debian/debian-template/control index e7fb4c11..da5abfe3 100644 --- a/packager/debian/debian-template/control +++ b/packager/debian/debian-template/control @@ -1,9 +1,10 @@ Source: parallel Section: utils Priority: extra -Maintainer: Ole Tange -Build-Depends: debhelper (>= 5) -Standards-Version: 3.8.3 +Maintainer: Rogério Brito +Uploaders: Ole Tange +Build-Depends: debhelper (>= 7.0.50~), dh-autoreconf +Standards-Version: 3.9.1 Homepage: https://www.gnu.org/software/parallel/ Package: parallel diff --git a/packager/debian/debian-template/copyright b/packager/debian/debian-template/copyright index 0889d6d9..523908f3 100644 --- a/packager/debian/debian-template/copyright +++ b/packager/debian/debian-template/copyright @@ -31,7 +31,8 @@ License: The Debian packaging is: - Copyright (C) 2010 Ole Tange + Copyright © 2010 Ole Tange + Copyright © 2010 Rogério Theodoro de Brito and is licensed under the GPL version 3, see `/usr/share/common-licenses/GPL-3'. diff --git a/packager/debian/debian-template/dirs b/packager/debian/debian-template/dirs deleted file mode 100644 index 74c50691..00000000 --- a/packager/debian/debian-template/dirs +++ /dev/null @@ -1,2 +0,0 @@ -usr/bin - diff --git a/packager/debian/debian-template/doc-base b/packager/debian/debian-template/doc-base new file mode 100644 index 00000000..6854cda8 --- /dev/null +++ b/packager/debian/debian-template/doc-base @@ -0,0 +1,11 @@ +Document: parallel +Title: Manual of GNU parallel +Author: Ole Tange +Abstract: This manual describes the use of GNU parallel, + provides an introduction to the subject and also presents + comparisons against similar utilities. +Section: System/Administration + +Format: HTML +Index: /usr/share/doc/parallel/parallel.html +Files: /usr/share/doc/parallel/*.html diff --git a/packager/debian/debian-template/rules b/packager/debian/debian-template/rules index a8d1c225..6b4a3cfc 100755 --- a/packager/debian/debian-template/rules +++ b/packager/debian/debian-template/rules @@ -1,64 +1,7 @@ #!/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. +%: + dh $@ --with autoreconf -# Uncomment this to turn on verbose mode. -#export DH_VERBOSE=1 - -build: build-stamp - -build-stamp: - dh_testdir - - # Add here commands to compile the package. - $(MAKE) - - touch $@ - -clean: - dh_testdir - dh_testroot - dh_installdirs - rm -f build-stamp - - # Add here commands to clean up after the build process. - ./configure --prefix=/usr - $(MAKE) clean - - dh_clean - -install: build - dh_testdir - dh_testroot - dh_prep || dh_clean -k - dh_installdirs - - # Add here commands to install the package into debian/parallel. - $(MAKE) DESTDIR=$(CURDIR)/debian/parallel install - - -# Build architecture-independent files here. -binary-indep: install - dh_testdir - dh_testroot - dh_installchangelogs - dh_installdocs - dh_installexamples - dh_installman - dh_link - dh_compress - dh_fixperms - dh_installdeb - dh_gencontrol - dh_md5sums - dh_builddeb - -# Build architecture-dependent files here. -binary-arch: install - -binary: binary-indep binary-arch -.PHONY: build clean binary-indep binary-arch binary install +override_dh_clean: + rm -f src/sem + dh_clean diff --git a/packager/debian/debian-template/source/format b/packager/debian/debian-template/source/format new file mode 100644 index 00000000..163aaf8d --- /dev/null +++ b/packager/debian/debian-template/source/format @@ -0,0 +1 @@ +3.0 (quilt)