Gentoo Archives: gentoo-commits

From: Arthur Zamarin <arthurzam@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/funcparserlib/
Date: Fri, 10 Sep 2021 06:52:15
Message-Id: 1631256665.3bd504d59e99f5283d12c9e53ae050bef1a73250.arthurzam@gentoo
1 commit: 3bd504d59e99f5283d12c9e53ae050bef1a73250
2 Author: Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
3 AuthorDate: Fri Sep 10 06:47:13 2021 +0000
4 Commit: Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
5 CommitDate: Fri Sep 10 06:51:05 2021 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3bd504d5
7
8 dev-python/funcparserlib: add 0.3.6_p20210809
9
10 I'm using the previous version tag and not the planned future one,
11 as a small patch level bump might be expected in the following
12 month, before the release of 1.0.0.
13
14 Closes: https://bugs.gentoo.org/812218
15 Closes: https://bugs.gentoo.org/812308
16 Signed-off-by: Arthur Zamarin <arthurzam <AT> gentoo.org>
17
18 dev-python/funcparserlib/Manifest | 1 +
19 .../funcparserlib-0.3.6_p20210809.ebuild | 31 ++++++++++++++++++++++
20 2 files changed, 32 insertions(+)
21
22 diff --git a/dev-python/funcparserlib/Manifest b/dev-python/funcparserlib/Manifest
23 index b9542bc96d0..7276f56c942 100644
24 --- a/dev-python/funcparserlib/Manifest
25 +++ b/dev-python/funcparserlib/Manifest
26 @@ -1 +1,2 @@
27 DIST funcparserlib-0.3.6.tar.gz 30401 BLAKE2B cfce97cf08914f67ba3bd743bd3d6e7e7a03599ddc00d58a884aa84118d197d92bcc67a93ff1f7a2ab2074d66704078f5392c1d846004a5cd6eed2a423ba6b61 SHA512 efa52f788aa902b099660cb8bc60a025085a8c383e52bd0824a0c3ae28a6c13804a0659de0c80b4dcd839ee70491805d4eecda6cea221e35c3750ec569098c24
28 +DIST funcparserlib-0.3.6_p20210809.gh.tar.gz 68069 BLAKE2B 937079952a42f2171af8f6421097eb920d01eae02f870c27a790ae374a1c8c3ac27019eae78d655b80458bf319fd2db7d411404902357ac66eea5daa4472ecf9 SHA512 7d2b6d27e1981d97097c2aafc0730e5b6c6bf98707e997f87f7a9944667ea361db41305099803a43ec04b46ab53e4ab09d0863413d00a39a6fb27c30cceac361
29
30 diff --git a/dev-python/funcparserlib/funcparserlib-0.3.6_p20210809.ebuild b/dev-python/funcparserlib/funcparserlib-0.3.6_p20210809.ebuild
31 new file mode 100644
32 index 00000000000..99c1c6f3114
33 --- /dev/null
34 +++ b/dev-python/funcparserlib/funcparserlib-0.3.6_p20210809.ebuild
35 @@ -0,0 +1,31 @@
36 +# Copyright 1999-2021 Gentoo Authors
37 +# Distributed under the terms of the GNU General Public License v2
38 +
39 +EAPI=8
40 +
41 +PYTHON_COMPAT=( python3_{8..10} )
42 +DISTUTILS_USE_SETUPTOOLS=pyproject.toml
43 +inherit distutils-r1
44 +
45 +COMMIT="d4ba3955ffc10544dbae6aaed68bcab21d0c294b"
46 +
47 +DESCRIPTION="Recursive descent parsing library based on functional combinators"
48 +HOMEPAGE="https://pypi.org/project/funcparserlib/"
49 +SRC_URI="
50 + https://github.com/vlasovskikh/funcparserlib/archive/${COMMIT}.tar.gz
51 + -> ${P}.gh.tar.gz
52 +"
53 +S="${WORKDIR}/${PN}-${COMMIT}"
54 +
55 +LICENSE="MIT"
56 +SLOT="0"
57 +KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~riscv ~sparc ~x86"
58 +
59 +BDEPEND="test? ( dev-python/six[${PYTHON_USEDEP}] )"
60 +
61 +distutils_enable_tests unittest
62 +
63 +python_install_all() {
64 + local DOCS=( doc/*.md )
65 + distutils-r1_python_install_all
66 +}