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 C6D56139694 for ; Sat, 18 Feb 2017 08:56:22 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 084A421C060; Sat, 18 Feb 2017 08:56:22 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id DA85F21C060 for ; Sat, 18 Feb 2017 08:56:21 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 004A1340C9F for ; Sat, 18 Feb 2017 08:56:21 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 956654BEA for ; Sat, 18 Feb 2017 08:56:19 +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: <1487408177.fccb7163a0235981dc13f7516f9b47a47468d92a.monsieurp@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: app-shells/hstr/ X-VCS-Repository: repo/gentoo X-VCS-Files: app-shells/hstr/hstr-1.22-r1.ebuild X-VCS-Directories: app-shells/hstr/ X-VCS-Committer: monsieurp X-VCS-Committer-Name: Patrice Clement X-VCS-Revision: fccb7163a0235981dc13f7516f9b47a47468d92a X-VCS-Branch: master Date: Sat, 18 Feb 2017 08:56:19 +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: 5c963a3d-287c-4528-a0ab-d1d2b677f0a7 X-Archives-Hash: ca4e46eeb91b8396d3e557eac68a97b0 commit: fccb7163a0235981dc13f7516f9b47a47468d92a Author: Patrice Clement gentoo org> AuthorDate: Sat Feb 18 08:55:52 2017 +0000 Commit: Patrice Clement gentoo org> CommitDate: Sat Feb 18 08:56:17 2017 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=fccb7163 app-shells/hstr: drop multilib support and add back x86 platform. Gentoo-Bug: https://bugs.gentoo.org/603064 Package-Manager: portage-2.3.3 app-shells/hstr/hstr-1.22-r1.ebuild | 32 ++++++++++++++++++++++++++++++++ 1 file changed, 32 insertions(+) diff --git a/app-shells/hstr/hstr-1.22-r1.ebuild b/app-shells/hstr/hstr-1.22-r1.ebuild new file mode 100644 index 0000000000..c4ce795287 --- /dev/null +++ b/app-shells/hstr/hstr-1.22-r1.ebuild @@ -0,0 +1,32 @@ +# Copyright 1999-2017 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +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 +}