Gentoo Archives: gentoo-commits

From: Patrice Clement <monsieurp@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: app-shells/hstr/
Date: Sun, 13 Jun 2021 07:04:39
Message-Id: 1623567869.19e81b2e8a1d9e52533aed51205d6bdf45c9b845.monsieurp@gentoo
1 commit: 19e81b2e8a1d9e52533aed51205d6bdf45c9b845
2 Author: Patrice Clement <monsieurp <AT> gentoo <DOT> org>
3 AuthorDate: Sun Jun 13 07:04:29 2021 +0000
4 Commit: Patrice Clement <monsieurp <AT> gentoo <DOT> org>
5 CommitDate: Sun Jun 13 07:04:29 2021 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=19e81b2e
7
8 app-shells/hstr: drop 2.0
9
10 Signed-off-by: Patrice Clement <monsieurp <AT> gentoo.org>
11
12 app-shells/hstr/Manifest | 1 -
13 app-shells/hstr/hstr-2.0.ebuild | 39 ---------------------------------------
14 2 files changed, 40 deletions(-)
15
16 diff --git a/app-shells/hstr/Manifest b/app-shells/hstr/Manifest
17 index 0996c5cc28d..4f064c3839a 100644
18 --- a/app-shells/hstr/Manifest
19 +++ b/app-shells/hstr/Manifest
20 @@ -1,2 +1 @@
21 -DIST hstr-2.0.tar.gz 1242802 BLAKE2B 24f1a870e6aa12b6544a38601c6bc654e01aa1a185c4f7735559aa3220ed8d9fb840e298526b9e4a177000f2ec5c08caee5da97e13783e4114bde5276ee1e85e SHA512 50d5e8e61aa853dab0093f4225d3329e98bc59609d8d59abf832cd4cb616d78a2fa091d1ad8d16f3543276c4ead95a419f33a13a96f423bf93dc648da32740b7
22 DIST hstr-2.2.tar.gz 1246786 BLAKE2B f14091fea391dada79798c957b0b1094aff73b7ab4f8d9fd53c1070924556a7ff59f6f5a2e49b36dcd46ca6f93c5f8cd0fcfef07d5f7458d4bbe021546ccdc7a SHA512 c133edaa63a2be76356c08e52303d4133b11803e3ac6f915566a8d1b4651991b14d43974618061b2fc98c49e21b650ff6b9ac8168512e76566e327f90a550e4a
23
24 diff --git a/app-shells/hstr/hstr-2.0.ebuild b/app-shells/hstr/hstr-2.0.ebuild
25 deleted file mode 100644
26 index 3c117b21f99..00000000000
27 --- a/app-shells/hstr/hstr-2.0.ebuild
28 +++ /dev/null
29 @@ -1,39 +0,0 @@
30 -# Copyright 1999-2021 Gentoo Authors
31 -# Distributed under the terms of the GNU General Public License v2
32 -
33 -EAPI=6
34 -
35 -inherit autotools toolchain-funcs
36 -
37 -DESCRIPTION="Shell history suggest box"
38 -HOMEPAGE="https://github.com/dvorka/hstr http://www.mindforger.com"
39 -SRC_URI="https://github.com/dvorka/hstr/archive/${PV}.tar.gz -> ${P}.tar.gz"
40 -
41 -SLOT="0"
42 -LICENSE="Apache-2.0"
43 -KEYWORDS="amd64 x86"
44 -
45 -RDEPEND="
46 - sys-libs/ncurses:0=[unicode]"
47 -
48 -DEPEND="
49 - ${RDEPEND}
50 - virtual/pkgconfig"
51 -
52 -DOCS=( CONFIGURATION.md README.md )
53 -
54 -PATCHES=(
55 - "${FILESDIR}"/${P}-fix-ncurses-configure.patch
56 -)
57 -
58 -src_prepare() {
59 - default
60 -
61 - sed \
62 - -e 's:-O2::g' \
63 - -i src/Makefile.am || die
64 -
65 - tc-export PKG_CONFIG
66 -
67 - eautoreconf
68 -}