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: Wed, 01 Jul 2020 06:17:18
Message-Id: 1593584228.89eca7a92d0b356f50b6f2e97d1665ab6a05a320.monsieurp@gentoo
1 commit: 89eca7a92d0b356f50b6f2e97d1665ab6a05a320
2 Author: Patrice Clement <monsieurp <AT> gentoo <DOT> org>
3 AuthorDate: Wed Jul 1 06:13:20 2020 +0000
4 Commit: Patrice Clement <monsieurp <AT> gentoo <DOT> org>
5 CommitDate: Wed Jul 1 06:17:08 2020 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=89eca7a9
7
8 app-shells/hstr: version and EAPI 7 bump.
9
10 Package-Manager: Portage-2.3.99, Repoman-2.3.23
11 Signed-off-by: Patrice Clement <monsieurp <AT> gentoo.org>
12
13 app-shells/hstr/Manifest | 1 +
14 app-shells/hstr/hstr-2.2.ebuild | 33 +++++++++++++++++++++++++++++++++
15 2 files changed, 34 insertions(+)
16
17 diff --git a/app-shells/hstr/Manifest b/app-shells/hstr/Manifest
18 index 602b85af6a4..826da852236 100644
19 --- a/app-shells/hstr/Manifest
20 +++ b/app-shells/hstr/Manifest
21 @@ -1,2 +1,3 @@
22 DIST hstr-2.0.tar.gz 1242802 BLAKE2B 24f1a870e6aa12b6544a38601c6bc654e01aa1a185c4f7735559aa3220ed8d9fb840e298526b9e4a177000f2ec5c08caee5da97e13783e4114bde5276ee1e85e SHA512 50d5e8e61aa853dab0093f4225d3329e98bc59609d8d59abf832cd4cb616d78a2fa091d1ad8d16f3543276c4ead95a419f33a13a96f423bf93dc648da32740b7
23 DIST hstr-2.1.tar.gz 1244067 BLAKE2B aa37f26a5ba8ee465a03212cc80e55b9581e59cbb535f17fda8e59bed062f0b0065d456d8566927c089595b92270b83235f0bf73f26ac88704bd933c1926cd5b SHA512 ea217ac2b6dcb7e283f83d15524b47f88c5c8cfb82e5728537750a2ec8526f03304503a5bb67970d893e10057aba087aa86a67548aa361c892b6ee3e81903122
24 +DIST hstr-2.2.tar.gz 1246786 BLAKE2B f14091fea391dada79798c957b0b1094aff73b7ab4f8d9fd53c1070924556a7ff59f6f5a2e49b36dcd46ca6f93c5f8cd0fcfef07d5f7458d4bbe021546ccdc7a SHA512 c133edaa63a2be76356c08e52303d4133b11803e3ac6f915566a8d1b4651991b14d43974618061b2fc98c49e21b650ff6b9ac8168512e76566e327f90a550e4a
25
26 diff --git a/app-shells/hstr/hstr-2.2.ebuild b/app-shells/hstr/hstr-2.2.ebuild
27 new file mode 100644
28 index 00000000000..08f0c98ba78
29 --- /dev/null
30 +++ b/app-shells/hstr/hstr-2.2.ebuild
31 @@ -0,0 +1,33 @@
32 +# Copyright 1999-2020 Gentoo Authors
33 +# Distributed under the terms of the GNU General Public License v2
34 +
35 +EAPI=7
36 +
37 +inherit autotools
38 +
39 +DESCRIPTION="Shell history suggest box"
40 +HOMEPAGE="https://github.com/dvorka/hstr http://www.mindforger.com"
41 +SRC_URI="https://github.com/dvorka/hstr/archive/${PV}.tar.gz -> ${P}.tar.gz"
42 +
43 +SLOT="0"
44 +LICENSE="Apache-2.0"
45 +KEYWORDS="~amd64 ~x86"
46 +
47 +RDEPEND="
48 + sys-libs/ncurses:0=[unicode]"
49 +
50 +DEPEND="
51 + ${RDEPEND}
52 + virtual/pkgconfig"
53 +
54 +DOCS=( CONFIGURATION.md README.md )
55 +
56 +PATCHES=( ${FILESDIR}/${PN}-2.0-fix-ncurses-configure.patch )
57 +
58 +src_prepare() {
59 + default
60 + sed \
61 + -e 's:-O2::g' \
62 + -i src/Makefile.am || die
63 + eautoreconf
64 +}