diff options
author | Wichert Akkerman <wakkerma@debian.org> | 1999-09-27 01:17:04 +0000 |
---|---|---|
committer | Wichert Akkerman <wakkerma@debian.org> | 1999-09-27 01:17:04 +0000 |
commit | deda6507a2f39896d50d415819c50605acf76819 (patch) | |
tree | 0d73ed6b806aef5f33b1df38507984bf7908c43d /debian | |
parent | d78fcf7a1781ea49ac3c88c8b0188bec90be3182 (diff) | |
download | dpkg-deda6507a2f39896d50d415819c50605acf76819.tar.gz |
Updated to dpkg 1.4.1.9, and added spanish translation
Diffstat (limited to 'debian')
-rw-r--r-- | debian/changelog | 16 | ||||
-rw-r--r-- | debian/dev-README | 4 | ||||
-rwxr-xr-x | debian/rules | 13 |
3 files changed, 25 insertions, 8 deletions
diff --git a/debian/changelog b/debian/changelog index 6ac5578e8..b751be907 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,19 @@ +dpkg (1.4.1.9) unstable; urgency=low + + * Non-maintainer release. + * Updated dpkg-scansources to current version from Roderick Schertler + * Update location of GPL in internals-manual + * Update location of GPL and dpkg copyright in all manpages + * Include patch from Roman Hodek for dpkg-source to handle diffs of files + with lines that begin with two dashes. + * Move dpkg-scansources to dpkg-dev package + * Move dpkg-scansources manpage to section 8 + * Fix error that moved a lot of manpages to the dpkg package. + * It looks like not reading the available-file for listfiles was not greeted + with much enthiousiasm, so reverse the change. + + -- Wichert Akkerman <wakkerma@debian.org> Wed, 15 Sep 1999 03:45:07 +0200 + dpkg (1.4.1.8) unstable; urgency=low * Non-maintainer release. diff --git a/debian/dev-README b/debian/dev-README index 9c9df842c..5f610efd1 100644 --- a/debian/dev-README +++ b/debian/dev-README @@ -1,2 +1,2 @@ -All dpkg documentation in /usr/doc, including the developers' -information which comes in the dpkg-dev package, is in /usr/doc/dpkg. +All dpkg documentation in /usr/share/doc, including the developers' +information which comes in the dpkg-dev package, is in /usr/share/doc/dpkg. diff --git a/debian/rules b/debian/rules index 18b623577..e9c2031d6 100755 --- a/debian/rules +++ b/debian/rules @@ -107,13 +107,14 @@ binary-trees: build set -e; for f in \ usr/share/doc/dpkg/{internals.html,changelog.manuals.gz} \ usr/bin/dpkg-{source,genchanges,gencontrol,shlibdeps,buildpackage,parsechangelog} \ - usr/bin/{dpkg-distaddfile,822-date,dpkg-scanpackages,dpkg-name,dpkg-architecture} \ - usr/share/man{/ja,}/man1/dpkg-{source,genchanges,gencontrol,shlibdeps,buildpackage,architecture}.1.gz \ - usr/share/man{/ja,}/man1/{dpkg-parsechangelog,dpkg-distaddfile,822-date,dpkg-name}.1.gz \ - usr/share/man{/ja,}/man5 usr/share/man{/ja,}/man8/dpkg-scanpackages.8.gz \ + usr/bin/{dpkg-distaddfile,822-date,dpkg-scanpackages,dpkg-scansources,dpkg-name,dpkg-architecture} \ + usr/share/man/{ja,.}/man1/dpkg-{source,genchanges,gencontrol,shlibdeps,buildpackage,architecture}.1.gz \ + usr/share/man/{ja,.}/man1/{dpkg-parsechangelog,dpkg-distaddfile,822-date,dpkg-name}.1.gz \ + usr/share/man/{ja,.}/man5 usr/share/man/{ja,.}/man8/dpkg-{scanpackages,scansources}.8.gz \ usr/lib/dpkg/parsechangelog usr/lib/dpkg/controllib.pl \ - ; do if [ -e debian/tmp-main/$$f ]; then mv debian/tmp-main/$$f debian/tmp-dev/$$f; fi \ - done + ; do if [ -e debian/tmp-main/$$f -o -L debian/tmp-main/$$f ] ; \ + then mv -v debian/tmp-main/$$f debian/tmp-dev/$$f; \ + fi done binary-indep: binary-trees $(checkdir) |