Gentoo Archives: gentoo-commits

From: "Michał Górny" <mgorny@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/pylast/
Date: Fri, 08 Apr 2022 08:56:52
Message-Id: 1649408199.0a70f988e0826c64522414ffa6d66c96b4622d14.mgorny@gentoo
1 commit: 0a70f988e0826c64522414ffa6d66c96b4622d14
2 Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
3 AuthorDate: Fri Apr 8 08:07:53 2022 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Fri Apr 8 08:56:39 2022 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0a70f988
7
8 dev-python/pylast: Bump to 5.0.0
9
10 Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
11
12 dev-python/pylast/Manifest | 1 +
13 dev-python/pylast/pylast-5.0.0.ebuild | 37 +++++++++++++++++++++++++++++++++++
14 2 files changed, 38 insertions(+)
15
16 diff --git a/dev-python/pylast/Manifest b/dev-python/pylast/Manifest
17 index c299db153428..9f35e7582c8a 100644
18 --- a/dev-python/pylast/Manifest
19 +++ b/dev-python/pylast/Manifest
20 @@ -1 +1,2 @@
21 DIST pylast-4.5.0.tar.gz 40175 BLAKE2B 394a6329d0c7f03ae70cf7ee5e19e310d4fc4b70f86a6e8ed66ad93674465433ff7ab06cfbfa82fd33302a6d85b9fe582402c2166746e7853d1bada9de5f2449 SHA512 c885f0ea415c2a6b96454abdbcef0b61732a5253ddff45a03d85a2b7d733f6bff47d1806576e4acc6d07763e404985e5c35341e37b88d586d1cbec811d984551
22 +DIST pylast-5.0.0.tar.gz 39868 BLAKE2B 0cb6d96ac74a2e62325b8a91cc3601ab4ea7ea629ef40c02ce1afe13fd067abc48f24092138fc4584382c9c7f8c62eb070f1a3173b39768ac4ff8e3904c255d2 SHA512 ebad77e66d39b5625d0afae3bba346769159f39dfbbca0fea6aa0e6ad683fea6ea04093dd4738e378ac419edcc9970e8070d7ff912cc08110a5f41f7993489ce
23
24 diff --git a/dev-python/pylast/pylast-5.0.0.ebuild b/dev-python/pylast/pylast-5.0.0.ebuild
25 new file mode 100644
26 index 000000000000..a96497534862
27 --- /dev/null
28 +++ b/dev-python/pylast/pylast-5.0.0.ebuild
29 @@ -0,0 +1,37 @@
30 +# Copyright 1999-2022 Gentoo Authors
31 +# Distributed under the terms of the GNU General Public License v2
32 +
33 +EAPI=8
34 +
35 +DISTUTILS_USE_PEP517=setuptools
36 +PYTHON_COMPAT=( python3_{8..10} )
37 +
38 +inherit distutils-r1
39 +
40 +DESCRIPTION="Python interface to last.fm and other api-compatible websites"
41 +HOMEPAGE="
42 + https://pypi.org/project/pylast/
43 + https://github.com/pylast/pylast/
44 +"
45 +SRC_URI="
46 + https://github.com/pylast/pylast/archive/${PV}.tar.gz
47 + -> ${P}.tar.gz
48 +"
49 +
50 +LICENSE="Apache-2.0"
51 +SLOT="0"
52 +KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~ppc ~ppc64 ~riscv ~sparc ~x86"
53 +
54 +RDEPEND="
55 + dev-python/httpx[${PYTHON_USEDEP}]
56 +"
57 +BDEPEND="
58 + dev-python/setuptools_scm[${PYTHON_USEDEP}]
59 + test? (
60 + dev-python/flaky[${PYTHON_USEDEP}]
61 + )
62 +"
63 +
64 +distutils_enable_tests pytest
65 +
66 +export SETUPTOOLS_SCM_PRETEND_VERSION=${PV}