Gentoo Archives: gentoo-commits

From: David Seifert <soap@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/py2neo/
Date: Sun, 09 Jul 2017 17:49:49
Message-Id: 1499622537.9fc7bca6aa5aeef0355668bdeb8fc46b3f07e484.soap@gentoo
1 commit: 9fc7bca6aa5aeef0355668bdeb8fc46b3f07e484
2 Author: David Seifert <soap <AT> gentoo <DOT> org>
3 AuthorDate: Sun Jul 9 17:48:57 2017 +0000
4 Commit: David Seifert <soap <AT> gentoo <DOT> org>
5 CommitDate: Sun Jul 9 17:48:57 2017 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9fc7bca6
7
8 dev-python/py2neo: Bump to 3.1.2
9
10 * EAPI 6
11 * Use PyPI for sources
12
13 Bug: https://bugs.gentoo.org/show_bug.cgi?id=600464
14 Package-Manager: Portage-2.3.6, Repoman-2.3.2
15
16 dev-python/py2neo/Manifest | 1 +
17 dev-python/py2neo/py2neo-3.1.2.ebuild | 25 +++++++++++++++++++++++++
18 2 files changed, 26 insertions(+)
19
20 diff --git a/dev-python/py2neo/Manifest b/dev-python/py2neo/Manifest
21 index e059dfa58d7..39db4f8ad39 100644
22 --- a/dev-python/py2neo/Manifest
23 +++ b/dev-python/py2neo/Manifest
24 @@ -1 +1,2 @@
25 DIST py2neo-2.0.9.tar.gz 943617 SHA256 3e06fd82923725fe0f65622abd8d26fbe8403f489e07df16367da1e9bb53820d SHA512 cf0a0fe30e717c32f0a2effc6927e12c6e99173d9592ad549274dd983188f0f09418035b04429b99dac9ab80a8771c3c741a12983a85317eff924cec40f2fc59 WHIRLPOOL 764a96fe01d96553cf1bfe59fc9bbf3b05993cf6d0f2a953b5debdbcc4992ee7fd859d3843d99043030982e53b29c14c097eb3463ac5bc6277c3a06ac10176bb
26 +DIST py2neo-3.1.2.tar.gz 100101 SHA256 8177a9b2c4d23a3ce26f02d3d6be92ac49cb7520e88ec1b41d8c6e86774938b8 SHA512 1f61e1129effe5e77b72955b34726cde668eeb3f3627a1164b40593ad863ae4f19d534f7174742eccae58d770f5e54d907346bef698d98c33e3f3837e70659d4 WHIRLPOOL 9f66800099cd32fb807116a301f336ca978d79e7fe9c38ccd04765c6d677b090d501f0170fe64e5961356add67ee2de0a665cb4044e032973313908a92afbfb4
27
28 diff --git a/dev-python/py2neo/py2neo-3.1.2.ebuild b/dev-python/py2neo/py2neo-3.1.2.ebuild
29 new file mode 100644
30 index 00000000000..77e8e49bb32
31 --- /dev/null
32 +++ b/dev-python/py2neo/py2neo-3.1.2.ebuild
33 @@ -0,0 +1,25 @@
34 +# Copyright 1999-2017 Gentoo Foundation
35 +# Distributed under the terms of the GNU General Public License v2
36 +
37 +EAPI=6
38 +
39 +PYTHON_COMPAT=( python{2_7,3_4,3_5,3_6} pypy{,3} )
40 +
41 +inherit distutils-r1
42 +
43 +DESCRIPTION="A simple and pragmatic library which accesses the Neo4j graph database"
44 +HOMEPAGE="http://py2neo.org"
45 +SRC_URI="mirror://pypi/p/${PN}/${P}.tar.gz"
46 +
47 +LICENSE="Apache-2.0"
48 +SLOT="0"
49 +KEYWORDS="~amd64 ~x86"
50 +IUSE=""
51 +
52 +DEPEND="dev-python/setuptools[${PYTHON_USEDEP}]"
53 +
54 +python_compile() {
55 + # https://github.com/nigelsmall/py2neo/issues/380
56 + python_is_python3 || local -x CFLAGS="${CFLAGS} -fno-strict-aliasing"
57 + distutils-r1_python_compile
58 +}