diff options
author | Maurice van der Pot <griffon26@gentoo.org> | 2005-06-08 20:39:05 +0000 |
---|---|---|
committer | Maurice van der Pot <griffon26@gentoo.org> | 2005-06-08 20:39:05 +0000 |
commit | 6a4b847e874b32d257471222f538c65651e7a461 (patch) | |
tree | b07d787547c8c07bf641be661c97f711632a2cb5 /net-fs/coda/files | |
parent | Stable on hppa (diff) | |
download | gentoo-2-6a4b847e874b32d257471222f538c65651e7a461.tar.gz gentoo-2-6a4b847e874b32d257471222f538c65651e7a461.tar.bz2 gentoo-2-6a4b847e874b32d257471222f538c65651e7a461.zip |
Added coda-6.0.11, removed old versions, fixed a few minor bugs including bug #93791
(Portage version: 2.0.51.22-r1)
Diffstat (limited to 'net-fs/coda/files')
-rw-r--r-- | net-fs/coda/files/6.0.10/venus (renamed from net-fs/coda/files/6.0.7/venus) | 2 | ||||
-rw-r--r-- | net-fs/coda/files/coda-6.0.3-iowr.patch | 12 | ||||
-rw-r--r-- | net-fs/coda/files/coda-6.0.6-gcc3.4.patch | 46 | ||||
-rw-r--r-- | net-fs/coda/files/digest-coda-6.0.11 | 1 | ||||
-rw-r--r-- | net-fs/coda/files/digest-coda-6.0.3 | 1 | ||||
-rw-r--r-- | net-fs/coda/files/digest-coda-6.0.6 | 1 | ||||
-rw-r--r-- | net-fs/coda/files/digest-coda-6.0.7 | 1 | ||||
-rw-r--r-- | net-fs/coda/files/venus | 31 |
8 files changed, 2 insertions, 93 deletions
diff --git a/net-fs/coda/files/6.0.7/venus b/net-fs/coda/files/6.0.10/venus index d8a262c0cead..12fcc7182550 100644 --- a/net-fs/coda/files/6.0.7/venus +++ b/net-fs/coda/files/6.0.10/venus @@ -1,7 +1,7 @@ #!/sbin/runscript # Copyright 1999-2004 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/net-fs/coda/files/6.0.7/venus,v 1.1 2004/10/23 18:18:47 griffon26 Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-fs/coda/files/6.0.10/venus,v 1.1 2005/06/08 20:39:05 griffon26 Exp $ depend() { need net diff --git a/net-fs/coda/files/coda-6.0.3-iowr.patch b/net-fs/coda/files/coda-6.0.3-iowr.patch deleted file mode 100644 index f7f374c17051..000000000000 --- a/net-fs/coda/files/coda-6.0.3-iowr.patch +++ /dev/null @@ -1,12 +0,0 @@ -diff -ru coda-6.0.3.orig/lib-src/kernel-includes/coda.h coda-6.0.3/lib-src/kernel-includes/coda.h ---- coda-6.0.3.orig/lib-src/kernel-includes/coda.h 2003-05-24 03:57:52.000000000 +0930 -+++ coda-6.0.3/lib-src/kernel-includes/coda.h 2004-02-13 20:57:57.012548016 +0930 -@@ -311,7 +311,7 @@ - #define VC_MAXMSGSIZE sizeof(union inputArgs)+sizeof(union outputArgs) +\ - VC_MAXDATASIZE - --#define CIOC_KERNEL_VERSION _IOWR('c', 10, sizeof (int)) -+#define CIOC_KERNEL_VERSION _IOWR('c', 10, int) - - #if 0 - #define CODA_KERNEL_VERSION 0 /* don't care about kernel version number */ diff --git a/net-fs/coda/files/coda-6.0.6-gcc3.4.patch b/net-fs/coda/files/coda-6.0.6-gcc3.4.patch deleted file mode 100644 index 246310ac9033..000000000000 --- a/net-fs/coda/files/coda-6.0.6-gcc3.4.patch +++ /dev/null @@ -1,46 +0,0 @@ -diff -Naur coda-6.0.6.old/coda-src/kerndep/pioctl.h coda-6.0.6/coda-src/kerndep/pioctl.h ---- coda-6.0.6.old/coda-src/kerndep/pioctl.h 2003-05-23 20:26:31.000000000 +0200 -+++ coda-6.0.6/coda-src/kerndep/pioctl.h 2004-05-10 15:28:51.172684560 +0200 -@@ -100,7 +100,8 @@ - - - /* people who understand ioctling probably know why this is useful... */ --#define _VICEIOCTL(id) (_IOW('V', id, struct ViceIoctl)) -+//#define _VICEIOCTL(id) (_IOW('V', id, struct ViceIoctl)) -+#define _VICEIOCTL(id) (_IOC(_IOC_WRITE,'V',id,sizeof(struct ViceIoctl))) - #define _VALIDVICEIOCTL(com) (com >= _VICEIOCTL(0) && com <= _VICEIOCTL(255)) - - -diff -Naur coda-6.0.6.old/coda-src/venus/comm.cc coda-6.0.6/coda-src/venus/comm.cc ---- coda-6.0.6.old/coda-src/venus/comm.cc 2004-02-02 20:32:34.000000000 +0100 -+++ coda-6.0.6/coda-src/venus/comm.cc 2004-05-10 14:52:08.982468360 +0200 -@@ -173,7 +173,7 @@ - sei.AckPoint = sftp_ackpoint; - sei.PacketSize = sftp_packetsize; - sei.EnforceQuota = 1; -- sei.Port.Tag = (enum PortTag)0; -+ sei.Port.Tag = (PortTag)0; - SFTP_Activate(&sei); - - /* RPC2 initialization. */ -diff -Naur coda-6.0.6.old/coda-src/venus/fso.h coda-6.0.6/coda-src/venus/fso.h ---- coda-6.0.6.old/coda-src/venus/fso.h 2004-03-05 22:15:53.000000000 +0100 -+++ coda-6.0.6/coda-src/venus/fso.h 2004-05-10 14:49:23.400640624 +0200 -@@ -539,7 +539,7 @@ - void DetachHdbBindings(); - void DetachHdbBinding(binding *, int =0); - int PredetermineFetchState(int, int); -- void SetFetchAllowed(enum HoardFetchState new_state) -+ void SetFetchAllowed(HoardFetchState new_state) - { FetchAllowed = new_state; } - int IsFetchAllowed() - { if (FetchAllowed == HF_Fetch) -@@ -547,7 +547,7 @@ - else - return 0; - } -- void SetAskingAllowed(enum HoardAskState new_state) -+ void SetAskingAllowed(HoardAskState new_state) - { AskingAllowed = new_state; } - int IsAskingAllowed() - { if (AskingAllowed == HA_Ask) diff --git a/net-fs/coda/files/digest-coda-6.0.11 b/net-fs/coda/files/digest-coda-6.0.11 new file mode 100644 index 000000000000..698fa5996353 --- /dev/null +++ b/net-fs/coda/files/digest-coda-6.0.11 @@ -0,0 +1 @@ +MD5 aad65cafc27572287276d0fa355b6164 coda-6.0.11.tar.gz 1558534 diff --git a/net-fs/coda/files/digest-coda-6.0.3 b/net-fs/coda/files/digest-coda-6.0.3 deleted file mode 100644 index 708ec8699bf4..000000000000 --- a/net-fs/coda/files/digest-coda-6.0.3 +++ /dev/null @@ -1 +0,0 @@ -MD5 86af6c30582724a9899e39791a20435f coda-6.0.3.tar.gz 1488634 diff --git a/net-fs/coda/files/digest-coda-6.0.6 b/net-fs/coda/files/digest-coda-6.0.6 deleted file mode 100644 index c59c07b92ede..000000000000 --- a/net-fs/coda/files/digest-coda-6.0.6 +++ /dev/null @@ -1 +0,0 @@ -MD5 1feb4b431b72f725b568cc57a759714f coda-6.0.6.tar.gz 1497287 diff --git a/net-fs/coda/files/digest-coda-6.0.7 b/net-fs/coda/files/digest-coda-6.0.7 deleted file mode 100644 index e1f951ad506a..000000000000 --- a/net-fs/coda/files/digest-coda-6.0.7 +++ /dev/null @@ -1 +0,0 @@ -MD5 0f22c4f1743d7c6bc9d1c103e193905b coda-6.0.7.tar.gz 1536304 diff --git a/net-fs/coda/files/venus b/net-fs/coda/files/venus deleted file mode 100644 index ce6bf3f3fc9e..000000000000 --- a/net-fs/coda/files/venus +++ /dev/null @@ -1,31 +0,0 @@ -#!/sbin/runscript -# Copyright 1999-2004 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/net-fs/coda/files/venus,v 1.4 2004/07/26 17:50:21 griffon26 Exp $ - -depend() { - need net - after codasrv -} - -checkconfig() { - if ! /usr/sbin/codaconfedit venus.conf &>/dev/null; then - eerror "Please run venus-setup before starting the service..." - return 1 - fi -} - -start() { - checkconfig || return 1 - - ebegin "Starting venus" - start-stop-daemon --start --quiet --exec /usr/sbin/venus --background - eend $? -} - -stop() { - ebegin "Stopping venus" - start-stop-daemon --stop --quiet --exec /usr/sbin/venus - umount -l coda &>/dev/null - eend $? -} |