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 CE385138334 for ; Sun, 17 Jun 2018 09:59:23 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id B4680E092E; Sun, 17 Jun 2018 09:59:22 +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 8CAC0E092D for ; Sun, 17 Jun 2018 09:59:22 +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 E5C2F335C7F for ; Sun, 17 Jun 2018 09:59:20 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id DEF583C for ; Sun, 17 Jun 2018 09:59:18 +0000 (UTC) From: "Tim Harder" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Tim Harder" Message-ID: <1529229418.1bfcbbb4f40754b1ed3f5c9aa77d578409e0e7ce.radhermit@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: sys-apps/pick/ X-VCS-Repository: repo/gentoo X-VCS-Files: sys-apps/pick/Manifest sys-apps/pick/metadata.xml sys-apps/pick/pick-2.0.2.ebuild X-VCS-Directories: sys-apps/pick/ X-VCS-Committer: radhermit X-VCS-Committer-Name: Tim Harder X-VCS-Revision: 1bfcbbb4f40754b1ed3f5c9aa77d578409e0e7ce X-VCS-Branch: master Date: Sun, 17 Jun 2018 09:59:18 +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-Archives-Salt: ffa837e8-ee30-4d08-a628-09ac599b16e6 X-Archives-Hash: fce58352f322d14bdeab0d4512f52cfb commit: 1bfcbbb4f40754b1ed3f5c9aa77d578409e0e7ce Author: Tim Harder gentoo org> AuthorDate: Sun Jun 17 09:47:15 2018 +0000 Commit: Tim Harder gentoo org> CommitDate: Sun Jun 17 09:56:58 2018 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1bfcbbb4 sys-apps/pick: version bump to 2.0.2 sys-apps/pick/Manifest | 1 + sys-apps/pick/metadata.xml | 2 +- sys-apps/pick/pick-2.0.2.ebuild | 24 ++++++++++++++++++++++++ 3 files changed, 26 insertions(+), 1 deletion(-) diff --git a/sys-apps/pick/Manifest b/sys-apps/pick/Manifest index 5ea63a333ff..a22fc315417 100644 --- a/sys-apps/pick/Manifest +++ b/sys-apps/pick/Manifest @@ -1 +1,2 @@ DIST pick-2.0.1.tar.gz 108010 BLAKE2B 3fae7cfbbcf6913af9cf695e44f171aef58737038e94c779f0cedbe2e386577b4661cc9a55ad657b1a11873fc06bdb7bdc8eac032b6ca584778fe695f8ad4e68 SHA512 616c7889e2ad5d5bb267f683530327e9e121a678db4bd04d5cd720bb8bd81ae14e6bd83e342b33863ef18bd10943e6bbdef177c9639af513456e0146f9b73226 +DIST pick-2.0.2.tar.gz 132174 BLAKE2B 1f186d7dd0fc628d7a1b5fd41ad8c4b0c81f12c1855418354e77376232beb9fa500f43172d8d75f55972ee2589feafbefa6d777cb2149e4707509df355542744 SHA512 92d74fa62f6c829117c6c3faf6ec39fc5dd66465516be396d21d7b0a92ee10761a1d3f43aa4a454f8d19790ac02a4a1af145139d488344c97a511805c5d6965b diff --git a/sys-apps/pick/metadata.xml b/sys-apps/pick/metadata.xml index 10fe2acf6f3..6eab74ef002 100644 --- a/sys-apps/pick/metadata.xml +++ b/sys-apps/pick/metadata.xml @@ -6,6 +6,6 @@ Tim Harder - calleerlandsson/pick + mptre/pick diff --git a/sys-apps/pick/pick-2.0.2.ebuild b/sys-apps/pick/pick-2.0.2.ebuild new file mode 100644 index 00000000000..54ee9017947 --- /dev/null +++ b/sys-apps/pick/pick-2.0.2.ebuild @@ -0,0 +1,24 @@ +# Copyright 1999-2018 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 + +EAPI=6 + +inherit autotools + +DESCRIPTION="a fuzzy search tool for the command-line" +HOMEPAGE="https://github.com/mptre/pick" +SRC_URI="https://github.com/mptre/pick/releases/download/v${PV}/${P}.tar.gz" + +LICENSE="MIT" +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="" + +RDEPEND="sys-libs/ncurses:0=" +DEPEND="${RDEPEND} + virtual/pkgconfig" + +src_prepare() { + default + eautoreconf +}