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, 08 Feb 2017 23:37:09
Message-Id: 1486597015.6067333c0add185321283acfba2664ca6d69bea1.monsieurp@gentoo
1 commit: 6067333c0add185321283acfba2664ca6d69bea1
2 Author: Bláithín Nic Aoidh <blawheen <AT> gmail <DOT> com>
3 AuthorDate: Sat Feb 4 01:29:29 2017 +0000
4 Commit: Patrice Clement <monsieurp <AT> gentoo <DOT> org>
5 CommitDate: Wed Feb 8 23:36:55 2017 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6067333c
7
8 app-shells/hstr-1.22: version bump.
9
10 Closes: https://github.com/gentoo/gentoo/pull/3795
11
12 app-shells/hstr/Manifest | 1 +
13 app-shells/hstr/hstr-1.22.ebuild | 45 ++++++++++++++++++++++++++++++++++++++++
14 2 files changed, 46 insertions(+)
15
16 diff --git a/app-shells/hstr/Manifest b/app-shells/hstr/Manifest
17 index d3db61fe0d..fd1351436c 100644
18 --- a/app-shells/hstr/Manifest
19 +++ b/app-shells/hstr/Manifest
20 @@ -1 +1,2 @@
21 DIST hstr-1.21.tar.gz 45851 SHA256 f0e9762f2a9587f0995bbd51cb64526ae852c2425ceb8ceee0747efba80ac6b3 SHA512 dbcb8766ca7f5ca2265f30726c451b9fe9a51d9dc7a08293fae1e9eb5cb2f562a5a9fa96fa90bd703ae3db0446628c884349c636060fbebd97bd7413a5c6e4d0 WHIRLPOOL 33cc21efe738efe7dd2bccf7c7fc7b79e6b0fb9bca0d458232a44695a0c422aa6184962ea69964e5b8e22a73aa7c54dc859dbb9666ab8b0e48abfeb6d8c72afd
22 +DIST hstr-1.22.tar.gz 46487 SHA256 c4995e7041dc66e2118f83bd4c6c7f4cff5b4c493ca28bd7e4aef76edeff71ba SHA512 5f31434410963c236f4e0d1117f09849b0a391d4173924d9eb2b2ddb9977a8bcb5a0c9b2e01045b618d01dfbcebd9c5db41534cb6abbb024a3515d5994b442cd WHIRLPOOL 30c6e42c91eebbcf55d6e8d89921d0760e3bda8e84ece0e2ccc7ef6be51dae15806f3db434b79a3afa4e8a9ebe63462fa927cc305c7a8d89a5d0651aa342493e
23
24 diff --git a/app-shells/hstr/hstr-1.22.ebuild b/app-shells/hstr/hstr-1.22.ebuild
25 new file mode 100644
26 index 0000000000..e6d461524b
27 --- /dev/null
28 +++ b/app-shells/hstr/hstr-1.22.ebuild
29 @@ -0,0 +1,45 @@
30 +# Copyright 1999-2017 Gentoo Foundation
31 +# Distributed under the terms of the GNU General Public License v2
32 +# $Id$
33 +
34 +EAPI=6
35 +
36 +inherit autotools multilib-minimal
37 +
38 +DESCRIPTION="shell history suggest box"
39 +HOMEPAGE="https://github.com/dvorka/hstr http://www.mindforger.com"
40 +SRC_URI="https://github.com/dvorka/hstr/archive/${PV}.tar.gz -> ${P}.tar.gz"
41 +
42 +SLOT="0"
43 +LICENSE="Apache-2.0"
44 +KEYWORDS="~amd64"
45 +IUSE=""
46 +
47 +RDEPEND="
48 + sys-libs/ncurses:0="
49 +
50 +DEPEND="
51 + ${RDEPEND}
52 + virtual/pkgconfig"
53 +
54 +DOCS=( CONFIGURATION.md README.md )
55 +
56 +src_prepare() {
57 + default
58 + sed \
59 + -e 's:-O2::g' \
60 + -i src/Makefile.am || die
61 + eautoreconf
62 +}
63 +
64 +multilib_src_configure() {
65 + ECONF_SOURCE="${S}" econf
66 +}
67 +
68 +src_compile() {
69 + multilib-minimal_src_compile
70 +}
71 +
72 +src_install() {
73 + multilib-minimal_src_install
74 +}