Gentoo Archives: gentoo-commits

From: "Anthony G. Basile" <blueness@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/bert/
Date: Sat, 27 Apr 2019 19:54:14
Message-Id: 1556394843.5362a1fb3ac935e29e016c09511cc3653061766e.blueness@gentoo
1 commit: 5362a1fb3ac935e29e016c09511cc3653061766e
2 Author: Anthony G. Basile <blueness <AT> gentoo <DOT> org>
3 AuthorDate: Sat Apr 27 19:52:57 2019 +0000
4 Commit: Anthony G. Basile <blueness <AT> gentoo <DOT> org>
5 CommitDate: Sat Apr 27 19:54:03 2019 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5362a1fb
7
8 dev-python/bert: version bump to 2.2.0
9
10 Signed-off-by: Anthony G. Basile <blueness <AT> gentoo.org>
11 Package-Manager: Portage-2.3.62, Repoman-2.3.11
12
13 dev-python/bert/Manifest | 1 +
14 dev-python/bert/bert-2.2.0.ebuild | 23 +++++++++++++++++++++++
15 2 files changed, 24 insertions(+)
16
17 diff --git a/dev-python/bert/Manifest b/dev-python/bert/Manifest
18 index 5f94ef5e4f4..fdf72f151e7 100644
19 --- a/dev-python/bert/Manifest
20 +++ b/dev-python/bert/Manifest
21 @@ -1 +1,2 @@
22 DIST bert-2.0.0.tar.gz 3503 BLAKE2B 6435177493a822166e2f5e2c461f17deb9553aa3aec8893d15e057da9907ae4949246fb19299a1263905e648e0483d2e4cfeddbd2915f2c0d147a0a2bc62daf0 SHA512 643392ab1f8f0cecad9773846a52d5207f3dfeb431c6934b7cdfa523319c1c2aca4b9f8139d0a52ea759df03163b820adb963e4a21284e579a9d139da9acbeb3
23 +DIST bert-2.2.0.tar.gz 3541 BLAKE2B 3f1f87d5205e1098f7d170da5a4e331f9421151af536c106ce2de925082c48bc739df4bbe2294a2dbe8f65d2ccc24a1d5bb944ad90e80e558cb5032e4fd7c639 SHA512 417c9752362c6dc7ade8078f259d1674fcddd09b6af595694a9c31e886dbb523460413d4bf041db29afd4d67a9d639ef8f9254077c31d1593657ad52f8ef45a8
24
25 diff --git a/dev-python/bert/bert-2.2.0.ebuild b/dev-python/bert/bert-2.2.0.ebuild
26 new file mode 100644
27 index 00000000000..db1627e2473
28 --- /dev/null
29 +++ b/dev-python/bert/bert-2.2.0.ebuild
30 @@ -0,0 +1,23 @@
31 +# Copyright 1999-2019 Gentoo Authors
32 +# Distributed under the terms of the GNU General Public License v2
33 +
34 +EAPI=6
35 +PYTHON_COMPAT=( python{2_7,3_5,3_6} )
36 +
37 +inherit distutils-r1
38 +
39 +DESCRIPTION="BERT Serialization Library"
40 +HOMEPAGE="https://pypi.org/project/bert/"
41 +SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
42 +
43 +LICENSE="GPL-3"
44 +SLOT="0"
45 +KEYWORDS="~amd64 ~arm ~x86"
46 +IUSE=""
47 +
48 +DEPEND="dev-python/setuptools[${PYTHON_USEDEP}]
49 + dev-python/basho-erlastic[${PYTHON_USEDEP}]"
50 +
51 +RDEPEND=""
52 +
53 +PATCHES=( "${FILESDIR}/${PN}-2.0.0-remove-basestring-fix.patch" )