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: Mon, 04 Dec 2017 22:01:51
Message-Id: 1512424902.742105ac2d0b72ff30878da08c0401f29e7046cb.aballier@gentoo
1 commit: 742105ac2d0b72ff30878da08c0401f29e7046cb
2 Author: Alexis Ballier <aballier <AT> gentoo <DOT> org>
3 AuthorDate: Mon Dec 4 22:01:24 2017 +0000
4 Commit: Alexis Ballier <aballier <AT> gentoo <DOT> org>
5 CommitDate: Mon Dec 4 22:01:42 2017 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=742105ac
7
8 dev-python/pycapnp: bump to 0.6.2
9
10 Package-Manager: Portage-2.3.16, Repoman-2.3.6
11
12 dev-python/pycapnp/Manifest | 1 +
13 dev-python/pycapnp/pycapnp-0.6.2.ebuild | 28 ++++++++++++++++++++++++++++
14 2 files changed, 29 insertions(+)
15
16 diff --git a/dev-python/pycapnp/Manifest b/dev-python/pycapnp/Manifest
17 index c5e0150669e..c3df1cbe601 100644
18 --- a/dev-python/pycapnp/Manifest
19 +++ b/dev-python/pycapnp/Manifest
20 @@ -1 +1,2 @@
21 DIST pycapnp-0.6.1.tar.gz 454873 BLAKE2B 5b8eeb90a371ccafed7dbeee9a44b1f4ee1173daeeac139a67c4e97484df689a581ebb2c5783dd4657964bc83fdcb02c67231a350b149cafc77d348ee4218247 SHA512 a1bf209626effa9970da3b6492bf4b2b73585ef0f3ac0c8e8634071fe74631dae09a94671dd835d3c7934d697c25631b0d8227b3b23150609476e7c699efbfc9
22 +DIST pycapnp-0.6.2.tar.gz 455092 BLAKE2B 5cdffde0a88398328f6e6908caf4ea2c3626a4a4d47100973a2bb3ae0e10406734354e40afe60f7d4861c79534e05bee6aeecfee4ffeca50ef7e24101ca4a08d SHA512 6656ce4a67e38fc301fb4dd7e80daea3a7551e01589b11c8fd7aea0d4af7638387fecd712c968f549ff596bf64caca6bdf7add20fbd14396a92e49ac3ce47188
23
24 diff --git a/dev-python/pycapnp/pycapnp-0.6.2.ebuild b/dev-python/pycapnp/pycapnp-0.6.2.ebuild
25 new file mode 100644
26 index 00000000000..8147a636202
27 --- /dev/null
28 +++ b/dev-python/pycapnp/pycapnp-0.6.2.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/ https://github.com/capnproto/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 +}