Przeglądaj źródła

Resync with v1_9

Wichert Akkerman 25 lat temu
rodzic
commit
eadff049f9
5 zmienionych plików z 14 dodań i 11 usunięć
  1. 5 4
      ChangeLog
  2. 3 1
      debian/changelog
  3. 1 1
      doc/sv/dpkg.8
  4. 1 1
      main/dpkg.8
  5. 4 4
      scripts/dpkg-buildpackage.sh

+ 5 - 4
ChangeLog

@@ -1,3 +1,8 @@
+Sat Apr 28 12:18:55 CEST 2001 Wichert Akkerman <wakkerma@debian.org>
+
+  * scripts/dpkg-buildpackage.sh: only check for valid sign interface
+    when the user specifies one
+   
 Sat Apr 28 03:33:28 CDT 2001 Adam Heath <doogie@debian.org>
 Sat Apr 28 03:33:28 CDT 2001 Adam Heath <doogie@debian.org>
 
 
   * debian/dpkg.cfg: Changed to include no-debsig by default, as no debs
   * debian/dpkg.cfg: Changed to include no-debsig by default, as no debs
@@ -5,10 +10,6 @@ Sat Apr 28 03:33:28 CDT 2001 Adam Heath <doogie@debian.org>
     installed.  This will be removed in the future, when the archive tools
     installed.  This will be removed in the future, when the archive tools
     support package signatures.
     support package signatures.
 
 
-Sat Apr 28 01:48:59 CDT 2001 Adam Heath <doogie@debian.org>
-
-  * main/dpkg.8, doc/sv/dpkg.8: s,etc/dpkg.cfg,etc/dpkg/dpkg.cfg,
-
 Fri Apr 27 20:43:25 CDT 2001 Adam Heath <doogie@debian.org>
 Fri Apr 27 20:43:25 CDT 2001 Adam Heath <doogie@debian.org>
 
 
   * lib/nfmalloc.c: nfstrnsave() was not allocated n+1 chars, and was not
   * lib/nfmalloc.c: nfstrnsave() was not allocated n+1 chars, and was not

+ 3 - 1
debian/changelog

@@ -1,7 +1,7 @@
 dpkg (1.9.1) unstable; urgency=low
 dpkg (1.9.1) unstable; urgency=low
 
 
   * Fix segfault with empty status and available, and when missing a
   * Fix segfault with empty status and available, and when missing a
-    trailing new line.  Closes: #95496
+    trailing new line.  Closes: Bug#95496
   * Make dpkg-shlibdeps not care if dpkg --search return with an error.
   * Make dpkg-shlibdeps not care if dpkg --search return with an error.
     Closes: Bug#95568
     Closes: Bug#95568
   * Fix corruption of user-defined fields in status and available.
   * Fix corruption of user-defined fields in status and available.
@@ -10,6 +10,8 @@ dpkg (1.9.1) unstable; urgency=low
     currently signed, and we get false errors when debsig-verify is
     currently signed, and we get false errors when debsig-verify is
     installed.  This will be removed in the future, when the archive tools
     installed.  This will be removed in the future, when the archive tools
     support package signatures.  Closes: Bug#95573
     support package signatures.  Closes: Bug#95573
+  * dpkg-buildpackage should only check for valid signinterface if the
+    user specifies one. Closes: Bug#95598
 
 
  -- Wichert Akkerman <wakkerma@debian.org>  UNRELEASED
  -- Wichert Akkerman <wakkerma@debian.org>  UNRELEASED
 
 

+ 1 - 1
doc/sv/dpkg.8

@@ -489,7 +489,7 @@ Statusuppdateringar ges p
 
 
 .SH FILER
 .SH FILER
 .TP
 .TP
-.I /etc/dpkg/dpkg.cfg
+.I /etc/dpkg.cfg
 Konfigurationsfil med förvalda inställningar.
 Konfigurationsfil med förvalda inställningar.
 .P
 .P
 Övriga filer som listas här finns i sina förvalda kataloger, se flaggan
 Övriga filer som listas här finns i sina förvalda kataloger, se flaggan

+ 1 - 1
main/dpkg.8

@@ -465,7 +465,7 @@ Send package status info to file descriptor \fI<n>\fP.  This can be given
 multiple times.  Status updates are of the form `status: <pkg>: <pkg qstate>'.
 multiple times.  Status updates are of the form `status: <pkg>: <pkg qstate>'.
 .SH FILES
 .SH FILES
 .TP
 .TP
-.I /etc/dpkg/dpkg.cfg
+.I /etc/dpkg.cfg
 Configuration file with default options.
 Configuration file with default options.
 .P
 .P
 The other files listed below are in their default directories, see option
 The other files listed below are in their default directories, see option

+ 4 - 4
scripts/dpkg-buildpackage.sh

@@ -113,14 +113,14 @@ fi
 
 
 if test -n "$forcesigninterface" ; then
 if test -n "$forcesigninterface" ; then
   signinterface=$forcesigninterface
   signinterface=$forcesigninterface
-else
-  signinterface=$signcommand
-fi
-
 if [ "$signinterface" != "gpg" -a "$signinterface" != "pgp" ] ; then
 if [ "$signinterface" != "gpg" -a "$signinterface" != "pgp" ] ; then
 	echo >&2 "$progname: invalid sign interface specified"
 	echo >&2 "$progname: invalid sign interface specified"
 	exit 1
 	exit 1
 fi
 fi
+else
+  signinterface=$signcommand
+fi
+
 
 
 mustsetvar () {
 mustsetvar () {
 	if [ "x$2" = x ]; then
 	if [ "x$2" = x ]; then