dev-python/securetar: add 2023.3.0, fix 2023.2.0

Signed-off-by: Andreas Billmeier <b@edevau.net>
This commit is contained in:
Andreas Billmeier 2023-05-29 20:04:59 +02:00 committed by Andreas Billmeier
parent abcaa13474
commit 893cf5b8a7
Signed by: onkelbeh
GPG Key ID: E6DB12C8C550F3C0
3 changed files with 39 additions and 6 deletions

View File

@ -1,3 +1,5 @@
DIST securetar-2022.2.0.tar.gz 7696 BLAKE2B 332538160613eb59e9c200dad7338a0a8fd99c8b3ca57034750d5887114bda258b7c76e3b261044089ff374e24193d688859063afee8eb2146ad0feb426cfacd SHA512 6c577a10f3f079f7bc0ee68d2946387aa59f4d44268e7b077dfdb3f03fdb006957117365cafea97697154bf56015b267cc2ed25e0d30c8e56fb19d4603ab71f7
EBUILD securetar-2022.2.0.ebuild 706 BLAKE2B 6f3ceb0d2618665907336f4bac3bc70956972e7f4851299d7a3139580d871892670c90194ac26cc357a38b008487f6e09e95c12e3658976eecad325c61ce587c SHA512 1533d57edd6daa269a5ac949742a2f8ef077ab2aa3a0c3bf8ac7eae3591936bb70d27d4e98ea1aa54ad618f43da8f226ee8692ff354bcde57ef9cf4a05a7deb6
DIST securetar-2023.3.0.tar.gz 7779 BLAKE2B f14409aaff61960cf5318a014f2310b7edd3f27af557a9a2ac20061522b68ffce5c76a312070fda7c36cd78ca15d899222cfc3cfbac286ce1d0afa49ebf26379 SHA512 c98942a4f77b4a0f014ea84d97178268cfe2c9124628ea5d13c00a61bc980113ad65af6e722132556ccc5549c0ac2e99b759c8e49d5c1a91ad49322d13eff5f6
EBUILD securetar-2022.2.0.ebuild 692 BLAKE2B d57d9a76a3cf6ed37c8267f6d035f72544552c164cb00b4595470baec4edc9eeef597509587146e01d0721f7c1ba27576073ccea5d82a7c21c529d1da35bffa6 SHA512 afcb66279c2d4142cb47f047aae696fa1fef190dfcdebe9677348978ba71d4451e59f26d00695401962f7eb2ed13990aacf2de60374271eb1a3627aefd895b86
EBUILD securetar-2023.3.0.ebuild 692 BLAKE2B d57d9a76a3cf6ed37c8267f6d035f72544552c164cb00b4595470baec4edc9eeef597509587146e01d0721f7c1ba27576073ccea5d82a7c21c529d1da35bffa6 SHA512 afcb66279c2d4142cb47f047aae696fa1fef190dfcdebe9677348978ba71d4451e59f26d00695401962f7eb2ed13990aacf2de60374271eb1a3627aefd895b86
MISC metadata.xml 512 BLAKE2B 2bce1a9ac69961c93bf247a621ce55fcc7910062e61f31517b77b1fbc06c3748157c0e772c837940292d724b428dd062fed4cad1d71ded8e55c5c0903972de7a SHA512 b9215aaee972ca0b4127d2ee37155dbce24c7096652a3a5c3710ea11b1d0465471efb7ea271291e90a93488a9c7538f512739737fa85d3761fc1ff75f4c7d63b

View File

@ -1,15 +1,14 @@
# Copyright 1999-2022 Gentoo Authors
# Copyright 1999-2023 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
PYTHON_COMPAT=( python3_{9..11} )
inherit distutils-r1
PYTHON_COMPAT=( python3_{10..12} )
DISTUTILS_USE_PEP517=setuptools
inherit distutils-r1 pypi
DESCRIPTION="Python module to handle tarfile backups."
HOMEPAGE="https://github.com/pvizeli/securetar https://pypi.org/project/securetar/"
SRC_URI="mirror://pypi/${P:0:1}/${PN}/${P}.tar.gz"
LICENSE="Apache-2.0"
SLOT="0"

View File

@ -0,0 +1,32 @@
# Copyright 1999-2023 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
PYTHON_COMPAT=( python3_{10..12} )
DISTUTILS_USE_PEP517=setuptools
inherit distutils-r1 pypi
DESCRIPTION="Python module to handle tarfile backups."
HOMEPAGE="https://github.com/pvizeli/securetar https://pypi.org/project/securetar/"
LICENSE="Apache-2.0"
SLOT="0"
KEYWORDS="amd64 arm arm64 x86"
IUSE="test"
RESTRICT="!test? ( test )"
DOCS="README.md"
RDEPEND="dev-python/cryptography[${PYTHON_USEDEP}]"
BDEPEND="
dev-python/setuptools[${PYTHON_USEDEP}]
test? (
dev-python/pytest[${PYTHON_USEDEP}]
)"
python_test() {
py.test -v -v || die
}
distutils_enable_tests pytest