]> err.no Git - dpkg/commitdiff
Do not expand architecture aliases anymore in .dsc files.
authorGuillem Jover <guillem@debian.org>
Wed, 15 Mar 2006 20:19:52 +0000 (20:19 +0000)
committerGuillem Jover <guillem@debian.org>
Wed, 15 Mar 2006 20:19:52 +0000 (20:19 +0000)
ChangeLog
debian/changelog
scripts/Makefile.am
scripts/controllib.pl [moved from scripts/controllib.pl.in with 90% similarity]
scripts/dpkg-architecture.pl
scripts/dpkg-source.pl

index c69f91acaea5f3699a30145a79993ec5d4b8d535..724fce4351d9bdfaa4acad509767e664a48ad3d6 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,12 @@
+2006-03-15  Guillem Jover  <guillem@debian.org>
+
+       * scripts/controllib.pl.in: Rename to ...
+       * scripts/controllib.pl: ... this.
+       (debian_arch_expand): Remove function. Fix all callers.
+       (pkgdatadir, read_cputable, read_ostable): Move to ...
+       * scripts/dpkg-architecture.pl: ... here.
+       * scripts/Makefile.am (%.pl): Remove rule.
+
 2006-03-05  Guillem Jover  <guillem@debian.org>
 
        * scripts/controllib.pl.in (quiet_warnings): New variable.
index ae8bf4daf001eeddd6877f1439933623e1aae537..31914e69633b297dc00af77be68d0c47adc7f585 100644 (file)
@@ -16,6 +16,7 @@ dpkg (1.13.17~) UNRELEASED; urgency=low
   * Add dpkg-query(1) in the SEE ALSO section in dpkg(1). Closes: #354643
   * Don't try to compile in SELinux support on GNU/kFreeBSD amd64.
   * Add new quiet option to dpkg-source to supress warnings. Closes: #355065
+  * Do not expand architecture aliases anymore in .dsc files.
 
   [ Updated man pages translations ]
   * Polish (Robert Luberda). Closes: #353782
index 5034a73563daacefc3c9c590dbb35ed7bf217ec4..d900d87ad942c299ac233892336970667fd7f9f1 100644 (file)
@@ -70,11 +70,6 @@ do_shell_subst = sed -e "s:version=\"[^\"]*\":version=\"$(PACKAGE_VERSION)\":"
        $(do_perl_subst) <$< >$@
        chmod +x $@
 
-%.pl: %.pl.in Makefile
-       @test -d `dirname $@` || $(mkdir_p) `dirname $@`
-       $(do_perl_subst) <$< >$@
-       chmod +x $@
-
 %: %.sh Makefile
        @test -d `dirname $@` || $(mkdir_p) `dirname $@`
        $(do_shell_subst) <$< >$@
similarity index 90%
rename from scripts/controllib.pl.in
rename to scripts/controllib.pl
index 794cc34ddf78efdf3e0db083133ead716d3082f0..5a06d51650a0ebbf7b754651dfa75a7366c67c7d 100755 (executable)
@@ -11,8 +11,6 @@
 #                     "S key" where S is the source and key is the packagename
 # %substvar         - map with substitution variables
 
