[Build-common-hackers] Bug#277672: marked as done (Track autothings in Build-Depends when generating debian/control)
Debian Bug Tracking System
owner@bugs.debian.org
Wed, 18 May 2005 03:18:21 -0700
Your message dated Wed, 18 May 2005 12:03:15 +0200
with message-id <20050518100315.GA14625@aragorn>
and subject line ack NMUs
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; 21 Oct 2004 17:10:22 +0000
>From rmh@khazad.dyndns.org Thu Oct 21 10:10:22 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 1CKgSD-0002rL-00; Thu, 21 Oct 2004 10:10:22 -0700
Received: from rmh by khazad.dyndns.org with local (Exim 4.34)
id 1CKg6g-000Jtb-Jb; Thu, 21 Oct 2004 18:48:06 +0200
Content-Type: multipart/mixed; boundary="===============0868552663=="
MIME-Version: 1.0
From: Robert Millan <rmh@debian.org>
To: Debian Bug Tracking System <submit@bugs.debian.org>
Subject: Track autothings in Build-Depends when generating debian/control
X-Mailer: reportbug 2.99.5
Date: Thu, 21 Oct 2004 18:48:05 +0200
Message-Id: <E1CKg6g-000Jtb-Jb@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.
--===============0868552663==
Content-Type: text/plain; charset="us-ascii"
MIME-Version: 1.0
Content-Transfer-Encoding: 7bit
Content-Disposition: inline
Package: cdbs
Version: 0.4.24-1
Severity: wishlist
Tags: patch
This patch adds autothings automagicaly to Build-Depends when they have been
requirested by the DEB_AUTO_UPDATE_* interface and debian/control is being
auto-generated.
-- System Information:
Debian Release: 3.1
APT prefers unstable
APT policy: (500, 'unstable')
Architecture: kfreebsd-i386 (i386)
Kernel: GNU/kFreeBSD 5.2.1-7
Locale: LANG=C, LC_CTYPE=C (ignored: LC_ALL set to C)
-- no debconf information
--===============0868552663==
Content-Type: text/plain; charset="us-ascii"
MIME-Version: 1.0
Content-Transfer-Encoding: 7bit
Content-Disposition: attachment; filename="cdbs.diff"
diff -ur cdbs-0.4.24.old/1/class/autotools-vars.mk.in cdbs-0.4.24/1/class/autotools-vars.mk.in
--- cdbs-0.4.24.old/1/class/autotools-vars.mk.in 2004-08-27 01:36:56.000000000 +0200
+++ cdbs-0.4.24/1/class/autotools-vars.mk.in 2004-10-21 17:52:20.000000000 +0200
@@ -64,4 +64,50 @@
DEB_CONFIGURE_LIBEXECDIR ="\$${prefix}/lib/$(DEB_SOURCE_PACKAGE)"
DEB_CONFIGURE_EXTRA_FLAGS =
+ifneq (, $(DEB_AUTO_UPDATE_LIBTOOL))
+CDBS_BUILD_DEPENDS += , libtool
+endif
+
+ifneq (:, $(DEB_AUTO_UPDATE_ACLOCAL):$(DEB_AUTO_UPDATE_AUTOMAKE))
+ifeq ($(DEB_AUTO_UPDATE_ACLOCAL), $(DEB_AUTO_UPDATE_AUTOMAKE))
+# avoid duped build-dependencies
+CDBS_BUILD_DEPENDS += , automake-$(DEB_AUTO_UPDATE_ACLOCAL)
+else
+# either only one of them is required, or different versions are
+ifneq (, $(DEB_AUTO_UPDATE_ACLOCAL))
+CDBS_BUILD_DEPENDS += , automake-$(DEB_AUTO_UPDATE_ACLOCAL)
+endif
+ifneq (, $(DEB_AUTO_UPDATE_AUTOMAKE))
+CDBS_BUILD_DEPENDS += , automake-$(DEB_AUTO_UPDATE_AUTOMAKE)
+endif
+endif
+endif
+
+ifneq (:, $(DEB_AUTO_UPDATE_AUTOCONF):$(DEB_AUTO_UPDATE_AUTOHEADER))
+ifeq ($(DEB_AUTO_UPDATE_AUTOCONF), $(DEB_AUTO_UPDATE_AUTOHEADER))
+# avoid duped build-dependencies
+ifeq ($(DEB_AUTO_UPDATE_AUTOCONF), 2.13)
+CDBS_BUILD_DEPENDS += , autoconf2.13
+else
+CDBS_BUILD_DEPENDS += , autoconf
+endif
+else
+# either only one of them is required, or different versions are
+ifneq (, $(DEB_AUTO_UPDATE_AUTOCONF))
+ifeq ($(DEB_AUTO_UPDATE_AUTOCONF), 2.13)
+CDBS_BUILD_DEPENDS += , autoconf2.13
+else
+CDBS_BUILD_DEPENDS += , autoconf
+endif
+endif
+ifneq (, $(DEB_AUTO_UPDATE_AUTOHEADER))
+ifeq ($(DEB_AUTO_UPDATE_AUTOHEADER), 2.13)
+CDBS_BUILD_DEPENDS += , autoconf2.13
+else
+CDBS_BUILD_DEPENDS += , autoconf
+endif
+endif
+endif
+endif
+
endif
diff -ur cdbs-0.4.24.old/debian/control.in cdbs-0.4.24/debian/control.in
--- cdbs-0.4.24.old/debian/control.in 2004-09-24 19:43:06.000000000 +0200
+++ cdbs-0.4.24/debian/control.in 2004-10-21 17:58:32.000000000 +0200
@@ -2,7 +2,7 @@
Section: devel
Priority: optional
Maintainer: CDBS Hackers <build-common-hackers@lists.alioth.debian.org>
-Build-Depends-Indep: docbook-xsl, xsltproc, springgraph, ocaml-native-compilers | ocaml, realpath, fakeroot, python-dev @cdbs@
+Build-Depends-Indep: @cdbs@, docbook-xsl, xsltproc, springgraph, ocaml-native-compilers | ocaml, realpath, fakeroot, python-dev
Build-Conflicts-Indep: autoconf (<< 2.54)
Uploaders: Colin Walters <walters@debian.org>, Jeff Bailey <jbailey@raspberryginger.com>, Jonas Smedegaard <dr@jones.dk>, Chris Cheney <ccheney@debian.org>, Stefan Gybas <sgybas@debian.org>
Standards-Version: 3.5.10
--===============0868552663==--
---------------------------------------
Received: (at 277672-done) by bugs.debian.org; 18 May 2005 10:02:55 +0000
>From rmh@debian.org Wed May 18 03:02:55 2005
Return-path: <rmh@debian.org>
Received: from 216.red-62-57-140.user.auna.net (aragorn) [62.57.140.216]
by spohr.debian.org with esmtp (Exim 3.35 1 (Debian))
id 1DYLOA-0000B0-00; Wed, 18 May 2005 03:02:55 -0700
Received: from rmh by aragorn with local (Exim 4.50)
id 1DYLOV-0001ta-Ld; Wed, 18 May 2005 12:03:15 +0200
Date: Wed, 18 May 2005 12:03:15 +0200
From: Robert Millan <rmh@debian.org>
To: 284101-done@bugs.debian.org, 249931-done@bugs.debian.org,
277672-done@bugs.debian.org, 280365-done@bugs.debian.org,
290940-done@bugs.debian.org, 293197-done@bugs.debian.org
Subject: ack NMUs
Message-ID: <20050518100315.GA14625@aragorn>
Mime-Version: 1.0
Content-Type: text/plain; charset=us-ascii
Content-Disposition: inline
Sender: Robert Millan <rmh@debian.org>
Organisation: free as in freedom
User-Agent: Mutt/1.5.9i
Delivered-To: 277672-done@bugs.debian.org
X-Spam-Checker-Version: SpamAssassin 2.60-bugs.debian.org_2005_01_02
(1.212-2003-09-23-exp) on spohr.debian.org
X-Spam-Status: No, hits=-3.0 required=4.0 tests=BAYES_00 autolearn=no
version=2.60-bugs.debian.org_2005_01_02
X-Spam-Level:
X-CrossAssassin-Score: 2
Acknowledging my own NMUs.
--
.''`. Proudly running Debian GNU/kFreeBSD unstable/unreleased (on UFS2+S)
: :' :
`. `' http://www.debian.org/ports/kfreebsd-gnu
`-