Gentoo Archives: gentoo-commits

From: Patrick McLean <chutzpah@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/pylast/
Date: Sat, 02 May 2020 00:08:55
Message-Id: 1588378096.aa56a04fa43b26188791a6f3079cdd32a934c384.chutzpah@gentoo
1 commit: aa56a04fa43b26188791a6f3079cdd32a934c384
2 Author: Patrick McLean <chutzpah <AT> gentoo <DOT> org>
3 AuthorDate: Sat May 2 00:04:50 2020 +0000
4 Commit: Patrick McLean <chutzpah <AT> gentoo <DOT> org>
5 CommitDate: Sat May 2 00:08:16 2020 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=aa56a04f
7
8 dev-python/pylast-3.2.1: Version bump, add py37, py38
9
10 Package-Manager: Portage-2.3.99, Repoman-2.3.22
11 Signed-off-by: Patrick McLean <chutzpah <AT> gentoo.org>
12
13 dev-python/pylast/Manifest | 1 +
14 dev-python/pylast/pylast-3.2.1.ebuild | 36 +++++++++++++++++++++++++++++++++++
15 2 files changed, 37 insertions(+)
16
17 diff --git a/dev-python/pylast/Manifest b/dev-python/pylast/Manifest
18 index 94607bf8b73..c5904285046 100644
19 --- a/dev-python/pylast/Manifest
20 +++ b/dev-python/pylast/Manifest
21 @@ -1 +1,2 @@
22 DIST pylast-1.9.0.tar.gz 42584 BLAKE2B b479fe5b780f6dbd30f20c0e183205ffe87703f26fe8ff04170c7f906705bfe737e965c2a7ebc562943c96a8f9bf7710e84999656d1ff22820254e4f4573f0e2 SHA512 ff3929583d88466738c9a1e964676652717c9f5bd4631f1a0a7855903e77cd394a612b0e2e8fc2f698ac84a34a135f4e940ff7760c2c88bf388ae56fc9c3da65
23 +DIST pylast-3.2.1.tar.gz 39763 BLAKE2B 1162efb68b89e381528b73eb5fb1dd45a15fcf8129b59fcae824ee78f100f6ea523207cda5b689b2fe66628b0aa5db313b5fa2f504b61b3b4ef6b64ccf13ea5b SHA512 e79a258e6f7c8490d98b4b737abae29cf763dcc5520f47dfe9fe7827f3163bc43ad7dc5c25edd1099cb4c4cd3483cdc5014331caba6f8c3cb29fb1394a8bfa3a
24
25 diff --git a/dev-python/pylast/pylast-3.2.1.ebuild b/dev-python/pylast/pylast-3.2.1.ebuild
26 new file mode 100644
27 index 00000000000..8a30a8f3bc1
28 --- /dev/null
29 +++ b/dev-python/pylast/pylast-3.2.1.ebuild
30 @@ -0,0 +1,36 @@
31 +# Copyright 1999-2020 Gentoo Authors
32 +# Distributed under the terms of the GNU General Public License v2
33 +
34 +EAPI=7
35 +
36 +PYTHON_COMPAT=( python3_{6,7,8} pypy3 )
37 +
38 +inherit distutils-r1
39 +
40 +DESCRIPTION="Python interface to last.fm and other api-compatible websites"
41 +HOMEPAGE="https://github.com/pylast/pylast"
42 +SRC_URI="https://github.com/${PN}/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
43 +
44 +LICENSE="Apache-2.0"
45 +SLOT="0"
46 +KEYWORDS="~amd64 ~x86"
47 +
48 +RDEPEND="dev-python/six[${PYTHON_USEDEP}]"
49 +BDEPEND="${RDEPEND}
50 + test? ( dev-python/flaky[${PYTHON_USEDEP}] )
51 +"
52 +
53 +distutils_enable_tests pytest
54 +
55 +python_prepare_all() {
56 + # remove setuptools-scm dependency
57 + sed -e 's:"setuptools_scm"::' \
58 + -e "s:use_scm_version=.*:version='${PV}',:" -i setup.py || die
59 +
60 + distutils-r1_python_prepare_all
61 +}
62 +
63 +python_test() {
64 + distutils_install_for_testing
65 + pytest -vv || die "tests failed with ${EPYTHON}"
66 +}