public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
From: "Lars Wendler" <polynomial-c@gentoo.org>
To: gentoo-commits@lists.gentoo.org
Subject: [gentoo-commits] repo/gentoo:master commit in: net-fs/libnfs/
Date: Fri,  6 Jul 2018 13:26:50 +0000 (UTC)	[thread overview]
Message-ID: <1530883603.04f788bd4e6ea928b41e0efe9295d1131a6d0d46.polynomial-c@gentoo> (raw)

commit:     04f788bd4e6ea928b41e0efe9295d1131a6d0d46
Author:     Lars Wendler <polynomial-c <AT> gentoo <DOT> org>
AuthorDate: Fri Jul  6 13:24:08 2018 +0000
Commit:     Lars Wendler <polynomial-c <AT> gentoo <DOT> org>
CommitDate: Fri Jul  6 13:26:43 2018 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=04f788bd

net-fs/libnfs: Bump to version 3.0.0

Package-Manager: Portage-2.3.41, Repoman-2.3.9

 net-fs/libnfs/Manifest            |  1 +
 net-fs/libnfs/libnfs-3.0.0.ebuild | 55 +++++++++++++++++++++++++++++++++++++++
 2 files changed, 56 insertions(+)

diff --git a/net-fs/libnfs/Manifest b/net-fs/libnfs/Manifest
index 49a0d0abd1d..02ebe669c16 100644
--- a/net-fs/libnfs/Manifest
+++ b/net-fs/libnfs/Manifest
@@ -4,3 +4,4 @@ DIST libnfs-1.9.5.tar.gz 141162 BLAKE2B c19ca0bc2dc1b8edaf407f8a25909286b3995228
 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

diff --git a/net-fs/libnfs/libnfs-3.0.0.ebuild b/net-fs/libnfs/libnfs-3.0.0.ebuild
new file mode 100644
index 00000000000..96606a99d49
--- /dev/null
+++ b/net-fs/libnfs/libnfs-3.0.0.ebuild
@@ -0,0 +1,55 @@
+# Copyright 1999-2018 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+
+inherit autotools
+if [[ ${PV} == "9999" ]] ; then
+	inherit git-r3
+	EGIT_REPO_URI="https://github.com/sahlberg/${PN}.git"
+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"
+	S="${WORKDIR}/${PN}-${P}"
+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/12"  # sub-slot matches SONAME major
+IUSE="examples static-libs utils"
+
+RDEPEND=""
+DEPEND="${RDEPEND}
+	virtual/pkgconfig"
+
+PATCHES=(
+	"${FILESDIR}/${PN}-3.0.0-utils.patch"
+)
+
+src_prepare() {
+	default
+	eautoreconf
+}
+
+src_configure() {
+	local myeconfargs=(
+		$(use_enable static-libs static)
+		$(use_enable utils)
+	)
+	econf "${myeconfargs[@]}"
+}
+
+src_install() {
+	default
+	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
+	find "${ED}" -name "*.la" -delete || die
+}


             reply	other threads:[~2018-07-06 13:26 UTC|newest]

Thread overview: 47+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2018-07-06 13:26 Lars Wendler [this message]
  -- strict thread matches above, loose matches on Subject: below --
2024-02-29  4:34 [gentoo-commits] repo/gentoo:master commit in: net-fs/libnfs/ Sam James
2022-09-25  6:25 Agostino Sarubbo
2022-09-25  6:24 Agostino Sarubbo
2022-09-25  4:54 Sam James
2022-09-25  4:46 Sam James
2022-09-25  4:37 Sam James
2022-09-25  4:36 Sam James
2022-08-13 17:22 Sam James
2022-08-13 17:22 Sam James
2022-06-13 16:29 Sam James
2022-06-13  7:12 Agostino Sarubbo
2022-06-13  7:11 Agostino Sarubbo
2022-06-13  7:10 Agostino Sarubbo
2022-06-13  7:09 Agostino Sarubbo
2022-06-13  7:07 Agostino Sarubbo
2021-05-29  0:03 Yixun Lan
2020-12-13 19:21 Mike Gilbert
2020-08-29 17:57 Thomas Deutschmann
2020-08-24 17:33 Sergei Trofimovich
2020-08-23  6:52 Sam James
2020-08-22  5:43 Agostino Sarubbo
2020-08-21 18:20 Agostino Sarubbo
2019-02-14 13:32 Lars Wendler
2019-02-14 13:32 Lars Wendler
2019-02-14 13:32 Lars Wendler
2018-07-15 21:49 Mikle Kolyada
2018-07-09 11:19 Lars Wendler
2018-06-03 16:58 Mikle Kolyada
2018-05-18 16:01 Mike Gilbert
2018-04-22  8:22 Mart Raudsepp
2018-03-14 21:09 Markus Meier
2018-03-04 11:34 Tobias Klausmann
2018-01-17  6:42 Thomas Deutschmann
2018-01-15 19:03 Tobias Klausmann
2018-01-14 22:17 Sergei Trofimovich
2018-01-14 21:42 Sergei Trofimovich
2018-01-14 12:01 Sergei Trofimovich
2017-07-30  9:44 Michał Górny
2017-07-21 17:54 Thomas Deutschmann
2017-07-21 17:54 Thomas Deutschmann
2017-01-28 14:42 Mart Raudsepp
2016-10-14  8:25 Lars Wendler
2016-08-18  7:55 Lars Wendler
2016-08-15  8:22 Lars Wendler
2016-01-22  8:56 Michael Palimaka
2015-09-17 12:14 Tobias Klausmann

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=1530883603.04f788bd4e6ea928b41e0efe9295d1131a6d0d46.polynomial-c@gentoo \
    --to=polynomial-c@gentoo.org \
    --cc=gentoo-commits@lists.gentoo.org \
    --cc=gentoo-dev@lists.gentoo.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox