[Date Prev][Date Next] [Thread Prev][Thread Next] [Date Index] [Thread Index]

Bug#689376: marked as done (nmzmail: spurious ./debian/rules.new shipped)



Your message dated Fri, 18 Oct 2024 20:36:01 +0000
with message-id <E1t1thZ-008JLU-WD@fasolo.debian.org>
and subject line Bug#689376: fixed in nmzmail 1.1-5
has caused the Debian Bug report #689376,
regarding nmzmail: spurious ./debian/rules.new shipped
to be marked as done.

This means that you claim that the problem has been dealt with.
If this is not the case it is now your responsibility to reopen the
Bug report if necessary, and/or fix the problem forthwith.

(NB: If you are a system administrator and have no idea what this
message is talking about, this may indicate a serious mail system
misconfiguration somewhere. Please contact owner@bugs.debian.org
immediately.)


-- 
689376: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=689376
Debian Bug Tracking System
Contact owner@bugs.debian.org with problems
--- Begin Message ---
Package: nmzmail
Severity: wishlist
Version: 1.1-2

There is ./debian/rules.new shipped in the new package.
I don't think it was suppose to be there.

Regards,
Dmitrijs.

diff -u nmzmail-1.1/debian/compat nmzmail-1.1/debian/compat
--- nmzmail-1.1/debian/compat
+++ nmzmail-1.1/debian/compat
@@ -1 +1 @@
-7
+9
diff -u nmzmail-1.1/debian/control nmzmail-1.1/debian/control
--- nmzmail-1.1/debian/control
+++ nmzmail-1.1/debian/control
@@ -2,13 +2,13 @@
 Section: mail
 Priority: optional
 Maintainer: Kevin Coyner <kcoyner@debian.org>
-Build-Depends: debhelper (>= 7.4~), autotools-dev, libreadline-dev
-Standards-Version: 3.8.3
+Build-Depends: debhelper (>= 9.2~), autotools-dev, dpkg-dev (>= 1.16.1~), libreadline-dev
+Standards-Version: 3.9.3
 Homepage: http://www.ecademix.com/JohannesHofmann/nmzmail.html
 
 Package: nmzmail
 Architecture: any
-Depends: ${shlibs:Depends}, namazu2, namazu2-index-tools
+Depends: ${shlibs:Depends}, ${misc:Depends}, namazu2, namazu2-index-tools
 Suggests: mutt
 Enhances: mutt
 Description: indexes and searches email in maildir folders
diff -u nmzmail-1.1/debian/rules nmzmail-1.1/debian/rules
--- nmzmail-1.1/debian/rules
+++ nmzmail-1.1/debian/rules
@@ -4,12 +4,15 @@
 # Uncomment this to turn on verbose mode.
 #export DH_VERBOSE=1
 
+DPKG_EXPORT_BUILDFLAGS = 1
+include /usr/share/dpkg/buildflags.mk
+
 # These are used for cross-compiling and for saving the configure script
 # from having to guess our platform (since we know it already)
 DEB_HOST_GNU_TYPE   ?= $(shell dpkg-architecture -qDEB_HOST_GNU_TYPE)
 DEB_BUILD_GNU_TYPE  ?= $(shell dpkg-architecture -qDEB_BUILD_GNU_TYPE)
 
-CFLAGS = -Wall -g
+CFLAGS += -Wall -g
 
 ifneq (,$(findstring noopt,$(DEB_BUILD_OPTIONS)))
 	CFLAGS += -O0
@@ -30,7 +33,9 @@
 
 	touch configure-stamp
 
-build: configure-stamp build-stamp
+build: build-arch build-indep
+build-arch: configure-stamp build-stamp
+build-indep:
 
 build-stamp:
 	dh_testdir
diff -u nmzmail-1.1/debian/changelog nmzmail-1.1/debian/changelog
--- nmzmail-1.1/debian/changelog
+++ nmzmail-1.1/debian/changelog
@@ -1,3 +1,19 @@
+nmzmail (1.1-2) unstable; urgency=low
+
+  * debian/control:
+    + Updated Standards-Version to 3.9.3.
+    + Add ${misc:Depends} to binary Depends.
+    + Add dpkg-dev to Build-Depends to support hardening.
+    + Updated debhelper version to 9.2~.
+  * debian/compat updated from 7 to 9.
+  * Changes to debian/rules to support hardening.
+  * Closing bug related to modifying conffiles. These files were modified by
+    namazu2 and were addressed in Bug #688498. Closes: #688290.  
+  * A mutt macro and cron suggestion are provided in the man page. Additional
+    usage details are suggested in README.Debian. Closes: #552731.
+
+ -- Kevin Coyner <kcoyner@debian.org>  Sun, 30 Sep 2012 01:30:28 +0000
+
 nmzmail (1.1-1) unstable; urgency=low
 
   * New upstream release.
