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/funcy/
Date: Tue, 02 Mar 2021 08:53:14
Message-Id: 1614675181.8446ea8c26cb16cb9048d66b259831dfe2b60c86.mgorny@gentoo
1 commit: 8446ea8c26cb16cb9048d66b259831dfe2b60c86
2 Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
3 AuthorDate: Tue Mar 2 08:51:39 2021 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Tue Mar 2 08:53:01 2021 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8446ea8c
7
8 dev-python/funcy: Remove old
9
10 Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
11
12 dev-python/funcy/Manifest | 1 -
13 dev-python/funcy/funcy-1.14-r1.ebuild | 31 -------------------------------
14 2 files changed, 32 deletions(-)
15
16 diff --git a/dev-python/funcy/Manifest b/dev-python/funcy/Manifest
17 index 9b181f1cc7e..72cc98b61c0 100644
18 --- a/dev-python/funcy/Manifest
19 +++ b/dev-python/funcy/Manifest
20 @@ -1,2 +1 @@
21 -DIST funcy-1.14.tar.gz 548493 BLAKE2B fff352d0e0d685fb51fb30302542c2e8893209df1e01912efae06821fbc885b05ab3fea8786d6924b48ddf32cc6bdd6def5e90db1ff949b005437b5d3771c3c0 SHA512 0c7daf1a6d87f56663ae0d37cc65654c79646c313ec530ac57e6ee8de04849b8846556fda10dd762f92e44a5ffa54d32880bed4cd77cec99ae865de0203d123a
22 DIST funcy-1.15.tar.gz 605884 BLAKE2B dbcfe02981a09b2914096c7df9e0f37582dd4250bced71df92a1b10ce655291470f5ecb32ea4557307ba075e121d3199e0928566f9c25256c391ab821363023b SHA512 6e54da954bf11de55251a2732e9cee5617947322ea16a6a918ff3c5d7cb448756d29a39c4e997186cadc30d24270ccf4e6d21af9f108ebaabaed68e0be96f624
23
24 diff --git a/dev-python/funcy/funcy-1.14-r1.ebuild b/dev-python/funcy/funcy-1.14-r1.ebuild
25 deleted file mode 100644
26 index 9b4748b8b25..00000000000
27 --- a/dev-python/funcy/funcy-1.14-r1.ebuild
28 +++ /dev/null
29 @@ -1,31 +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 python3_8 )
36 -inherit distutils-r1
37 -
38 -DESCRIPTION="A collection of fancy functional tools focused on practicality"
39 -HOMEPAGE="https://github.com/Suor/funcy"
40 -SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
41 -
42 -LICENSE="BSD"
43 -SLOT="0"
44 -KEYWORDS="amd64 x86"
45 -IUSE="test"
46 -RESTRICT="!test? ( test )"
47 -
48 -DEPEND=""
49 -RDEPEND="${DEPEND}"
50 -BDEPEND="
51 - ${RDEPEND}
52 - test? (
53 - dev-python/whatever[${PYTHON_USEDEP}]
54 - dev-python/pytest[${PYTHON_USEDEP}]
55 - )"
56 -
57 -python_test() {
58 - distutils_install_for_testing --via-root
59 - pytest || die "Tests fail with ${EPYTHON}"
60 -}