mirror of
https://github.com/openbsd/ports.git
synced 2026-06-18 15:33:55 +02:00
ef141cfd77
ORAS is the de facto tool for working with OCI Artifacts. It treats media types as a critical piece of the puzzle. Container images are never assumed to be the artifact in question. ORAS provides CLI and client libraries to distribute artifacts across OCI-compliant registries. * Artifact Reference - Attach supply chain artifacts to container images. - Discover and show the artifact reference relations. - Extend the registries not just for storing container images. * Distributed Software Artifacts - Manage artifacts in OCI registries. - Migrate artifacts across registries. - Manage artifacts in file system through OCI image layout. * Explore and Manage OCI Image - Manage image manifest and layer in an OCI registry. - Operate tag and repository in an OCI registry. - Explore the detailed content of an OCI image. Improvement and OK lraab@
25 lines
381 B
Makefile
25 lines
381 B
Makefile
COMMENT = OCI registry client
|
|
|
|
V = 1.3.2
|
|
MODGO_MODNAME = github.com/oras-project/oras
|
|
MODGO_VERSION = v$V
|
|
|
|
DISTNAME = oras-${MODGO_VERSION}
|
|
|
|
CATEGORIES = sysutils
|
|
HOMEPAGE = https://oras.land
|
|
|
|
MAINTAINER = Denis Fondras <denis@openbsd.org>
|
|
|
|
# Apache 2.0
|
|
PERMIT_PACKAGE = Yes
|
|
|
|
WANTLIB += c pthread
|
|
|
|
MODULES = lang/go
|
|
|
|
USE_GMAKE = Yes
|
|
|
|
.include "modules.inc"
|
|
.include <bsd.port.mk>
|