Gentoo Archives: gentoo-commits

From: Alexis Ballier <aballier@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-libs/c-capnproto/
Date: Tue, 02 Aug 2016 13:17:08
Message-Id: 1470143790.65e2130d1ad76f30497f1fb991c0badf737ccf50.aballier@gentoo
1 commit: 65e2130d1ad76f30497f1fb991c0badf737ccf50
2 Author: Alexis Ballier <aballier <AT> gentoo <DOT> org>
3 AuthorDate: Tue Aug 2 13:16:19 2016 +0000
4 Commit: Alexis Ballier <aballier <AT> gentoo <DOT> org>
5 CommitDate: Tue Aug 2 13:16:30 2016 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=65e2130d
7
8 dev-libs/c-capnproto: bump to 0.2
9
10 Package-Manager: portage-2.3.0
11
12 dev-libs/c-capnproto/Manifest | 1 +
13 dev-libs/c-capnproto/c-capnproto-0.2.ebuild | 25 +++++++++++++++++++++++++
14 2 files changed, 26 insertions(+)
15
16 diff --git a/dev-libs/c-capnproto/Manifest b/dev-libs/c-capnproto/Manifest
17 index 262db73..4281d9b 100644
18 --- a/dev-libs/c-capnproto/Manifest
19 +++ b/dev-libs/c-capnproto/Manifest
20 @@ -1 +1,2 @@
21 DIST c-capnproto-0.1.tar.gz 64051 SHA256 34718b5e56972f3964b69fcc5eea254cfd76d133a1ccf63f84c9e5a5a0faeab9 SHA512 6d8c66061419edafa0e01220a4c0fd23feac1674bb73b6f34c0677edaef9118a87badcbf939390842caa6fa4eb9ed0bc9c8ff542641b563bf729339bff9df9bd WHIRLPOOL d4e6ce299c063dcc57a48afc4f4dcf5ea7fcb485d8e325be31ed37595cfd539a29532f59adb679d3185c1a5af281331a62d83567e9862af44d463784319d7135
22 +DIST c-capnproto-0.2.tar.gz 77374 SHA256 1fab2ed66b5b4c029dc28c27a1a44147e107394b4feb42e62fe7b9a70b7ea1e6 SHA512 af6589b20b2fc7b129ee2209ecffbc94a483ca47ff3d5757b376dc43705dec11b5081d2ab73a1f9ff0cd7a668f63d499109aed0c4a616a89cb2458b0b9166e24 WHIRLPOOL 21881861937b639761c44109ed59e068b6651c3a5471255378f014ad0d20c91a898019eff5e5e55d2155ab1616047b27e804728deb6f5ecde1a0f12c1f231db0
23
24 diff --git a/dev-libs/c-capnproto/c-capnproto-0.2.ebuild b/dev-libs/c-capnproto/c-capnproto-0.2.ebuild
25 new file mode 100644
26 index 0000000..23e6bcb
27 --- /dev/null
28 +++ b/dev-libs/c-capnproto/c-capnproto-0.2.ebuild
29 @@ -0,0 +1,25 @@
30 +# Copyright 1999-2016 Gentoo Foundation
31 +# Distributed under the terms of the GNU General Public License v2
32 +# $Id$
33 +
34 +EAPI=5
35 +
36 +AUTOTOOLS_AUTORECONF="yes"
37 +inherit autotools-utils
38 +
39 +DESCRIPTION="C library/compiler for the Cap'n Proto serialization/RPC protocol"
40 +HOMEPAGE="https://github.com/opensourcerouting/c-capnproto"
41 +SRC_URI="https://github.com/opensourcerouting/c-capnproto/archive/${P}.tar.gz"
42 +
43 +LICENSE="MIT"
44 +SLOT="0"
45 +KEYWORDS="~amd64"
46 +IUSE="test"
47 +
48 +RDEPEND=""
49 +DEPEND="${DEPEND}
50 + test? ( dev-cpp/gtest )"
51 +S="${WORKDIR}/${PN}-${P}"
52 +PATCHES=(
53 + "${FILESDIR}/gtest.patch"
54 +)