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.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 7091A138334 for ; Fri, 3 Jan 2020 23:05:19 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id ABA53E0942; Fri, 3 Jan 2020 23:05:18 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 2DD13E093A for ; Fri, 3 Jan 2020 23:05:18 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id A206A34DE6B for ; Fri, 3 Jan 2020 23:05:16 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id C10FDA8 for ; Fri, 3 Jan 2020 23:05:14 +0000 (UTC) From: "Matt Turner" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Matt Turner" Message-ID: <1578092496.3908fcf03336e48466465ff9530b31d27ccd92f7.mattst88@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-go/zglob/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-go/zglob/Manifest dev-go/zglob/metadata.xml dev-go/zglob/zglob-0_p20171230.ebuild X-VCS-Directories: dev-go/zglob/ X-VCS-Committer: mattst88 X-VCS-Committer-Name: Matt Turner X-VCS-Revision: 3908fcf03336e48466465ff9530b31d27ccd92f7 X-VCS-Branch: master Date: Fri, 3 Jan 2020 23:05:14 +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: 176d3743-b960-4809-9ecc-a385bd99946c X-Archives-Hash: a3d62a3441c0b7672c5832a65ac55410 commit: 3908fcf03336e48466465ff9530b31d27ccd92f7 Author: Matt Turner gentoo org> AuthorDate: Fri Jan 3 23:01:36 2020 +0000 Commit: Matt Turner gentoo org> CommitDate: Fri Jan 3 23:01:36 2020 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3908fcf0 dev-go/zglob: Remove Closes: https://bugs.gentoo.org/683310 Signed-off-by: Matt Turner gentoo.org> dev-go/zglob/Manifest | 1 - dev-go/zglob/metadata.xml | 5 ----- dev-go/zglob/zglob-0_p20171230.ebuild | 35 ----------------------------------- 3 files changed, 41 deletions(-) diff --git a/dev-go/zglob/Manifest b/dev-go/zglob/Manifest deleted file mode 100644 index 6d88855ead2..00000000000 --- a/dev-go/zglob/Manifest +++ /dev/null @@ -1 +0,0 @@ -DIST zglob-0_p20171230.tar.gz 7993 BLAKE2B dd441531a30f6491c5c85b82e364bf8a21adb9d3842793ef2d9afc617ab5a7b7f6d83e53bb911bfe0a8205f5a434aaee42f2ab7160cce103f0e83cc198757fa7 SHA512 6eec0222ee27527b992809f235b6e06d24e857866f969f25901eaf21c9a352d6f50ec3ef2874d51cc7b91015bc9c6f197e79445e2c36ed1facad4ec04e919d83 diff --git a/dev-go/zglob/metadata.xml b/dev-go/zglob/metadata.xml deleted file mode 100644 index 585b0dc75dd..00000000000 --- a/dev-go/zglob/metadata.xml +++ /dev/null @@ -1,5 +0,0 @@ - - - - - diff --git a/dev-go/zglob/zglob-0_p20171230.ebuild b/dev-go/zglob/zglob-0_p20171230.ebuild deleted file mode 100644 index 2d0bf65d558..00000000000 --- a/dev-go/zglob/zglob-0_p20171230.ebuild +++ /dev/null @@ -1,35 +0,0 @@ -# Copyright 1999-2018 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 - -EAPI=6 -EGO_PN=github.com/mattn/go-zglob - -if [[ ${PV} = *9999* ]]; then - inherit golang-vcs -else - KEYWORDS="~amd64" - EGIT_COMMIT=4959821b481786922ac53e7ef25c61ae19fb7c36 - SRC_URI="https://${EGO_PN}/archive/${EGIT_COMMIT}.tar.gz -> ${P}.tar.gz" - inherit golang-vcs-snapshot -fi -inherit golang-build - -DESCRIPTION="Unix-optimized file globbing and directory walking for Go" -HOMEPAGE="https://github.com/mattn/go-zglob" -LICENSE="MIT" -SLOT="0/${PVR}" -RDEPEND="" - -src_compile() { - EGO_PN="${EGO_PN}/cmd/zglob" golang-build_src_compile -} - -src_install() { - dobin zglob - - golang-build_src_install - - pushd "src/${EGO_PN}" >/dev/null || die - einstalldocs - popd >/dev/null || die -}