diff options
author | William Hubbs <williamh@gentoo.org> | 2022-05-11 16:20:42 -0500 |
---|---|---|
committer | William Hubbs <williamh@gentoo.org> | 2022-05-11 16:21:23 -0500 |
commit | 2abc1b181a048cd40580117ef02a9f7ab7b288aa (patch) | |
tree | 8d6c3b7316a70a049b6e610f015268a439c9209f /app-containers | |
parent | profiles: Stable mask app-text/nuspell's USE=doc (diff) | |
download | gentoo-2abc1b181a048cd40580117ef02a9f7ab7b288aa.tar.gz gentoo-2abc1b181a048cd40580117ef02a9f7ab7b288aa.tar.bz2 gentoo-2abc1b181a048cd40580117ef02a9f7ab7b288aa.zip |
app-containers/grype: initial import
Grype is a vulnerability scanner for container images and filesystems.
Signed-off-by: William Hubbs <williamh@gentoo.org>
Diffstat (limited to 'app-containers')
-rw-r--r-- | app-containers/grype/Manifest | 2 | ||||
-rw-r--r-- | app-containers/grype/grype-0.36.1.ebuild | 22 | ||||
-rw-r--r-- | app-containers/grype/metadata.xml | 8 |
3 files changed, 32 insertions, 0 deletions
diff --git a/app-containers/grype/Manifest b/app-containers/grype/Manifest new file mode 100644 index 000000000000..b7433d19895b --- /dev/null +++ b/app-containers/grype/Manifest @@ -0,0 +1,2 @@ +DIST grype-0.36.1-deps.tar.xz 671469268 BLAKE2B 227b76230e45851c0980e80c1299efca2299e196b2f9432d8dcbaff9ab08c545f7e64fdc8c88ba79392d3e3d0067f03155ace14473aeacc65da7909d7d3fe4cb SHA512 432ed203febeeb26db4d50a9bb1b95bef11c91e0335e1e75b7eec68484a2f5e5d9ff6f84b05ced703519d2490723adeaca6009efd18647f0a8d6ce515727c4dc +DIST grype-0.36.1.tar.gz 1028910 BLAKE2B 70327fdbb1426537c623f7e8c8c286cfba336454e129166bbda6ff19403a4e6ab260ad2136e00acf8a76aab4de6073ae4c28614c0ab5c7955c14f07c124bc833 SHA512 299d440bb96a5092173a8baa42e80bf5ea4f90663ba50241f6b0d7a2f75d94496dc91eca78c3d4341f68f7e874223d49a7663146f7e20db8cac15ed65a8650f9 diff --git a/app-containers/grype/grype-0.36.1.ebuild b/app-containers/grype/grype-0.36.1.ebuild new file mode 100644 index 000000000000..c98fb9fd7f0c --- /dev/null +++ b/app-containers/grype/grype-0.36.1.ebuild @@ -0,0 +1,22 @@ +# Copyright 2022 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 +inherit go-module + +DESCRIPTION="A vulnerability scanner for container images and filesystems" +HOMEPAGE="https://www.anchore.com" +SRC_URI="https://github.com/anchore/grype/archive/v${PV}.tar.gz -> ${P}.tar.gz" +SRC_URI+=" https://dev.gentoo.org/~williamh/dist/${P}-deps.tar.xz" + +LICENSE="Apache-2.0" +SLOT="0" +KEYWORDS="~amd64" + +src_compile() { + ego build -o bin/grype +} + +src_install() { + dobin bin/grype +} diff --git a/app-containers/grype/metadata.xml b/app-containers/grype/metadata.xml new file mode 100644 index 000000000000..3b2a9c591010 --- /dev/null +++ b/app-containers/grype/metadata.xml @@ -0,0 +1,8 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!DOCTYPE pkgmetadata SYSTEM "https://www.gentoo.org/dtd/metadata.dtd"> +<pkgmetadata> +<maintainer type="person"> +<email>williamh@gentoo.org</email> +<name>William Hubbs</name> +</maintainer> +</pkgmetadata> |