dev-python/securetar: drop 2023.3.0

Signed-off-by: Andreas Billmeier <b@edevau.net>
This commit is contained in:
2025-02-20 14:46:33 +01:00
parent c736ba6b1b
commit 50ce82affe
3 changed files with 2 additions and 35 deletions

View File

@@ -606,12 +606,12 @@ A daily compile test is run at Github with Python 3.9 to catch general faults. E
## Licenses
This repository itself is released under GPL-3 (like most Gentoo repositories), all work on the depending components under the licenses they came from. Perhaps you came here because I filed an issue at your component about a bad or missing license. It is easy to [assign a license](https://docs.github.com/en/communities/setting-up-your-project-for-healthy-contributions/adding-a-license-to-a-repository). During cleanups and license investigations I have been asked often which license to choose. I am not a lawyer, but I can offer the following table, counted over this repository, perhaps this helps your decision. If a package has more than one license listed, all of them are counted.
There are 2392 Ebuilds in total, 2378 of them have in total 2421 (43 different) licenses assigned.
There are 2391 Ebuilds in total, 2377 of them have in total 2420 (43 different) licenses assigned.
|License| Ebuilds using it|
|-------|-----|
|MIT|1360|
|Apache-2.0|564|
|Apache-2.0|563|
|GPL-3|152|
|BSD|126|
|GPL-2|27|

View File

@@ -1,7 +1,5 @@
DIST securetar-2023.3.0.tar.gz 7779 BLAKE2B f14409aaff61960cf5318a014f2310b7edd3f27af557a9a2ac20061522b68ffce5c76a312070fda7c36cd78ca15d899222cfc3cfbac286ce1d0afa49ebf26379 SHA512 c98942a4f77b4a0f014ea84d97178268cfe2c9124628ea5d13c00a61bc980113ad65af6e722132556ccc5549c0ac2e99b759c8e49d5c1a91ad49322d13eff5f6
DIST securetar-2024.11.0.tar.gz 11100 BLAKE2B 8cf74e0b3efe8e362e2d737d4750cfe2c397c1c42c64780a2abede0bdebf000d03e5a1534401a756f424d4b0c997ed7d5454f2078727f91dd36fd0ceedd6ca2a SHA512 ad2605bd4afb4d4df796cbae92841eb2cc3f52549d14be0654d622d129bfd80cbbf6dda6ef96e7fa86e1a4529b9ad45d8466c640a5142c07fe2f148d8876859c
DIST securetar-2024.2.1.tar.gz 11136 BLAKE2B ff4768bbd474fe71bd00dd86872ae2251f1beb461f00789baa547dda079efa31bc98d5495bb1ede131b1f20b52fdc30e67607dd1d1b25791200412a8f759a236 SHA512 e82d33cee006608c7e3f4bf49220a008de61cec34e410a1da6b3a24df936cdd90dd221161b93a884eec9b7e96ea28a5dd891c1e5bfc9012030d57f7d94d2caf9
EBUILD securetar-2023.3.0.ebuild 651 BLAKE2B 2723dac93946ab02caf8de910d1fa9b70cc1f21b9d23c9c05085fb93556e9b96368290f4c62afe942c12c3c0db970bfe1afca5876b6dde27aba837aa0a96a1d2 SHA512 b4bce39f3cb7f79d06150009b9f4b253c9d3ca62801e8cc62e93ce15c436d772792fbb8e6fecc79bbfefd8f387933b02a9644b8771b7001dcf5ca817dd3791ff
EBUILD securetar-2024.11.0.ebuild 546 BLAKE2B 5982b3d29f657257c3686cc746b0c1c44b39866472ec061d33f5774da6162cc8243994094bc41fe3635b4e83864d7a055d16136a90d69099218bee9b59c31187 SHA512 a5e9b0db99e2f68762cc88ab8b9be09520ec84b85c469d57aa8d07e797936654090e247c68c1c4e8bca61256b0c3ab85c0eeb0b989c12b56b44857a241159d01
EBUILD securetar-2024.2.1.ebuild 546 BLAKE2B 5982b3d29f657257c3686cc746b0c1c44b39866472ec061d33f5774da6162cc8243994094bc41fe3635b4e83864d7a055d16136a90d69099218bee9b59c31187 SHA512 a5e9b0db99e2f68762cc88ab8b9be09520ec84b85c469d57aa8d07e797936654090e247c68c1c4e8bca61256b0c3ab85c0eeb0b989c12b56b44857a241159d01
MISC metadata.xml 512 BLAKE2B 2bce1a9ac69961c93bf247a621ce55fcc7910062e61f31517b77b1fbc06c3748157c0e772c837940292d724b428dd062fed4cad1d71ded8e55c5c0903972de7a SHA512 b9215aaee972ca0b4127d2ee37155dbce24c7096652a3a5c3710ea11b1d0465471efb7ea271291e90a93488a9c7538f512739737fa85d3761fc1ff75f4c7d63b

View File

@@ -1,31 +0,0 @@
# Copyright 1999-2024 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
PYTHON_COMPAT=( python3_{11..13} )
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="
test? (
dev-python/pytest[${PYTHON_USEDEP}]
)"
python_test() {
py.test -v -v || die
}
distutils_enable_tests pytest