Hi @daniel-lundqvist_1790 ,
I'm not really sure what you're trying to accomplish, but I'll try to give some background surrounding your questions.
First, some quick terminology:
- Assets are basically just files in folders, like an S3 bucket or share drive. You could put whatever you'd like in an asset directory.
- A Build is basically a "set of related SBOM files" and is basically a way to organize/track SBOMs and their compliance
- An SBOM is basically a list of purls (package type/names/versions/etc) and purls almost always refer to third-party, OSS packages. However, ProGet can (and often will) cache these OSS packages in feeds.
- Universal Packages are intended for your own, proprietary content. They are basically an alternative to storing things in folders or in a file like
myApp-3.2.zip
- Dependencies in Universal Packages always reference other a Universal Package or range of packages; they are basically just another metadata field like package description, but with a standard format
I can't say if Universal Packages or Builds/SBOMs are a good fit for your product. It really depends on what what problems you're trying to solve. If you can talk more about that, we'll try to help better.
That said, you could technically craft an SBOM that references Universal Package purls (pkg:/upack/myPackage@4.2.1
), and then create/add that to a build, but it doesn't make a lot of sense to me. SBOMs (and SCA in general) is intended for OSS compliance, and that's how ProGet uses it.
pgutil builds scan
will generate and upload a basic SBOM file during the build process for .NET, npm, and Python applications. It's basically a lightweight alternative to CycloneDX, which also generates SBOM files.
As for dependencies, neither pgutil
nor CycloneDx will read "dependency metadata" from package manifest files; instead they inspect the packages that were installed/downloaded by the build tool. Package dependencies are somewhat orthogonal to SCA/SBOM.
I'm not sure if any tool out there can generate an SBOM file given a list of rpm packages, but they're pretty easy to create with a script and upload to ProGet.
Hope that helps,
Alana