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 3BC8E1382C5 for ; Tue, 16 Mar 2021 19:57:13 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 4F881E0863; Tue, 16 Mar 2021 19:57:12 +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 37234E0863 for ; Tue, 16 Mar 2021 19:57:12 +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 02D94340EBA for ; Tue, 16 Mar 2021 19:57:10 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 24B095CE for ; Tue, 16 Mar 2021 19:57:06 +0000 (UTC) From: "Sam James" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Sam James" Message-ID: <1615924567.47a78b3272246fa1e17a17c29b1e763d75aedac9.sam@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-3.0.1.ebuild X-VCS-Directories: sys-apps/pick/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: 47a78b3272246fa1e17a17c29b1e763d75aedac9 X-VCS-Branch: master Date: Tue, 16 Mar 2021 19:57:06 +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: 48fbfd6d-a1bf-4bea-9124-28cce2498cd0 X-Archives-Hash: 02ff44b9e4dfa57b287085ce89b26fc1 commit: 47a78b3272246fa1e17a17c29b1e763d75aedac9 Author: Sam James gentoo org> AuthorDate: Tue Mar 16 19:37:48 2021 +0000 Commit: Sam James gentoo org> CommitDate: Tue Mar 16 19:56:07 2021 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=47a78b32 sys-apps/pick: drop 3.0.1 Signed-off-by: Sam James gentoo.org> sys-apps/pick/Manifest | 1 - sys-apps/pick/pick-3.0.1.ebuild | 33 --------------------------------- 2 files changed, 34 deletions(-) diff --git a/sys-apps/pick/Manifest b/sys-apps/pick/Manifest index f15d007fff6..74e1ecb19fe 100644 --- a/sys-apps/pick/Manifest +++ b/sys-apps/pick/Manifest @@ -1,2 +1 @@ -DIST pick-3.0.1.tar.gz 29878 BLAKE2B 8910bf726102802a76717ecc20360882c1c25bc346324c33173eb64872066ff284636557bf10a98a6cfbecc50dd4c8cd87b68aa924b976b072e5fead8989e316 SHA512 7448e7937640f69d397bd1bd48526865b8866a8f47eb04b7af918df992f36b6e932a1cb68e845f9262faa9c88c1afcb354368b7e1c6b1dd8503aafdb53e4b70f DIST pick-4.0.0.tar.gz 29786 BLAKE2B c1d119cfb5dd91bd3c71171d32a6ce92d06ab8ea1cfa5a40c042448b7b90ef5d24c02dc04962b24ef91fd3ea5cb56858b231901c7035f47e2c04682f99e5c61e SHA512 690f8ee174f69ec5897831b71f22bc82dbdaf71329e2b540cfb06e49963231196efe6192d1f564c1c7029c7335736d42f02483850ccbb2bd5bcd1dc52b034f56 diff --git a/sys-apps/pick/pick-3.0.1.ebuild b/sys-apps/pick/pick-3.0.1.ebuild deleted file mode 100644 index 7bdaff98632..00000000000 --- a/sys-apps/pick/pick-3.0.1.ebuild +++ /dev/null @@ -1,33 +0,0 @@ -# Copyright 1999-2020 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 - -inherit autotools toolchain-funcs - -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_configure() { - # not autoconf - ./configure || die -} - -src_compile() { - emake CC="$(tc-getCC)" -} - -src_install() { - emake DESTDIR="${ED}" BINDIR=/usr/bin MANDIR=/usr/share/man install - dodoc CHANGELOG.md -}