From 9e4784501f7cf529c7c11b530320814852a9a7c5 Mon Sep 17 00:00:00 2001 From: Andreas Billmeier Date: Sun, 26 May 2024 11:24:10 +0200 Subject: [PATCH] dev-python/securesystemslib: add 0.31.0 Signed-off-by: Andreas Billmeier --- README.md | 4 +-- dev-python/securesystemslib/Manifest | 2 ++ .../securesystemslib-0.31.0.ebuild | 26 +++++++++++++++++++ 3 files changed, 30 insertions(+), 2 deletions(-) create mode 100644 dev-python/securesystemslib/securesystemslib-0.31.0.ebuild diff --git a/README.md b/README.md index 84154f4719..c9aabfd5f5 100644 --- a/README.md +++ b/README.md @@ -606,11 +606,11 @@ 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 1847 Ebuilds in total, 1836 of them have in total 1859 (42 different) licenses assigned. +There are 1848 Ebuilds in total, 1837 of them have in total 1860 (42 different) licenses assigned. |License| Ebuilds using it| |-------|-----| -|MIT|1061| +|MIT|1062| |Apache-2.0|408| |BSD|108| |GPL-3|107| diff --git a/dev-python/securesystemslib/Manifest b/dev-python/securesystemslib/Manifest index 842f785e54..0f46b6e217 100644 --- a/dev-python/securesystemslib/Manifest +++ b/dev-python/securesystemslib/Manifest @@ -1,3 +1,5 @@ +DIST securesystemslib-0.31.0.tar.gz 1015330 BLAKE2B 061fca037356d907884ba0576c06c7eee951670cf68cac59b58d0b0122723de5fbc801226041dfa9be65d519a8a4a44f0493e86a5aa8697ab73c593b085a28d2 SHA512 9d4210cb191e21bde17d01b305bdd29be22948b79397380c935133d40602209bc70177e5b1c994bf2251a5fbedf682472e0a0c98d4a7166d09c8f3ce2525f5a9 DIST securesystemslib-1.0.0.tar.gz 934573 BLAKE2B d3a583dd7fa12e70726ad8d1d2689c766ddd884acd43d1be286e6645c493e91f6c4ea963190fc43ceaf42e5adb405d872d4244bc7aa5e4dfeca1a77aa1a72330 SHA512 0d39bc15bd86b0e63ea58640df42f3830a643d6b54c9d5d3761418bbb276643734e26ee6d3a4c0b2080f829d328b1a8f61bcb39930d357fbf0d41bc256cfd9ce +EBUILD securesystemslib-0.31.0.ebuild 756 BLAKE2B b7dbd853650e73f308e56166fcb3d2abf0af7c84847664779be4466f09b646643bbe4d36a354cfad41fff0ac22a0c72bdb164598c3b67c072adf8c637fe2db36 SHA512 5096512ffe03922c70934d39f4497900a251977d8673410da1e84c464eedc06388e4f6f1b21fe089c5946abc45749b8f74dc4c1ab6770ebb95f7815a82de3de1 EBUILD securesystemslib-1.0.0.ebuild 756 BLAKE2B b7dbd853650e73f308e56166fcb3d2abf0af7c84847664779be4466f09b646643bbe4d36a354cfad41fff0ac22a0c72bdb164598c3b67c072adf8c637fe2db36 SHA512 5096512ffe03922c70934d39f4497900a251977d8673410da1e84c464eedc06388e4f6f1b21fe089c5946abc45749b8f74dc4c1ab6770ebb95f7815a82de3de1 MISC metadata.xml 574 BLAKE2B 7b452980847c2052623445aa36fc39144b3d73e8da716dbb6624acb9f6a119d9cc93e2750e6aa01dcddaf0fcde7c36f6b41718a5a967116eac3afdc7cf55355e SHA512 e7b9a39f8015a4b25511f858858076fec30dad16903189e574147d7e8ac2d63c031d2ea33691942915aac451ae8dfbbbe1326353a19050c558866f5424632e4f diff --git a/dev-python/securesystemslib/securesystemslib-0.31.0.ebuild b/dev-python/securesystemslib/securesystemslib-0.31.0.ebuild new file mode 100644 index 0000000000..86a787cf20 --- /dev/null +++ b/dev-python/securesystemslib/securesystemslib-0.31.0.ebuild @@ -0,0 +1,26 @@ +# 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=hatchling +inherit distutils-r1 pypi + +DESCRIPTION="A library that provides cryptographic and general-purpose routines for Secure Systems Lab projects at NYU" +HOMEPAGE="https://github.com/secure-systems-lab/securesystemslib/ https://pypi.org/project/securesystemslib/" + +LICENSE="MIT" +SLOT="0" +KEYWORDS="amd64 arm arm64 x86" +IUSE="test" +RESTRICT="!test? ( test )" + +DOCS="README.md" + +RDEPEND=">=dev-python/cryptography-37.0.0[${PYTHON_USEDEP}] + dev-python/PySPX[${PYTHON_USEDEP}] + dev-python/PyKCS11[${PYTHON_USEDEP}] + dev-python/asn1crypto[${PYTHON_USEDEP}]" + +distutils_enable_tests pytest