Gentoo Archives: gentoo-commits

From: Patrice Clement <monsieurp@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: net-libs/libsearpc/
Date: Fri, 14 Apr 2017 20:31:23
Message-Id: 1492201843.1d5c3db30745ac4f36d5831d715760865fe3b32c.monsieurp@gentoo
1 commit: 1d5c3db30745ac4f36d5831d715760865fe3b32c
2 Author: Patrice Clement <monsieurp <AT> gentoo <DOT> org>
3 AuthorDate: Fri Apr 14 20:29:09 2017 +0000
4 Commit: Patrice Clement <monsieurp <AT> gentoo <DOT> org>
5 CommitDate: Fri Apr 14 20:30:43 2017 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1d5c3db3
7
8 net-libs/libsearpc: fix SRC_URI.
9
10 Package-Manager: Portage-2.3.3, Repoman-2.3.1
11
12 net-libs/libsearpc/libsearpc-3.0.8-r1.ebuild | 28 ++++++++++++++++++++++++++++
13 1 file changed, 28 insertions(+)
14
15 diff --git a/net-libs/libsearpc/libsearpc-3.0.8-r1.ebuild b/net-libs/libsearpc/libsearpc-3.0.8-r1.ebuild
16 new file mode 100644
17 index 00000000000..70f1c5fd0f9
18 --- /dev/null
19 +++ b/net-libs/libsearpc/libsearpc-3.0.8-r1.ebuild
20 @@ -0,0 +1,28 @@
21 +# Copyright 1999-2017 Gentoo Foundation
22 +# Distributed under the terms of the GNU General Public License v2
23 +
24 +EAPI=6
25 +PYTHON_COMPAT=( python2_7 )
26 +inherit autotools python-single-r1 vcs-snapshot
27 +
28 +DESCRIPTION="A simple C language RPC framework"
29 +HOMEPAGE="https://github.com/haiwen/libsearpc/ http://seafile.com/"
30 +SRC_URI="https://github.com/haiwen/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
31 +
32 +LICENSE="Apache-2.0"
33 +SLOT="0"
34 +KEYWORDS="~amd64 ~x86"
35 +IUSE=""
36 +REQUIRED_USE="${PYTHON_REQUIRED_USE}"
37 +
38 +DEPEND="${PYTHON_DEPS}
39 + >=dev-libs/glib-2.26.0
40 + >=dev-libs/jansson-2.2.1"
41 +RDEPEND="${DEPEND}
42 + dev-python/simplejson[${PYTHON_USEDEP}]"
43 +
44 +src_prepare() {
45 + default
46 + sed -i -e "s/(DESTDIR)//" ${PN}.pc.in || die
47 + eautoreconf
48 +}