[Pkg-wmaker-commits] [wmget] 04/41: Imported Debian patch 0.6.0-2

Doug Torrance dtorrance-guest at moszumanska.debian.org
Sun Aug 23 17:05:58 UTC 2015


This is an automated email from the git hooks/post-receive script.

dtorrance-guest pushed a commit to branch master
in repository wmget.

commit 9dc88868403f36cd0a96d423409afe1efe31091f
Author: Matej Vela <vela at debian.org>
Date:   Wed Mar 1 20:39:22 2006 +0100

    Imported Debian patch 0.6.0-2
---
 debian/changelog      | 14 ++++++++++++++
 debian/compat         |  1 +
 debian/control        |  6 +++---
 debian/dirs           |  1 -
 debian/rules          | 44 +++++++-------------------------------------
 debian/watch          |  2 ++
 debian/wmget.manpages |  1 -
 7 files changed, 27 insertions(+), 42 deletions(-)

diff --git a/debian/changelog b/debian/changelog
index ce6c04d..b56f9fe 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,3 +1,17 @@
+wmget (0.6.0-2) unstable; urgency=low
+
+  * QA upload.
+  * Package is orphaned (#352435); set maintainer to Debian QA Group.
+  * Switch to debhelper 5.
+  * Remove build dependency on libc6-dev; it's build-essential.
+  * debian/rules:
+    - Pass CFLAGS to the upstream Makefile for DEB_BUILD_OPTIONS=noopt.
+    - Let dh_strip handle DEB_BUILD_OPTIONS=nostrip.
+  * debian/watch: Add.
+  * Conforms to Standards version 3.6.2.
+
+ -- Matej Vela <vela at debian.org>  Wed,  1 Mar 2006 20:39:22 +0100
+
 wmget (0.6.0-1.2) unstable; urgency=low
 
   * Non-maintainer upload
diff --git a/debian/compat b/debian/compat
new file mode 100644
index 0000000..7ed6ff8
--- /dev/null
+++ b/debian/compat
@@ -0,0 +1 @@
+5
diff --git a/debian/control b/debian/control
index 8a12a57..c15b395 100644
--- a/debian/control
+++ b/debian/control
@@ -1,9 +1,9 @@
 Source: wmget
 Section: x11
 Priority: optional
-Maintainer: Rafal Zawadzki <bluszcz at jabberpl.org>
-Build-Depends: debhelper (>> 4.0.0), libc6-dev, libcurl3-dev, libx11-dev, libxext-dev, libxpm-dev, x-dev, dpatch
-Standards-Version: 3.6.1
+Maintainer: Debian QA Group <packages at qa.debian.org>
+Build-Depends: debhelper (>= 5), libcurl3-dev, libx11-dev, libxext-dev, libxpm-dev, x-dev, dpatch
+Standards-Version: 3.6.2
 
 Package: wmget
 Architecture: any
diff --git a/debian/dirs b/debian/dirs
deleted file mode 100644
index 1e881ed..0000000
--- a/debian/dirs
+++ /dev/null
@@ -1 +0,0 @@
-usr/bin
\ No newline at end of file
diff --git a/debian/rules b/debian/rules
index 2d8ef3c..1ff0b26 100755
--- a/debian/rules
+++ b/debian/rules
@@ -1,36 +1,20 @@
 #!/usr/bin/make -f
-# This is the debhelper compatibility version to use.
-export DH_COMPAT=4
 
 include /usr/share/dpatch/dpatch.make
 
-
 CFLAGS = -Wall -g
-
 ifneq (,$(findstring noopt,$(DEB_BUILD_OPTIONS)))
 	CFLAGS += -O0
 else
 	CFLAGS += -O2
 endif
-ifeq (,$(findstring nostrip,$(DEB_BUILD_OPTIONS)))
-	INSTALL_PROGRAM += -s
-endif
 
-configure: configure-stamp
-configure-stamp:
-	dh_testdir
-	# Add here commands to configure the package.
-
-	touch configure-stamp
-
-
-build: patch-stamp build-stamp
-
-build-stamp: configure-stamp 
+build: build-stamp
+build-stamp: patch-stamp
 	dh_testdir
 
 	# Add here commands to compile the package.
-	$(MAKE)
+	$(MAKE) CFLAGS="$(CFLAGS)"
 	#/usr/bin/docbook-to-man debian/wmget.sgml > wmget.1
 
 	touch build-stamp
@@ -38,10 +22,10 @@ build-stamp: configure-stamp
 clean:  unpatch
 	dh_testdir
 	dh_testroot
-	rm -f build-stamp configure-stamp
+	rm -f build-stamp
 
 	# Add here commands to clean up after the build process.
-	-$(MAKE) clean
+	$(MAKE) clean
 
 	dh_clean
 
@@ -54,7 +38,6 @@ install: build
 	# Add here commands to install the package into debian/wmget.
 	$(MAKE) install DESTDIR=$(CURDIR)/debian/wmget PREFIX=$(CURDIR)/debian/wmget/usr
 
-
 # Build architecture-independent files here.
 binary-indep: build install
 # We have nothing to do by default.
@@ -63,31 +46,18 @@ binary-indep: build install
 binary-arch: build install
 	dh_testdir
 	dh_testroot
-	dh_installdebconf	
+	dh_installchangelogs
 	dh_installdocs
-	dh_installexamples
 	dh_installmenu
-#	dh_installlogrotate
-#	dh_installemacsen
-#	dh_installpam
-#	dh_installmime
-#	dh_installinit
-	dh_installcron
-#	dh_installman
-	dh_installinfo
-#	dh_undocumented
-	dh_installchangelogs 
 	dh_link
 	dh_strip
 	dh_compress
 	dh_fixperms
-#	dh_makeshlibs
 	dh_installdeb
-#	dh_perl
 	dh_shlibdeps
 	dh_gencontrol
 	dh_md5sums
 	dh_builddeb
 
 binary: binary-indep binary-arch
-.PHONY: build clean binary-indep binary-arch binary install configure patch unpatch
+.PHONY: build clean binary-indep binary-arch binary install patch unpatch
diff --git a/debian/watch b/debian/watch
new file mode 100644
index 0000000..68ad186
--- /dev/null
+++ b/debian/watch
@@ -0,0 +1,2 @@
+version=2
+http://amtrickey.net/download/wmget-(.*)-src\.tar\.gz
diff --git a/debian/wmget.manpages b/debian/wmget.manpages
deleted file mode 100644
index 125fa02..0000000
--- a/debian/wmget.manpages
+++ /dev/null
@@ -1 +0,0 @@
-wmget.1

-- 
Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/pkg-wmaker/wmget.git



More information about the Pkg-wmaker-commits mailing list