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: Fri, 27 May 2022 19:46:02
Message-Id: 1653680672.dcb326d09011eaca29eef199c2d8e6919a385f49.mgorny@gentoo
1 commit: dcb326d09011eaca29eef199c2d8e6919a385f49
2 Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
3 AuthorDate: Fri May 27 19:44:32 2022 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Fri May 27 19:44:32 2022 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=dcb326d0
7
8 dev-python/funcparserlib: Remove old
9
10 Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
11
12 dev-python/funcparserlib/Manifest | 3 --
13 .../funcparserlib-1.0.0_alpha0-r1.ebuild | 39 ----------------------
14 .../funcparserlib-1.0.0_alpha1.ebuild | 36 --------------------
15 .../funcparserlib-1.0.0_alpha2.ebuild | 31 -----------------
16 4 files changed, 109 deletions(-)
17
18 diff --git a/dev-python/funcparserlib/Manifest b/dev-python/funcparserlib/Manifest
19 index c86716cda987..c14200d472be 100644
20 --- a/dev-python/funcparserlib/Manifest
21 +++ b/dev-python/funcparserlib/Manifest
22 @@ -1,4 +1 @@
23 DIST funcparserlib-1.0.0.gh.tar.gz 66709 BLAKE2B 76229795e88b5b880667e41b2cd3d534649893019824e7206f41d188f44e7a67bc1cdb97b0cbcf731eb840ed128f29434d0748d0923a16ea0a3130b3ee10d206 SHA512 431d6b639c46dc84a0a12c8de976cb2c1369f0172a18d1eadbffba31aff12e9cfeded5ebec3ec63065384547000144d65d60003c55e2b23a1a40818d910aaef3
24 -DIST funcparserlib-1.0.0_alpha0.gh.tar.gz 68260 BLAKE2B e1a9a9a516142d683424df881a7c390a3999438905136fbd394f23856022f14390d22f1dd3914e680d2c188c819cce9cc4f7ff2e485478614dd4632701db4614 SHA512 02cac31d76bb888118a99367811a8cfac28a999ba113ce43f4bd6211cef815ce1793fc1767637dd019728f15d5c408e859d5bc8365a2c53804092f1d6f03e54e
25 -DIST funcparserlib-1.0.0_alpha1.gh.tar.gz 74033 BLAKE2B bf4ee5011f595c6b7ba7430c63e21243257ddc2e00cccea75bf5b16feca2a629becd28f196d657e024419010051a33e5f12fae29b6f8763b35cb8d1bb9144a6b SHA512 16dbf07edd5cad979c61396adc3ccce7dcedd46b3cf6394ecf35c9fd2b22cdf262bb609ffca9a4b6f9f0c236124a7b7cdd929166d65056ca71e73afa2f6b97e2
26 -DIST funcparserlib-1.0.0_alpha2.gh.tar.gz 66692 BLAKE2B 5d45b48c0efe6025b50cfd603f2eeac4341b5e41185fbbe1e0b948975ee778fcae05dc229a34bfde28b64f2723c21699ffadd243629244a067951cf17049abb3 SHA512 a7c1f4219bee2b203d5f3a1701e24f838b348965ca5bc090aa8f7af0407344af22ec5eb2e161212e6ece42491a775076f45a36f8e2b691d78a3c639ca4098af1
27
28 diff --git a/dev-python/funcparserlib/funcparserlib-1.0.0_alpha0-r1.ebuild b/dev-python/funcparserlib/funcparserlib-1.0.0_alpha0-r1.ebuild
29 deleted file mode 100644
30 index eaa5d281e793..000000000000
31 --- a/dev-python/funcparserlib/funcparserlib-1.0.0_alpha0-r1.ebuild
32 +++ /dev/null
33 @@ -1,39 +0,0 @@
34 -# Copyright 1999-2022 Gentoo Authors
35 -# Distributed under the terms of the GNU General Public License v2
36 -
37 -EAPI=8
38 -
39 -DISTUTILS_USE_PEP517=poetry
40 -PYTHON_COMPAT=( python3_{8..10} )
41 -inherit distutils-r1
42 -
43 -MY_PV="${PV/_alpha/a}"
44 -
45 -DESCRIPTION="Recursive descent parsing library based on functional combinators"
46 -HOMEPAGE="https://pypi.org/project/funcparserlib/"
47 -SRC_URI="
48 - https://github.com/vlasovskikh/funcparserlib/archive/${MY_PV}.tar.gz
49 - -> ${P}.gh.tar.gz
50 -"
51 -S="${WORKDIR}/${PN}-${MY_PV}"
52 -
53 -LICENSE="MIT"
54 -SLOT="0"
55 -KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ppc ppc64 ~riscv sparc x86"
56 -
57 -BDEPEND="test? ( dev-python/six[${PYTHON_USEDEP}] )"
58 -
59 -distutils_enable_tests unittest
60 -
61 -src_prepare() {
62 - sed -e '/requires/s:poetry:&-core:' \
63 - -e '/backend/s:poetry:&.core:' \
64 - -i pyproject.toml || die
65 -
66 - distutils-r1_src_prepare
67 -}
68 -
69 -python_install_all() {
70 - local DOCS=( doc/*.md )
71 - distutils-r1_python_install_all
72 -}
73
74 diff --git a/dev-python/funcparserlib/funcparserlib-1.0.0_alpha1.ebuild b/dev-python/funcparserlib/funcparserlib-1.0.0_alpha1.ebuild
75 deleted file mode 100644
76 index 61cd5cd72023..000000000000
77 --- a/dev-python/funcparserlib/funcparserlib-1.0.0_alpha1.ebuild
78 +++ /dev/null
79 @@ -1,36 +0,0 @@
80 -# Copyright 1999-2022 Gentoo Authors
81 -# Distributed under the terms of the GNU General Public License v2
82 -
83 -EAPI=8
84 -
85 -DISTUTILS_USE_PEP517=poetry
86 -PYTHON_COMPAT=( python3_{8..10} )
87 -
88 -inherit distutils-r1
89 -
90 -MY_PV="${PV/_alpha/a}"
91 -
92 -DESCRIPTION="Recursive descent parsing library based on functional combinators"
93 -HOMEPAGE="https://pypi.org/project/funcparserlib/"
94 -SRC_URI="
95 - https://github.com/vlasovskikh/funcparserlib/archive/${MY_PV}.tar.gz
96 - -> ${P}.gh.tar.gz
97 -"
98 -S="${WORKDIR}/${PN}-${MY_PV}"
99 -
100 -LICENSE="MIT"
101 -SLOT="0"
102 -KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86"
103 -
104 -BDEPEND="
105 - test? (
106 - dev-python/six[${PYTHON_USEDEP}]
107 - )
108 -"
109 -
110 -distutils_enable_tests unittest
111 -
112 -python_install_all() {
113 - local DOCS=( doc/*.md )
114 - distutils-r1_python_install_all
115 -}
116
117 diff --git a/dev-python/funcparserlib/funcparserlib-1.0.0_alpha2.ebuild b/dev-python/funcparserlib/funcparserlib-1.0.0_alpha2.ebuild
118 deleted file mode 100644
119 index 5688b13e39c9..000000000000
120 --- a/dev-python/funcparserlib/funcparserlib-1.0.0_alpha2.ebuild
121 +++ /dev/null
122 @@ -1,31 +0,0 @@
123 -# Copyright 1999-2022 Gentoo Authors
124 -# Distributed under the terms of the GNU General Public License v2
125 -
126 -EAPI=8
127 -
128 -DISTUTILS_USE_PEP517=poetry
129 -PYTHON_COMPAT=( python3_{8..10} )
130 -
131 -inherit distutils-r1
132 -
133 -MY_PV="${PV/_alpha/a}"
134 -
135 -DESCRIPTION="Recursive descent parsing library based on functional combinators"
136 -HOMEPAGE="https://pypi.org/project/funcparserlib/"
137 -SRC_URI="
138 - https://github.com/vlasovskikh/funcparserlib/archive/${MY_PV}.tar.gz
139 - -> ${P}.gh.tar.gz
140 -"
141 -S="${WORKDIR}/${PN}-${MY_PV}"
142 -
143 -LICENSE="MIT"
144 -SLOT="0"
145 -KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86"
146 -
147 -BDEPEND="
148 - test? (
149 - dev-python/six[${PYTHON_USEDEP}]
150 - )
151 -"
152 -
153 -distutils_enable_tests unittest