[Build-common-hackers] Bug#265562: marked as done (Fixes for DEB_AUTO_UPDATE_* interface)

Debian Bug Tracking System owner@bugs.debian.org
Fri, 24 Sep 2004 15:18:07 -0700


Your message dated Fri, 24 Sep 2004 18:02:04 -0400
with message-id <E1CAy8i-0000tt-00@newraff.debian.org>
and subject line Bug#265562: fixed in cdbs 0.4.23-1
has caused the attached Bug report 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 I am
talking about this indicates a serious mail system misconfiguration
somewhere.  Please contact me immediately.)

Debian bug tracking system administrator
(administrator, Debian Bugs database)

--------------------------------------
Received: (at submit) by bugs.debian.org; 13 Aug 2004 17:46:41 +0000
>From rmh@khazad.dyndns.org Fri Aug 13 10:46:41 2004
Return-path: <rmh@khazad.dyndns.org>
Received: from 86.red-80-24-13.pooles.rima-tde.net (khazad.dyndns.org) [80.24.13.86] 
	by spohr.debian.org with esmtp (Exim 3.35 1 (Debian))
	id 1Bvg8W-00083A-00; Fri, 13 Aug 2004 10:46:40 -0700
Received: from aragorn ([192.168.0.1] helo=khazad.dyndns.org)
	by khazad.dyndns.org with esmtp (Exim 3.36 #1 (Debian))
	id 1BvgFt-0001hq-00; Fri, 13 Aug 2004 19:54:17 +0200
Received: from rmh by khazad.dyndns.org with local (Exim 4.34)
	id 1Bvg8D-0009RX-FO; Fri, 13 Aug 2004 19:46:21 +0200
Content-Type: multipart/mixed; boundary="===============1485427859=="
MIME-Version: 1.0
From: Robert Millan <rmh@debian.org>
To: Debian Bug Tracking System <submit@bugs.debian.org>
Subject: Fixes for DEB_AUTO_UPDATE_* interface
X-Mailer: reportbug 2.64
Date: Fri, 13 Aug 2004 19:46:21 +0200
Message-Id: <E1Bvg8D-0009RX-FO@khazad.dyndns.org>
Sender: <rmh@khazad.dyndns.org>
Delivered-To: submit@bugs.debian.org
X-Spam-Checker-Version: SpamAssassin 2.60-bugs.debian.org_2004_03_25 
	(1.212-2003-09-23-exp) on spohr.debian.org
X-Spam-Status: No, hits=-6.4 required=4.0 tests=BAYES_00,HAS_PACKAGE,
	UPPERCASE_25_50 autolearn=no version=2.60-bugs.debian.org_2004_03_25
X-Spam-Level: 

This is a multi-part MIME message sent by reportbug.

--===============1485427859==
Content-Type: text/plain; charset="us-ascii"
MIME-Version: 1.0
Content-Transfer-Encoding: 7bit
Content-Disposition: inline

Package: cdbs
Version: 0.4.22-1
Severity: wishlist
Tags: patch

I'm attaching a pair of fixes for the DEB_AUTO_UPDATE_* interface:

  - Recognise DEB_AUTO_UPDATE_ACLOCAL, make DEB_AUTO_UPDATE_AUTOMAKE imply
    the former, and add a warning explaining that using _AUTOMAKE to update
    aclocal.m4 is deprecated.  This will allow many packages to avoid a
    gratuitous automake update when they just want aclocal.

  - Be smarter when finding the autoconf command.  When autoconf 2.5x is
    installed, if command 'autoconf2.50' is not found, it means the 'autoconf'
    command is granted to be 2.5x and not 2.13.  So if the former is not
    found, we can safely fallback to the latter.  This will allow packages to
    avoid Build-Conflicts with autoconf2.13.

-- System Information:
Debian Release: 3.1
  APT prefers unstable
  APT policy: (500, 'unstable')
Architecture: kfreebsd-i386 (i386)
Kernel: GNU/kFreeBSD 5.2.1-5
Locale: LANG=C, LC_CTYPE=C (ignored: LC_ALL set to C)

-- no debconf information

--===============1485427859==
Content-Type: text/plain; charset="us-ascii"
MIME-Version: 1.0
Content-Transfer-Encoding: 7bit
Content-Disposition: attachment; filename="cdbs.diff"

--- cdbs-0.4.22.old/1/class/autotools-files.mk.in	2004-02-15 07:13:30.000000000 +0100
+++ cdbs-0.4.22/1/class/autotools-files.mk.in	2004-08-13 19:40:07.000000000 +0200
@@ -27,18 +27,25 @@
 
 include $(_cdbs_class_path)/autotools-vars.mk$(_cdbs_makefile_suffix)
 
+# compatibility blurb, will be eventualy removed
+ifneq ($(DEB_AUTO_UPDATE_AUTOMAKE), )
+ifeq ($(DEB_AUTO_UPDATE_ACLOCAL), )
+$(warning DEB_AUTO_UPDATE_AUTOMAKE will eventualy stop impliing DEB_AUTO_UPDATE_ACLOCAL.  If you meant aclocal.m4 to be re-generated, please use DEB_AUTO_UPDATE_ACLOCAL)
+DEB_AUTO_UPDATE_ACLOCAL = $(DEB_AUTO_UPDATE_AUTOMAKE)
+endif
+endif
+
 common-configure-arch common-configure-indep:: debian/stamp-autotools-files
 debian/stamp-autotools-files:
 	if test "$(DEB_AUTO_UPDATE_LIBTOOL)" = "pre" ; then \
 		cd $(DEB_SRCDIR) && libtoolize -c -f ; \
 	fi
-	if test -n "$(DEB_AUTO_UPDATE_AUTOMAKE)" ; then \
+	if test -n "$(DEB_AUTO_UPDATE_ACLOCAL)" ; then \
 		if test -d $(DEB_SRCDIR)/m4 ; then m4="-I m4" ; fi ; \
 		if test -e $(DEB_SRCDIR)/aclocal.m4 ; then cd $(DEB_SRCDIR) && aclocal-$(DEB_AUTO_UPDATE_AUTOMAKE) $(m4) ; fi ; \
 	fi
 	if test -n "$(DEB_AUTO_UPDATE_AUTOCONF)" ; then \
-		if test "$(DEB_AUTO_UPDATE_AUTOCONF)" = "2.50" ; then ac_suffix="" ; else ac_suffix="$(DEB_AUTO_UPDATE_AUTOCONF)" ; fi ; \
-		if test -e $(DEB_SRCDIR)/configure.ac || test -e $(DEB_SRCDIR)/configure.in ; then cd $(DEB_SRCDIR) && autoconf$(ac_suffix) ; fi \
+		if test -e $(DEB_SRCDIR)/configure.ac || test -e $(DEB_SRCDIR)/configure.in ; then cd $(DEB_SRCDIR) && `which autoconf$(DEB_AUTO_UPDATE_AUTOCONF) || which autoconf` ; fi ; \
 	fi
 	if test -n "$(DEB_AUTO_UPDATE_AUTOMAKE)" ; then \
 		if test -e $(DEB_SRCDIR)/Makefile.am ; then cd $(DEB_SRCDIR) && automake-$(DEB_AUTO_UPDATE_AUTOMAKE) ; fi ; \

--===============1485427859==--

---------------------------------------
Received: (at 265562-close) by bugs.debian.org; 24 Sep 2004 22:08:09 +0000
>From katie@ftp-master.debian.org Fri Sep 24 15:08:09 2004
Return-path: <katie@ftp-master.debian.org>
Received: from newraff.debian.org [208.185.25.31] (mail)
	by spohr.debian.org with esmtp (Exim 3.35 1 (Debian))
	id 1CAyEb-000085-00; Fri, 24 Sep 2004 15:08:09 -0700
Received: from katie by newraff.debian.org with local (Exim 3.35 1 (Debian))
	id 1CAy8i-0000tt-00; Fri, 24 Sep 2004 18:02:04 -0400
From: Jeff Bailey <jbailey@raspberryginger.com>
To: 265562-close@bugs.debian.org
X-Katie: $Revision: 1.51 $
Subject: Bug#265562: fixed in cdbs 0.4.23-1
Message-Id: <E1CAy8i-0000tt-00@newraff.debian.org>
Sender: Archive Administrator <katie@ftp-master.debian.org>
Date: Fri, 24 Sep 2004 18:02:04 -0400
Delivered-To: 265562-close@bugs.debian.org
X-Spam-Checker-Version: SpamAssassin 2.60-bugs.debian.org_2004_03_25 
	(1.212-2003-09-23-exp) on spohr.debian.org
X-Spam-Status: No, hits=-6.0 required=4.0 tests=BAYES_00,HAS_BUG_NUMBER 
	autolearn=no version=2.60-bugs.debian.org_2004_03_25
X-Spam-Level: 
X-CrossAssassin-Score: 2

Source: cdbs
Source-Version: 0.4.23-1

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

cdbs_0.4.23-1.dsc
  to pool/main/c/cdbs/cdbs_0.4.23-1.dsc
cdbs_0.4.23-1.tar.gz
  to pool/main/c/cdbs/cdbs_0.4.23-1.tar.gz
cdbs_0.4.23-1_all.deb
  to pool/main/c/cdbs/cdbs_0.4.23-1_all.deb



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 265562@bugs.debian.org,
and the maintainer will reopen the bug report if appropriate.

Debian distribution maintenance software
pp.
Jeff Bailey <jbailey@raspberryginger.com> (supplier of updated cdbs 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@debian.org)


-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA1

Format: 1.7
Date: Fri, 24 Sep 2004 13:34:28 -0400
Source: cdbs
Binary: cdbs
Architecture: source all
Version: 0.4.23-1
Distribution: unstable
Urgency: low
Maintainer: CDBS Hackers <build-common-hackers@lists.alioth.debian.org>
Changed-By: Jeff Bailey <jbailey@raspberryginger.com>
Description: 
 cdbs       - common build system for Debian packages
Closes: 235961 265562 266982 267254 268483 272758
Changes: 
 cdbs (0.4.23-1) unstable; urgency=low
 .
   * Thanks to Robert Millan for the NMU's!
     Acknowledging: (Closes: #235961, #268483, #265562, #266982, #267254)
 .
   * Apply Robert's patch to generate config's from config.in.
     (Closes: #272758).  Further tweaked to honour debian/control as a
     target, and to make sure that cdbs doesn't depend on cdbs.
 .
   * Use this new feature in CDBS.
Files: 
 4ec70c08c8df904f703c1740edf72c71 854 devel optional cdbs_0.4.23-1.dsc
 d27992e27edfe256e40b3c1e5ac1a163 210423 devel optional cdbs_0.4.23-1.tar.gz
 92a7448440bc26ea2807845ec654a6cc 61194 devel optional cdbs_0.4.23-1_all.deb

-----BEGIN PGP SIGNATURE-----
Version: GnuPG v1.2.5 (GNU/Linux)

iD8DBQFBVJZj5M5hmdCYCpkRApPaAJ0e5u6FA5ZZtYocm32aK4YPJJwZ/QCdH65Q
xXrjUdXpNfN88e7zrE47Ak0=
=KlD+
-----END PGP SIGNATURE-----