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 5AE211396D9 for ; Sun, 15 Oct 2017 21:17:53 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id CF9512BC00A; Sun, 15 Oct 2017 21:17:52 +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 AB3162BC00A for ; Sun, 15 Oct 2017 21:17:52 +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 DA0E833BEBE for ; Sun, 15 Oct 2017 21:17:51 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 663CD30D for ; Sun, 15 Oct 2017 21:17:50 +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: <1508102256.8b2ac0bd3a0eee4327cb657b39cbd0007bdc9f61.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-1.23.ebuild X-VCS-Directories: app-shells/hstr/ X-VCS-Committer: monsieurp X-VCS-Committer-Name: Patrice Clement X-VCS-Revision: 8b2ac0bd3a0eee4327cb657b39cbd0007bdc9f61 X-VCS-Branch: master Date: Sun, 15 Oct 2017 21:17:50 +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-Archives-Salt: 44ce35f8-cfec-4acb-9582-313cad90058c X-Archives-Hash: 791530dd458f3368e3f6bcabdb622659 commit: 8b2ac0bd3a0eee4327cb657b39cbd0007bdc9f61 Author: Patrice Clement gentoo org> AuthorDate: Sun Oct 15 21:17:36 2017 +0000 Commit: Patrice Clement gentoo org> CommitDate: Sun Oct 15 21:17:36 2017 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8b2ac0bd app-shells/hstr: version bump. Package-Manager: Portage-2.3.8, Repoman-2.3.3 app-shells/hstr/Manifest | 1 + app-shells/hstr/hstr-1.23.ebuild | 30 ++++++++++++++++++++++++++++++ 2 files changed, 31 insertions(+) diff --git a/app-shells/hstr/Manifest b/app-shells/hstr/Manifest index 78beec0f65c..7651c4b3400 100644 --- a/app-shells/hstr/Manifest +++ b/app-shells/hstr/Manifest @@ -1 +1,2 @@ DIST hstr-1.22.tar.gz 46487 SHA256 c4995e7041dc66e2118f83bd4c6c7f4cff5b4c493ca28bd7e4aef76edeff71ba SHA512 5f31434410963c236f4e0d1117f09849b0a391d4173924d9eb2b2ddb9977a8bcb5a0c9b2e01045b618d01dfbcebd9c5db41534cb6abbb024a3515d5994b442cd WHIRLPOOL 30c6e42c91eebbcf55d6e8d89921d0760e3bda8e84ece0e2ccc7ef6be51dae15806f3db434b79a3afa4e8a9ebe63462fa927cc305c7a8d89a5d0651aa342493e +DIST hstr-1.23.tar.gz 47239 SHA256 f435b4fce473e966fe52d3c27ca9074df0925a236b01517ece022607b889af33 SHA512 234c72587d0492d788b1c001b5e53f74820790a9ebe670e8abd28cd82fc7db65996d54160e675055be54cab110686838fe6e36dbefe0fbef9175613633bc5910 WHIRLPOOL c5d247efe07ad84aa8a09a75366cf943a04ad92a340962dfe944e3e6b43da81e7d76653309982e79c2a58229b8f0f426d782642b538eb4983968184eada68738 diff --git a/app-shells/hstr/hstr-1.23.ebuild b/app-shells/hstr/hstr-1.23.ebuild new file mode 100644 index 00000000000..8c05b341c62 --- /dev/null +++ b/app-shells/hstr/hstr-1.23.ebuild @@ -0,0 +1,30 @@ +# Copyright 1999-2017 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 + +EAPI=6 + +inherit autotools + +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=" + +DEPEND=" + ${RDEPEND} + virtual/pkgconfig" + +DOCS=( CONFIGURATION.md README.md ) + +src_prepare() { + default + sed \ + -e 's:-O2::g' \ + -i src/Makefile.am || die + eautoreconf +}