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-python/pycapnp/
Date: Tue, 01 Aug 2017 12:01:46
Message-Id: 1501588891.c762b56501276436455ba24b128e785201be353e.aballier@gentoo
1 commit: c762b56501276436455ba24b128e785201be353e
2 Author: Alexis Ballier <aballier <AT> gentoo <DOT> org>
3 AuthorDate: Tue Aug 1 12:01:23 2017 +0000
4 Commit: Alexis Ballier <aballier <AT> gentoo <DOT> org>
5 CommitDate: Tue Aug 1 12:01:31 2017 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c762b565
7
8 dev-python/pycapnp: bump to 0.6.1
9
10 Package-Manager: Portage-2.3.6, Repoman-2.3.3
11
12 dev-python/pycapnp/Manifest | 1 +
13 dev-python/pycapnp/pycapnp-0.6.1.ebuild | 28 ++++++++++++++++++++++++++++
14 2 files changed, 29 insertions(+)
15
16 diff --git a/dev-python/pycapnp/Manifest b/dev-python/pycapnp/Manifest
17 index 95733fddc09..d79e005973a 100644
18 --- a/dev-python/pycapnp/Manifest
19 +++ b/dev-python/pycapnp/Manifest
20 @@ -1 +1,2 @@
21 DIST pycapnp-0.5.12.tar.gz 454294 SHA256 b71a0e71512796e993a5724457d77f36ea21528cf1ca59fc6c7036c8cf61dea3 SHA512 c4344aa30a8b3b0ad7c28c2fe151e7d3c2866910c10a4b96881e5ecf352bc8331dfeff4e0ea8d50cb680eb3013b53ebd4a6dcfb07491cc5292329d9a26c80e29 WHIRLPOOL ef36bcb90f5c7b2175706a11a2f59df3b31a578f7bb61c4480af7c14d2b39721520a1a61484e4365a8dcc9880d02f237d2427ac0282b4371c7da7b656310d594
22 +DIST pycapnp-0.6.1.tar.gz 454873 SHA256 ea60837533307849e98bb3494555cea28a52ea0c301cfdf32bce661931940696 SHA512 a1bf209626effa9970da3b6492bf4b2b73585ef0f3ac0c8e8634071fe74631dae09a94671dd835d3c7934d697c25631b0d8227b3b23150609476e7c699efbfc9 WHIRLPOOL 0aafef6db12d39d16816d19c730015736e6e9440a1f4ae383ba0d7cfbe608f034fb65c84103feaff0231160e448dbd224bae0c7c3682e99293314cf6dcb880c1
23
24 diff --git a/dev-python/pycapnp/pycapnp-0.6.1.ebuild b/dev-python/pycapnp/pycapnp-0.6.1.ebuild
25 new file mode 100644
26 index 00000000000..dcc5d83d6f4
27 --- /dev/null
28 +++ b/dev-python/pycapnp/pycapnp-0.6.1.ebuild
29 @@ -0,0 +1,28 @@
30 +# Copyright 1999-2017 Gentoo Foundation
31 +# Distributed under the terms of the GNU General Public License v2
32 +
33 +EAPI=5
34 +
35 +PYTHON_COMPAT=( python{2_7,3_4,3_5,3_6} )
36 +
37 +inherit distutils-r1
38 +
39 +DESCRIPTION="Python wrapping of the Cap'n Proto library"
40 +HOMEPAGE="http://jparyani.github.io/pycapnp/"
41 +SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
42 +
43 +LICENSE="BSD"
44 +SLOT="0"
45 +KEYWORDS="~amd64 ~arm ~arm64"
46 +IUSE=""
47 +
48 +RDEPEND=">=dev-libs/capnproto-0.6:="
49 +DEPEND="${RDEPEND}
50 + dev-python/cython[${PYTHON_USEDEP}]
51 +"
52 +
53 +src_prepare() {
54 + distutils-r1_src_prepare
55 + # regen cython files
56 + rm -f capnp/lib/capnp.cpp || die
57 +}