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/funcparserlib/
Date: Sun, 27 Feb 2022 18:46:47
Message-Id: 1645987090.42957e7b72521c0b22c516bbd291a9f44d132ed5.mgorny@gentoo
1 commit: 42957e7b72521c0b22c516bbd291a9f44d132ed5
2 Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
3 AuthorDate: Sun Feb 27 18:38:10 2022 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Sun Feb 27 18:38:10 2022 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=42957e7b
7
8 dev-python/funcparserlib: Remove old
9
10 Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
11
12 .../funcparserlib-1.0.0_alpha0.ebuild | 31 ----------------------
13 1 file changed, 31 deletions(-)
14
15 diff --git a/dev-python/funcparserlib/funcparserlib-1.0.0_alpha0.ebuild b/dev-python/funcparserlib/funcparserlib-1.0.0_alpha0.ebuild
16 deleted file mode 100644
17 index 11745efb63f9..000000000000
18 --- a/dev-python/funcparserlib/funcparserlib-1.0.0_alpha0.ebuild
19 +++ /dev/null
20 @@ -1,31 +0,0 @@
21 -# Copyright 1999-2022 Gentoo Authors
22 -# Distributed under the terms of the GNU General Public License v2
23 -
24 -EAPI=8
25 -
26 -PYTHON_COMPAT=( python3_{8..10} )
27 -DISTUTILS_USE_SETUPTOOLS=pyproject.toml
28 -inherit distutils-r1
29 -
30 -MY_PV="${PV/_alpha/a}"
31 -
32 -DESCRIPTION="Recursive descent parsing library based on functional combinators"
33 -HOMEPAGE="https://pypi.org/project/funcparserlib/"
34 -SRC_URI="
35 - https://github.com/vlasovskikh/funcparserlib/archive/${MY_PV}.tar.gz
36 - -> ${P}.gh.tar.gz
37 -"
38 -S="${WORKDIR}/${PN}-${MY_PV}"
39 -
40 -LICENSE="MIT"
41 -SLOT="0"
42 -KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ppc ppc64 ~riscv sparc x86"
43 -
44 -BDEPEND="test? ( dev-python/six[${PYTHON_USEDEP}] )"
45 -
46 -distutils_enable_tests unittest
47 -
48 -python_install_all() {
49 - local DOCS=( doc/*.md )
50 - distutils-r1_python_install_all
51 -}