dev-python/boolean-py: initial import

Signed-off-by: Anna (cybertailor) Vyalkova <cyber+gentoo@sysrq.in>
This commit is contained in:
Anna (cybertailor) Vyalkova
2022-02-07 15:43:16 +05:00
parent 6593f3bc1a
commit 6b046c9689
3 changed files with 44 additions and 0 deletions

View File

@@ -0,0 +1 @@
DIST boolean.py-3.8.tar.gz 32196 BLAKE2B 821985853d57794762c064e0e727e47082c787230780b49661624f7fba69f1cc9e4c3450d09899b908d3f84d4df7e002ad464d1ec0cf8fadb02abc3c95b78aff SHA512 039a45601c4e8271d1152f4474c66267cca0f5681b4834f7e943b46a0bf33d0ed00cae257f1ca7565115fdc5b58b9773cfca9f22fa751cdeece72e7b778c1904

View File

@@ -0,0 +1,27 @@
# Copyright 2022 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
PYTHON_COMPAT=( python3_{8..10} pypy3 )
inherit distutils-r1
MY_PN=${PN/-/.}
MY_P="${MY_PN}-${PV}"
DESCRIPTION="Define boolean algebras, create boolean expressions and custom boolean DSL"
HOMEPAGE="
https://pypi.org/project/boolean.py/
https://github.com/bastikr/boolean.py
"
SRC_URI="mirror://pypi/${MY_PN:0:1}/${MY_PN}/${MY_P}.tar.gz"
S="${WORKDIR}/${MY_P}"
LICENSE="BSD-2"
SLOT="0"
KEYWORDS="~amd64"
DOCS=( CHANGELOG.rst README.rst )
distutils_enable_tests unittest
distutils_enable_sphinx docs

View File

@@ -0,0 +1,16 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE pkgmetadata SYSTEM "https://www.gentoo.org/dtd/metadata.dtd">
<pkgmetadata>
<maintainer type="person">
<email>cyber+gentoo@sysrq.in</email>
<name>Anna</name>
</maintainer>
<upstream>
<maintainer>
<email>basti.kr@gmail.com</email>
<name>Sebastian Kraemer</name>
</maintainer>
<remote-id type="pypi">boolean.py</remote-id>
<remote-id type="github">bastikr/boolean.py</remote-id>
</upstream>
</pkgmetadata>