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: Sat, 30 Apr 2022 07:35:16
Message-Id: 1651304097.42de03864410c095bc722bbc44212b91e48b3755.mgorny@gentoo
1 commit: 42de03864410c095bc722bbc44212b91e48b3755
2 Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
3 AuthorDate: Sat Apr 30 06:57:47 2022 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Sat Apr 30 07:34:57 2022 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=42de0386
7
8 dev-python/funcparserlib: Bump to 1.0.0_alpha2
9
10 Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
11
12 dev-python/funcparserlib/Manifest | 1 +
13 .../funcparserlib-1.0.0_alpha2.ebuild | 31 ++++++++++++++++++++++
14 2 files changed, 32 insertions(+)
15
16 diff --git a/dev-python/funcparserlib/Manifest b/dev-python/funcparserlib/Manifest
17 index 5165ae806ff4..e37cc1ef33ba 100644
18 --- a/dev-python/funcparserlib/Manifest
19 +++ b/dev-python/funcparserlib/Manifest
20 @@ -1,2 +1,3 @@
21 DIST funcparserlib-1.0.0_alpha0.gh.tar.gz 68260 BLAKE2B e1a9a9a516142d683424df881a7c390a3999438905136fbd394f23856022f14390d22f1dd3914e680d2c188c819cce9cc4f7ff2e485478614dd4632701db4614 SHA512 02cac31d76bb888118a99367811a8cfac28a999ba113ce43f4bd6211cef815ce1793fc1767637dd019728f15d5c408e859d5bc8365a2c53804092f1d6f03e54e
22 DIST funcparserlib-1.0.0_alpha1.gh.tar.gz 74033 BLAKE2B bf4ee5011f595c6b7ba7430c63e21243257ddc2e00cccea75bf5b16feca2a629becd28f196d657e024419010051a33e5f12fae29b6f8763b35cb8d1bb9144a6b SHA512 16dbf07edd5cad979c61396adc3ccce7dcedd46b3cf6394ecf35c9fd2b22cdf262bb609ffca9a4b6f9f0c236124a7b7cdd929166d65056ca71e73afa2f6b97e2
23 +DIST funcparserlib-1.0.0_alpha2.gh.tar.gz 66692 BLAKE2B 5d45b48c0efe6025b50cfd603f2eeac4341b5e41185fbbe1e0b948975ee778fcae05dc229a34bfde28b64f2723c21699ffadd243629244a067951cf17049abb3 SHA512 a7c1f4219bee2b203d5f3a1701e24f838b348965ca5bc090aa8f7af0407344af22ec5eb2e161212e6ece42491a775076f45a36f8e2b691d78a3c639ca4098af1
24
25 diff --git a/dev-python/funcparserlib/funcparserlib-1.0.0_alpha2.ebuild b/dev-python/funcparserlib/funcparserlib-1.0.0_alpha2.ebuild
26 new file mode 100644
27 index 000000000000..5688b13e39c9
28 --- /dev/null
29 +++ b/dev-python/funcparserlib/funcparserlib-1.0.0_alpha2.ebuild
30 @@ -0,0 +1,31 @@
31 +# Copyright 1999-2022 Gentoo Authors
32 +# Distributed under the terms of the GNU General Public License v2
33 +
34 +EAPI=8
35 +
36 +DISTUTILS_USE_PEP517=poetry
37 +PYTHON_COMPAT=( python3_{8..10} )
38 +
39 +inherit distutils-r1
40 +
41 +MY_PV="${PV/_alpha/a}"
42 +
43 +DESCRIPTION="Recursive descent parsing library based on functional combinators"
44 +HOMEPAGE="https://pypi.org/project/funcparserlib/"
45 +SRC_URI="
46 + https://github.com/vlasovskikh/funcparserlib/archive/${MY_PV}.tar.gz
47 + -> ${P}.gh.tar.gz
48 +"
49 +S="${WORKDIR}/${PN}-${MY_PV}"
50 +
51 +LICENSE="MIT"
52 +SLOT="0"
53 +KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86"
54 +
55 +BDEPEND="
56 + test? (
57 + dev-python/six[${PYTHON_USEDEP}]
58 + )
59 +"
60 +
61 +distutils_enable_tests unittest