Files
guru/dev-python/boolean-py/boolean-py-3.8.ebuild
Anna (cybertailor) Vyalkova 6b046c9689 dev-python/boolean-py: initial import
Signed-off-by: Anna (cybertailor) Vyalkova <cyber+gentoo@sysrq.in>
2022-02-07 16:03:25 +05:00

28 lines
613 B
Bash

# 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