-$pkgdatadir=".";
-
 $parsechangelog= 'dpkg-parsechangelog';
 
 @pkg_dep_fields = qw(Replaces Provides Depends Pre-Depends Recommends Suggests
@@ -79,32 +77,6 @@ sub findarch {
     $substvar{'Arch'}= $arch;
 }
 
-sub read_cputable {
-    open CPUTABLE, "$pkgdatadir/cputable"
-       or &syserr("unable to open cputable");
-    while (<CPUTABLE>) {
-       if (m/^(?!\#)(\S+)\s+(\S+)\s+(\S+)/) {
-           $cputable{$1} = $2;
-           $cputable_re{$1} = $3;
-           push @cpu, $1;
-       }
-    }
-    close CPUTABLE;
-}
-
-sub read_ostable {
-    open OSTABLE, "$pkgdatadir/ostable"
-       or &syserr("unable to open ostable");
-    while (<OSTABLE>) {
-       if (m/^(?!\#)(\S+)\s+(\S+)\s+(\S+)/) {
-           $ostable{$1} = $2;
-           $ostable_re{$1} = $3;
-           push @os, $1;
-       }
-    }
-    close OSTABLE;
-}
-
 sub debian_arch_fix
 {
     local ($os, $cpu) = @_;
@@ -154,39 +126,6 @@ sub debian_arch_is {
     return 0;
 }
 
-&read_cputable;
-&read_ostable;
-
-sub debian_arch_expand
-{
-    local ($_) = @_;
-
-    /^(!)?(.*)/;
-
-    local $not = $1 || '';
-    local $arch = $2;
-    local ($os, $cpu) = debian_arch_split($arch);
-    local @list;
-
-    if ("$os-$cpu" eq 'any-any') {
-       @list = 'any';
-    } elsif ($os eq 'all' or $cpu eq 'all') {
-       @list = 'all';
-    } elsif ($cpu eq 'any') {
-       foreach my $_cpu (@cpu) {
-           push @list, $not.debian_arch_fix($os, $_cpu);
-       }
-    } elsif ($os eq 'any') {
-       foreach my $_os (@os) {
-           push @list, $not.debian_arch_fix($_os, $cpu);
-       }
-    } else {
-       push @list, $not.debian_arch_fix($os, $cpu);
-    }
-
-    return @list;
-}
-
 sub substvars {
     my ($v) = @_;
     my ($lhs,$vn,$rhs,$count);
@@ -336,9 +275,7 @@ sub showdep {
         my @or_list = ();
         foreach my $dep_or (@$dep_and) {
             my ($package, $relation, $version, $arch_list) = @$dep_or; 
-            my @arches = map(debian_arch_expand($_), @$arch_list);
-            chomp @arches;
-            push @or_list, $package . ($relation && $version ? " ($relation $version)" : '') . ($show_arch && @arches ? " [@arches]" : '');
+            push @or_list, $package . ($relation && $version ? " ($relation $version)" : '') . ($show_arch && @$arch_list ? " [@$arch_list]" : '');
         }
         push @and_list, join(' | ', @or_list);
     }
index 82abb4c610371c4c6713d9bd9936c188553d8893..607fbe4c305d8787ad50ae5da44b3e7c8e6eb786 100755 (executable)
@@ -26,6 +26,8 @@ $dpkglibdir="/usr/lib/dpkg";
 push(@INC,$dpkglibdir);
 require 'controllib.pl';
 
+$pkgdatadir=".";
+
 sub usageversion {
     print STDERR
 "Debian $0 $version.
@@ -52,6 +54,32 @@ Actions:
 ";
 }
 
+sub read_cputable {
+    open CPUTABLE, "$pkgdatadir/cputable"
+       or &syserr("unable to open cputable");
+    while (<CPUTABLE>) {
+       if (m/^(?!\#)(\S+)\s+(\S+)\s+(\S+)/) {
+           $cputable{$1} = $2;
+           $cputable_re{$1} = $3;
+           push @cpu, $1;
+       }
+    }
+    close CPUTABLE;
+}
+
+sub read_ostable {
+    open OSTABLE, "$pkgdatadir/ostable"
+       or &syserr("unable to open ostable");
+    while (<OSTABLE>) {
+       if (m/^(?!\#)(\S+)\s+(\S+)\s+(\S+)/) {
+           $ostable{$1} = $2;
+           $ostable_re{$1} = $3;
+           push @os, $1;
+       }
+    }
+    close OSTABLE;
+}
+
 sub split_debian {
     local ($_) = @_;
     
@@ -101,6 +129,9 @@ sub gnu_to_debian {
     return debian_arch_fix($os, $cpu);
 }
 
+&read_cputable;
+&read_ostable;
+
 # Check for -L
 if (grep { m/^-L$/ } @ARGV) {
     foreach $os (@os) {
index 35d547f82639b725bc1101bff0c6476c2db1c0e7..1b90f4c4834864a9b2a7d963f2cbaf97e102e0f7 100755 (executable)
@@ -202,10 +202,7 @@ if ($opmode eq 'build') {
                    if (grep($sourcearch[0] eq $_, 'any','all'))  {
                        @sourcearch= ('any');
                    } else {
-                       my @arches = map(debian_arch_expand($_),
-                                        split(/\s+/, $v));
-                       chomp @arches;
-                       for $a (@arches) {
+                       for $a (split(/\s+/, $v)) {
                            &error("`$a' is not a legal architecture string")
                                unless $a =~ /^[\w-]+$/;
                             &error("architecture $a only allowed on its own".