public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] dev/mrueg:master commit in: net-libs/libsearpc/
@ 2016-01-09 20:57 Manuel Rüger
  0 siblings, 0 replies; 2+ messages in thread
From: Manuel Rüger @ 2016-01-09 20:57 UTC (permalink / raw
  To: gentoo-commits

commit:     9afd81721cfcff2471f848ed322d420e1d6e82f2
Author:     Manuel Rüger <mrueg <AT> gentoo <DOT> org>
AuthorDate: Sat Jan  9 20:57:20 2016 +0000
Commit:     Manuel Rüger <mrueg <AT> gentoo <DOT> org>
CommitDate: Sat Jan  9 20:57:20 2016 +0000
URL:        https://gitweb.gentoo.org/dev/mrueg.git/commit/?id=9afd8172

net-libs/libsearpc: Initial version

Package-Manager: portage-2.2.26

 net-libs/libsearpc/Manifest               |  1 +
 net-libs/libsearpc/libsearpc-3.0.7.ebuild | 27 +++++++++++++++++++++++++++
 net-libs/libsearpc/metadata.xml           |  8 ++++++++
 3 files changed, 36 insertions(+)

diff --git a/net-libs/libsearpc/Manifest b/net-libs/libsearpc/Manifest
new file mode 100644
index 0000000..d7cd0ca
--- /dev/null
+++ b/net-libs/libsearpc/Manifest
@@ -0,0 +1 @@
+DIST libsearpc-3.0.7.tar.gz 43286 SHA256 efee6b495f93e70101c87849c78b135014dfd2f0e5c08dcfed9834def47cb939 SHA512 6dfb222f40e4beed9f50630ebd939bc3ba83a7548457872775a05edd564888eb653d1828a3089f9a9d40c3b28d0706513916d85ea626036f7d32c1749678632c WHIRLPOOL 7d94c49a4ea44ba7869ab527e49d3072d9d9d9ddcc85fd70bb49e720b0ee55e29be5ef283a4aa6a69e8dac38fbb9b23d56e9c7ee8339601b91bac4ada1145da2

diff --git a/net-libs/libsearpc/libsearpc-3.0.7.ebuild b/net-libs/libsearpc/libsearpc-3.0.7.ebuild
new file mode 100644
index 0000000..2703e81
--- /dev/null
+++ b/net-libs/libsearpc/libsearpc-3.0.7.ebuild
@@ -0,0 +1,27 @@
+# Copyright 1999-2016 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=5
+
+PYTHON_COMPAT=( python2_7 )
+inherit autotools python-single-r1
+
+DESCRIPTION="RPC framework to handle the serialization/deserialization part of RPC"
+HOMEPAGE="https://github.com/haiwen/libsearpc http://www.seafile.com"
+SRC_URI="https://github.com/haiwen/libsearpc/archive/v${PV}.tar.gz -> ${P}.tar.gz"
+
+LICENSE="GPL-3"
+SLOT="0"
+KEYWORDS="~amd64"
+IUSE=""
+
+RDEPEND="dev-libs/glib:2
+	dev-libs/jansson"
+DEPEND="${RDEPEND}
+	virtual/pkgconfig"
+
+src_prepare() {
+	sed -i -e "s/(DESTDIR)//" libsearpc.pc.in || die
+	eautoreconf
+}

diff --git a/net-libs/libsearpc/metadata.xml b/net-libs/libsearpc/metadata.xml
new file mode 100644
index 0000000..bfcb697
--- /dev/null
+++ b/net-libs/libsearpc/metadata.xml
@@ -0,0 +1,8 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
+<pkgmetadata>
+	<maintainer>
+		<email>mrueg@gentoo.org</email>
+		<name>Manuel Rüger</name>
+	</maintainer>
+</pkgmetadata>


^ permalink raw reply related	[flat|nested] 2+ messages in thread

* [gentoo-commits] dev/mrueg:master commit in: net-libs/libsearpc/
@ 2016-01-09 21:11 Manuel Rüger
  0 siblings, 0 replies; 2+ messages in thread
From: Manuel Rüger @ 2016-01-09 21:11 UTC (permalink / raw
  To: gentoo-commits

commit:     8395854bcb2c56fa7b55637f37cf47211fd3a58f
Author:     Manuel Rüger <mrueg <AT> gentoo <DOT> org>
AuthorDate: Sat Jan  9 21:11:32 2016 +0000
Commit:     Manuel Rüger <mrueg <AT> gentoo <DOT> org>
CommitDate: Sat Jan  9 21:11:32 2016 +0000
URL:        https://gitweb.gentoo.org/dev/mrueg.git/commit/?id=8395854b

net-libs/libsearpc: Add missed python deps

Package-Manager: portage-2.2.26

 net-libs/libsearpc/libsearpc-3.0.7.ebuild | 7 ++++---
 1 file changed, 4 insertions(+), 3 deletions(-)

diff --git a/net-libs/libsearpc/libsearpc-3.0.7.ebuild b/net-libs/libsearpc/libsearpc-3.0.7.ebuild
index 2703e81..d1cb87a 100644
--- a/net-libs/libsearpc/libsearpc-3.0.7.ebuild
+++ b/net-libs/libsearpc/libsearpc-3.0.7.ebuild
@@ -9,7 +9,7 @@ inherit autotools python-single-r1
 
 DESCRIPTION="RPC framework to handle the serialization/deserialization part of RPC"
 HOMEPAGE="https://github.com/haiwen/libsearpc http://www.seafile.com"
-SRC_URI="https://github.com/haiwen/libsearpc/archive/v${PV}.tar.gz -> ${P}.tar.gz"
+SRC_URI="https://github.com/haiwen/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
 
 LICENSE="GPL-3"
 SLOT="0"
@@ -17,11 +17,12 @@ KEYWORDS="~amd64"
 IUSE=""
 
 RDEPEND="dev-libs/glib:2
-	dev-libs/jansson"
+	dev-libs/jansson
+	${PYTHON_DEPS}"
 DEPEND="${RDEPEND}
 	virtual/pkgconfig"
 
 src_prepare() {
-	sed -i -e "s/(DESTDIR)//" libsearpc.pc.in || die
+	sed -i -e "s/(DESTDIR)//" ${PN}.pc.in || die
 	eautoreconf
 }


^ permalink raw reply related	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2016-01-09 21:11 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2016-01-09 21:11 [gentoo-commits] dev/mrueg:master commit in: net-libs/libsearpc/ Manuel Rüger
  -- strict thread matches above, loose matches on Subject: below --
2016-01-09 20:57 Manuel Rüger

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox