mirror of
https://github.com/gentoo-mirror/gentoo.git
synced 2026-09-24 04:59:14 -07:00
net-fs/libnfs: Removed old.
Package-Manager: Portage-2.3.41, Repoman-2.3.9
This commit is contained in:
@@ -1,7 +1,3 @@
|
||||
DIST libnfs-1.10.0.tar.gz 149108 BLAKE2B 9df18e65e6f7e25ed57f5257a9b6e756ff76cd8d0e768051866d1f636a3fbefb4e8125a4ef742beb703c2bbc655b09ff7cda233ea48c04925278eb703292ab26 SHA512 9d1bdd2e193f189841dd915d5a4d0965cfd0c597372fa82b12377c4da1f6b5ec022bd0cddfe46dda1a4ac3de3f31eed73cb7dcf832469a4d292e05401b8fb247
|
||||
DIST libnfs-1.11.0.tar.gz 152239 BLAKE2B 91df1eeb93a636eea0db2101921f30ce09509f9f292b828d0ac75a559b39e469e85dfe27649d86d6afa972ba66dc50e0b4b1157a9a265d3efb42d7878ca4fa4a SHA512 e1ef6e341fd56955c3adedf6ba90841a57be9c6a962d61ff18425593bfc2787c34c776fdc8ec711f8bb2da1ec08271fc8778a0499aef01c3a7694c384a4c037b
|
||||
DIST libnfs-1.9.5.tar.gz 141162 BLAKE2B c19ca0bc2dc1b8edaf407f8a25909286b39952284717e3b728436bff8075e25f29db9e1b2e3f73f447bd82bc418f638ba81477dfe3965d16e906c92d15031e23 SHA512 fee676503b3655f3710342f5f6944f598b1e404f0a00891387d36d41f55f25f27254cbe061b8d8b00ee445a1bfd51df9c2cbccd72f3cdb0f7e8925691fcb2a4b
|
||||
DIST libnfs-1.9.7.tar.gz 145925 BLAKE2B 0b1d7a2d67b5dc870e20642438eddcd667c6fa57fe6128d22c358232a0c5b9d70e3414e4ebb7d684318cf3f9cda93ca6b427bf6ea38b2cce470630653cf1215a SHA512 0dec9a6eee61bcab5a406b6f8bd50d15ffa257bc0fae7079e25a3e0ecb1177845514c232d699c67c59a3f1a269099a46225959d413301bf4550aa37504e2f492
|
||||
DIST libnfs-1.9.8.tar.gz 148757 BLAKE2B fd4e6989ce8c2508de5776d71e522d4191f6ebf4f526aad16d69c9a17ef32ec37c68a817ddf7e709d01ba4a60e14ed43aaa45d27c310468cb73473fa0ecd974b SHA512 2a0e11dde5a2c4d25fcf1040d04ad984fe3b2e2ce5f544d602becb55aebdabbfe29a3b961d3db7d034c918862b540d3a03735bbbad0606ff3a128c50c2dad666
|
||||
DIST libnfs-2.0.0.tar.gz 200932 BLAKE2B df5ae4487bd7e19428551f047a1d61df712ecc73b3db33995121abfba2df8f9283ef69f4a0d897266d7d476010bfcfa5fdea109b265f82fe4df8904cd6d05c6c SHA512 701dd5317b0395523be89123d473f4da5c3ff53c2e30004a922f649f0dbbd97546ee39ab34fce06278a8148c13200ca383726a0822d09846fad6e308f29e42c7
|
||||
DIST libnfs-3.0.0.tar.gz 249035 BLAKE2B 321bbc6eb2d926c41afae95a873cd9103446d2bda0015f159341a7bca2245d708abaa283f9a8f505a320a0b446166b36106cd9f54e885a02cb486168c87a2a7f SHA512 9af31f8824431e9d28267c468dafc7cfc4062b1a280ca141036bc28a2ba544c4470a67955b5e5fbcc6c175435812381013b4c5d3d3d1a175d5efc7b802ae9b3b
|
||||
|
||||
@@ -1,86 +0,0 @@
|
||||
From 0bfc3e09b7d7ca2b75d42c17874b89333b96f371 Mon Sep 17 00:00:00 2001
|
||||
From: Mike Frysinger <vapier@gentoo.org>
|
||||
Date: Mon, 3 Dec 2012 22:30:04 -0500
|
||||
Subject: [PATCH] fix implicit decl warnings
|
||||
|
||||
Include the proper headers to fix warnings like:
|
||||
libnfs-sync.c:1529:3: warning: implicit declaration of function 'gettimeofday' [-Wimplicit-function-declaration]
|
||||
libnfs-zdr.c:506:2: warning: implicit declaration of function 'getuid' [-Wimplicit-function-declaration]
|
||||
|
||||
Signed-off-by: Mike Frysinger <vapier@gentoo.org>
|
||||
---
|
||||
lib/libnfs-sync.c | 1 +
|
||||
lib/libnfs-zdr.c | 9 +++++++++
|
||||
lib/libnfs.c | 1 +
|
||||
lib/socket.c | 1 +
|
||||
4 files changed, 12 insertions(+)
|
||||
|
||||
diff --git a/lib/libnfs-sync.c b/lib/libnfs-sync.c
|
||||
index 0fc1094..c140258 100644
|
||||
--- a/lib/libnfs-sync.c
|
||||
+++ b/lib/libnfs-sync.c
|
||||
@@ -77,6 +77,7 @@
|
||||
#include <stdlib.h>
|
||||
#include <string.h>
|
||||
#include <assert.h>
|
||||
+#include <sys/time.h>
|
||||
#include <sys/types.h>
|
||||
#include <sys/stat.h>
|
||||
#include <fcntl.h>
|
||||
diff --git a/lib/libnfs-zdr.c b/lib/libnfs-zdr.c
|
||||
index c32f661..b6b3ed9 100644
|
||||
--- a/lib/libnfs-zdr.c
|
||||
+++ b/lib/libnfs-zdr.c
|
||||
@@ -20,6 +20,10 @@
|
||||
* i.e. zdrmem_create() buffers.
|
||||
* It aims to be compatible with normal rpcgen generated functions.
|
||||
*/
|
||||
+#ifdef HAVE_CONFIG_H
|
||||
+#include "config.h"
|
||||
+#endif
|
||||
+
|
||||
#ifdef WIN32
|
||||
#include "win32_compat.h"
|
||||
#endif
|
||||
@@ -28,9 +32,14 @@
|
||||
#include "aros_compat.h"
|
||||
#endif
|
||||
|
||||
+#ifdef HAVE_ARPA_INET_H
|
||||
+#include <arpa/inet.h>
|
||||
+#endif
|
||||
+
|
||||
#include <stdlib.h>
|
||||
#include <string.h>
|
||||
#include <time.h>
|
||||
+#include <unistd.h>
|
||||
#include "libnfs-zdr.h"
|
||||
|
||||
struct opaque_auth _null_auth;
|
||||
diff --git a/lib/libnfs.c b/lib/libnfs.c
|
||||
index 5692dc3..0a7d139 100644
|
||||
--- a/lib/libnfs.c
|
||||
+++ b/lib/libnfs.c
|
||||
@@ -73,6 +73,7 @@
|
||||
#include <string.h>
|
||||
#include <assert.h>
|
||||
#include <errno.h>
|
||||
+#include <time.h>
|
||||
#include <sys/types.h>
|
||||
#include <sys/stat.h>
|
||||
#include <fcntl.h>
|
||||
diff --git a/lib/socket.c b/lib/socket.c
|
||||
index 3f7f89f..f8db957 100644
|
||||
--- a/lib/socket.c
|
||||
+++ b/lib/socket.c
|
||||
@@ -68,6 +68,7 @@
|
||||
#include <fcntl.h>
|
||||
#include <string.h>
|
||||
#include <errno.h>
|
||||
+#include <time.h>
|
||||
#include <sys/types.h>
|
||||
#include "libnfs-zdr.h"
|
||||
#include "libnfs.h"
|
||||
--
|
||||
2.0.0
|
||||
|
||||
@@ -1,27 +0,0 @@
|
||||
From 2be32c3c41207c029f54ebd0f4aa08e216bd3c21 Mon Sep 17 00:00:00 2001
|
||||
From: Mike Frysinger <vapier@gentoo.org>
|
||||
Date: Fri, 8 Aug 2014 05:45:32 -0400
|
||||
Subject: [PATCH 3/3] fix implicit decls of rpc_{g,s}et_error
|
||||
|
||||
Signed-off-by: Mike Frysinger <vapier@gentoo.org>
|
||||
---
|
||||
lib/libnfs-zdr.c | 3 +++
|
||||
1 file changed, 3 insertions(+)
|
||||
|
||||
diff --git a/lib/libnfs-zdr.c b/lib/libnfs-zdr.c
|
||||
index b6b3ed9..90abe26 100644
|
||||
--- a/lib/libnfs-zdr.c
|
||||
+++ b/lib/libnfs-zdr.c
|
||||
@@ -41,6 +41,9 @@
|
||||
#include <time.h>
|
||||
#include <unistd.h>
|
||||
#include "libnfs-zdr.h"
|
||||
+#include "libnfs.h"
|
||||
+#include "libnfs-raw.h"
|
||||
+#include "libnfs-private.h"
|
||||
|
||||
struct opaque_auth _null_auth;
|
||||
|
||||
--
|
||||
2.0.0
|
||||
|
||||
@@ -1,40 +0,0 @@
|
||||
# Copyright 1999-2018 Gentoo Foundation
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
|
||||
EAPI="5"
|
||||
|
||||
AUTOTOOLS_AUTORECONF="1"
|
||||
|
||||
inherit autotools-utils eutils
|
||||
if [[ ${PV} == "9999" ]] ; then
|
||||
EGIT_REPO_URI="https://github.com/sahlberg/${PN}.git"
|
||||
inherit git-r3
|
||||
else
|
||||
SRC_URI="https://github.com/sahlberg/${PN}/archive/${P}.tar.gz"
|
||||
KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~x86"
|
||||
fi
|
||||
|
||||
DESCRIPTION="Client library for accessing NFS shares over a network"
|
||||
HOMEPAGE="https://github.com/sahlberg/libnfs"
|
||||
|
||||
LICENSE="LGPL-2.1 GPL-3"
|
||||
SLOT="0/8" # sub-slot matches SONAME major
|
||||
IUSE="examples static-libs"
|
||||
|
||||
RDEPEND=""
|
||||
DEPEND="${RDEPEND}
|
||||
virtual/pkgconfig"
|
||||
|
||||
S="${WORKDIR}/${PN}-${P}"
|
||||
|
||||
src_install() {
|
||||
autotools-utils_src_install
|
||||
if use examples; then
|
||||
# --enable-examples configure switch just compiles them
|
||||
# better install sources instead
|
||||
exeinto /usr/share/doc/${PF}/examples/
|
||||
for program in $(grep PROGRAMS examples/Makefile.am | cut -d= -f2); do
|
||||
doexe examples/${program}.c
|
||||
done
|
||||
fi
|
||||
}
|
||||
@@ -1,40 +0,0 @@
|
||||
# Copyright 1999-2018 Gentoo Foundation
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
|
||||
EAPI="5"
|
||||
|
||||
AUTOTOOLS_AUTORECONF="1"
|
||||
|
||||
inherit autotools-utils eutils
|
||||
if [[ ${PV} == "9999" ]] ; then
|
||||
EGIT_REPO_URI="https://github.com/sahlberg/${PN}.git"
|
||||
inherit git-r3
|
||||
else
|
||||
SRC_URI="https://github.com/sahlberg/${PN}/archive/${P}.tar.gz"
|
||||
KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~x86"
|
||||
fi
|
||||
|
||||
DESCRIPTION="Client library for accessing NFS shares over a network"
|
||||
HOMEPAGE="https://github.com/sahlberg/libnfs"
|
||||
|
||||
LICENSE="LGPL-2.1 GPL-3"
|
||||
SLOT="0/8" # sub-slot matches SONAME major
|
||||
IUSE="examples static-libs"
|
||||
|
||||
RDEPEND=""
|
||||
DEPEND="${RDEPEND}
|
||||
virtual/pkgconfig"
|
||||
|
||||
S="${WORKDIR}/${PN}-${P}"
|
||||
|
||||
src_install() {
|
||||
autotools-utils_src_install
|
||||
if use examples; then
|
||||
# --enable-examples configure switch just compiles them
|
||||
# better install sources instead
|
||||
exeinto /usr/share/doc/${PF}/examples/
|
||||
for program in $(grep PROGRAMS examples/Makefile.am | cut -d= -f2); do
|
||||
doexe examples/${program}.c
|
||||
done
|
||||
fi
|
||||
}
|
||||
@@ -1,45 +0,0 @@
|
||||
# Copyright 1999-2018 Gentoo Foundation
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
|
||||
EAPI="5"
|
||||
|
||||
AUTOTOOLS_AUTORECONF="1"
|
||||
|
||||
inherit autotools-utils eutils
|
||||
if [[ ${PV} == "9999" ]] ; then
|
||||
EGIT_REPO_URI="https://github.com/sahlberg/${PN}.git"
|
||||
inherit git-r3
|
||||
else
|
||||
SRC_URI="https://github.com/sahlberg/${PN}/archive/${P}.tar.gz"
|
||||
KEYWORDS="alpha amd64 arm hppa ppc ppc64 x86"
|
||||
fi
|
||||
|
||||
DESCRIPTION="Client library for accessing NFS shares over a network"
|
||||
HOMEPAGE="https://github.com/sahlberg/libnfs"
|
||||
|
||||
LICENSE="LGPL-2.1 GPL-3"
|
||||
SLOT="0"
|
||||
IUSE="examples static-libs"
|
||||
|
||||
RDEPEND=""
|
||||
DEPEND="${RDEPEND}
|
||||
virtual/pkgconfig"
|
||||
|
||||
S="${WORKDIR}/${PN}-${P}"
|
||||
|
||||
PATCHES=(
|
||||
"${FILESDIR}"/${PN}-1.9.5-headers.patch
|
||||
"${FILESDIR}"/${PN}-1.9.5-implicit-internal.patch
|
||||
)
|
||||
|
||||
src_install() {
|
||||
autotools-utils_src_install
|
||||
if use examples; then
|
||||
# --enable-examples configure switch just compiles them
|
||||
# better install sources instead
|
||||
exeinto /usr/share/doc/${PF}/examples/
|
||||
for program in $(grep PROGRAMS examples/Makefile.am | cut -d= -f2); do
|
||||
doexe examples/${program}.c
|
||||
done
|
||||
fi
|
||||
}
|
||||
@@ -1,40 +0,0 @@
|
||||
# Copyright 1999-2018 Gentoo Foundation
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
|
||||
EAPI="5"
|
||||
|
||||
AUTOTOOLS_AUTORECONF="1"
|
||||
|
||||
inherit autotools-utils eutils
|
||||
if [[ ${PV} == "9999" ]] ; then
|
||||
EGIT_REPO_URI="https://github.com/sahlberg/${PN}.git"
|
||||
inherit git-r3
|
||||
else
|
||||
SRC_URI="https://github.com/sahlberg/${PN}/archive/${P}.tar.gz"
|
||||
KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~x86"
|
||||
fi
|
||||
|
||||
DESCRIPTION="Client library for accessing NFS shares over a network"
|
||||
HOMEPAGE="https://github.com/sahlberg/libnfs"
|
||||
|
||||
LICENSE="LGPL-2.1 GPL-3"
|
||||
SLOT="0/8" # sub-slot matches SONAME major
|
||||
IUSE="examples static-libs"
|
||||
|
||||
RDEPEND=""
|
||||
DEPEND="${RDEPEND}
|
||||
virtual/pkgconfig"
|
||||
|
||||
S="${WORKDIR}/${PN}-${P}"
|
||||
|
||||
src_install() {
|
||||
autotools-utils_src_install
|
||||
if use examples; then
|
||||
# --enable-examples configure switch just compiles them
|
||||
# better install sources instead
|
||||
exeinto /usr/share/doc/${PF}/examples/
|
||||
for program in $(grep PROGRAMS examples/Makefile.am | cut -d= -f2); do
|
||||
doexe examples/${program}.c
|
||||
done
|
||||
fi
|
||||
}
|
||||
Reference in New Issue
Block a user