diff options
author | 2022-04-21 09:57:01 +0200 | |
---|---|---|
committer | 2022-04-21 10:23:58 +0200 | |
commit | b26237961e00fc632a83740186a83a2db9260d11 (patch) | |
tree | 1e75c2879d1d6e9a1e0b0de8b8a6a06069c1bf2a /dev-python/locket | |
parent | app-admin/awscli: Bump to 1.22.99 (diff) | |
download | gentoo-b26237961e00fc632a83740186a83a2db9260d11.tar.gz gentoo-b26237961e00fc632a83740186a83a2db9260d11.tar.bz2 gentoo-b26237961e00fc632a83740186a83a2db9260d11.zip |
dev-python/locket: Bump to 1.0.0
Signed-off-by: Michał Górny <mgorny@gentoo.org>
Diffstat (limited to 'dev-python/locket')
-rw-r--r-- | dev-python/locket/Manifest | 1 | ||||
-rw-r--r-- | dev-python/locket/locket-1.0.0.ebuild | 31 |
2 files changed, 32 insertions, 0 deletions
diff --git a/dev-python/locket/Manifest b/dev-python/locket/Manifest index f6afc95a57b0..94c309fe53e0 100644 --- a/dev-python/locket/Manifest +++ b/dev-python/locket/Manifest @@ -1 +1,2 @@ DIST locket.py-0.2.1.gh.tar.gz 5988 BLAKE2B e50ef1794a49494434c730580510a4283685e924f6f3efb95067db7d566fa4808409fc339f3c8e3276ddf09f622cb165e9dde90094f764f662558ea32f85516e SHA512 517c580a3420283f945d28607fc765c571edb2c0fab52d5c76f24226d2ec85727d1ffe0c03c5f87f6ce6204e7db4d3c8f6e408d767a389bd93d34cc0de3e8bf7 +DIST locket.py-1.0.0.gh.tar.gz 6541 BLAKE2B 334314c6e9149b7c9d87474c478afe497fe976afdae9e7e885a9f1c5cb7190bbf44be132bb84de2a378bd011844a05b12ee3643aefa70ba04b8d6f645e1882e6 SHA512 7b8da1ba395613fb5913fc90db982a74c1355e5b98910b5fccdaf28a326f2465409751f2e4efaa86749961dc4e95959640067c76485477187a462f52d8497c9f diff --git a/dev-python/locket/locket-1.0.0.ebuild b/dev-python/locket/locket-1.0.0.ebuild new file mode 100644 index 000000000000..d49c9df6effd --- /dev/null +++ b/dev-python/locket/locket-1.0.0.ebuild @@ -0,0 +1,31 @@ +# Copyright 1999-2022 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +DISTUTILS_USE_PEP517=setuptools +PYTHON_COMPAT=( python3_{8..10} ) + +inherit distutils-r1 + +MY_P=locket.py-${PV} +DESCRIPTION="File-based locks for Python" +HOMEPAGE=" + https://github.com/mwilliamson/locket.py/ + https://pypi.org/project/locket/ +" +SRC_URI=" + https://github.com/mwilliamson/locket.py/archive/${PV}.tar.gz + -> ${MY_P}.gh.tar.gz +" +S=${WORKDIR}/${MY_P} + +LICENSE="BSD" +SLOT="0" +KEYWORDS="~amd64 ~arm ~arm64 ~ppc64 ~riscv ~x86 ~amd64-linux ~x86-linux" + +BDEPEND=" + test? ( dev-python/spur[${PYTHON_USEDEP}] ) +" + +distutils_enable_tests pytest |