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: Thu, 13 Apr 2017 21:20:48
Message-Id: 1492118431.9051a519f693270ee562a3d66b1590f2c8a38c1c.monsieurp@gentoo
1 commit: 9051a519f693270ee562a3d66b1590f2c8a38c1c
2 Author: Moritz Schlarb <schlarbm <AT> uni-mainz <DOT> de>
3 AuthorDate: Mon Mar 13 14:00:10 2017 +0000
4 Commit: Patrice Clement <monsieurp <AT> gentoo <DOT> org>
5 CommitDate: Thu Apr 13 21:20:31 2017 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9051a519
7
8 net-libs/libsearpc: new ebuild.
9
10 A simple C language RPC framework.
11
12 Gentoo-Bug: https://bugs.gentoo.org/499698
13 Closes: https://github.com/gentoo/gentoo/pull/4198
14
15 net-libs/libsearpc/Manifest | 1 +
16 net-libs/libsearpc/libsearpc-3.0.8.ebuild | 28 ++++++++++++++++++++++++++++
17 net-libs/libsearpc/metadata.xml | 11 +++++++++++
18 3 files changed, 40 insertions(+)
19
20 diff --git a/net-libs/libsearpc/Manifest b/net-libs/libsearpc/Manifest
21 new file mode 100644
22 index 00000000000..7d31a691c28
23 --- /dev/null
24 +++ b/net-libs/libsearpc/Manifest
25 @@ -0,0 +1 @@
26 +DIST libsearpc-3.0.8.tar.gz 48740 SHA256 83b45fa2f4b7d7ae6dd34ca04d430433551ef493cdaf3cbcc768bd6099377d90 SHA512 1f2cf9a15a004b6ddf8fc0b6a436a5db09a514cea4cec94ce9fa6ce973cd71dfc4a112e948a36ab0be61d736f1021622e46429d07de70b23c25b886d1e51c02a WHIRLPOOL 06f222a8247fb6683390617d34960dec0e9b2fb4b2cb19bb436a7dbb52fed0a008c449d4d37331d159cdea2a9a74543c09cb9a9e6ab491f776e56ade4235fab9
27
28 diff --git a/net-libs/libsearpc/libsearpc-3.0.8.ebuild b/net-libs/libsearpc/libsearpc-3.0.8.ebuild
29 new file mode 100644
30 index 00000000000..e726c25bacb
31 --- /dev/null
32 +++ b/net-libs/libsearpc/libsearpc-3.0.8.ebuild
33 @@ -0,0 +1,28 @@
34 +# Copyright 1999-2017 Gentoo Foundation
35 +# Distributed under the terms of the GNU General Public License v2
36 +
37 +EAPI=6
38 +PYTHON_COMPAT=( python2_7 )
39 +inherit autotools python-single-r1 vcs-snapshot
40 +
41 +DESCRIPTION="A simple C language RPC framework"
42 +HOMEPAGE="https://github.com/haiwen/libsearpc/ http://seafile.com/"
43 +SRC_URI="https://github.com/haiwen/${PN}/archive/v3.1-latest.tar.gz -> ${P}.tar.gz"
44 +
45 +LICENSE="Apache-2.0"
46 +SLOT="0"
47 +KEYWORDS="~amd64 ~x86"
48 +IUSE=""
49 +REQUIRED_USE="${PYTHON_REQUIRED_USE}"
50 +
51 +DEPEND="${PYTHON_DEPS}
52 + >=dev-libs/glib-2.26.0
53 + >=dev-libs/jansson-2.2.1"
54 +RDEPEND="${DEPEND}
55 + dev-python/simplejson[${PYTHON_USEDEP}]"
56 +
57 +src_prepare() {
58 + default
59 + sed -i -e "s/(DESTDIR)//" ${PN}.pc.in || die
60 + eautoreconf
61 +}
62
63 diff --git a/net-libs/libsearpc/metadata.xml b/net-libs/libsearpc/metadata.xml
64 new file mode 100644
65 index 00000000000..5b95006282e
66 --- /dev/null
67 +++ b/net-libs/libsearpc/metadata.xml
68 @@ -0,0 +1,11 @@
69 +<?xml version="1.0" encoding="UTF-8"?>
70 +<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
71 +<pkgmetadata>
72 + <maintainer type="person">
73 + <email>moschlar@××××××××.de</email>
74 + </maintainer>
75 + <maintainer type="project">
76 + <email>proxy-maint@g.o</email>
77 + <name>Proxy Maintainers</name>
78 + </maintainer>
79 +</pkgmetadata>