From: "Mike Frysinger" <vapier@gentoo.org>
To: gentoo-commits@lists.gentoo.org
Subject: [gentoo-commits] repo/gentoo:master commit in: net-nds/rpcbind/
Date: Sat, 10 Dec 2016 07:04:39 +0000 (UTC) [thread overview]
Message-ID: <1481353380.f47b1583df883041c35fed08f9ac28c7b0f5e2ef.vapier@gentoo> (raw)
commit: f47b1583df883041c35fed08f9ac28c7b0f5e2ef
Author: Mike Frysinger <vapier <AT> gentoo <DOT> org>
AuthorDate: Sat Dec 10 06:57:17 2016 +0000
Commit: Mike Frysinger <vapier <AT> gentoo <DOT> org>
CommitDate: Sat Dec 10 07:03:00 2016 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f47b1583
net-nds/rpcbind: version bump to 0.2.4
net-nds/rpcbind/Manifest | 1 +
net-nds/rpcbind/rpcbind-0.2.4.ebuild | 55 ++++++++++++++++++++++++++++++++++++
2 files changed, 56 insertions(+)
diff --git a/net-nds/rpcbind/Manifest b/net-nds/rpcbind/Manifest
index 598b6b8..35e6116 100644
--- a/net-nds/rpcbind/Manifest
+++ b/net-nds/rpcbind/Manifest
@@ -2,3 +2,4 @@ DIST rpcbind-0.2.0.tar.bz2 271018 SHA256 c92f263e0353887f16379d7708ef1fb4c7eedcf
DIST rpcbind-0.2.1.tar.bz2 110681 SHA256 da169ff877a5a07581fad50a9a808ac6e96f0c277a3df49a7ef005778428496e SHA512 5ec1e25c64ad3cd80fc2f14ced64a331afbe896fb3da54c812e3c4a78a69df181f607492762fe852732cc0ac9bd87ee118760b9e7fad2b3f028d581fecc93849 WHIRLPOOL 272996267eacd624493cc656ea02219e0dcf4b0f190c4a06c1fec8ce6fafab057e3d0432017483efd653b82e6d21aaff7179c9dcbeadb7430b955d6306260db8
DIST rpcbind-0.2.2.tar.bz2 112793 SHA256 13dbc8c796dbe0ce8df873007bea0490c8460b56202d918c9eb6fa0358a08f29 SHA512 adcf5c3e6f6a3d995511ed5016ddc5065f7ca6d355097eb27de58415a705cbc45f96f3d0eb8e7db8a915ad3f25ce893e371c09cc03b24a48787485e5c035c054 WHIRLPOOL 3d2bab280f10d0af76bbf60c492b22e9077ea7c1efdba3df70975ec327da52cf756088e245d226bc521e378143491863d37d083458e0ffcf3df391b615047cf0
DIST rpcbind-0.2.3.tar.bz2 121306 SHA256 9897823a9d820ea011d9ea02054d5ab99469b9ca5346265fee380713c8fed27b SHA512 b91cb4e0849213d344063ccf32d16c49819906b65e4d07c4aa7d3c8842bd83acb408d07aa285da902c389f3c9716f01678012b93a11863eb174a2577cd6ba1d6 WHIRLPOOL f8ff512974e6092faf786ef2f5fe23f404a48c28017809c22a3705cb3dfd22220dc3b230235de8a7b64bc46b21f38562ba18af23539bfff439f6e39d6d44cfb3
+DIST rpcbind-0.2.4.tar.bz2 122781 SHA256 074a9a530dc7c11e0d905aa59bcb0847c009313f02e98d3d798aa9568f414c66 SHA512 f3966a7284e94bdf120a9b3f0dd66efa1fe8761df2313545a031f77b7c06e27d7955d2780469943deb537d34f95c4cf3f30de523ec9fab9f571322d7224b210c WHIRLPOOL 9eec5752e3b80f0c3feccf1667e54fb9630b9fabad6613e3f7030489d7b9cfbb5585e173545274f0b3656d27085f71b7c3290da7a2ec022f1948a62a336e278e
diff --git a/net-nds/rpcbind/rpcbind-0.2.4.ebuild b/net-nds/rpcbind/rpcbind-0.2.4.ebuild
new file mode 100644
index 00000000..807123b
--- /dev/null
+++ b/net-nds/rpcbind/rpcbind-0.2.4.ebuild
@@ -0,0 +1,55 @@
+# Copyright 1999-2016 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI="5"
+
+inherit eutils systemd
+
+if [[ ${PV} == "9999" ]] ; then
+ EGIT_REPO_URI="git://linux-nfs.org/~steved/rpcbind.git"
+ inherit autotools git-r3
+else
+ SRC_URI="mirror://sourceforge/${PN}/${P}.tar.bz2"
+ KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86"
+fi
+
+DESCRIPTION="portmap replacement which supports RPC over various protocols"
+HOMEPAGE="https://sourceforge.net/projects/rpcbind/"
+
+LICENSE="BSD"
+SLOT="0"
+IUSE="debug selinux systemd tcpd warmstarts"
+
+CDEPEND=">=net-libs/libtirpc-0.2.3:=
+ systemd? ( sys-apps/systemd:= )
+ tcpd? ( sys-apps/tcp-wrappers )"
+DEPEND="${CDEPEND}
+ virtual/pkgconfig"
+RDEPEND="${CDEPEND}
+ selinux? ( sec-policy/selinux-rpcbind )"
+
+src_prepare() {
+ [[ ${PV} == "9999" ]] && eautoreconf
+ epatch_user
+}
+
+src_configure() {
+ econf \
+ --bindir="${EPREFIX}"/sbin \
+ --with-statedir="${EPREFIX}"/run/${PN} \
+ --with-rpcuser=root \
+ --with-systemdsystemunitdir=$(usex systemd "$(systemd_get_unitdir)" "no") \
+ $(use_enable tcpd libwrap) \
+ $(use_enable debug) \
+ $(use_enable warmstarts)
+}
+
+src_install() {
+ default
+
+ newinitd "${FILESDIR}"/${PN}.initd ${PN}
+ newconfd "${FILESDIR}"/${PN}.confd ${PN}
+
+ systemd_dounit "${FILESDIR}"/${PN}.service
+}
next reply other threads:[~2016-12-10 7:04 UTC|newest]
Thread overview: 63+ messages / expand[flat|nested] mbox.gz Atom feed top
2016-12-10 7:04 Mike Frysinger [this message]
-- strict thread matches above, loose matches on Subject: below --
2022-10-19 19:22 [gentoo-commits] repo/gentoo:master commit in: net-nds/rpcbind/ Sam James
2022-08-28 6:30 WANG Xuerui
2022-01-15 23:31 James Le Cuirot
2021-06-14 9:19 David Seifert
2021-06-13 10:46 Sergei Trofimovich
2021-06-13 6:32 Agostino Sarubbo
2021-06-13 6:10 Sam James
2021-06-12 16:07 Sam James
2021-06-12 16:07 Sam James
2021-06-12 15:49 Sam James
2021-06-12 15:49 Sam James
2021-06-12 15:49 Sam James
2021-05-12 6:25 Matt Turner
2021-05-12 6:25 Matt Turner
2020-01-13 16:56 Mike Gilbert
2020-01-12 9:40 Jeroen Roovers
2020-01-12 2:10 Mike Gilbert
2020-01-12 2:01 Mike Gilbert
2020-01-11 17:54 Mike Gilbert
2020-01-11 17:44 Mike Gilbert
2020-01-11 17:36 Mike Gilbert
2019-09-21 5:20 Matt Turner
2019-09-20 6:39 Sergei Trofimovich
2019-09-13 12:04 Agostino Sarubbo
2019-09-09 6:02 Agostino Sarubbo
2019-09-09 5:54 Agostino Sarubbo
2019-09-09 3:59 Matt Turner
2019-09-08 22:29 Aaron Bauman
2019-09-08 18:30 Sergei Trofimovich
2019-09-08 18:26 Sergei Trofimovich
2019-09-08 10:22 Agostino Sarubbo
2019-09-08 1:13 Thomas Deutschmann
2019-05-06 8:56 Yixun Lan
2018-08-26 18:07 Lars Wendler
2018-08-26 18:07 Lars Wendler
2018-03-12 17:29 Mike Gilbert
2018-01-25 0:39 Aaron Bauman
2018-01-20 17:29 Michael Orlitzky
2018-01-10 4:28 Mike Frysinger
2017-05-16 4:43 Markus Meier
2017-05-14 9:50 Michael Weber
2017-05-12 17:56 Tobias Klausmann
2017-05-10 10:55 Jeroen Roovers
2017-05-10 9:32 Agostino Sarubbo
2017-03-15 5:44 Jeroen Roovers
2017-03-01 10:08 Michael Weber
2017-02-28 12:51 Tobias Klausmann
2017-02-25 9:58 Agostino Sarubbo
2017-02-24 13:35 Agostino Sarubbo
2016-12-21 7:16 Mike Frysinger
2016-12-10 7:04 Mike Frysinger
2016-03-31 12:43 Michael Palimaka
2015-11-18 9:32 Agostino Sarubbo
2015-11-15 18:26 Matt Turner
2015-11-14 16:48 Markus Meier
2015-11-06 4:21 Jeroen Roovers
2015-11-05 10:58 Agostino Sarubbo
2015-11-04 14:26 Agostino Sarubbo
2015-11-03 17:13 Agostino Sarubbo
2015-11-03 17:12 Agostino Sarubbo
2015-11-03 15:08 Mike Frysinger
2015-11-03 15:08 Mike Frysinger
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=1481353380.f47b1583df883041c35fed08f9ac28c7b0f5e2ef.vapier@gentoo \
--to=vapier@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