only in patch2:
unchanged:
--- nmzmail-1.1.orig/debian/rules.new
+++ nmzmail-1.1/debian/rules.new
@@ -0,0 +1,83 @@
+#!/usr/bin/make -f
+# -*- makefile -*-
+
+# Uncomment this to turn on verbose mode.
+#export DH_VERBOSE=1
+
+DPKG_EXPORT_BUILDFLAGS = 1
+include /usr/share/dpkg/buildflags.mk
+
+# These are used for cross-compiling and for saving the configure script
+# from having to guess our platform (since we know it already)
+DEB_HOST_GNU_TYPE   ?= $(shell dpkg-architecture -qDEB_HOST_GNU_TYPE)
+DEB_BUILD_GNU_TYPE  ?= $(shell dpkg-architecture -qDEB_BUILD_GNU_TYPE)
+
+CFLAGS += -Wall -g
+
+ifneq (,$(findstring noopt,$(DEB_BUILD_OPTIONS)))
+	CFLAGS += -O0
+else
+	CFLAGS += -O2
+endif
+
+configure: configure-stamp
+configure-stamp:
+	dh_testdir
+
+	ln -sf /usr/share/misc/config.sub config.sub
+	ln -sf /usr/share/misc/config.guess config.guess
+	rm -f config.cache
+
+	# Add here commands to configure the package.
+	./configure CFLAGS="$(CFLAGS)" --host=$(DEB_HOST_GNU_TYPE) --build=$(DEB_BUILD_GNU_TYPE) --prefix=/usr --mandir=\$${prefix}/share/man --infodir=\$${prefix}/share/info
+
+	touch configure-stamp
+
+build: configure-stamp binary-arch binary-indep 
+	
+build-stamp:
+	$(MAKE)
+	dh_testdir
+	dh_testroot
+	dh_installchangelogs
+	dh_installdocs
+	dh_installman
+	dh_strip
+	dh_compress
+	dh_fixperms
+	dh_installdeb
+	dh_shlibdeps
+	dh_gencontrol
+	dh_md5sums
+	dh_builddeb
+
+	touch build-stamp
+
+clean:
+	dh_testdir
+	dh_testroot
+	rm -f build-stamp configure-stamp
+	[ ! -f Makefile ] || make clean
+	[ ! -f Makefile ] || make distclean
+	# Add here commands to clean up after the build process.
+	find \( -name config.sub -o -name config.guess \) -print0 | xargs -0 -r rm -f \;
+	dh_clean
+
+install:
+	dh_testdir
+	dh_testroot
+	dh_prep
+	dh_installdirs
+
+	# Add here commands to install the package into debian/nmzmail.
+	$(MAKE) install DESTDIR=$(CURDIR)/debian/nmzmail
+
+# Build architecture-independent files here.
+binary-indep: configure-stamp build-stamp
+# We have nothing to do by default.
+
+# Build architecture-dependent files here.
+binary-arch: configure-stamp build-stamp install
+
+binary: binary-indep binary-arch
+.PHONY: build clean binary-indep binary-arch binary install

--- End Message ---
--- Begin Message ---
Source: nmzmail
Source-Version: 1.1-5
Done: Petter Reinholdtsen <pere@debian.org>

We believe that the bug you reported is fixed in the latest version of
nmzmail, which is due to be installed in the Debian FTP archive.

A summary of the changes between this version and the previous one is
attached.

Thank you for reporting the bug, which will now be closed.  If you
have further comments please address them to 689376@bugs.debian.org,
and the maintainer will reopen the bug report if appropriate.

Debian distribution maintenance software
pp.
Petter Reinholdtsen <pere@debian.org> (supplier of updated nmzmail package)

(This message was generated automatically at their request; if you
believe that there is a problem with it please contact the archive
administrators by mailing ftpmaster@ftp-master.debian.org)


-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA256

