Control: tags 851205 + pending Dear maintainer,
I've prepared an NMU for members (versioned as 20080128.1+nmu1) and uploaded it to DELAYED/15. Please feel free to tell me if I should delay it longer. Regards. diff -Nru members-20080128/debian/changelog members- 20080128.1+nmu1/debian/changelog --- members-20080128/debian/changelog 2016-07-30 17:55:11.000000000 -0400 +++ members-20080128.1+nmu1/debian/changelog 2019-11-07 17:24:12.000000000 -0500 @@ -1,3 +1,32 @@ +members (20080128.1+nmu1) unstable; urgency=medium + + * Non-maintainer upload. + * debian/source/format: Convert the source package to + "3.0 (native)" format. + This fixes lintian error malformed-debian-changelog-version. + * Bump base version string to 20080128.1. + * Makefile: + + Respect environment variable CXX and CPPFLAGS + and use them for cpp code compilation. + - Remove the line about chown, this is completely useless. + * debian/changelog: + - Remove trailing unformated string. + * debian/substvars: Removed, this should not appear in a source + package. + * debian/control: + + Add Vcs-* fields to use git packaging repo under Salsa Debian + group. + + Bump debhelper compat to v12. + + Bump Standards-Version to 4.4.1. + + Use "Rules-Requires-Root: no". + * debian/rules: + + Use dh_auto_build to build the source code. + This fixes FTCBFS. (Closes: #851205) + + Rewrite with dh sequencer. + This fixes lintian warning debian-rules-ignores-make-clean-error. + + -- Boyuan Yang <[email protected]> Thu, 07 Nov 2019 17:24:12 -0500 + members (20080128-5+nmu1) unstable; urgency=medium * Non-maintainer upload. @@ -111,7 +140,3 @@ * Initial Release. -- Jim Lynch <[email protected]> Fri, 11 Jun 1999 15:49:02 -0700 - -Local variables: -mode: debian-changelog -End: diff -Nru members-20080128/debian/compat members-20080128.1+nmu1/debian/compat --- members-20080128/debian/compat 2016-07-21 14:18:45.000000000 -0400 +++ members-20080128.1+nmu1/debian/compat 1969-12-31 19:00:00.000000000 -0500 @@ -1 +0,0 @@ -9 diff -Nru members-20080128/debian/control members- 20080128.1+nmu1/debian/control --- members-20080128/debian/control 2016-07-21 14:21:47.000000000 -0400 +++ members-20080128.1+nmu1/debian/control 2019-11-07 17:12:57.000000000 -0500 @@ -2,8 +2,11 @@ Section: admin Priority: optional Maintainer: Lars Bahner <[email protected]> -Standards-Version: 3.7.3 -Build-Depends: debhelper (>=9) +Standards-Version: 4.4.1 +Build-Depends: debhelper-compat (= 12) +Rules-Requires-Root: no +Vcs-Git: https://salsa.debian.org/debian/members.git +Vcs-Browser: https://salsa.debian.org/debian/members Package: members Architecture: any diff -Nru members-20080128/debian/dirs members-20080128.1+nmu1/debian/dirs --- members-20080128/debian/dirs 2008-01-28 06:23:07.000000000 -0500 +++ members-20080128.1+nmu1/debian/dirs 2019-11-07 17:20:44.000000000 -0500 @@ -1 +1 @@ -usr/bin +usr/bin/ diff -Nru members-20080128/debian/rules members-20080128.1+nmu1/debian/rules --- members-20080128/debian/rules 2016-07-30 17:04:52.000000000 -0400 +++ members-20080128.1+nmu1/debian/rules 2019-11-07 17:11:29.000000000 -0500 @@ -1,59 +1,11 @@ #!/usr/bin/make -f #-*- makefile -*- -# Made with the aid of dh_make, by Craig Small -# Sample debian/rules that uses debhelper. GNU copyright 1997 by Joey Hess. -# Some lines taken from debmake, by Christoph Lameter. # Uncomment this to turn on verbose mode. #export DH_VERBOSE=1 -build: build-arch build-indep -build-arch: build-stamp -build-indep: build-stamp -build-stamp: - dh_testdir - - $(MAKE) +DPKG_EXPORT_BUILDFLAGS=1 +include /usr/share/dpkg/default.mk - touch build-stamp - -clean: - dh_testdir - dh_testroot - rm -f build-stamp install-stamp - - -$(MAKE) clean - - dh_clean - -install: install-stamp -install-stamp: build-stamp - dh_testdir - dh_testroot - dh_prep - dh_installdirs - - $(MAKE) install DESTDIR=$(CURDIR)/debian/members - - touch install-stamp - -binary-indep: build install - -binary-arch: build install - dh_testdir - dh_testroot - dh_installman - dh_installdocs - dh_installchangelogs - dh_link - dh_strip - dh_compress - dh_fixperms - dh_installdeb - dh_shlibdeps - dh_gencontrol - dh_md5sums - dh_builddeb - -binary: binary-indep binary-arch -.PHONY: build clean binary-indep binary-arch binary +%: + dh $@ diff -Nru members-20080128/debian/source/format members- 20080128.1+nmu1/debian/source/format --- members-20080128/debian/source/format 1969-12-31 19:00:00.000000000 -0500 +++ members-20080128.1+nmu1/debian/source/format 2019-11-07 17:16:33.000000000 -0500 @@ -0,0 +1 @@ +3.0 (native) diff -Nru members-20080128/debian/substvars members- 20080128.1+nmu1/debian/substvars --- members-20080128/debian/substvars 2008-01-28 06:29:30.000000000 -0500 +++ members-20080128.1+nmu1/debian/substvars 1969-12-31 19:00:00.000000000 -0500 @@ -1 +0,0 @@ -shlibs:Depends=libc6 (>= 2.3.6-6), libgcc1 (>= 1:4.1.1-12), libstdc++6 (>= 4.1.1-12) diff -Nru members-20080128/Makefile members-20080128.1+nmu1/Makefile --- members-20080128/Makefile 2003-11-01 07:38:23.000000000 -0500 +++ members-20080128.1+nmu1/Makefile 2019-11-07 17:24:10.000000000 -0500 @@ -26,10 +26,11 @@ # installations) or /usr/share/common-licenses/GPL (on newer # ones). -CPPFLAGS = -g -Wno-deprecated +CXX ?= g++ +CPPFLAGS ?= -g -Wno-deprecated members: members.o - g++ -o members members.o + $(CXX) -o members members.o main.o: members.cc @@ -39,4 +40,3 @@ install: members cp members $(DESTDIR)/usr/bin/members chmod 755 $(DESTDIR)/usr/bin/members - chown bin.bin $(DESTDIR)/usr/bin/members
signature.asc
Description: This is a digitally signed message part

