Skip to content

Commit

Permalink
Merge pull request #313 from hughsie/hughsie/sbom
Browse files Browse the repository at this point in the history
Add a SBOM template in CycloneDX format
  • Loading branch information
kkos authored Nov 22, 2024
2 parents 94877ac + 19aeea3 commit e0a8f04
Showing 1 changed file with 44 additions and 0 deletions.
44 changes: 44 additions & 0 deletions sbom.cdx.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,44 @@
{
"bomFormat": "CycloneDX",
"specVersion": "1.6",
"version": 1,
"metadata": {
"authors": [
{
"name": "@VCS_SBOM_AUTHORS@"
}
]
},
"components": [
{
"type": "library",
"bom-ref": "pkg:github/kkos/oniguruma@@VCS_TAG@",
"cpe": "cpe:2.3:a:kkos:oniguruma:@VCS_TAG@:*:*:*:*:*:*:*",
"name": "oniguruma",
"version": "@VCS_VERSION@",
"description": "A modern and flexible regular expressions library",
"authors": [
{
"name": "@VCS_AUTHORS@",
"url": "https://raw.githubusercontent.com/kkos/oniguruma/refs/heads/master/AUTHORS"
}
],
"supplier": {
"name": "oniguruma developers"
},
"licenses": [
{
"license": {
"id": "BSD-2-Clause"
}
}
],
"externalReferences": [
{
"type": "vcs",
"url": "https://github.com/kkos/oniguruma"
}
]
}
]
}

0 comments on commit e0a8f04

Please sign in to comment.