[SCM] Git repository for devscripts branch, master, updated. v2.13.2-4-g0e17f9a

James McCoy jamessan at debian.org
Sat Jun 1 20:26:06 UTC 2013


The following commit has been merged in the master branch:
commit 0e17f9afe71a21d866d08e94884df4ea15ee0d85
Author: James McCoy <jamessan at debian.org>
Date:   Sat Jun 1 16:24:30 2013 -0400

    dpkg-buildpackage: Use "dpkg-checkbuilddeps -A" for arch-indep builds.
    
    Signed-off-by: James McCoy <jamessan at debian.org>

diff --git a/debian/changelog b/debian/changelog
index f985d62..9ab2b86 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -7,6 +7,10 @@ devscripts (2.13.3) UNRELEASED; urgency=low
   [ Paul Wise ]
   * In chdist bash completion, don't print warnings if ~/.chdist is missing
 
+  [ James McCoy ]
+  * dpkg-buildpackage: Use "dpkg-checkbuilddeps -A" for arch-indep builds.
+    Bump dpkg-dev Depends to 1.16.4 accordingly.
+
  -- James McCoy <jamessan at debian.org>  Mon, 13 May 2013 22:43:59 -0400
 
 devscripts (2.13.2) unstable; urgency=low
diff --git a/debian/control b/debian/control
index d5be88e..88a83ee 100644
--- a/debian/control
+++ b/debian/control
@@ -36,7 +36,7 @@ Vcs-Git: git://anonscm.debian.org/collab-maint/devscripts.git
 Package: devscripts
 Architecture: any
 Multi-Arch: foreign
-Depends: dpkg-dev (>= 1.15.4.1),
+Depends: dpkg-dev (>= 1.16.4),
          ${misc:Depends},
          ${perl:Depends},
          ${python3:Depends},
diff --git a/scripts/debuild.pl b/scripts/debuild.pl
index 0ac18c2..233a1c5 100755
--- a/scripts/debuild.pl
+++ b/scripts/debuild.pl
@@ -1093,6 +1093,8 @@ if ($command_version eq 'dpkg') {
 	if ($checkbuilddep) {
 	    if ($binarytarget eq 'binary-arch') {
 		system('dpkg-checkbuilddeps -B');
+	    } elsif ($binarytarget eq 'binary-indep') {
+		system('dpkg-checkbuilddeps -A');
 	    } else {
 		system('dpkg-checkbuilddeps');
 	    }
@@ -1315,6 +1317,8 @@ else {
     if ($checkbuilddep) {
 	if ($ARGV[0] eq 'binary-arch') {
 	    system('dpkg-checkbuilddeps -B');
+	} elsif ($ARGV[0] eq 'binary-indep') {
+	    system('dpkg-checkbuilddeps -A');
 	} else {
 	    system('dpkg-checkbuilddeps');
 	}

-- 
Git repository for devscripts



More information about the devscripts-devel mailing list