Bug#544567: current state of IPv6 support in Debian

View: New views
3 Messages — Rating Filter:   Alert me  

Parent Message unknown Bug#544567: current state of IPv6 support in Debian

by Ivan Shmakov-4 :: Rate this Message:

Reply (Restricted by the Administrator) | Reply to Author | View Threaded | Show Only this Message

The following message is a courtesy copy of an article
that has been posted to gmane.linux.debian.devel.ipv6 as well.

>>>>> "IS" == Ivan Shmakov <oneingray@...> writes:

[...]

 IS> portmap -- lacks IPv6 support, necessary for NFS over IPv6 to work
 IS> (Bug#515128);

        Well, a trivial change (below) has seemingly made rpcbind
        installable and Bug#544567 be worked-around.  But I still have
        no clue what should be the proper fix?

[...]

diff -u rpcbind-0.2.0/debian/rules rpcbind-0.2.0/debian/rules
--- rpcbind-0.2.0/debian/rules
+++ rpcbind-0.2.0/debian/rules
@@ -51,6 +51,8 @@
 
  # Add here commands to install the package into debian/rpcbind.
  $(MAKE) DESTDIR=$(CURDIR)/debian/rpcbind install
+ mv -- debian/rpcbind/usr/bin/rpcinfo \
+    debian/rpcbind/usr/bin/rpcinfo.rpcbind
 
 
 # Build architecture-independent files here.
@@ -79,6 +81,8 @@
  dh_link
  dh_strip
  dh_compress
+ mv -- debian/rpcbind/usr/share/man/man8/rpcinfo.8.gz \
+    debian/rpcbind/usr/share/man/man8/rpcinfo.rpcbind.8.gz
  dh_fixperms
 # dh_perl
 # dh_makeshlibs
diff -u rpcbind-0.2.0/debian/changelog rpcbind-0.2.0/debian/changelog
--- rpcbind-0.2.0/debian/changelog
+++ rpcbind-0.2.0/debian/changelog
@@ -1,3 +1,21 @@
+rpcbind (0.2.0-1.is+0.3) unstable; urgency=low
+
+  * Fixed one more time.
+
+ -- Ivan Shmakov <ivan@...>  Sat, 19 Sep 2009 13:45:05 +0700
+
+rpcbind (0.2.0-1.is+0.2) unstable; urgency=low
+
+  * Renamed rpcinfo.8, too.
+
+ -- Ivan Shmakov <ivan@...>  Sat, 19 Sep 2009 13:42:30 +0700
+
+rpcbind (0.2.0-1.is+0.1) unstable; urgency=low
+
+  * Renamed rpcinfo to rpcinfo.rpcbind (closes: #544567)
+
+ -- Ivan Shmakov <ivan@...>  Sat, 19 Sep 2009 11:13:49 +0700
+
 rpcbind (0.2.0-1) unstable; urgency=low
 
   * Initial release

--
FSF associate member #7257



--
To UNSUBSCRIBE, email to debian-bugs-rc-REQUEST@...
with a subject of "unsubscribe". Trouble? Contact listmaster@...


Bug#441361: current state of IPv6 support in Debian

by Ivan Shmakov-4 :: Rate this Message:

Reply (Restricted by the Administrator) | Reply to Author | View Threaded | Show Only this Message

The following message is a courtesy copy of an article
that has been posted to gmane.linux.debian.devel.ipv6 as well.

>>>>> "IS" == Ivan Shmakov <ivan@...> writes:

 IS> Well, a trivial change (below) has seemingly made rpcbind
 IS> installable and Bug#544567 be worked-around.  But I still have no
 IS> clue what should be the proper fix?

        Given that I now have rpcbind running, I wonder, what should be
        done for nfs-utils to support NFS over IPv6 as well?

        Is it just a matter of adding --enable-ipv6 and --enable-tirpc
        to the configure command line?  (And if it's so, could someone
        with a Debian Squeeze at hand try building nfs-utils (1.2.0-4)
        changed as shown by the interdiff below?)

$ interdiff <(zcat .../pool/main/n/nfs-utils/nfs-utils_1.2.0-4.diff.gz) \
      <(zcat nfs-utils_1.2.0-4.is+0.2.diff.gz)
diff -u nfs-utils-1.2.0/debian/rules nfs-utils-1.2.0/debian/rules
--- nfs-utils-1.2.0/debian/rules
+++ nfs-utils-1.2.0/debian/rules
@@ -23,6 +23,8 @@
  dh_testdir
  CFLAGS="$(CFLAGS)" ./configure \
  --mandir='$${prefix}/share/man' \
+ --enable-ipv6 \
+ --enable-tirpc \
  --with-tcp-wrappers
  $(MAKE) $(MAKEFLAGS)
  touch build-stamp
diff -u nfs-utils-1.2.0/debian/control nfs-utils-1.2.0/debian/control
--- nfs-utils-1.2.0/debian/control
+++ nfs-utils-1.2.0/debian/control
@@ -2,7 +2,7 @@
 Priority: standard
 Section: net
 Maintainer: Anibal Monsalve Salazar <anibal@...>
-Build-Depends: debhelper (>= 5), libwrap0-dev, libevent-dev, libnfsidmap-dev, libkrb5-dev, libgssglue-dev, librpcsecgss-dev (>= 0.17), libblkid-dev, libkeyutils-dev, pkg-config, quilt (>= 0.40), libldap2-dev
+Build-Depends: debhelper (>= 5), libwrap0-dev, libevent-dev, libnfsidmap-dev, libkrb5-dev, libgssglue-dev, librpcsecgss-dev (>= 0.17), libblkid-dev, libkeyutils-dev, pkg-config, quilt (>= 0.40), libldap2-dev, libtirpc-dev
 Standards-Version: 3.8.1
 Homepage: http://nfs.sourceforge.net/
 
diff -u nfs-utils-1.2.0/debian/changelog nfs-utils-1.2.0/debian/changelog
--- nfs-utils-1.2.0/debian/changelog
+++ nfs-utils-1.2.0/debian/changelog
@@ -1,3 +1,16 @@
+nfs-utils (1:1.2.0-4.is+0.2) unstable; urgency=low
+
+  * Add --enable-tirpc to configure.
+  * Depend on libtirpc-dev.
+
+ -- Ivan Shmakov <ivan@...>  Thu, 05 Nov 2009 00:59:08 +0600
+
+nfs-utils (1:1.2.0-4.is+0.1) 1gray-misc; urgency=low
+
+  * Add --enable-ipv6 to configure.
+
+ -- Ivan Shmakov <ivan@...>  Thu, 05 Nov 2009 00:45:54 +0600
+
 nfs-utils (1:1.2.0-4) unstable; urgency=low
 
   * Removing myself from uploaders.

[...]

--
FSF associate member #7257



--
To UNSUBSCRIBE, email to debian-bugs-dist-REQUEST@...
with a subject of "unsubscribe". Trouble? Contact listmaster@...


Bug#441361: current state of IPv6 support in Debian

by Ivan Shmakov-4 :: Rate this Message:

Reply (Restricted by the Administrator) | Reply to Author | View Threaded | Show Only this Message

The following message is a courtesy copy of an article
that has been posted to gmane.linux.debian.devel.ipv6 as well.

>>>>> "IS" == Ivan Shmakov <ivan@...> writes:

[...]

 IS> Given that I now have rpcbind running, I wonder, what should be
 IS> done for nfs-utils to support NFS over IPv6 as well?

 IS> Is it just a matter of adding --enable-ipv6 and --enable-tirpc to
 IS> the configure command line?

[...]

        So far, I've worked around Bug#544567, built the nfs-utils
        package from Debian Squeeze with the change suggested above for
        Debian Lenny, and, finally, did:

users # apt-get install -V nfs-kernel-server=1:1.2.0-4.is+0.4~bpo50~is+0.1
...
Setting up nfs-kernel-server (1:1.2.0-4.is+0.4~bpo50~is+0.1) ...

Starting NFS common utilities: statd.
Exporting directories for NFS kernel daemon....
Starting NFS kernel daemon: nfsd mountd.
users # exportfs
users # exportfs -o ro,all_squash \*:/var/public
users # mount -t nfs -o ro,nosuid,nodev users.test1.ipv6.uusia.org:/var/public /mnt/

        ... And saw my linux.uml instance (as of user-mode-linux
        2.6.26-1um-2+15) go nuts!  But nevertheless, it doesn't complain
        on users.test1.ipv6.uusia.org having no IPv4 address anymore.

        (Looks like I'll have to do some testing under KVM instead.)

* See also

http://bugs.debian.org/441361
http://bugs.debian.org/544567
http://permalink.gmane.org/gmane.linux.debian.backports.general/5762

--
FSF associate member #7257



--
To UNSUBSCRIBE, email to debian-bugs-dist-REQUEST@...
with a subject of "unsubscribe". Trouble? Contact listmaster@...