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 E06221382C5 for ; Sun, 13 Jun 2021 07:04:39 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 2E168E0998; Sun, 13 Jun 2021 07:04:39 +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 0AFC6E0998 for ; Sun, 13 Jun 2021 07:04:39 +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 BEC22340DA4 for ; Sun, 13 Jun 2021 07:04:37 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 2D49C78A for ; Sun, 13 Jun 2021 07:04:36 +0000 (UTC) From: "Patrice Clement" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Patrice Clement" Message-ID: <1623567869.19e81b2e8a1d9e52533aed51205d6bdf45c9b845.monsieurp@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: app-shells/hstr/ X-VCS-Repository: repo/gentoo X-VCS-Files: app-shells/hstr/Manifest app-shells/hstr/hstr-2.0.ebuild X-VCS-Directories: app-shells/hstr/ X-VCS-Committer: monsieurp X-VCS-Committer-Name: Patrice Clement X-VCS-Revision: 19e81b2e8a1d9e52533aed51205d6bdf45c9b845 X-VCS-Branch: master Date: Sun, 13 Jun 2021 07:04:36 +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: 111af57b-3ac1-41c6-bf39-db8cab45b2b2 X-Archives-Hash: 77fa4d974e224dd262aa861572614657 commit: 19e81b2e8a1d9e52533aed51205d6bdf45c9b845 Author: Patrice Clement gentoo org> AuthorDate: Sun Jun 13 07:04:29 2021 +0000 Commit: Patrice Clement gentoo org> CommitDate: Sun Jun 13 07:04:29 2021 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=19e81b2e app-shells/hstr: drop 2.0 Signed-off-by: Patrice Clement gentoo.org> app-shells/hstr/Manifest | 1 - app-shells/hstr/hstr-2.0.ebuild | 39 --------------------------------------- 2 files changed, 40 deletions(-) diff --git a/app-shells/hstr/Manifest b/app-shells/hstr/Manifest index 0996c5cc28d..4f064c3839a 100644 --- a/app-shells/hstr/Manifest +++ b/app-shells/hstr/Manifest @@ -1,2 +1 @@ -DIST hstr-2.0.tar.gz 1242802 BLAKE2B 24f1a870e6aa12b6544a38601c6bc654e01aa1a185c4f7735559aa3220ed8d9fb840e298526b9e4a177000f2ec5c08caee5da97e13783e4114bde5276ee1e85e SHA512 50d5e8e61aa853dab0093f4225d3329e98bc59609d8d59abf832cd4cb616d78a2fa091d1ad8d16f3543276c4ead95a419f33a13a96f423bf93dc648da32740b7 DIST hstr-2.2.tar.gz 1246786 BLAKE2B f14091fea391dada79798c957b0b1094aff73b7ab4f8d9fd53c1070924556a7ff59f6f5a2e49b36dcd46ca6f93c5f8cd0fcfef07d5f7458d4bbe021546ccdc7a SHA512 c133edaa63a2be76356c08e52303d4133b11803e3ac6f915566a8d1b4651991b14d43974618061b2fc98c49e21b650ff6b9ac8168512e76566e327f90a550e4a diff --git a/app-shells/hstr/hstr-2.0.ebuild b/app-shells/hstr/hstr-2.0.ebuild deleted file mode 100644 index 3c117b21f99..00000000000 --- a/app-shells/hstr/hstr-2.0.ebuild +++ /dev/null @@ -1,39 +0,0 @@ -# Copyright 1999-2021 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=6 - -inherit autotools toolchain-funcs - -DESCRIPTION="Shell history suggest box" -HOMEPAGE="https://github.com/dvorka/hstr http://www.mindforger.com" -SRC_URI="https://github.com/dvorka/hstr/archive/${PV}.tar.gz -> ${P}.tar.gz" - -SLOT="0" -LICENSE="Apache-2.0" -KEYWORDS="amd64 x86" - -RDEPEND=" - sys-libs/ncurses:0=[unicode]" - -DEPEND=" - ${RDEPEND} - virtual/pkgconfig" - -DOCS=( CONFIGURATION.md README.md ) - -PATCHES=( - "${FILESDIR}"/${P}-fix-ncurses-configure.patch -) - -src_prepare() { - default - - sed \ - -e 's:-O2::g' \ - -i src/Makefile.am || die - - tc-export PKG_CONFIG - - eautoreconf -}