Format: 1.8
Date: Fri, 18 Oct 2024 22:08:40 +0200
Source: nmzmail
Architecture: source
Version: 1.1-5
Distribution: unstable
Urgency: medium
Maintainer: Debian QA Group <packages@qa.debian.org>
Changed-By: Petter Reinholdtsen <pere@debian.org>
Closes: 689376
Changes:
 nmzmail (1.1-5) unstable; urgency=medium
 .
   * QA upload.
 .
   * Added d/gbp.conf to describe branch layout.
   * Updated vcs in d/control to Salsa.
   * Updated d/gbp.conf to enforce the use of pristine-tar.
   * Updated Standards-Version from 3.9.3 to 4.7.0.
   * Use wrap-and-sort -at for debian control files.
   * Trim trailing whitespace.
   * Fix day-of-week for changelog entry 0.1.3-1.
   * Removed useless debian/rules.new (Closes: #689376).
   * Switch d/rules to simple dh using debhelper compat level 13.
Checksums-Sha1:
 082edfbb76cf49e7a7599abdf0a7cb505126b6b8 1858 nmzmail_1.1-5.dsc
 545c68517fab5430615589c8f80bf6d42cebe0dd 3964 nmzmail_1.1-5.debian.tar.xz
 848892fc7dfb3228d0f5dc26f8348f9c81a494ff 6017 nmzmail_1.1-5_source.buildinfo
Checksums-Sha256:
 4cdbdc2a9b228b58383ccff9155f6b3754c1b5758e3829796d9ba839bec3b3c7 1858 nmzmail_1.1-5.dsc
 f8d8b46585fb97b510d8525d2d94b3630ec8e02be44ab7cdb3532b0f937fcdd5 3964 nmzmail_1.1-5.debian.tar.xz
 2010e3d2d6f3e2a4691b387aa6506381308a73e55682de692cfb2206335e279e 6017 nmzmail_1.1-5_source.buildinfo
Files:
 7da5ea305f39c3bd8fe0e30fb258ac93 1858 mail optional nmzmail_1.1-5.dsc
 e3a9c9fb3cefb93249e1831036547027 3964 mail optional nmzmail_1.1-5.debian.tar.xz
 62a8bce2cdee1529634de59ad98d0060 6017 mail optional nmzmail_1.1-5_source.buildinfo

-----BEGIN PGP SIGNATURE-----

iQIzBAEBCAAdFiEERqLf4owIeylOb9kkgSgKoIe6+w4FAmcSwN4ACgkQgSgKoIe6
+w5t4Q/6AzpurRY57EIDxGeqYvGTnKw8RI/E/7CTFCxdQ/vJflCQJDOH/i8aqSwO
Q+ETQCHpJpQaqbrXVQOxgEV/OOXO4fhY1NzsG1whOSFQ0PwM8f4ZUi0W7GjaM4Bt
fgbTEW2vPsvdYmjp9x7BPudAQ0vqSNCrQ+VSyF27xkg5Fkisc47WOtgYOvYdqTMV
f7axWGIwNMFxt1GXbN4SPSAiGCM+6h7leNgNlSHpJzkoKuNKSZ8HZ6kjFkrys2xX
HrPyIjOWHI407VH7Mj5pc/3mlfU0Toww6eioGDR6ieQsTvlWJPlh4RVj+OheS+ax
SJD47nRtLcxKvRTthP/8e+G9HhPDHpv2ciMeOAhcFGbHwc73z+CwKHG/gg9cSZpe
7YuU4LdJn1OGOQonAvkxLhf2fltb0KFsNlVgx5xrOZDy6Fdy9H1eynPVZDDBbf8p
g+IwEg98XgP8hlK+HmxZg+g1rjujLMqOD/6icEZOULqXGQZYDA1OANMKs52nC9mZ
xPUZ5WZpltOhmjRh1fN2JXSlpHT04XLUPC0Jd0PznjGaMSgimbVQ3uOA2eZUvFrG
jS/+cSYTgPRR6tDYqOxbAw5usVMd45e6NwOTZGPk6mF6lGtKIyLrjXpxzwXjE9Z4
3jy2vKrp0j1SxV1mNouqMTqZ3R9Ur+yqN6T5bjAwspfs8OqW1ps=
=kr2X
-----END PGP SIGNATURE-----

Attachment: pgpn6C45jiAls.pgp
Description: PGP signature


--- End Message ---

Reply to: