Your message dated Wed, 12 Nov 2014 07:23:16 +0100 with message-id <5462FCD4.6090209@thykier.net> and subject line Re: Bug#769202: unblock: commons-daemon/1.0.15-6 has caused the Debian Bug report #769202, regarding unblock: commons-daemon/1.0.15-6 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.) -- 769202: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=769202 Debian Bug Tracking System Contact owner@bugs.debian.org with problems
--- Begin Message ---
- To: Debian Bug Tracking System <submit@bugs.debian.org>
- Subject: unblock: commons-daemon/1.0.15-6
- From: tony mancill <tmancill@debian.org>
- Date: Tue, 11 Nov 2014 22:13:57 -0800
- Message-id: <[🔎] 20141112061356.GA24816@boson>
Package: release.debian.org Severity: normal User: release.debian.org@packages.debian.org Usertags: unblock Please unblock package commons-daemon. The upload contains build patches for the arm64 and ppc64el ports, which were announced as release architectures in the recent Release Team Sprint Results email on d-d-a. It also incorporates NMU version 1.0.15-5.1, currently in unstable, which adds build support for mips. This upload addresses the following bugs: * Add the support for mips abi n32 and n64 (Closes: #752054). * Add arm64 support (Closes: #726389). * Add ppc64el support (Closes: #762707). The upload also updates the Vcs URL and Standards-Version. The debdiffs between 1.0.15-5 (currently in testing) and -6 are attached. Thank you for your consideration, tony unblock commons-daemon/1.0.15-6 -- System Information: Debian Release: jessie/sid APT prefers testing APT policy: (900, 'testing'), (300, 'unstable') Architecture: amd64 (x86_64) Foreign Architectures: i386 Kernel: Linux 3.16-3-amd64 (SMP w/4 CPU cores) Locale: LANG=en_US.UTF-8, LC_CTYPE=en_US.UTF-8 (charmap=UTF-8) Shell: /bin/sh linked to /bin/dashdiff -Nru commons-daemon-1.0.15/debian/changelog commons-daemon-1.0.15/debian/changelog --- commons-daemon-1.0.15/debian/changelog 2014-01-26 15:21:11.000000000 -0800 +++ commons-daemon-1.0.15/debian/changelog 2014-11-11 07:01:45.000000000 -0800 @@ -1,3 +1,27 @@ +commons-daemon (1.0.15-6) unstable; urgency=medium + + * Team upload. + * Add arm64 support (Closes: #726389). + * Add ppc64el support (Closes: #762707). + (Thank you to Colin Watson for the patch.) + + * Acknowledge NMU 1.0.15-5.1. + Add the support for mips abi n32 and n64 (Closes: #752054) + - Thank you to Sphinx Jiang. + * Bump Standards-Version to 3.9.6 (no changes). + * Update Vcs URLs to point to git packaging repository. + + -- tony mancill <tmancill@debian.org> Tue, 11 Nov 2014 07:01:38 -0800 + +commons-daemon (1.0.15-5.1) unstable; urgency=low + + * Non-maintainer upload. + + [Sphinx Jiang] + * Add the support for mips abi n32 and n64 (Closes: #752054) + + -- YunQiang Su <syq@debian.org> Fri, 24 Oct 2014 12:35:27 +0800 + commons-daemon (1.0.15-5) unstable; urgency=medium * Another attempt to support Hurd diff -Nru commons-daemon-1.0.15/debian/control commons-daemon-1.0.15/debian/control --- commons-daemon-1.0.15/debian/control 2014-01-26 07:19:58.000000000 -0800 +++ commons-daemon-1.0.15/debian/control 2014-11-11 07:01:45.000000000 -0800 @@ -15,9 +15,9 @@ maven-repo-helper, xsltproc Build-Conflicts: autoconf2.13 -Standards-Version: 3.9.5 -Vcs-Svn: svn://anonscm.debian.org/pkg-java/trunk/commons-daemon/ -Vcs-Browser: http://anonscm.debian.org/viewvc/pkg-java/trunk/commons-daemon/ +Standards-Version: 3.9.6 +Vcs-Git: git://anonscm.debian.org/pkg-java/commons-daemon.git +Vcs-Browser: http://anonscm.debian.org/cgit/pkg-java/commons-daemon.git Homepage: http://commons.apache.org/daemon/ Package: libcommons-daemon-java diff -Nru commons-daemon-1.0.15/debian/patches/arm64.diff commons-daemon-1.0.15/debian/patches/arm64.diff --- commons-daemon-1.0.15/debian/patches/arm64.diff 1969-12-31 16:00:00.000000000 -0800 +++ commons-daemon-1.0.15/debian/patches/arm64.diff 2014-11-11 07:01:45.000000000 -0800 @@ -0,0 +1,37 @@ +Description: Add ARM64 support +Author: Colin Watson <cjwatson@ubuntu.com> +Forwarded: https://issues.apache.org/jira/browse/DAEMON-308 +Last-Update: 2014-11-06 + +Index: b/src/native/unix/configure +=================================================================== +--- a/src/native/unix/configure ++++ b/src/native/unix/configure +@@ -2697,6 +2697,11 @@ + supported_os="arm" + HOST_CPU=arm + ;; ++ aarch64) ++ CFLAGS="$CFLAGS -DCPU=\\\"aarch64\\\"" ++ supported_os="aarch64" ++ HOST_CPU=aarch64 ++ ;; + *) + echo "$as_me:$LINENO: result: failed" >&5 + echo "${ECHO_T}failed" >&6 +Index: b/src/native/unix/support/apsupport.m4 +=================================================================== +--- a/src/native/unix/support/apsupport.m4 ++++ b/src/native/unix/support/apsupport.m4 +@@ -176,6 +176,11 @@ + supported_os="arm" + HOST_CPU=arm + ;; ++ aarch64) ++ CFLAGS="$CFLAGS -DCPU=\\\"aarch64\\\"" ++ supported_os="aarch64" ++ HOST_CPU=aarch64 ++ ;; + *) + AC_MSG_RESULT([failed]) + AC_MSG_ERROR([Unsupported CPU architecture "$host_cpu"]);; diff -Nru commons-daemon-1.0.15/debian/patches/mips_abi_n32_n64_support.diff commons-daemon-1.0.15/debian/patches/mips_abi_n32_n64_support.diff --- commons-daemon-1.0.15/debian/patches/mips_abi_n32_n64_support.diff 1969-12-31 16:00:00.000000000 -0800 +++ commons-daemon-1.0.15/debian/patches/mips_abi_n32_n64_support.diff 2014-11-11 07:01:45.000000000 -0800 @@ -0,0 +1,22 @@ +Index: commons-daemon-1.0.15/src/native/unix/support/apsupport.m4 +=================================================================== +--- commons-daemon-1.0.15.orig/src/native/unix/support/apsupport.m4 2014-06-19 05:40:23.000000000 +0000 ++++ commons-daemon-1.0.15/src/native/unix/support/apsupport.m4 2014-06-19 05:46:23.202817468 +0000 +@@ -113,7 +113,7 @@ + LDCMD="/opt/C/bin/cc" + HOST_CPU=osd + ;; +- mips) ++ mips | mipsn32 | mips64) + CFLAGS="$CFLAGS -DCPU=\\\"mips\\\"" + supported_os="mips" + HOST_CPU=mips +@@ -142,7 +142,7 @@ + fi + CFLAGS="$CFLAGS -DCPU=\\\"$HOST_CPU\\\" -DSO_EXT=\\\"sl\\\"" + ;; +- mipsel) ++ mipsel | mipsn32el | mips64el) + CFLAGS="$CFLAGS -DCPU=\\\"mipsel\\\"" + supported_os="mipsel" + HOST_CPU=mipsel diff -Nru commons-daemon-1.0.15/debian/patches/ppc64el.diff commons-daemon-1.0.15/debian/patches/ppc64el.diff --- commons-daemon-1.0.15/debian/patches/ppc64el.diff 1969-12-31 16:00:00.000000000 -0800 +++ commons-daemon-1.0.15/debian/patches/ppc64el.diff 2014-11-11 07:01:45.000000000 -0800 @@ -0,0 +1,37 @@ +Description: Add ppc64el support +Author: Colin Watson <cjwatson@ubuntu.com> +Forwarded: https://issues.apache.org/jira/browse/DAEMON-326 +Last-Update: 2014-11-06 + +Index: b/src/native/unix/configure +=================================================================== +--- a/src/native/unix/configure ++++ b/src/native/unix/configure +@@ -2702,6 +2702,11 @@ + supported_os="aarch64" + HOST_CPU=aarch64 + ;; ++ powerpc64le) ++ CFLAGS="$CFLAGS -DCPU=\\\"powerpc64le\\\"" ++ supported_os="powerpc64le" ++ HOST_CPU=powerpc64le ++ ;; + *) + echo "$as_me:$LINENO: result: failed" >&5 + echo "${ECHO_T}failed" >&6 +Index: b/src/native/unix/support/apsupport.m4 +=================================================================== +--- a/src/native/unix/support/apsupport.m4 ++++ b/src/native/unix/support/apsupport.m4 +@@ -181,6 +181,11 @@ + supported_os="aarch64" + HOST_CPU=aarch64 + ;; ++ powerpc64le) ++ CFLAGS="$CFLAGS -DCPU=\\\"powerpc64le\\\"" ++ supported_os="powerpc64le" ++ HOST_CPU=powerpc64le ++ ;; + *) + AC_MSG_RESULT([failed]) + AC_MSG_ERROR([Unsupported CPU architecture "$host_cpu"]);; diff -Nru commons-daemon-1.0.15/debian/patches/series commons-daemon-1.0.15/debian/patches/series --- commons-daemon-1.0.15/debian/patches/series 2014-01-26 07:22:15.000000000 -0800 +++ commons-daemon-1.0.15/debian/patches/series 2014-11-11 07:01:45.000000000 -0800 @@ -2,3 +2,6 @@ kfreebsd_support.diff s390x_support.diff hurd_support.diff +mips_abi_n32_n64_support.diff +arm64.diff +ppc64el.diffFile lists identical (after any substitutions) Control files of package jsvc: lines which differ (wdiff format) ---------------------------------------------------------------- Version: [-1.0.15-5-] {+1.0.15-6+} Control files of package libcommons-daemon-java: lines which differ (wdiff format) ---------------------------------------------------------------------------------- Version: [-1.0.15-5-] {+1.0.15-6+}Attachment: signature.asc
Description: Digital signature
--- End Message ---
--- Begin Message ---
- To: tony mancill <tmancill@debian.org>, 769202-done@bugs.debian.org
- Subject: Re: Bug#769202: unblock: commons-daemon/1.0.15-6
- From: Niels Thykier <niels@thykier.net>
- Date: Wed, 12 Nov 2014 07:23:16 +0100
- Message-id: <5462FCD4.6090209@thykier.net>
- In-reply-to: <[🔎] 20141112061356.GA24816@boson>
- References: <[🔎] 20141112061356.GA24816@boson>
On 2014-11-12 07:13, tony mancill wrote: > Package: release.debian.org > Severity: normal > User: release.debian.org@packages.debian.org > Usertags: unblock > > Please unblock package commons-daemon. > > The upload contains build patches for the arm64 and ppc64el ports, > which were announced as release architectures in the recent Release > Team Sprint Results email on d-d-a. It also incorporates NMU version > 1.0.15-5.1, currently in unstable, which adds build support for mips. > > This upload addresses the following bugs: > > * Add the support for mips abi n32 and n64 (Closes: #752054). > * Add arm64 support (Closes: #726389). > * Add ppc64el support (Closes: #762707). > > The upload also updates the Vcs URL and Standards-Version. > The debdiffs between 1.0.15-5 (currently in testing) and -6 are attached. > > Thank you for your consideration, > tony > > unblock commons-daemon/1.0.15-6 > > [...] Unblocked, thanks. ~Niels
--- End Message ---