* [gentoo-commits] repo/gentoo:master commit in: sys-apps/uswid/
@ 2024-04-24 11:58 Marek Szuba
0 siblings, 0 replies; 8+ messages in thread
From: Marek Szuba @ 2024-04-24 11:58 UTC (permalink / raw
To: gentoo-commits
commit: 3ec97ea5d7cabb2666b0999be073eb77bc21a78f
Author: Marek Szuba <marecki <AT> gentoo <DOT> org>
AuthorDate: Wed Apr 24 11:52:11 2024 +0000
Commit: Marek Szuba <marecki <AT> gentoo <DOT> org>
CommitDate: Wed Apr 24 11:58:00 2024 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3ec97ea5
sys-apps/uswid: new package, add 0.4.7
Signed-off-by: Marek Szuba <marecki <AT> gentoo.org>
sys-apps/uswid/Manifest | 1 +
sys-apps/uswid/metadata.xml | 22 ++++++++++++++++++++++
sys-apps/uswid/uswid-0.4.7.ebuild | 28 ++++++++++++++++++++++++++++
3 files changed, 51 insertions(+)
diff --git a/sys-apps/uswid/Manifest b/sys-apps/uswid/Manifest
new file mode 100644
index 000000000000..38644d7715a0
--- /dev/null
+++ b/sys-apps/uswid/Manifest
@@ -0,0 +1 @@
+DIST uswid-0.4.7.tar.gz 43719 BLAKE2B c99ea760658a5b5f518e6e8aa554515bc0a5246d60c358b6542dda17489fe18f06b2dff7342371944fe36c44562f9e78feb230f6573445c4004568c973b66b87 SHA512 6e8069547efbc06ee5e2792908a292e70612041f303b41d54fc618519f3156a8c88ca9176367c47304dbe80b0199467b913060c8fdbcef1287794cac0a9e695c
diff --git a/sys-apps/uswid/metadata.xml b/sys-apps/uswid/metadata.xml
new file mode 100644
index 000000000000..36b5e41b4afc
--- /dev/null
+++ b/sys-apps/uswid/metadata.xml
@@ -0,0 +1,22 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE pkgmetadata SYSTEM "https://www.gentoo.org/dtd/metadata.dtd">
+<pkgmetadata>
+ <longdescription lang="en">
+ Using the uSWID tool or Python API allows one to create, convert and merge
+ Software Bill of Materials (SBoM) metadata to and from a number of different
+ formats including SWID, coSWID, CycloneDX, SPDX and goSWID. It can also import
+ SBoM metadata from .ini files, pkgconfig files, PE binaries including EFI ones,
+ and various unspecified firmware files as long as they include the coSWID SBoM
+ header. Last but not least, it can be used to embed coSWID SBoM metadata
+ into PE/EFI binaries.
+ </longdescription>
+ <maintainer type="person">
+ <email>marecki@gentoo.org</email>
+ <name>Marek Szuba</name>
+ </maintainer>
+ <stabilize-allarches/>
+ <upstream>
+ <remote-id type="pypi">uswid</remote-id>
+ <remote-id type="github">hughsie/python-uswid</remote-id>
+ </upstream>
+</pkgmetadata>
diff --git a/sys-apps/uswid/uswid-0.4.7.ebuild b/sys-apps/uswid/uswid-0.4.7.ebuild
new file mode 100644
index 000000000000..0d7c386217e0
--- /dev/null
+++ b/sys-apps/uswid/uswid-0.4.7.ebuild
@@ -0,0 +1,28 @@
+# Copyright 1999-2024 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+DISTUTILS_USE_PEP517=setuptools
+PYTHON_COMPAT=( python3_{10..12} )
+
+inherit distutils-r1 pypi
+
+DESCRIPTION="Pure-Python library and CLI tool for processing SBoM metadata"
+HOMEPAGE="
+ https://github.com/hughsie/python-uswid/
+ https://pypi.org/project/uswid/
+"
+
+# Reminder: relicensed to BSD-2-with-patent between 0.4.7 and 0.5.0
+LICENSE="LGPL-2.1+"
+SLOT="0"
+KEYWORDS="~amd64 ~riscv"
+
+RDEPEND="
+ dev-python/cbor2[${PYTHON_USEDEP}]
+ dev-python/lxml[${PYTHON_USEDEP}]
+ dev-python/pefile[${PYTHON_USEDEP}]
+"
+
+distutils_enable_tests pytest
^ permalink raw reply related [flat|nested] 8+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: sys-apps/uswid/
@ 2024-04-24 14:07 Sam James
0 siblings, 0 replies; 8+ messages in thread
From: Sam James @ 2024-04-24 14:07 UTC (permalink / raw
To: gentoo-commits
commit: 863fb2826989d689e2232d177b97cd94e7a7f4d4
Author: Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Wed Apr 24 14:06:52 2024 +0000
Commit: Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Wed Apr 24 14:06:52 2024 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=863fb282
sys-apps/uswid: Keyword 0.4.7 arm, #930564
Signed-off-by: Sam James <sam <AT> gentoo.org>
sys-apps/uswid/uswid-0.4.7.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/sys-apps/uswid/uswid-0.4.7.ebuild b/sys-apps/uswid/uswid-0.4.7.ebuild
index 0d7c386217e0..8b28255ba554 100644
--- a/sys-apps/uswid/uswid-0.4.7.ebuild
+++ b/sys-apps/uswid/uswid-0.4.7.ebuild
@@ -17,7 +17,7 @@ HOMEPAGE="
# Reminder: relicensed to BSD-2-with-patent between 0.4.7 and 0.5.0
LICENSE="LGPL-2.1+"
SLOT="0"
-KEYWORDS="~amd64 ~riscv"
+KEYWORDS="~amd64 ~arm ~riscv"
RDEPEND="
dev-python/cbor2[${PYTHON_USEDEP}]
^ permalink raw reply related [flat|nested] 8+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: sys-apps/uswid/
@ 2024-04-24 14:07 Sam James
0 siblings, 0 replies; 8+ messages in thread
From: Sam James @ 2024-04-24 14:07 UTC (permalink / raw
To: gentoo-commits
commit: 63dae9f5954502acb04ad52587294118ca699350
Author: Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Wed Apr 24 14:06:54 2024 +0000
Commit: Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Wed Apr 24 14:06:54 2024 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=63dae9f5
sys-apps/uswid: Keyword 0.4.7 arm64, #930564
Signed-off-by: Sam James <sam <AT> gentoo.org>
sys-apps/uswid/uswid-0.4.7.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/sys-apps/uswid/uswid-0.4.7.ebuild b/sys-apps/uswid/uswid-0.4.7.ebuild
index 8b28255ba554..517b40604bfa 100644
--- a/sys-apps/uswid/uswid-0.4.7.ebuild
+++ b/sys-apps/uswid/uswid-0.4.7.ebuild
@@ -17,7 +17,7 @@ HOMEPAGE="
# Reminder: relicensed to BSD-2-with-patent between 0.4.7 and 0.5.0
LICENSE="LGPL-2.1+"
SLOT="0"
-KEYWORDS="~amd64 ~arm ~riscv"
+KEYWORDS="~amd64 ~arm ~arm64 ~riscv"
RDEPEND="
dev-python/cbor2[${PYTHON_USEDEP}]
^ permalink raw reply related [flat|nested] 8+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: sys-apps/uswid/
@ 2024-04-24 17:28 Arthur Zamarin
0 siblings, 0 replies; 8+ messages in thread
From: Arthur Zamarin @ 2024-04-24 17:28 UTC (permalink / raw
To: gentoo-commits
commit: 67b134384d0fe68e42628b4f6d407ca74590f75d
Author: Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
AuthorDate: Wed Apr 24 17:28:28 2024 +0000
Commit: Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
CommitDate: Wed Apr 24 17:28:28 2024 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=67b13438
sys-apps/uswid: Keyword 0.4.7 x86, #930564
Signed-off-by: Arthur Zamarin <arthurzam <AT> gentoo.org>
sys-apps/uswid/uswid-0.4.7.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/sys-apps/uswid/uswid-0.4.7.ebuild b/sys-apps/uswid/uswid-0.4.7.ebuild
index 517b40604bfa..b70a42cc1ef2 100644
--- a/sys-apps/uswid/uswid-0.4.7.ebuild
+++ b/sys-apps/uswid/uswid-0.4.7.ebuild
@@ -17,7 +17,7 @@ HOMEPAGE="
# Reminder: relicensed to BSD-2-with-patent between 0.4.7 and 0.5.0
LICENSE="LGPL-2.1+"
SLOT="0"
-KEYWORDS="~amd64 ~arm ~arm64 ~riscv"
+KEYWORDS="~amd64 ~arm ~arm64 ~riscv ~x86"
RDEPEND="
dev-python/cbor2[${PYTHON_USEDEP}]
^ permalink raw reply related [flat|nested] 8+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: sys-apps/uswid/
@ 2024-05-29 11:47 Sam James
0 siblings, 0 replies; 8+ messages in thread
From: Sam James @ 2024-05-29 11:47 UTC (permalink / raw
To: gentoo-commits
commit: 21f5e1d8b34ad73c209142b8baa8ca062dffddf3
Author: Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Wed May 29 11:46:07 2024 +0000
Commit: Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Wed May 29 11:46:07 2024 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=21f5e1d8
sys-apps/uswid: Stabilize 0.4.7 amd64, #933048
Signed-off-by: Sam James <sam <AT> gentoo.org>
sys-apps/uswid/uswid-0.4.7.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/sys-apps/uswid/uswid-0.4.7.ebuild b/sys-apps/uswid/uswid-0.4.7.ebuild
index b70a42cc1ef2..e9cf3e1d44e9 100644
--- a/sys-apps/uswid/uswid-0.4.7.ebuild
+++ b/sys-apps/uswid/uswid-0.4.7.ebuild
@@ -17,7 +17,7 @@ HOMEPAGE="
# Reminder: relicensed to BSD-2-with-patent between 0.4.7 and 0.5.0
LICENSE="LGPL-2.1+"
SLOT="0"
-KEYWORDS="~amd64 ~arm ~arm64 ~riscv ~x86"
+KEYWORDS="amd64 ~arm ~arm64 ~riscv ~x86"
RDEPEND="
dev-python/cbor2[${PYTHON_USEDEP}]
^ permalink raw reply related [flat|nested] 8+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: sys-apps/uswid/
@ 2024-05-29 14:43 Jakov Smolić
0 siblings, 0 replies; 8+ messages in thread
From: Jakov Smolić @ 2024-05-29 14:43 UTC (permalink / raw
To: gentoo-commits
commit: 5c2687fd6f6c958a9b0cb320e3d3f6238b4aabe0
Author: Jakov Smolić <jsmolic <AT> gentoo <DOT> org>
AuthorDate: Wed May 29 14:43:11 2024 +0000
Commit: Jakov Smolić <jsmolic <AT> gentoo <DOT> org>
CommitDate: Wed May 29 14:43:11 2024 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5c2687fd
sys-apps/uswid: Stabilize 0.4.7 x86, #933048
Signed-off-by: Jakov Smolić <jsmolic <AT> gentoo.org>
sys-apps/uswid/uswid-0.4.7.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/sys-apps/uswid/uswid-0.4.7.ebuild b/sys-apps/uswid/uswid-0.4.7.ebuild
index e9cf3e1d44e9..3e14347bcbee 100644
--- a/sys-apps/uswid/uswid-0.4.7.ebuild
+++ b/sys-apps/uswid/uswid-0.4.7.ebuild
@@ -17,7 +17,7 @@ HOMEPAGE="
# Reminder: relicensed to BSD-2-with-patent between 0.4.7 and 0.5.0
LICENSE="LGPL-2.1+"
SLOT="0"
-KEYWORDS="amd64 ~arm ~arm64 ~riscv ~x86"
+KEYWORDS="amd64 ~arm ~arm64 ~riscv x86"
RDEPEND="
dev-python/cbor2[${PYTHON_USEDEP}]
^ permalink raw reply related [flat|nested] 8+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: sys-apps/uswid/
@ 2024-10-08 7:38 Sam James
0 siblings, 0 replies; 8+ messages in thread
From: Sam James @ 2024-10-08 7:38 UTC (permalink / raw
To: gentoo-commits
commit: d0cdc3fb5d83ecc12812445239bbc8e78b89fbc9
Author: Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Tue Oct 8 07:38:00 2024 +0000
Commit: Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Tue Oct 8 07:38:00 2024 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d0cdc3fb
sys-apps/uswid: enable py3.13
Signed-off-by: Sam James <sam <AT> gentoo.org>
sys-apps/uswid/uswid-0.4.7.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/sys-apps/uswid/uswid-0.4.7.ebuild b/sys-apps/uswid/uswid-0.4.7.ebuild
index 3e14347bcbee..8fb812992a0a 100644
--- a/sys-apps/uswid/uswid-0.4.7.ebuild
+++ b/sys-apps/uswid/uswid-0.4.7.ebuild
@@ -4,7 +4,7 @@
EAPI=8
DISTUTILS_USE_PEP517=setuptools
-PYTHON_COMPAT=( python3_{10..12} )
+PYTHON_COMPAT=( python3_{10..13} )
inherit distutils-r1 pypi
^ permalink raw reply related [flat|nested] 8+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: sys-apps/uswid/
@ 2025-01-11 9:33 WANG Xuerui
0 siblings, 0 replies; 8+ messages in thread
From: WANG Xuerui @ 2025-01-11 9:33 UTC (permalink / raw
To: gentoo-commits
commit: 15361aa6f816b6c8ade77b97bf6536a8ff12321a
Author: WANG Xuerui <xen0n <AT> gentoo <DOT> org>
AuthorDate: Sat Jan 11 08:59:15 2025 +0000
Commit: WANG Xuerui <xen0n <AT> gentoo <DOT> org>
CommitDate: Sat Jan 11 09:32:10 2025 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=15361aa6
sys-apps/uswid: keyword 0.4.7 for ~loong
Signed-off-by: WANG Xuerui <xen0n <AT> gentoo.org>
sys-apps/uswid/uswid-0.4.7.ebuild | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/sys-apps/uswid/uswid-0.4.7.ebuild b/sys-apps/uswid/uswid-0.4.7.ebuild
index 8fb812992a0a..ae0dd9060e19 100644
--- a/sys-apps/uswid/uswid-0.4.7.ebuild
+++ b/sys-apps/uswid/uswid-0.4.7.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2024 Gentoo Authors
+# Copyright 1999-2025 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
@@ -17,7 +17,7 @@ HOMEPAGE="
# Reminder: relicensed to BSD-2-with-patent between 0.4.7 and 0.5.0
LICENSE="LGPL-2.1+"
SLOT="0"
-KEYWORDS="amd64 ~arm ~arm64 ~riscv x86"
+KEYWORDS="amd64 ~arm ~arm64 ~loong ~riscv x86"
RDEPEND="
dev-python/cbor2[${PYTHON_USEDEP}]
^ permalink raw reply related [flat|nested] 8+ messages in thread
end of thread, other threads:[~2025-01-11 9:33 UTC | newest]
Thread overview: 8+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2024-04-24 14:07 [gentoo-commits] repo/gentoo:master commit in: sys-apps/uswid/ Sam James
-- strict thread matches above, loose matches on Subject: below --
2025-01-11 9:33 WANG Xuerui
2024-10-08 7:38 Sam James
2024-05-29 14:43 Jakov Smolić
2024-05-29 11:47 Sam James
2024-04-24 17:28 Arthur Zamarin
2024-04-24 14:07 Sam James
2024-04-24 11:58 Marek Szuba
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox