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: Sun, 18 Apr 2021 07:06:03
Message-Id: 1618729540.0dd66fc01cd62bc78d3d9bece55f10663a4a2be8.mgorny@gentoo
1 commit: 0dd66fc01cd62bc78d3d9bece55f10663a4a2be8
2 Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
3 AuthorDate: Sun Apr 18 06:50:51 2021 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Sun Apr 18 07:05:40 2021 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0dd66fc0
7
8 dev-python/pylast: Remove old
9
10 Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
11
12 dev-python/pylast/Manifest | 1 -
13 dev-python/pylast/pylast-4.1.0.ebuild | 33 ---------------------------------
14 2 files changed, 34 deletions(-)
15
16 diff --git a/dev-python/pylast/Manifest b/dev-python/pylast/Manifest
17 index db83127025c..3ac02696ae0 100644
18 --- a/dev-python/pylast/Manifest
19 +++ b/dev-python/pylast/Manifest
20 @@ -1,2 +1 @@
21 -DIST pylast-4.1.0.tar.gz 39592 BLAKE2B ff1f9f025701ebf741e53d96c2ba0c34d7a165d1c248973874484ed0c2e5e24693631f31de516fb4a58ea14014cb38c60fe04b9d116128a6a259346f16085dc2 SHA512 90be1cafb9252c2c19db9b179350269dc8eec82545487394d671d411e4fc2ca10fcd85259874f72c39674474c75274446cd8c64cd5f2274ef98ebf5ba7fbb351
22 DIST pylast-4.2.0.tar.gz 39761 BLAKE2B 35ab18928b2761255a25e2b8549fe852f28f04057c9fb1075fa223333d079c07340ea17d425695d17c0ec99d67e6e31ed93f6fe60df1121ae7c298cca99b1b03 SHA512 9c8c0eea0d3f54514ba06ad7da0868844f8dc53715717decb3b56772093e637673deb22ee4277e508d7e659b48c79733514c67c9af0283e8aa0032caeae3d44f
23
24 diff --git a/dev-python/pylast/pylast-4.1.0.ebuild b/dev-python/pylast/pylast-4.1.0.ebuild
25 deleted file mode 100644
26 index ddf99d5506a..00000000000
27 --- a/dev-python/pylast/pylast-4.1.0.ebuild
28 +++ /dev/null
29 @@ -1,33 +0,0 @@
30 -# Copyright 1999-2021 Gentoo Authors
31 -# Distributed under the terms of the GNU General Public License v2
32 -
33 -EAPI=7
34 -
35 -PYTHON_COMPAT=( python3_{7..9} pypy3 )
36 -
37 -inherit distutils-r1
38 -
39 -DESCRIPTION="Python interface to last.fm and other api-compatible websites"
40 -HOMEPAGE="https://github.com/pylast/pylast"
41 -SRC_URI="https://github.com/${PN}/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
42 -
43 -LICENSE="Apache-2.0"
44 -SLOT="0"
45 -KEYWORDS="amd64 arm ~hppa ~ia64 ppc ppc64 sparc x86"
46 -
47 -RDEPEND="dev-python/six[${PYTHON_USEDEP}]"
48 -BDEPEND="
49 - dev-python/setuptools_scm[${PYTHON_USEDEP}]
50 - test? ( dev-python/flaky[${PYTHON_USEDEP}] )
51 -"
52 -
53 -distutils_enable_tests pytest
54 -
55 -src_configure() {
56 - export SETUPTOOLS_SCM_PRETEND_VERSION=${PV}
57 -}
58 -
59 -python_test() {
60 - distutils_install_for_testing
61 - pytest -vv || die "tests failed with ${EPYTHON}"
62 -}