diff options
author | Michał Górny <mgorny@gentoo.org> | 2022-05-06 09:29:53 +0200 |
---|---|---|
committer | Michał Górny <mgorny@gentoo.org> | 2022-05-06 09:41:16 +0200 |
commit | 0316a8c75f04725192c680f5ad64effb3460fe5f (patch) | |
tree | 723e6d1c8543458a1d9a2d9bfb2a802fa94810a9 /dev-python/boolean-py | |
parent | dev-python/stripe: Bump to 2.76.0 (diff) | |
download | gentoo-0316a8c75f04725192c680f5ad64effb3460fe5f.tar.gz gentoo-0316a8c75f04725192c680f5ad64effb3460fe5f.tar.bz2 gentoo-0316a8c75f04725192c680f5ad64effb3460fe5f.zip |
dev-python/boolean-py: Bump to 4.0
Signed-off-by: Michał Górny <mgorny@gentoo.org>
Diffstat (limited to 'dev-python/boolean-py')
-rw-r--r-- | dev-python/boolean-py/Manifest | 1 | ||||
-rw-r--r-- | dev-python/boolean-py/boolean-py-4.0.ebuild | 27 |
2 files changed, 28 insertions, 0 deletions
diff --git a/dev-python/boolean-py/Manifest b/dev-python/boolean-py/Manifest index 097a45b1ef41..da88f8cd0964 100644 --- a/dev-python/boolean-py/Manifest +++ b/dev-python/boolean-py/Manifest @@ -1 +1,2 @@ DIST boolean.py-3.8.gh.tar.gz 32063 BLAKE2B a0314852f9d914329476e80f7e11cbc7eb55412ef7c41dec620c2a21d522950fde7471f7e1d9042b2887b5a7462b226c2b6d08c9d3fd46192aa7d6d3426dae80 SHA512 d41ce9a05743342c116d68b88ea36be316ac9fc190a8451aca97b52fde60c58ec49d36d2dee071f83fb5f6ad49337da80bf9de1bf3d479b46386fd87e4cf2f14 +DIST boolean.py-4.0.gh.tar.gz 33855 BLAKE2B 68e183c670684d2f92ad94f2b88616c932c2a85db40fa1a2552bc60c9bf03999bb456e0a91623afba2af4f2c89ef6cacf0c6f0267ac55aadcf02e67c8324c8f6 SHA512 2c92188645c4949478b40c2879f02a0eb6f3f92c0781a910862fcccebaa3476b9f2668ef40a5faec9d5c3a9c7361043a8e1b92ed98e282d6ce89c56b8ac0c2ad diff --git a/dev-python/boolean-py/boolean-py-4.0.ebuild b/dev-python/boolean-py/boolean-py-4.0.ebuild new file mode 100644 index 000000000000..05497a06a6f3 --- /dev/null +++ b/dev-python/boolean-py/boolean-py-4.0.ebuild @@ -0,0 +1,27 @@ +# Copyright 2022 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +DISTUTILS_USE_PEP517=setuptools +PYTHON_COMPAT=( pypy3 python3_{8..10} ) + +inherit distutils-r1 + +MY_P=${P/-/.} +DESCRIPTION="Define boolean algebras, create and parse boolean expressions" +HOMEPAGE=" + https://pypi.org/project/boolean.py/ + https://github.com/bastikr/boolean.py/ +" +SRC_URI=" + https://github.com/bastikr/boolean.py/archive/v${PV}.tar.gz + -> ${MY_P}.gh.tar.gz +" +S=${WORKDIR}/${MY_P} + +LICENSE="BSD-2" +SLOT="0" +KEYWORDS="~amd64 ~x86" + +distutils_enable_tests pytest |