dev-python/pycapnp: bump to 0.6.3
authorAlexis Ballier <aballier@gentoo.org>
Thu, 18 Jan 2018 11:15:05 +0000 (12:15 +0100)
committerAlexis Ballier <aballier@gentoo.org>
Thu, 18 Jan 2018 11:15:10 +0000 (12:15 +0100)
Package-Manager: Portage-2.3.19, Repoman-2.3.6

dev-python/pycapnp/Manifest
dev-python/pycapnp/pycapnp-0.6.3.ebuild [new file with mode: 0644]

index f9afe3092ddac7a0d51606fab48f54f19605cee7..98a2a3e473b5230a291989f382cb4103653a399c 100644 (file)
@@ -1 +1,2 @@
 DIST pycapnp-0.6.2.tar.gz 455092 BLAKE2B 5cdffde0a88398328f6e6908caf4ea2c3626a4a4d47100973a2bb3ae0e10406734354e40afe60f7d4861c79534e05bee6aeecfee4ffeca50ef7e24101ca4a08d SHA512 6656ce4a67e38fc301fb4dd7e80daea3a7551e01589b11c8fd7aea0d4af7638387fecd712c968f549ff596bf64caca6bdf7add20fbd14396a92e49ac3ce47188
+DIST pycapnp-0.6.3.tar.gz 455075 BLAKE2B ad4ccb7e4c83ed686a419ac97652b50853e4377a4d59579fd276b89c60c7f2a0235c73da711288ca4843c5277925dedab8bd4ddaa4d84e8615d9aeed325521fe SHA512 e125af41d46ca32f94cf548b778f554587074ee59993f4a5bf243b66650976c2c219ca572094daa51f3718272dd9e3529e27bda85dc52d2a644ead8e16b6e02c
diff --git a/dev-python/pycapnp/pycapnp-0.6.3.ebuild b/dev-python/pycapnp/pycapnp-0.6.3.ebuild
new file mode 100644 (file)
index 0000000..d6460a7
--- /dev/null
@@ -0,0 +1,28 @@
+# Copyright 1999-2018 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=5
+
+PYTHON_COMPAT=( python{2_7,3_4,3_5,3_6} )
+
+inherit distutils-r1
+
+DESCRIPTION="Python wrapping of the Cap'n Proto library"
+HOMEPAGE="http://jparyani.github.io/pycapnp/ https://github.com/capnproto/pycapnp"
+SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
+
+LICENSE="BSD"
+SLOT="0"
+KEYWORDS="~amd64 ~arm ~arm64"
+IUSE=""
+
+RDEPEND=">=dev-libs/capnproto-0.6:="
+DEPEND="${RDEPEND}
+       dev-python/cython[${PYTHON_USEDEP}]
+"
+
+src_prepare() {
+       distutils-r1_src_prepare
+       # regen cython files
+       rm -f capnp/lib/capnp.cpp || die
+}