diff options
author | chip <chip> | 2001-02-27 00:57:54 +0000 |
---|---|---|
committer | chip <chip> | 2001-02-27 00:57:54 +0000 |
commit | 952e745e0119f574a110b94bcf73a88e96aa682b (patch) | |
tree | 3f72b1c55d8c4ebecf19632bb3fa5a3bcd8b4847 | |
parent | c9d55552edf17d4efc15530e5f4f5c6bc978445b (diff) | |
download | nfs-utils-952e745e0119f574a110b94bcf73a88e96aa682b.tar.gz nfs-utils-952e745e0119f574a110b94bcf73a88e96aa682b.tar.xz nfs-utils-952e745e0119f574a110b94bcf73a88e96aa682b.zip |
2001-02-26 Chip Salzenberg <chip@valinux.com>
* debian/changelog: Version 0.3.1-1.
* Mention upstream source and license in copyright file.
* Add build-Depends for debhelper and libwrap0-dev.
-rw-r--r-- | ChangeLog | 8 | ||||
-rw-r--r-- | debian/changelog | 10 | ||||
-rw-r--r-- | debian/control | 1 | ||||
-rw-r--r-- | debian/copyright | 12 | ||||
-rwxr-xr-x | debian/rules | 6 |
5 files changed, 33 insertions, 4 deletions
@@ -1,3 +1,9 @@ +2001-02-26 Chip Salzenberg <chip@valinux.com> + + * debian/changelog: Version 0.3.1-1. + * Mention upstream source and license in copyright file. + * Add build-Depends for debhelper and libwrap0-dev. + 2001-02-20 Lon Hohberger <hohberger@missioncriticallinux.com> * etc/nodist/nfs-server: Changed chkconfig line to 60 20 @@ -22,7 +28,7 @@ * configure.in (VERSION): Set to "0.3.1". * configure: Regenerated. - * nfs-utils.spec: Likewise. +o * nfs-utils.spec: Likewise. * README: Updated for 0.3.1. diff --git a/debian/changelog b/debian/changelog index 6a5f58e..0ee769e 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,13 @@ +nfs-utils (1:0.3.1-1) unstable; urgency=medium + + * New upstream version. + * Incorporate (but not all) Bug Party changes by David LaBissoniere + <labiss@usit.net>: + > Mention upstream source and license in copyright file. (closes: #79997) + > Add Build-Depends for debhelper and libwrap0-dev. (closes: #84131) + + -- Chip Salzenberg <chip@debian.org> Mon, 26 Feb 2001 16:51:15 -0800 + nfs-utils (1:0.3-2) unstable; urgency=low * Upstream: diff --git a/debian/control b/debian/control index a0d6c30..c108835 100644 --- a/debian/control +++ b/debian/control @@ -2,6 +2,7 @@ Source: nfs-utils Priority: standard Section: net Maintainer: Chip Salzenberg <chip@debian.org> +Build-Depends: debhelper, libwrap0-dev Standards-Version: 3.1.1.1 Package: nfs-kernel-server diff --git a/debian/copyright b/debian/copyright index 2d75428..7dd1c08 100644 --- a/debian/copyright +++ b/debian/copyright @@ -1 +1,11 @@ -The copyright of this package is GPL, version 2 or later. +This package was debianized by Chip Salzenberg <chip@debian.org> on Fri, 3 Dec 1999 20:00:00 -0800 + +It was downloaded from http://sourceforge.net/projects/nfs/ + +View individual source files for respective authors. + + +You are free to distribute this software under the terms of +the GNU General Public License, version 2 or later. +On Debian systems, the complete text of the GNU General Public +License can be found in the file /usr/share/common-licenses/GPL. diff --git a/debian/rules b/debian/rules index 9f46a9c..58eb43a 100755 --- a/debian/rules +++ b/debian/rules @@ -44,8 +44,10 @@ binary-arch: build dh_movefiles # Fixups Start Here # cd debian && \ - for f in rpc.lockd rpc.statd showmount; do \ - mv tmp/usr/sbin/$$f nfs-common/sbin/$$f; \ + for f in lockd statd showmount; do \ + mv tmp/usr/sbin/*$$f nfs-common/sbin; \ + perl -pi -e "s#/usr(/sbin/(rpc\\.)?$$f)#\$$1#g" \ + nfs-common/usr/share/man/man8/$$f.8; \ done; \ rm -f tmp/usr/sbin/*quota*; \ rm -f tmp/usr/share/man/man8/*quota*; \ |