Gentoo Archives: gentoo-commits

From: Justin Lecher <jlec@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/pyamf/
Date: Mon, 21 Dec 2015 11:56:32
Message-Id: 1450698984.7e33dbbe9f91c5f9f3800546798b4a4a1938c24a.jlec@gentoo
1 commit: 7e33dbbe9f91c5f9f3800546798b4a4a1938c24a
2 Author: Justin Lecher <jlec <AT> gentoo <DOT> org>
3 AuthorDate: Mon Dec 21 11:54:42 2015 +0000
4 Commit: Justin Lecher <jlec <AT> gentoo <DOT> org>
5 CommitDate: Mon Dec 21 11:56:24 2015 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7e33dbbe
7
8 dev-python/pyamf: Version Bump
9
10 Package-Manager: portage-2.2.26
11 Signed-off-by: Justin Lecher <jlec <AT> gentoo.org>
12
13 dev-python/pyamf/Manifest | 1 +
14 dev-python/pyamf/pyamf-0.8.0.ebuild | 39 +++++++++++++++++++++++++++++++++++++
15 2 files changed, 40 insertions(+)
16
17 diff --git a/dev-python/pyamf/Manifest b/dev-python/pyamf/Manifest
18 index 7ce6de7..07ceb67 100644
19 --- a/dev-python/pyamf/Manifest
20 +++ b/dev-python/pyamf/Manifest
21 @@ -1,2 +1,3 @@
22 DIST PyAMF-0.7.0.tar.gz 1647988 SHA256 5e9c68a2acc00ee99d1ca1f578c4fc0cbc16e33339a6d5a0d8d313a4c0f42663 SHA512 dcaf808a11c73f9e9b548c9e81100eb28ee1e3c1e2d44b0fb08f58ab3693a49c69b95040e25e612e3864d268436829c4ab7389e1ed9c0704f37a9d350dd9c82d WHIRLPOOL 535fdedea37a866045a34f89b5f255f13d4d3ebc1a1a1fbdba2c233fdd5fedfb1436e4993d69940cbdd5f26898c3d6264afa9bdac21217f38d3d2e955058c369
23 DIST PyAMF-0.7.2.tar.gz 1648116 SHA256 3e39d43989f75a4d35f4c2a591d8163637f67eaf856bdae749bd8b64b1c1b672 SHA512 5372e40752a75919122c1a8630dbf6333ca2c9d8c79d004a58f857b2656e2cccd96ba5ff24aca9352a8db2e66419760cf3309b5cafb7ad5e1097473fa4a8bbe8 WHIRLPOOL 5ba25ed6ee2bde8dc2800c6d5093509622214a2ed5a5cf51a023c0a8a72618f7156b550e67816bc51f53d2f84c9993fdc8caf37a4ad23bb1006b08522f38cdec
24 +DIST PyAMF-0.8.0.tar.gz 1651369 SHA256 0455d68983e3ee49f82721132074877428d58acec52f19697a88c03b5fba74e4 SHA512 1da66afbfb6cc32886a8680b5f610d17b3ad6e5cca338deb7f8d8c5e61f0f4e165b6602936590b4053a3bc98d0e36f898e5913e7d59d8444faf385fa036fd81e WHIRLPOOL 259c6164febcbf95b3755b4e05ba2325001ed52e19afb51349803ff7205fb2ca3bce41f1524f46f193748d0b939eb1230fc5a2ea7f9ae739fcb7c859c719066f
25
26 diff --git a/dev-python/pyamf/pyamf-0.8.0.ebuild b/dev-python/pyamf/pyamf-0.8.0.ebuild
27 new file mode 100644
28 index 0000000..25130d8
29 --- /dev/null
30 +++ b/dev-python/pyamf/pyamf-0.8.0.ebuild
31 @@ -0,0 +1,39 @@
32 +# Copyright 1999-2015 Gentoo Foundation
33 +# Distributed under the terms of the GNU General Public License v2
34 +# $Id$
35 +
36 +EAPI=5
37 +
38 +PYTHON_COMPAT=( python2_7 )
39 +
40 +inherit distutils-r1
41 +
42 +MY_PN=PyAMF
43 +MY_P=${MY_PN}-${PV}
44 +
45 +DESCRIPTION="Action Message Format (AMF) support for Python"
46 +HOMEPAGE="https://github.com/hydralabs/pyamf https://pypi.python.org/pypi/PyAMF"
47 +SRC_URI="mirror://pypi/${MY_PN:0:1}/${MY_PN}/${MY_P}.tar.gz"
48 +
49 +LICENSE="MIT"
50 +SLOT="0"
51 +KEYWORDS="~amd64 ~x86"
52 +IUSE=""
53 +
54 +RDEPEND="dev-python/defusedxml[${PYTHON_USEDEP}]"
55 +DEPEND="${RDEPEND}
56 + dev-python/setuptools[${PYTHON_USEDEP}]"
57 +
58 +S=${WORKDIR}/${MY_P}
59 +
60 +python_test() {
61 + esetup.py test
62 +}
63 +
64 +pkg_postinst() {
65 + if [[ -z ${REPLACING_VERSIONS} ]]; then
66 + elog "PyAMF optionally integrates with several third-party libraries"
67 + elog "and web frameworks. See the README or the Optional Extras section at"
68 + elog "https://github.com/hydralabs/pyamf/blob/master/doc/install.rst"
69 + fi
70 +}