diff options
author | William Hubbs <williamh@gentoo.org> | 2023-01-03 18:37:20 -0600 |
---|---|---|
committer | William Hubbs <williamh@gentoo.org> | 2023-01-03 18:38:09 -0600 |
commit | 75d95254739ba2d414c248f937edd730f6242699 (patch) | |
tree | 4ac32ab886ed3e79c7328bd0537d6fd7d342e6d7 /app-containers | |
parent | dev-embedded/openocd: drop 0.12.0_rc2 (diff) | |
download | gentoo-75d95254739ba2d414c248f937edd730f6242699.tar.gz gentoo-75d95254739ba2d414c248f937edd730f6242699.tar.bz2 gentoo-75d95254739ba2d414c248f937edd730f6242699.zip |
app-containers/skopeo: revbump 1.10.0-r1 to use the upstream Makefile
Signed-off-by: William Hubbs <williamh@gentoo.org>
Diffstat (limited to 'app-containers')
-rw-r--r-- | app-containers/skopeo/skopeo-1.10.0-r1.ebuild | 38 |
1 files changed, 38 insertions, 0 deletions
diff --git a/app-containers/skopeo/skopeo-1.10.0-r1.ebuild b/app-containers/skopeo/skopeo-1.10.0-r1.ebuild new file mode 100644 index 000000000000..98396d981315 --- /dev/null +++ b/app-containers/skopeo/skopeo-1.10.0-r1.ebuild @@ -0,0 +1,38 @@ +# Copyright 2023 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 +COMMIT=ee60474d5a4d99745aac9855797ad4b26510d786 +inherit go-module + +DESCRIPTION="Command line utility foroperations on container images and image repositories" +HOMEPAGE="https://github.com/containers/skopeo" +SRC_URI="https://github.com/containers/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz" + +LICENSE="Apache-2.0 BSD BSD-2 CC-BY-SA-4.0 ISC MIT" +SLOT="0" +KEYWORDS="~amd64 ~arm64" +IUSE="btrfs" + +COMMON_DEPEND=">=app-crypt/gpgme-1.5.5:= + >=dev-libs/libassuan-2.4.3:= + dev-libs/libgpg-error:= + btrfs? ( >=sys-fs/btrfs-progs-4.0.1 ) + >=sys-fs/lvm2-2.02.145:=" +DEPEND="${COMMON_DEPEND}" +RDEPEND="${COMMON_DEPEND}" + BDEPEND="dev-go/go-md2man" + +RESTRICT="test" + +src_compile() { + local BUILDTAGS + BUILDTAGS="containers_image_ostree_stub $(usex btrfs "" exclude_graphdriver_btrfs)" + emake PREFIX=/usr BUILDTAGS="${BUILDTAGS}" GIT_COMMIT="${COMMIT}" \ + all completions +} + +src_install() { + emake PREFIX=/usr DESTDIR="${ED}" install + keepdir /var/lib/containers/sigstore +} |