diff options
author | 2023-11-27 12:52:11 -0600 | |
---|---|---|
committer | 2023-11-27 12:52:50 -0600 | |
commit | ac670e0e0e7818740f739020215fc57307f5266a (patch) | |
tree | 664989f429cce4511f3b08f031adcad1734fdc9c /app-containers | |
parent | app-portage/pycargoebuild: Bump to 0.12 (diff) | |
download | gentoo-ac670e0e0e7818740f739020215fc57307f5266a.tar.gz gentoo-ac670e0e0e7818740f739020215fc57307f5266a.tar.bz2 gentoo-ac670e0e0e7818740f739020215fc57307f5266a.zip |
app-containers/skopeo: style fix
Signed-off-by: William Hubbs <williamh@gentoo.org>
Diffstat (limited to 'app-containers')
-rw-r--r-- | app-containers/skopeo/skopeo-1.14.0-r1.ebuild | 13 |
1 files changed, 7 insertions, 6 deletions
diff --git a/app-containers/skopeo/skopeo-1.14.0-r1.ebuild b/app-containers/skopeo/skopeo-1.14.0-r1.ebuild index 9fc4a1466912..b7a859d817d5 100644 --- a/app-containers/skopeo/skopeo-1.14.0-r1.ebuild +++ b/app-containers/skopeo/skopeo-1.14.0-r1.ebuild @@ -16,14 +16,11 @@ else fi # main -LICENSE="Apache-2.0" -# deps -LICENSE+=" BSD BSD-2 CC-BY-SA-4.0 ISC MIT" +LICENSE="Apache-2.0 BSD BSD-2 CC-BY-SA-4.0 ISC MIT" SLOT="0" IUSE="btrfs device-mapper rootless" -RDEPEND=" - app-containers/containers-common +COMMON_DEPEND=" >=app-crypt/gpgme-1.5.5:= >=dev-libs/libassuan-2.4.3:= btrfs? ( >=sys-fs/btrfs-progs-4.0.1 ) @@ -33,7 +30,11 @@ RDEPEND=" # TODO: Is this really needed? cause upstream doesnt mention it https://github.com/containers/skopeo/blob/main/install.md#building-from-source # dev-libs/libgpg-error:= -DEPEND="${RDEPEND}" +DEPEND="${COMMON_DEPEND}" +RDEPEND=" + ${COMMON_DEPEND} + app-containers/containers-common +" BDEPEND="dev-go/go-md2man" RESTRICT="test" |