diff options
Diffstat (limited to 'dev-python')
-rw-r--r-- | dev-python/rply/Manifest | 1 | ||||
-rw-r--r-- | dev-python/rply/rply-0.7.8.ebuild | 24 |
2 files changed, 25 insertions, 0 deletions
diff --git a/dev-python/rply/Manifest b/dev-python/rply/Manifest index 06143494a096..66ae907c4c70 100644 --- a/dev-python/rply/Manifest +++ b/dev-python/rply/Manifest @@ -1 +1,2 @@ DIST rply-0.7.7.tar.gz 26366 BLAKE2B 09e6b93e9581745209b2d1fede6e0e4f08c2a34cc2495ea73aebb27b012353bbdb749ef127128cd5d9df201607f73625e248945038a927d788e324fb632341b4 SHA512 c01166b7df067a6a55d1b43caa7b5a349045e838899daf82e2ba70a2c2525fd68e95f11e5319a1fe36936e696352a37bdc13f132f739cd52759a9a9c91e317ba +DIST rply-0.7.8.tar.gz 26697 BLAKE2B 95c4be3bbbd7aea7f278dbe0c37fd43d012df768169d0363d1a938f762c2f9ad69d596cbbaaafee3c93f3d615ea5cd1509e9b642188320f8acd09c12d6b7c780 SHA512 b43e6425f046561cfca616801d37d7151f015aeb2ea2365abc00f97fd6b41f1a01a17e330aed5a81537065e4b29d49cd0824b5a5cb8b2d11da2ff1f8de952fce diff --git a/dev-python/rply/rply-0.7.8.ebuild b/dev-python/rply/rply-0.7.8.ebuild new file mode 100644 index 000000000000..d42fc41fdfa8 --- /dev/null +++ b/dev-python/rply/rply-0.7.8.ebuild @@ -0,0 +1,24 @@ +# Copyright 1999-2021 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +PYTHON_COMPAT=( python3_{7..9} ) + +inherit distutils-r1 + +DESCRIPTION="Pure python parser generator that also works with RPython" +HOMEPAGE="https://github.com/alex/rply" +SRC_URI="https://github.com/alex/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz" + +LICENSE="BSD" +SLOT="0" +KEYWORDS="~amd64 ~x86" + +DEPEND=" + dev-python/appdirs[${PYTHON_USEDEP}] + dev-python/setuptools[${PYTHON_USEDEP}] + test? ( + dev-python/py[${PYTHON_USEDEP}] )" + +distutils_enable_tests pytest |