From 55b17933f8ab22b35c25eff2941c14f97dc2372c Mon Sep 17 00:00:00 2001 From: Wichert Akkerman Date: Tue, 7 Dec 1999 16:04:06 +0000 Subject: [PATCH] Small fixups --- ChangeLog | 4 ++++ debian/changelog | 13 ++++++++++++- dselect/main.cc | 4 +++- release.sh | 2 +- 4 files changed, 20 insertions(+), 3 deletions(-) diff --git a/ChangeLog b/ChangeLog index 49d5bca1..ba8d5e86 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,7 @@ +Tue Dec 7 14:08:21 CET 1999 Wichert Akkerman + + * Fix display of copyright in menu + Tue Dec 7 01:26:21 CET 1999 Wichert Akkerman * Commend changes made in pkgdepcon.cc; they're not completely diff --git a/debian/changelog b/debian/changelog index 178d2a23..2f7732e4 100644 --- a/debian/changelog +++ b/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 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 UNRELEASED + -- Wichert Akkerman Sun, 5 Dec 1999 19:29:50 +0100 dpkg (1.6.1) unstable; urgency=low diff --git a/dselect/main.cc b/dselect/main.cc index 632d1ba4..0d05e52c 100644 --- a/dselect/main.cc +++ b/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; } diff --git a/release.sh b/release.sh index 96316c26..cca1559d 100755 --- a/release.sh +++ b/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 -- 2.39.5