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

Bug#682090: marked as done (unblock: mew-beta/7.0.50~6.5~rc2+0.20120405-2)



Your message dated Fri, 27 Jul 2012 22:46:01 +0200
with message-id <20120727204601.GT10809@radis.cristau.org>
and subject line Re: Bug#682090: unblock: mew-beta/7.0.50~6.5~rc2+0.20120405-2
has caused the Debian Bug report #682090,
regarding unblock: mew-beta/7.0.50~6.5~rc2+0.20120405-2
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.)


-- 
682090: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=682090
Debian Bug Tracking System
Contact owner@bugs.debian.org with problems
--- Begin Message ---
Package: release.debian.org
Severity: normal
User: release.debian.org@packages.debian.org
Usertags: unblock

Please unblock mew-beta/7.0.50~6.5~rc2+0.20120405-2 to enable
hardening flags for wheezy.

Changes:

  * debian/rules: Use dpkg-buildflags to support hardening flags
  * debian/control: Add emacs24 to Depends

Note that the emacs24 dependency is optional, emacs is prior to
emacs24, so it's safe even if there isn't emacs24 in wheezy.

See also the attached debdiff.

unblock mew-beta/7.0.50~6.5~rc2+0.20120405-2

Thanks,
--
Tatsuya Kinoshita
diffstat for mew-beta-7.0.50~6.5~rc2+0.20120405 mew-beta-7.0.50~6.5~rc2+0.20120405

 changelog |    7 +++++++
 control   |    2 +-
 rules     |   17 ++++++-----------
 3 files changed, 14 insertions(+), 12 deletions(-)

diff -Nru mew-beta-7.0.50~6.5~rc2+0.20120405/debian/changelog mew-beta-7.0.50~6.5~rc2+0.20120405/debian/changelog
--- mew-beta-7.0.50~6.5~rc2+0.20120405/debian/changelog	2012-04-06 23:55:47.000000000 +0900
+++ mew-beta-7.0.50~6.5~rc2+0.20120405/debian/changelog	2012-07-07 00:06:02.000000000 +0900
@@ -1,3 +1,10 @@
+mew-beta (7.0.50~6.5~rc2+0.20120405-2) unstable; urgency=low
+
+  * debian/rules: Use dpkg-buildflags to support hardening flags
+  * debian/control: Add emacs24 to Depends
+
+ -- Tatsuya Kinoshita <tats@debian.org>  Sat, 07 Jul 2012 00:05:19 +0900
+
 mew-beta (7.0.50~6.5~rc2+0.20120405-1) unstable; urgency=low
 
   * New upstream release. (development snapshot on 2012-04-05,
diff -Nru mew-beta-7.0.50~6.5~rc2+0.20120405/debian/control mew-beta-7.0.50~6.5~rc2+0.20120405/debian/control
--- mew-beta-7.0.50~6.5~rc2+0.20120405/debian/control	2012-03-07 22:36:16.000000000 +0900
+++ mew-beta-7.0.50~6.5~rc2+0.20120405/debian/control	2012-07-05 21:21:58.000000000 +0900
@@ -9,7 +9,7 @@
 Package: mew-beta
 Section: lisp
 Architecture: all
-Depends: mew-beta-bin (>= 5.2.53), emacs | emacs23 | emacs22 | emacs21 | emacs-snapshot, dpkg (>= 1.15.4) | install-info, ${misc:Depends}
+Depends: mew-beta-bin (>= 5.2.53), emacs | emacs24 | emacs23 | emacs22 | emacs21 | emacs-snapshot, dpkg (>= 1.15.4) | install-info, ${misc:Depends}
 Suggests: w3m-el, gnupg, gpgsm, ssh, wv, xlhtml, ppthtml, compface, netpbm, x-face-el, mu-cite, mule-ucs, bogofilter | bsfilter | spamassassin, hyperestraier, namazu2, namazu2-index-tools, mhc
 Replaces: mew
 Conflicts: mew
diff -Nru mew-beta-7.0.50~6.5~rc2+0.20120405/debian/rules mew-beta-7.0.50~6.5~rc2+0.20120405/debian/rules
--- mew-beta-7.0.50~6.5~rc2+0.20120405/debian/rules	2010-04-18 17:08:22.000000000 +0900
+++ mew-beta-7.0.50~6.5~rc2+0.20120405/debian/rules	2012-07-05 22:58:31.000000000 +0900
@@ -7,20 +7,15 @@
 PACKAGE=`cat debian/PACKAGE`
 PKGSNAME=mew
 
-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
+export DEB_BUILD_MAINT_OPTIONS = hardening=+all
+dpkg_buildflags = DEB_BUILD_MAINT_OPTIONS=$(DEB_BUILD_MAINT_OPTIONS) dpkg-buildflags
+CFLAGS=$(shell $(dpkg_buildflags) --get CFLAGS)
+CPPFLAGS=$(shell $(dpkg_buildflags) --get CPPFLAGS)
+LDFLAGS=$(shell $(dpkg_buildflags) --get LDFLAGS)
 
 configure-stamp: configure
 	dh_testdir
-	./configure --prefix=/usr --infodir=/usr/share/info --mandir=/usr/share/man
+	CFLAGS="$(CFLAGS)" CPPFLAGS="$(CPPFLAGS)" LDFLAGS="$(LDFLAGS)" ./configure --prefix=/usr --infodir=/usr/share/info --mandir=/usr/share/man
 	grep '^Package: ' debian/control | head -1 | sed -e "s/^Package: //g" > debian/PACKAGE
 	sed -e "s/@PACKAGE@/$(PACKAGE)/g" debian/README.Debian.in > debian/README.Debian
 	sed -e "s/@PACKAGE@/$(PACKAGE)/g" debian/dirs.in > debian/dirs

Attachment: pgpt4sbJp8fQE.pgp
Description: PGP signature


--- End Message ---
--- Begin Message ---
On Thu, Jul 19, 2012 at 22:14:17 +0900, Tatsuya Kinoshita wrote:

> Package: release.debian.org
> Severity: normal
> User: release.debian.org@packages.debian.org
> Usertags: unblock
> 
> Please unblock mew-beta/7.0.50~6.5~rc2+0.20120405-2 to enable
> hardening flags for wheezy.
> 
> Changes:
> 
>   * debian/rules: Use dpkg-buildflags to support hardening flags
>   * debian/control: Add emacs24 to Depends
> 
> Note that the emacs24 dependency is optional, emacs is prior to
> emacs24, so it's safe even if there isn't emacs24 in wheezy.
> 
Hi,

same answer as in #682089, I'm afraid.

Cheers,
Julien

Attachment: signature.asc
Description: Digital signature


--- End Message ---

Reply to: