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 0905E1396D0 for ; Thu, 21 Sep 2017 10:22:58 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 3CE1F1FC06B; Thu, 21 Sep 2017 10:22:57 +0000 (UTC) Received: from smtp.gentoo.org (dev.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 17E661FC06B for ; Thu, 21 Sep 2017 10:22:56 +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 8201D3417CF for ; Thu, 21 Sep 2017 10:22:55 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 1FD1672A8 for ; Thu, 21 Sep 2017 10:22:51 +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: <1505989361.8fe76ba6d86539d052025ecbf76709ebfc27da47.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/pick-1.9.0.ebuild X-VCS-Directories: sys-apps/pick/ X-VCS-Committer: radhermit X-VCS-Committer-Name: Tim Harder X-VCS-Revision: 8fe76ba6d86539d052025ecbf76709ebfc27da47 X-VCS-Branch: master Date: Thu, 21 Sep 2017 10:22:51 +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: 92d7e23f-40cf-4f3a-b884-1e8e56cb5acb X-Archives-Hash: 0ada836653752ae7dc9a54032990224b commit: 8fe76ba6d86539d052025ecbf76709ebfc27da47 Author: Tim Harder gentoo org> AuthorDate: Thu Sep 21 10:21:57 2017 +0000 Commit: Tim Harder gentoo org> CommitDate: Thu Sep 21 10:22:41 2017 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8fe76ba6 sys-apps/pick: version bump to 1.9.0 sys-apps/pick/Manifest | 1 + sys-apps/pick/pick-1.9.0.ebuild | 28 ++++++++++++++++++++++++++++ 2 files changed, 29 insertions(+) diff --git a/sys-apps/pick/Manifest b/sys-apps/pick/Manifest index c13ad28b391..4ec06ad1905 100644 --- a/sys-apps/pick/Manifest +++ b/sys-apps/pick/Manifest @@ -1 +1,2 @@ DIST pick-1.8.0.tar.gz 101366 SHA256 7834d3aef9e575ce07414f961d1f024776b49bb23c5dc3b7bb8f6b734131067d SHA512 ed8198dfefeafc1397cdc9f80f8b1b88e7fb813f044ae296b8e6ca2789c8790149d334fdf305bb0e57bb0d42262ad73c4f1e9201132ef059f6b1c289989c3c9f WHIRLPOOL 8cd4617635b7e5e0f3e5cd99e3657cb6f37230a34880275178774bccd081047e38c641e156b0af874176b2d0590ef42aed6f8889e9aa5b295d1143537b22cfe9 +DIST pick-1.9.0.tar.gz 106379 SHA256 97d3f310eb7de44fbe50ad3451c49d859d607fa14acd0c584aafae97eea65267 SHA512 78b799be40f6ba8c312edf7f970d6bd304c6fdf24531182c601ef04465806f5697ffa78015547b8908dd5df57d1c08798b5dc27146eef818425a476fdc247085 WHIRLPOOL a8549e48cf140ba133fe30bc161e11cb479fa1e50f05f67c58a9aac3dfc482bb1837195c9aeea0e4681f452677d17db9d67c8b0b9dde844809bd2afb6fd7ddd7 diff --git a/sys-apps/pick/pick-1.9.0.ebuild b/sys-apps/pick/pick-1.9.0.ebuild new file mode 100644 index 00000000000..88c100aa340 --- /dev/null +++ b/sys-apps/pick/pick-1.9.0.ebuild @@ -0,0 +1,28 @@ +# Copyright 1999-2017 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/calleerlandsson/pick" +SRC_URI="https://github.com/calleerlandsson/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" + +PATCHES=( + "${FILESDIR}"/${PN}-1.8.0-cflags.patch +) + +src_prepare() { + default + eautoreconf +}