-
Notifications
You must be signed in to change notification settings - Fork 14
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
dev-python/securesystemslib: add 0.31.0
Signed-off-by: Andreas Billmeier <[email protected]>
- Loading branch information
Showing
3 changed files
with
30 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -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 |
26 changes: 26 additions & 0 deletions
26
dev-python/securesystemslib/securesystemslib-0.31.0.ebuild
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -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 |