Wichert Akkerman hace 26 años
padre
commit
55b17933f8
Se han modificado 4 ficheros con 20 adiciones y 3 borrados
  1. 4 0
      ChangeLog
  2. 12 1
      debian/changelog
  3. 3 1
      dselect/main.cc
  4. 1 1
      release.sh

+ 4 - 0
ChangeLog

@@ -1,3 +1,7 @@
+Tue Dec  7 14:08:21 CET 1999 Wichert Akkerman <wakkerma@debian.org>
+
+  * Fix display of copyright in menu
+
 Tue Dec  7 01:26:21 CET 1999 Wichert Akkerman <wakkerma@debian.org>
 
   * Commend changes made in pkgdepcon.cc; they're not completely

+ 12 - 1
debian/changelog

@@ -1,11 +1,22 @@
+dpkg (1.6.3) unstable; urgency=high
+
+  * Comment dselect changes from 1.6.2, they seem to have a problem
+    Closes: #52043,52058,52088,51437
+  * Really fix emacs-stuff. Hopefully. Closes: #51919,51525
+  * Fix copyright display in dselect menu, Closes: #52093
+  * Fix uid/gid-changes in start-stop-daemon, Closes: #52081
+
+ -- Wichert Akkerman <wakkerma@debian.org>  UNRELEASED
+
 dpkg (1.6.2) unstable; urgency=low
 
   * New dpkg-scansources, Closes: #51888
   * Fix default for elispdir, Closes: #51919,51525
   * New manpages for cleanup-info and dpkg-divert, Closes: #51539, 46657
   * Buildsystem updates, Closes: #51525, 51855, 51914
+  * Modify dselect behaviour for suggests and recommends
 
- -- Wichert Akkerman <wakkerma@debian.org>  UNRELEASED
+ -- Wichert Akkerman <wakkerma@debian.org>  Sun,  5 Dec 1999 19:29:50 +0100
 
 dpkg (1.6.1) unstable; urgency=low
 

+ 3 - 1
dselect/main.cc

@@ -226,6 +226,7 @@ void dme(int i, int so) {
 }
 
 int refreshmenu(void) {
+  char buf[2048];
   curseson(); cbreak(); noecho(); nonl(); keypad(stdscr,TRUE);
 
   int y,x;
@@ -246,7 +247,8 @@ int refreshmenu(void) {
          "Press ENTER to confirm selection.   ^L to redraw screen.\n\n"));
 
   attrset(A_NORMAL);
-  addstr(gettext(copyrightstring));
+  sprintf(buf,gettext(copyrightstring),DPKG_VERSION_ARCH);
+  addstr(buf);
 
   return i;
 }

+ 1 - 1
release.sh

@@ -10,7 +10,7 @@ rm -rf `find . -name CVS -type d`
 rm -f `find . -name .cvsignore -type f`
 
 # Remove any cruft files...
-rm -f `find . -name '*.orig' -o -name '*.rej' -o -name '*~'`
+rm -f `find . -name '*.orig' -o -name '*.rej' -o -name '*~' -o name '.#*'`
 
 # Generate all the gettext stuff
 cd po