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 B2A8D1382C5 for ; Sun, 28 Jun 2020 22:58:53 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id DC494E0899; Sun, 28 Jun 2020 22:58:52 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (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 BEF80E0899 for ; Sun, 28 Jun 2020 22:58:52 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (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 68BB634F337 for ; Sun, 28 Jun 2020 22:58:51 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 652521AC for ; Sun, 28 Jun 2020 22:58:49 +0000 (UTC) From: "Thomas Deutschmann" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Thomas Deutschmann" Message-ID: <1593385098.24d5a90e18b43177b7a423caac93f6a25e62993f.whissi@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: app-text/vgrep/ X-VCS-Repository: repo/gentoo X-VCS-Files: app-text/vgrep/Manifest app-text/vgrep/metadata.xml app-text/vgrep/vgrep-2.3.1.ebuild X-VCS-Directories: app-text/vgrep/ X-VCS-Committer: whissi X-VCS-Committer-Name: Thomas Deutschmann X-VCS-Revision: 24d5a90e18b43177b7a423caac93f6a25e62993f X-VCS-Branch: master Date: Sun, 28 Jun 2020 22:58:49 +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: 0ea4d70e-8b6e-4d10-b33d-8f8a9b0fc6e9 X-Archives-Hash: a8a824169d744e8c0c05230ab4abed03 commit: 24d5a90e18b43177b7a423caac93f6a25e62993f Author: Thomas Deutschmann gentoo org> AuthorDate: Sun Jun 28 22:58:07 2020 +0000 Commit: Thomas Deutschmann gentoo org> CommitDate: Sun Jun 28 22:58:18 2020 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=24d5a90e app-text/vgrep: new package Package-Manager: Portage-2.3.101, Repoman-2.3.22 Signed-off-by: Thomas Deutschmann gentoo.org> app-text/vgrep/Manifest | 1 + app-text/vgrep/metadata.xml | 12 ++++++++++++ app-text/vgrep/vgrep-2.3.1.ebuild | 33 +++++++++++++++++++++++++++++++++ 3 files changed, 46 insertions(+) diff --git a/app-text/vgrep/Manifest b/app-text/vgrep/Manifest new file mode 100644 index 00000000000..6de74d93406 --- /dev/null +++ b/app-text/vgrep/Manifest @@ -0,0 +1 @@ +DIST vgrep-2.3.1.tar.gz 1149421 BLAKE2B c4c9a414bba5e509d57faa9ca6f6ce5cae1dbb001ff8b410ad54691ec6bf39f41c535fd25bdd5d93fdf89b4e4b49acf4dfa9a8956653e5c5e2ce39bd7da8d484 SHA512 0fa65151ae40f7fefc4e5b1af8e6ea332b50b1136849ec0902dd110786ca14204441e27c65a036b08fa56bf04a6325d8aa8ef2d4d02cdb0e0fe219896e24d694 diff --git a/app-text/vgrep/metadata.xml b/app-text/vgrep/metadata.xml new file mode 100644 index 00000000000..4965843d0e8 --- /dev/null +++ b/app-text/vgrep/metadata.xml @@ -0,0 +1,12 @@ + + + + + whissi@gentoo.org + Thomas Deutschmann + + + https://github.com/vrothberg/vgrep/issues + vrothberg/vgrep + + diff --git a/app-text/vgrep/vgrep-2.3.1.ebuild b/app-text/vgrep/vgrep-2.3.1.ebuild new file mode 100644 index 00000000000..0ccd06c8eb5 --- /dev/null +++ b/app-text/vgrep/vgrep-2.3.1.ebuild @@ -0,0 +1,33 @@ +# Copyright 1999-2020 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI="7" + +inherit go-module + +DESCRIPTION="A pager for grep, git-grep and similar grep implementations" +HOMEPAGE="https://github.com/vrothberg/vgrep" +SRC_URI="https://github.com/vrothberg/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz" + +LICENSE="GPL-3+ MIT MIT-with-advertising" +SLOT="0" +KEYWORDS="~amd64" + +# Uses golangci-lint +RESTRICT="test" + +DOCS=( README.md ) + +# go binary +QA_PRESTRIPPED="usr/bin/vgrep" + +src_compile() { + emake build +} + +src_install() { + local prefix="${D}/usr" + mkdir -p "${prefix}"/bin || die + + emake PREFIX="${prefix}" install +}