+nfs-utils (1:1.1.1~git-20070706-1) unstable; urgency=low
+
+ * New upstream release.
+ * Fixes the "bg" mount option. (Closes: #301955)
+ * Update debian/copyright to tell that we're on git snapshots again.
+ * Remove 01-fix-hostent-memory-leak.diff and 04-umount-exit-status.patch,
+ as they are included in upstream now.
+
+ -- Steinar H. Gunderson <sesse@debian.org> Mon, 06 Aug 2007 20:01:49 +0200
+
nfs-utils (1:1.1.0-14) unstable; urgency=low
* Install mount.nfs setuid directly instead of doing dpkg-statoverride in
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/.
+This is a git snapshot, downloaded August 6th, 2007 using
+the following commands:
+
+ git clone git://git.linux-nfs.org/pub/linux/nfs-utils/ nfs-utils-1.1.1\~git-20070706
+ ( cd nfs-utils-1.1.1\~git-20070706/ && sh ./autogen.sh )
+ tar --exclude=.git -zcf nfs-utils_1.1.1\~git-20070706.orig.tar.gz nfs-utils-1.1.1\~git-20070706
+
+Regular releases are avilable from http://sourceforge.net/projects/nfs/.
View individual source files for respective authors.
+++ /dev/null
-Index: nfs-utils-1.1.0/support/export/client.c
-===================================================================
---- nfs-utils-1.1.0.orig/support/export/client.c
-+++ nfs-utils-1.1.0/support/export/client.c
-@@ -262,6 +262,7 @@ client_compose(struct in_addr addr)
- name = add_name(name, clp->m_hostname);
- }
- }
-+ free(he);
- return name;
- }
-
+++ /dev/null
-mount.c seems to assume that nfsumount() uses standard C true/false
-return values, and inverts them for the exit status (where 0 is
-traditionally considered success). However, nfsumount() consistently
-seems to use 0 for success, and thus a success gets returned as exit
-status 1 and a failure as exit status 0. This confuses at least
-the GNOME drive manager applet, and probably others as well.
-
-Index: nfs-utils-1.1.0/utils/mount/mount.c
-===================================================================
---- nfs-utils-1.1.0.orig/utils/mount/mount.c
-+++ nfs-utils-1.1.0/utils/mount/mount.c
-@@ -371,7 +371,7 @@ int main(int argc, char *argv[])
- umount_usage();
- exit(1);
- }
-- exit(nfsumount(argc, argv) ? 0 : 1);
-+ exit(nfsumount(argc, argv));
- }
-
- if(argv[1] && argv[1][0] == '-') {
-01-fix-hostent-memory-leak.diff
02-document-debian-init-scripts.patch
03-sm-notify-in-sbin.patch
-04-umount-exit-status.patch
05-ignore-quota-option.patch
06-gssd-manpage-typo.patch