From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 57CBC15815E for ; Fri, 2 Feb 2024 16:31:36 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 9B118E2A17; Fri, 2 Feb 2024 16:31:35 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [140.211.166.183]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 772D4E2A17 for ; Fri, 2 Feb 2024 16:31:35 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 77FCE343245 for ; Fri, 2 Feb 2024 16:31:34 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id DC13D888 for ; Fri, 2 Feb 2024 16:31:32 +0000 (UTC) From: "Michał Górny" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Michał Górny" Message-ID: <1706891476.bd0667834017712e0231df88dede847454122275.mgorny@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: app-containers/go-secbench/, profiles/updates/, profiles/ X-VCS-Repository: repo/gentoo X-VCS-Files: app-containers/go-secbench/Manifest app-containers/go-secbench/go-secbench-0.1.0-r1.ebuild app-containers/go-secbench/metadata.xml profiles/package.mask profiles/updates/4Q-2021 X-VCS-Directories: profiles/ profiles/updates/ app-containers/go-secbench/ X-VCS-Committer: mgorny X-VCS-Committer-Name: Michał Górny X-VCS-Revision: bd0667834017712e0231df88dede847454122275 X-VCS-Branch: master Date: Fri, 2 Feb 2024 16:31:32 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: 9eb351b7-5f9f-4977-a5ff-356ae440cfa7 X-Archives-Hash: a1283b2565bb519b84ea95225dc78709 commit: bd0667834017712e0231df88dede847454122275 Author: Michał Górny gentoo org> AuthorDate: Fri Feb 2 16:23:39 2024 +0000 Commit: Michał Górny gentoo org> CommitDate: Fri Feb 2 16:31:16 2024 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=bd066783 app-containers/go-secbench: Remove last-rited pkg Closes: https://bugs.gentoo.org/919050 Signed-off-by: Michał Górny gentoo.org> app-containers/go-secbench/Manifest | 1 - .../go-secbench/go-secbench-0.1.0-r1.ebuild | 27 ---------------------- app-containers/go-secbench/metadata.xml | 8 ------- profiles/package.mask | 5 ---- profiles/updates/4Q-2021 | 1 - 5 files changed, 42 deletions(-) diff --git a/app-containers/go-secbench/Manifest b/app-containers/go-secbench/Manifest deleted file mode 100644 index 915d02957600..000000000000 --- a/app-containers/go-secbench/Manifest +++ /dev/null @@ -1 +0,0 @@ -DIST go-secbench-0.1.0.tar.gz 1281488 BLAKE2B 83bb27a2113a5e851db8b61402d967d528c9e3b39d249a23b4d28c21e001276eff73f61c6aba610f0020f22de26b04286a91e5a3785b5a9e019d2701d6081f92 SHA512 4712ef56385993ed1e660c1843a1d7e9cd807a3ca8bf935767e8d2965aef25c5b3a7a88d4ed7c072fe124a6b05900bd444cdbc0cee879e80844fb5f695732f2b diff --git a/app-containers/go-secbench/go-secbench-0.1.0-r1.ebuild b/app-containers/go-secbench/go-secbench-0.1.0-r1.ebuild deleted file mode 100644 index bbc7926f7164..000000000000 --- a/app-containers/go-secbench/go-secbench-0.1.0-r1.ebuild +++ /dev/null @@ -1,27 +0,0 @@ -# Copyright 1999-2017 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 - -EAPI=6 -EGO_PN="github.com/qnib/go-secbench" -inherit golang-build golang-vcs-snapshot - -DESCRIPTION="run and evaluate the docker security benchmark" -HOMEPAGE="https://github.com/qnib/go-secbench" -SRC_URI="https://${EGO_PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz" - -LICENSE="Apache-2.0" -SLOT="0" -KEYWORDS="~amd64" -RESTRICT="test" - -DEPEND="dev-lang/go" -RDEPEND="app-containers/docker" - -src_compile() { - GOPATH="${S}" go build -o bin/go-secbench src/${EGO_PN}/cmd/main.go || die -} - -src_install() { - dobin bin/${PN} -dodoc "src/${EGO_PN}/README.md" -} diff --git a/app-containers/go-secbench/metadata.xml b/app-containers/go-secbench/metadata.xml deleted file mode 100644 index db463f3eeb66..000000000000 --- a/app-containers/go-secbench/metadata.xml +++ /dev/null @@ -1,8 +0,0 @@ - - - - - williamh@gentoo.org - William Hubbs - - diff --git a/profiles/package.mask b/profiles/package.mask index eab015b534d3..d25e9431dce5 100644 --- a/profiles/package.mask +++ b/profiles/package.mask @@ -289,11 +289,6 @@ net-analyzer/lilac # Removal on 2024-01-21. Bug #918905. sys-block/hpacucli -# Michał Górny (2023-12-22) -# Unmaintained. EAPI 6. Last commit in 2017. No revdeps. -# Removal on 2024-01-21. Bug #919050. -app-containers/go-secbench - # Andreas Sturmlechner (2024-01-31) # KDE Plasma 6 RC2 (5.93) and Frameworks 6 RC2 (5.249) mask # *** PRE-RELEASE *** NO BUGS WILL BE FIXED *** OVERLAY PRs WELCOME *** diff --git a/profiles/updates/4Q-2021 b/profiles/updates/4Q-2021 index a101f57fc656..1c656f25a536 100644 --- a/profiles/updates/4Q-2021 +++ b/profiles/updates/4Q-2021 @@ -45,7 +45,6 @@ move app-emulation/docker-compose app-containers/docker-compose move app-emulation/docker-credential-helpers app-containers/docker-credential-helpers move app-emulation/docker-registry app-containers/docker-registry move app-emulation/docker-swarm app-containers/docker-swarm -move app-emulation/go-secbench app-containers/go-secbench move app-emulation/slirp4netns app-containers/slirp4netns move app-emulation/podman app-containers/podman move app-emulation/k3d app-containers/k3d