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 CA5FC138334 for ; Sun, 1 Jul 2018 05:01:05 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id A1B3CE0845; Sun, 1 Jul 2018 05:01:04 +0000 (UTC) Received: from smtp.gentoo.org (dev.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (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 643D5E0845 for ; Sun, 1 Jul 2018 05:01:04 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (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 5AE4F335C81 for ; Sun, 1 Jul 2018 05:01:02 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 2E2422CE for ; Sun, 1 Jul 2018 05:01:00 +0000 (UTC) From: "Georgy Yakovlev" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Georgy Yakovlev" Message-ID: <1530421233.13d5af8ebb7511bc377ce696556ff99db55b3b76.gyakovlev@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: app-shells/fzy/ X-VCS-Repository: repo/gentoo X-VCS-Files: app-shells/fzy/fzy-9999.ebuild X-VCS-Directories: app-shells/fzy/ X-VCS-Committer: gyakovlev X-VCS-Committer-Name: Georgy Yakovlev X-VCS-Revision: 13d5af8ebb7511bc377ce696556ff99db55b3b76 X-VCS-Branch: master Date: Sun, 1 Jul 2018 05:01:00 +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: c0710c4a-b7d2-45c0-ae61-7f57e53a3b06 X-Archives-Hash: 12cf495115dc9e7e1babab1878728d04 commit: 13d5af8ebb7511bc377ce696556ff99db55b3b76 Author: Georgy Yakovlev gentoo org> AuthorDate: Sun Jul 1 04:55:41 2018 +0000 Commit: Georgy Yakovlev gentoo org> CommitDate: Sun Jul 1 05:00:33 2018 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=13d5af8e app-shells/fzy: add live ebuild Package-Manager: Portage-2.3.41, Repoman-2.3.9 app-shells/fzy/fzy-9999.ebuild | 39 +++++++++++++++++++++++++++++++++++++++ 1 file changed, 39 insertions(+) diff --git a/app-shells/fzy/fzy-9999.ebuild b/app-shells/fzy/fzy-9999.ebuild new file mode 100644 index 00000000000..bbf7b6adbe5 --- /dev/null +++ b/app-shells/fzy/fzy-9999.ebuild @@ -0,0 +1,39 @@ +# Copyright 1999-2018 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 + +EAPI=6 + +inherit savedconfig toolchain-funcs + +if [[ ${PV} == 9999 ]]; then + inherit git-r3 + EGIT_REPO_URI="https://github.com/jhawthorn/fzy.git" +else + SRC_URI="https://github.com/jhawthorn/fzy/archive/${PV}.tar.gz -> ${P}.tar.gz" + KEYWORDS="~amd64 ~x86" +fi + +DESCRIPTION="Fuzzy text selector (interactive grep) for console" +HOMEPAGE="https://github.com/jhawthorn/fzy" + +LICENSE="MIT" +SLOT="0" +IUSE="test" + +PATCHES=( "${FILESDIR}"/fzy-0.9-cflags.patch ) + +src_prepare() { + default + restore_config config.h + tc-export CC +} + +src_install() { + local DOCS=( ALGORITHM.md CHANGELOG.md README.md ) + emake DESTDIR="${D}" PREFIX="${EPREFIX}"/usr install + exeinto /usr/share/fzy + doexe contrib/fzy-tmux + doexe contrib/fzy-dvtm + einstalldocs + save_config config.h +}