From: "Lars Wendler" <polynomial-c@gentoo.org>
To: gentoo-commits@lists.gentoo.org
Subject: [gentoo-commits] repo/gentoo:master commit in: net-libs/libtirpc/
Date: Tue, 4 Sep 2018 09:10:08 +0000 (UTC) [thread overview]
Message-ID: <1536052145.bce530de9e8aa4afbc1f433ae9abe4c60008b9eb.polynomial-c@gentoo> (raw)
commit: bce530de9e8aa4afbc1f433ae9abe4c60008b9eb
Author: Lars Wendler <polynomial-c <AT> gentoo <DOT> org>
AuthorDate: Tue Sep 4 09:09:05 2018 +0000
Commit: Lars Wendler <polynomial-c <AT> gentoo <DOT> org>
CommitDate: Tue Sep 4 09:09:05 2018 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=bce530de
net-libs/libtirpc: Bump to version 1.1.4
Package-Manager: Portage-2.3.49, Repoman-2.3.10
net-libs/libtirpc/Manifest | 1 +
net-libs/libtirpc/libtirpc-1.1.4.ebuild | 63 +++++++++++++++++++++++++++++++++
2 files changed, 64 insertions(+)
diff --git a/net-libs/libtirpc/Manifest b/net-libs/libtirpc/Manifest
index 95af0c27cb3..96612140117 100644
--- a/net-libs/libtirpc/Manifest
+++ b/net-libs/libtirpc/Manifest
@@ -1,3 +1,4 @@
DIST libtirpc-1.0.2.tar.bz2 509601 BLAKE2B 7ccf23ca200e2027a66a3105d9b3d0612ac66a08498931f66526a291be6ddef8e7df533af4d44a0e4a1178edd6d51ae39ca50c2536b9b1be7179e7f17cfd165e SHA512 6c819019a8e81d8263d3c509b2eee59ba1ef092222c5a0a8d28f004c711afa252097eca7e6b0b919b2d780883dfd9ee7a363df4cee7fd2c9159a065257637cec
DIST libtirpc-1.0.3.tar.bz2 509831 BLAKE2B 3f908471b3e10f88329793db2c832754b9bb838d115235d7c25256da883960de8d8c94a6941fc9c2a3cc4dca9a77c32b5cb85bb347cc182e5a6255636b79b06e SHA512 1f1cf7dd6f30ddddc919e4caf6db926f1d532f78d5a93e8aaa2acde6b046be0650c4c46549da0ffd5fa7fb9e550af1a871ed6e02ededf504c6667d2e82eba2cc
+DIST libtirpc-1.1.4.tar.bz2 510924 BLAKE2B 1780f9bb0543583c01b60bda681add0ec2f8718eda4ce4653883c772466178e37d0a3fb47004109f81de470129458561fac4f109f45154c64b6fb729f0212c90 SHA512 392f391f9fc1bd68d81dc44e4058831a64b32790b5c8c37338b0ab416fad2ae4d16389e632596734dba09780347918cc65c6f134e0c1afd09e81ec250785ed23
DIST libtirpc-glibc-nfs.tar.xz 8948 BLAKE2B 7316623d9f2b6928e296137fe2bf6794b208d549c2ffba9e4a35b47f7b04bf023798a09f38c02d039debf6adc466d7689cf3c8274d71a22eaff08729642c0a28 SHA512 90255bf0a27af16164e0710dd940778609925d473f4343093ff19d98cc4f23023788bf4edf0178eae1961afc0ba8b69b273de95b7d7e2afdb706701d8ba6f7ba
diff --git a/net-libs/libtirpc/libtirpc-1.1.4.ebuild b/net-libs/libtirpc/libtirpc-1.1.4.ebuild
new file mode 100644
index 00000000000..edd425c4147
--- /dev/null
+++ b/net-libs/libtirpc/libtirpc-1.1.4.ebuild
@@ -0,0 +1,63 @@
+# Copyright 1999-2018 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+
+inherit autotools multilib-minimal toolchain-funcs
+
+DESCRIPTION="Transport Independent RPC library (SunRPC replacement)"
+HOMEPAGE="http://libtirpc.sourceforge.net/"
+SRC_URI="mirror://sourceforge/${PN}/${P}.tar.bz2
+ mirror://gentoo/${PN}-glibc-nfs.tar.xz"
+
+LICENSE="GPL-2"
+SLOT="0/3" # subslot matches SONAME major
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~amd64-linux ~x86-linux"
+IUSE="ipv6 kerberos static-libs"
+
+RDEPEND="kerberos? ( >=virtual/krb5-0-r1[${MULTILIB_USEDEP}] )"
+DEPEND="${RDEPEND}
+ app-arch/xz-utils
+ >=virtual/pkgconfig-0-r1[${MULTILIB_USEDEP}]"
+
+PATCHES=(
+ "${FILESDIR}/${PN}-1.0.2-bcopy-to-memmove.patch"
+)
+
+src_prepare() {
+ cp -r "${WORKDIR}"/tirpc "${S}"/ || die
+ default
+ eautoreconf
+}
+
+multilib_src_configure() {
+ local myeconfargs=(
+ $(use_enable ipv6)
+ $(use_enable kerberos gssapi)
+ $(use_enable static-libs static)
+ )
+ ECONF_SOURCE="${S}" econf "${myeconfargs[@]}"
+}
+
+multilib_src_install() {
+ default
+
+ # libtirpc replaces rpc support in glibc, so we need it in /
+ gen_usr_ldscript -a tirpc
+}
+
+multilib_src_install_all() {
+ einstalldocs
+
+ insinto /etc
+ doins doc/netconfig
+
+ insinto /usr/include/tirpc
+ doins -r "${WORKDIR}"/tirpc/*
+
+ # makes sure that the linking order for nfs-utils is proper, as
+ # libtool would inject a libgssglue dependency in the list.
+ if ! use static-libs ; then
+ find "${ED}" -name "*.la" -delete || die
+ fi
+}
next reply other threads:[~2018-09-04 9:10 UTC|newest]
Thread overview: 140+ messages / expand[flat|nested] mbox.gz Atom feed top
2018-09-04 9:10 Lars Wendler [this message]
-- strict thread matches above, loose matches on Subject: below --
2025-01-24 15:33 [gentoo-commits] repo/gentoo:master commit in: net-libs/libtirpc/ Matt Turner
2025-01-12 14:22 Sam James
2025-01-12 13:02 Sam James
2024-12-01 14:14 Sam James
2024-11-03 21:11 Andreas Sturmlechner
2024-11-02 7:52 Sam James
2024-10-21 5:48 Sam James
2024-10-18 16:22 Arthur Zamarin
2024-10-17 8:19 Sam James
2024-10-17 7:24 Sam James
2024-10-17 7:19 Sam James
2024-10-17 7:12 Sam James
2024-10-17 7:10 Sam James
2024-08-29 2:10 Sam James
2024-08-06 16:18 James Le Cuirot
2024-03-19 3:42 Ionen Wolkens
2024-03-03 0:54 Sam James
2024-03-02 22:07 Sam James
2024-02-29 22:17 Sam James
2024-02-27 23:57 Sam James
2024-02-27 23:04 Sam James
2024-02-27 23:04 Sam James
2024-02-27 23:04 Sam James
2024-02-07 19:22 Sam James
2024-02-07 19:20 Sam James
2024-02-07 19:20 Sam James
2024-02-06 19:29 Sam James
2024-02-06 7:25 Sam James
2024-02-06 7:25 Sam James
2024-02-06 6:54 Sam James
2024-02-06 6:54 Sam James
2024-02-06 6:54 Sam James
2024-02-06 6:47 Sam James
2024-02-06 6:25 Sam James
2024-01-03 10:44 Sam James
2023-11-16 16:22 Sam James
2023-11-12 16:50 Arthur Zamarin
2023-11-12 8:32 Arthur Zamarin
2023-11-12 8:32 Arthur Zamarin
2023-11-12 8:20 Arthur Zamarin
2023-11-12 8:20 Arthur Zamarin
2023-11-12 8:20 Arthur Zamarin
2023-11-12 8:20 Arthur Zamarin
2023-10-09 2:21 Sam James
2023-01-14 19:17 Sam James
2022-10-22 14:07 Mike Gilbert
2022-09-26 15:05 Jakov Smolić
2022-09-26 15:05 Jakov Smolić
2022-09-26 4:16 Arthur Zamarin
2022-09-25 23:58 Sam James
2022-09-25 13:17 Arthur Zamarin
2022-09-25 13:17 Arthur Zamarin
2022-09-25 13:17 Arthur Zamarin
2022-09-25 13:17 Arthur Zamarin
2022-06-27 17:57 Mike Gilbert
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:28 Agostino Sarubbo
2021-06-12 16:07 Sam James
2021-06-12 15:56 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-04-25 9:16 David Seifert
2021-04-16 10:25 David Seifert
2021-04-09 22:20 Sam James
2021-04-09 15:40 Sergei Trofimovich
2021-04-06 19:53 Sam James
2021-04-06 19:53 Sam James
2021-04-06 19:51 Sam James
2021-04-06 12:14 Sergei Trofimovich
2021-04-05 19:01 Thomas Deutschmann
2020-12-04 8:47 Lars Wendler
2020-08-31 0:04 Sam James
2020-08-30 5:31 Sam James
2020-08-11 14:23 Agostino Sarubbo
2020-08-11 14:13 Agostino Sarubbo
2020-08-11 4:38 Sam James
2020-08-10 13:52 Agostino Sarubbo
2020-08-10 10:22 Agostino Sarubbo
2020-08-09 16:50 Sergei Trofimovich
2020-08-08 10:31 Sergei Trofimovich
2020-04-19 21:12 Lars Wendler
2020-03-16 16:16 Jory Pratt
2020-03-15 18:41 Mike Gilbert
2020-03-02 11:49 Sergei Trofimovich
2020-02-25 15:07 Agostino Sarubbo
2020-02-25 15:03 Agostino Sarubbo
2020-02-25 15:02 Agostino Sarubbo
2020-02-25 15:01 Agostino Sarubbo
2020-02-25 15:00 Agostino Sarubbo
2020-02-25 15:00 Agostino Sarubbo
2020-02-25 14:59 Agostino Sarubbo
2020-02-25 14:57 Agostino Sarubbo
2019-12-21 21:04 Lars Wendler
2019-09-21 5:20 Matt Turner
2019-09-20 6:39 Sergei Trofimovich
2019-09-13 22:19 Matt Turner
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-04 19:40 Andreas K. Hüttel
2019-02-19 15:55 Anthony G. Basile
2018-09-04 9:10 Lars Wendler
2018-06-05 17:51 Mike Frysinger
2018-03-20 13:36 Lars Wendler
2018-01-10 4:28 Mike Frysinger
2017-11-05 16:41 Andreas Hüttel
2017-10-23 18:01 Markus Meier
2017-10-05 12:53 Manuel Rüger
2017-10-03 8:25 Sergei Trofimovich
2017-10-02 13:24 Sergei Trofimovich
2017-10-02 13:24 Sergei Trofimovich
2017-09-30 16:06 Thomas Deutschmann
2017-09-18 11:50 Michael Haubenwallner
2017-08-18 15:37 Craig Andrews
2017-07-05 21:46 Lars Wendler
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-02-28 11:22 Tobias Klausmann
2017-02-24 13:38 Agostino Sarubbo
2017-02-24 13:20 Agostino Sarubbo
2017-02-24 7:58 Michael Weber
2016-06-21 6:04 Aaron Bauman
2016-06-21 5:57 Aaron Bauman
2016-01-22 8:56 Michael Palimaka
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=1536052145.bce530de9e8aa4afbc1f433ae9abe4c60008b9eb.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