Gentoo Archives: gentoo-commits

From: Hanno Boeck <hanno@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/python-axolotl/
Date: Sun, 02 Jun 2019 10:24:44
Message-Id: 1559471045.c23afe7a74cb8bba9edecbf92f3c38b44f82a3e1.hanno@gentoo
1 commit: c23afe7a74cb8bba9edecbf92f3c38b44f82a3e1
2 Author: Conrad Kostecki <conrad <AT> kostecki <DOT> com>
3 AuthorDate: Sat Jun 1 23:03:38 2019 +0000
4 Commit: Hanno Boeck <hanno <AT> gentoo <DOT> org>
5 CommitDate: Sun Jun 2 10:24:05 2019 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c23afe7a
7
8 dev-python/python-axolotl: bump to version 0.2.3
9
10 Package-Manager: Portage-2.3.67, Repoman-2.3.13
11 Closes: https://github.com/gentoo/gentoo/pull/12158
12 Signed-off-by: Conrad Kostecki <conrad <AT> kostecki.com>
13 Signed-off-by: Hanno Boeck <hanno <AT> gentoo.org>
14
15 dev-python/python-axolotl/Manifest | 1 +
16 .../python-axolotl/python-axolotl-0.2.3.ebuild | 28 ++++++++++++++++++++++
17 2 files changed, 29 insertions(+)
18
19 diff --git a/dev-python/python-axolotl/Manifest b/dev-python/python-axolotl/Manifest
20 index f4ad7a3bc3c..097aec4458c 100644
21 --- a/dev-python/python-axolotl/Manifest
22 +++ b/dev-python/python-axolotl/Manifest
23 @@ -1 +1,2 @@
24 DIST python-axolotl-0.1.42.tar.gz 53869 BLAKE2B 045d19b38478404b19717daee431a4fc36d187dc511d42ee950b37ef257d98aaee8ba42633888d596265c0d64bfc33f2da9307d45feb4189ec04c03d69687108 SHA512 db9e1cfab87d690619a672b1782942a18b12b17af555959c17bcc3e2581e9c689c57becc0ea884a1129df9dace17684ba03de38b81f8c8c65cab27962ebdb6c5
25 +DIST python-axolotl-0.2.3.tar.gz 52139 BLAKE2B 8539f4ff6d9d7e57965cdbbd510f499cf344490091fe56b013d1ab60986092ac8a7a76248624993692077020043ea21c1d9448ecf9b76a698b43da4e014f37ab SHA512 1a10dc9df2f95d19b49909d4d136b5266aae19e24ac84f8b263ae7d4de18f77353c737616ac0648b600e05699a90d348f95c6c1659849986becefb4a0277fc80
26
27 diff --git a/dev-python/python-axolotl/python-axolotl-0.2.3.ebuild b/dev-python/python-axolotl/python-axolotl-0.2.3.ebuild
28 new file mode 100644
29 index 00000000000..66e74fa421f
30 --- /dev/null
31 +++ b/dev-python/python-axolotl/python-axolotl-0.2.3.ebuild
32 @@ -0,0 +1,28 @@
33 +# Copyright 1999-2019 Gentoo Authors
34 +# Distributed under the terms of the GNU General Public License v2
35 +
36 +EAPI=7
37 +
38 +PYTHON_COMPAT=( python2_7 python3_{5,6,7} )
39 +
40 +inherit distutils-r1
41 +
42 +DESCRIPTION="A python module for the axolotl protocol"
43 +HOMEPAGE="https://github.com/tgalal/python-axolotl"
44 +SRC_URI="https://github.com/tgalal/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
45 +
46 +LICENSE="GPL-3"
47 +SLOT="0"
48 +KEYWORDS="~amd64 ~x86"
49 +
50 +RDEPEND="
51 + dev-python/cryptography[${PYTHON_USEDEP}]
52 + dev-python/protobuf-python[${PYTHON_USEDEP}]
53 + dev-python/python-axolotl-curve25519[${PYTHON_USEDEP}]
54 + "
55 +DEPEND="${RDEPEND}"
56 +BDEPEND="dev-python/setuptools[${PYTHON_USEDEP}]"
57 +
58 +python_test() {
59 + esetup.py test
60 +}