Skip to content

Commit 44a99b9

Browse files
committed
dev-python/sigstore: new package, add 1.0.0
Signed-off-by: Andreas Billmeier <[email protected]>
1 parent 309cf6c commit 44a99b9

File tree

4 files changed

+51
-2
lines changed

4 files changed

+51
-2
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -606,12 +606,12 @@ A daily compile test is run at Github with Python 3.9 to catch general faults. E
606606

607607
## Licenses
608608
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.
609-
There are 1843 Ebuilds in total, 1832 of them have in total 1854 (42 different) licenses assigned.
609+
There are 1844 Ebuilds in total, 1833 of them have in total 1855 (42 different) licenses assigned.
610610

611611
|License| Ebuilds using it|
612612
|-------|-----|
613613
|MIT|1060|
614-
|Apache-2.0|406|
614+
|Apache-2.0|407|
615615
|BSD|108|
616616
|GPL-3|107|
617617
|LGPL-3|25|

dev-python/sigstore/Manifest

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
DIST sigstore-1.0.0.tar.gz 59359 BLAKE2B cfe9b8c6bad54e5158d3efafbd434b13b541f3f9dcdb2a73bc0be2a6748be2f1857c81f1d55efbaf972ca08ba7c3fd77d03cbf93b271bc08db756b2e84284dab SHA512 cb498742698828bd6b6ec5feeab343b0b364a1d9a6d863988e92b436cb88f82c33dd8fa10bc1cf36ae4a37b14bd9df6ee145e4439360b29e17a6b701346dc004
2+
EBUILD sigstore-1.0.0.ebuild 904 BLAKE2B f858214d8a875143dadb1e9291ceb63d343f9512a4d5c25ef0645ebfc890b2f3c43cb4687d1e62cdaecc262d37f70c29512dea0e9152da83a68059f61f0ecc5a SHA512 96deea72c0a429107483f2904109244130c6963a6b7e3908c47b2903e98268ee7f7d2fc5ef035e7b128dfb08ba445a7e4ac80683e0b6ca939bc98314d5ecbf05
3+
MISC metadata.xml 532 BLAKE2B b10861b46e69eb94c728b3d7dc12379d367f9588657e920d9e00ac306ed7b58df681fd00474b6558eda97ce1d76a107d6fabe3cdfc8ed51c77783b80a1aefbb4 SHA512 ed690da283cdbc7aa98c1f93aa3df7eefb67e315cbe14d68af00dc638cf3c06db86a603edd69381ca11f1fc2812a1d7468b4c08cb2a18ad86a8a23d347fef2ba

dev-python/sigstore/metadata.xml

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
<?xml version='1.0' encoding='UTF-8'?>
2+
<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
3+
<pkgmetadata>
4+
<maintainer type="project">
5+
<email>[email protected]</email>
6+
<name>Andreas Billmeier</name>
7+
</maintainer>
8+
<upstream>
9+
<remote-id type="pypi">sigstore</remote-id>
10+
<remote-id type="github">sigstore/sigstore-python</remote-id>
11+
<maintainer status="unknown">
12+
<email>[email protected]</email>
13+
<name>Sigstore Authors</name>
14+
</maintainer>
15+
</upstream>
16+
</pkgmetadata>
Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,30 @@
1+
# Copyright 1999-2024 Gentoo Authors
2+
# Distributed under the terms of the GNU General Public License v2
3+
4+
EAPI=8
5+
6+
PYTHON_COMPAT=( python3_{11..13} )
7+
DISTUTILS_USE_PEP517=flit
8+
inherit distutils-r1 pypi
9+
10+
DESCRIPTION="A tool for generating and verifying Sigstore signatures."
11+
HOMEPAGE="https://www.sigstore.dev https://github.com/sigstore/sigstore-python https://pypi.org/project/sigstore/"
12+
13+
LICENSE="Apache-2.0"
14+
SLOT="0"
15+
KEYWORDS="amd64 arm arm64 x86"
16+
IUSE="test"
17+
RESTRICT="!test? ( test )"
18+
19+
DOCS="README.md"
20+
21+
RDEPEND="~dev-python/appdirs-1.4.4[${PYTHON_USEDEP}]
22+
>=dev-python/cryptography-39.0.0[${PYTHON_USEDEP}]
23+
dev-python/pydantic[${PYTHON_USEDEP}]
24+
>=dev-python/pyjwt-2.1.0[${PYTHON_USEDEP}]
25+
>=dev-python/pyopenssl-22.0.0[${PYTHON_USEDEP}]
26+
dev-python/requests[${PYTHON_USEDEP}]
27+
dev-python/securesystemslib[${PYTHON_USEDEP}]
28+
>=dev-python/tuf-2.0.0[${PYTHON_USEDEP}]"
29+
30+
distutils_enable_tests pytest

0 commit comments

Comments
 (0)