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: Thu, 18 Aug 2016 07:55:38 +0000 (UTC) [thread overview]
Message-ID: <1471506898.fc2d7b9a093d9b685db0cc7cc9cad8d1d5b56903.polynomial-c@gentoo> (raw)
commit: fc2d7b9a093d9b685db0cc7cc9cad8d1d5b56903
Author: Lars Wendler <polynomial-c <AT> gentoo <DOT> org>
AuthorDate: Thu Aug 18 07:54:58 2016 +0000
Commit: Lars Wendler <polynomial-c <AT> gentoo <DOT> org>
CommitDate: Thu Aug 18 07:54:58 2016 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=fc2d7b9a
net-fs/libnfs: Bump to version 1.10.0
Package-Manager: portage-2.3.0
Signed-off-by: Lars Wendler <polynomial-c <AT> gentoo.org>
net-fs/libnfs/Manifest | 1 +
net-fs/libnfs/libnfs-1.10.0.ebuild | 42 ++++++++++++++++++++++++++++++++++++++
2 files changed, 43 insertions(+)
diff --git a/net-fs/libnfs/Manifest b/net-fs/libnfs/Manifest
index 07a2b62..816255c 100644
--- a/net-fs/libnfs/Manifest
+++ b/net-fs/libnfs/Manifest
@@ -1,3 +1,4 @@
+DIST libnfs-1.10.0.tar.gz 149108 SHA256 7f6c62a05c7e0f0749f2b13f178a4ed7aaf17bd09e65a10bb147bfe9807da272 SHA512 9d1bdd2e193f189841dd915d5a4d0965cfd0c597372fa82b12377c4da1f6b5ec022bd0cddfe46dda1a4ac3de3f31eed73cb7dcf832469a4d292e05401b8fb247 WHIRLPOOL 8027757fcc64ce63b3673affdf179d8b17d221f6f934c19fc9c8fd703ac6aa2475a689c1fc53f2621b63ce4eacf8a7500a1ad7691ac27177c835c9e0a80ce540
DIST libnfs-1.3.0.tgz 57936 SHA256 0acda3029db699c3978684080843f71d222ad35b30a2ff0d220d144e98854948 SHA512 95377bddc487f3c49db74878671115f40fdf59a2d8d63d3aed0b64b6420e5940897b7c4c515b6560e105131117aafe5c851849c44b611e35b12814c5adfde57f WHIRLPOOL 947d08a056071c331b0736ac316eeae9c81f138a8823158cb6a7e001f46e151f8b655017dba20f3dd453205e13249ab3816488b67d44f8000ac5f4ef1baf4928
DIST libnfs-1.5.0.tar.gz 787385 SHA256 5663355dc18e75c893e09b133ca3ef70cf00754acfea863257f509922b5e5faa SHA512 e7e1699ef6fd9209eec54da804dc02048de2bc968be35e8a01770bb3dae5559a73d7cf54c1bf14ebe25ef3f1953b34aa6d1fc2521835fb1044c23a585d5dcff1 WHIRLPOOL 55068877acfbadba3c976239a51a4f6106069f3a13d774f1f34f447d3380ab1c0f743b4030b2ff3628db9d0d9c9b1795687dbc244ef26d0a35869d1c4a083d53
DIST libnfs-1.8.0.tar.gz 107529 SHA256 e4d766efba85e79b04c18038070506d0a9df5b7e0f08aa54ab402892cd1542cc SHA512 c04fe22ba8857c6f8e2b8ac0b1309e5f1d613dd8485b12950efb62123944bf920e25ff0661bfe28ddb566a213f51a414fbfe553c7a1921a0902d0beda0019b4c WHIRLPOOL 0618950f2def241138c77b96fbf7abdcbab95e5904c7009de20e2fcdfe4b4ac45b96fddfeb8ff782d829b9305daf94b50a855d569203be28f45320e35791083d
diff --git a/net-fs/libnfs/libnfs-1.10.0.ebuild b/net-fs/libnfs/libnfs-1.10.0.ebuild
new file mode 100644
index 0000000..c60aaec
--- /dev/null
+++ b/net-fs/libnfs/libnfs-1.10.0.ebuild
@@ -0,0 +1,42 @@
+# Copyright 1999-2016 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI="5"
+
+AUTOTOOLS_AUTORECONF="1"
+
+inherit eutils
+if [[ ${PV} == "9999" ]] ; then
+ EGIT_REPO_URI="git://github.com/sahlberg/libnfs.git"
+ inherit git-2 autotools-utils
+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"
+ inherit autotools-utils
+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
+}
next reply other threads:[~2016-08-18 7:55 UTC|newest]
Thread overview: 47+ messages / expand[flat|nested] mbox.gz Atom feed top
2016-08-18 7:55 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-07-06 13:26 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-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=1471506898.fc2d7b9a093d9b685db0cc7cc9cad8d1d5b56903.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