From 91125a09a86edb9d4593a4451546debe407c9b3b Mon Sep 17 00:00:00 2001 From: Wichert Akkerman Date: Sat, 25 Dec 1999 03:21:47 +0000 Subject: [PATCH] dselect/pkgtop.cc: use waddnstr instead of waddch so we don't strip the 8th bit of characters Replace `Debian Linux' with `Debian GNU/Linux' in some more places --- ChangeLog | 1 + debian/changelog | 9 ++------- doc/ja/dpkg-deb.1 | 2 +- dpkg-deb/dpkg-deb.1 | 2 +- dpkg-deb/main.c | 2 +- dselect/main.cc | 2 +- main/main.c | 2 +- scripts/cleanup-info.pl | 2 +- scripts/dpkg-name.1 | 2 +- scripts/dpkg-safefilelist.1 | 2 +- split/dpkg-split.8 | 2 +- split/main.c | 2 +- utils/start-stop-daemon.c | 2 +- 13 files changed, 14 insertions(+), 18 deletions(-) diff --git a/ChangeLog b/ChangeLog index 03d3af9f..1e5f7c69 100644 --- a/ChangeLog +++ b/ChangeLog @@ -2,6 +2,7 @@ Sat Dec 25 04:04:48 CET 1999 Wichert Akkerman * dselect/pkgtop.cc: use waddnstr instead of waddch so we don't strip the 8th bit of characters + * Replace `Debian Linux' with `Debian GNU/Linux' in some more places Sat Dec 25 02:50:31 CET 1999 Wichert Akkerman diff --git a/debian/changelog b/debian/changelog index 2cb2fd7d..9c5badd5 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,11 +1,6 @@ -dpkg (1.6.6) unstable; urgency=low - - * Don't strip 8th bit in dselect packagelists - - -- Wichert Akkerman UNRELEASED - dpkg (1.6.5) unstable; urgency=low + * Don't strip 8th bit in dselect packagelists * Don't use \z in dpkg-scansources, Closes: Bug# 53182 * Correctly unregister internals manual, Closes: Bug# 53200 * dselect helpessages can be translated now, Closes: Bug# 51381 @@ -18,7 +13,7 @@ dpkg (1.6.5) unstable; urgency=low * Fix segfaults when producing a diff between current and new conffile, Closes: Bug# 52197 - -- Wichert Akkerman Sat, 25 Dec 1999 02:53:25 +0100 + -- Wichert Akkerman Sat, 25 Dec 1999 04:12:05 +0100 dpkg (1.6.4) unstable; urgency=low diff --git a/doc/ja/dpkg-deb.1 b/doc/ja/dpkg-deb.1 index c7ad6f4d..e2c1513a 100644 --- a/doc/ja/dpkg-deb.1 +++ b/doc/ja/dpkg-deb.1 @@ -11,7 +11,7 @@ .\"WORD: maintainer script ´ÉÍý¥¹¥¯¥ê¥×¥È .\"WORD: premission ¥Ñ¡¼¥ß¥Ã¥·¥ç¥ó .\"WORD: control-file-names À©¸æ¥Õ¥¡¥¤¥ë̾ -.TH DPKG\-DEB 1 "1st June 1996" "Debian Project" "Debian Linux manual" +.TH DPKG\-DEB 1 "1st June 1996" "Debian Project" "Debian GNU/Linux manual" .SH ̾Á° dpkg\-deb \- Debian ¥Ñ¥Ã¥±¡¼¥¸¥¢¡¼¥«¥¤¥Ö(.deb) Áàºî¥Ä¡¼¥ë .SH ½ñ¼° diff --git a/dpkg-deb/dpkg-deb.1 b/dpkg-deb/dpkg-deb.1 index 589e5c57..d3bdf474 100644 --- a/dpkg-deb/dpkg-deb.1 +++ b/dpkg-deb/dpkg-deb.1 @@ -1,6 +1,6 @@ .\" Hey, Emacs! This is an -*- nroff -*- source file. .\" Authors: Ian Jackson -.TH DPKG\-DEB 1 "1st June 1996" "Debian Project" "Debian Linux manual" +.TH DPKG\-DEB 1 "1st June 1996" "Debian Project" "Debian GNU/Linux manual" .SH NAME dpkg\-deb \- Debian package archive (.deb) manipulation tool .SH SYNOPSIS diff --git a/dpkg-deb/main.c b/dpkg-deb/main.c index 9eea6204..6334e517 100644 --- a/dpkg-deb/main.c +++ b/dpkg-deb/main.c @@ -41,7 +41,7 @@ #include "dpkg-deb.h" static void printversion(void) { - if (fputs(_("Debian Linux `" BACKEND "' package archive backend version "), stdout) < 0) werr("stdout"); + if (fputs(_("Debian GNU/Linux `" BACKEND "' package archive backend version "), stdout) < 0) werr("stdout"); if (fputs(DPKG_VERSION_ARCH ".\n", stdout) < 0) werr("stdout"); if (fputs(_("Copyright (C) 1994-1996 Ian Jackson. This is free software; see the\n" "GNU General Public Licence version 2 or later for copying conditions.\n" diff --git a/dselect/main.cc b/dselect/main.cc index a1637ef2..bf683cdd 100644 --- a/dselect/main.cc +++ b/dselect/main.cc @@ -76,7 +76,7 @@ static const menuentry menuentries[]= { }; static const char programdesc[]= - N_("Debian Linux `%s' package handling frontend."); + N_("Debian GNU/Linux `%s' package handling frontend."); static const char copyrightstring[]= N_( "Version %s. Copyright (C) 1994-1996 Ian Jackson. This is\n" diff --git a/main/main.c b/main/main.c index c1148f92..acff3685 100644 --- a/main/main.c +++ b/main/main.c @@ -41,7 +41,7 @@ #include "main.h" static void printversion(void) { - if (fputs(_("Debian Linux `"), stdout) < 0) werr("stdout"); + if (fputs(_("Debian GNU/Linux `"), stdout) < 0) werr("stdout"); if (fputs(DPKG, stdout) < 0) werr("stdout"); if (fputs(_("' package management program version "), stdout) < 0) werr("stdout"); if (fputs( DPKG_VERSION_ARCH ".\n", stdout) < 0) werr("stdout"); diff --git a/scripts/cleanup-info.pl b/scripts/cleanup-info.pl index e6bfcc31..d16e3ce9 100755 --- a/scripts/cleanup-info.pl +++ b/scripts/cleanup-info.pl @@ -27,7 +27,7 @@ my $version = '1.1.6'; # This line modified by Makefile sub version { print STDERR <__.deb. Packages renamed by dpkg-name will follow this structure. Generally this will have no impact on how diff --git a/scripts/dpkg-safefilelist.1 b/scripts/dpkg-safefilelist.1 index 7a5b8bbf..6c0621c4 100644 --- a/scripts/dpkg-safefilelist.1 +++ b/scripts/dpkg-safefilelist.1 @@ -23,7 +23,7 @@ This will find all files in the current directory, and sort them, printing symlinks after their targets. .SH BUGS? Successfully tested on -.B Debian Linux +.B Debian GNU/Linux systems only. .SH SEE ALSO .BR dpkg-deb (8), diff --git a/split/dpkg-split.8 b/split/dpkg-split.8 index e004eaaf..72c1dad0 100644 --- a/split/dpkg-split.8 +++ b/split/dpkg-split.8 @@ -1,6 +1,6 @@ .\" Hey, Emacs! This is an -*- nroff -*- source file. .\" Authors: Ian Jackson -.TH dpkg-split 1 "23rd June 1996" "Debian Linux" +.TH dpkg-split 1 "23rd June 1996" "Debian GNU/Linux" .SH NAME dpkg\-split \- Debian package archive split/join tool .SH SYNOPSIS diff --git a/split/main.c b/split/main.c index b90818b7..88c2dd99 100644 --- a/split/main.c +++ b/split/main.c @@ -35,7 +35,7 @@ static void printversion(void) { if (fputs - (_("Debian Linux `dpkg-split' package split/join tool; version "), stdout) < 0) werr ("stdout"); + (_("Debian GNU/Linux `dpkg-split' package split/join tool; version "), stdout) < 0) werr ("stdout"); if (fputs (DPKG_VERSION_ARCH ".\n", stdout) < 0) werr ("stdout"); if (fputs (_("Copyright (C) 1994-1996 Ian Jackson. This is free software; see the\n" "GNU General Public Licence version 2 or later for copying conditions.\n" diff --git a/utils/start-stop-daemon.c b/utils/start-stop-daemon.c index dc5b4870..def1026d 100644 --- a/utils/start-stop-daemon.c +++ b/utils/start-stop-daemon.c @@ -161,7 +161,7 @@ static void do_help(void) { printf("\ -start-stop-daemon for Debian Linux - small and fast C version written by\n\ +start-stop-daemon for Debian GNU/Linux - small and fast C version written by\n\ Marek Michalkiewicz , public domain.\n" VERSION "\n\ \n\ -- 2.39.5