diff options
author | 2021-12-27 13:11:59 -0800 | |
---|---|---|
committer | 2021-12-27 13:26:16 -0800 | |
commit | 011d9839787f0918f15b1c8093c0d817e24305cb (patch) | |
tree | 0e8471f354100561cc8a4b0b788ef70e68b7920e /app-shells | |
parent | dev-ada/libadalang-tools: only gnat_2021 (diff) | |
download | gentoo-011d9839787f0918f15b1c8093c0d817e24305cb.tar.gz gentoo-011d9839787f0918f15b1c8093c0d817e24305cb.tar.bz2 gentoo-011d9839787f0918f15b1c8093c0d817e24305cb.zip |
app-text/fzy: rename from app-shells/fzy
Signed-off-by: Georgy Yakovlev <gyakovlev@gentoo.org>
Diffstat (limited to 'app-shells')
-rw-r--r-- | app-shells/fzy/Manifest | 1 | ||||
-rw-r--r-- | app-shells/fzy/files/1.0-cflags.patch | 34 | ||||
-rw-r--r-- | app-shells/fzy/fzy-1.0-r1.ebuild | 45 | ||||
-rw-r--r-- | app-shells/fzy/fzy-9999.ebuild | 44 | ||||
-rw-r--r-- | app-shells/fzy/metadata.xml | 23 |
5 files changed, 0 insertions, 147 deletions
diff --git a/app-shells/fzy/Manifest b/app-shells/fzy/Manifest deleted file mode 100644 index a56ac8104276..000000000000 --- a/app-shells/fzy/Manifest +++ /dev/null @@ -1 +0,0 @@ -DIST fzy-1.0.tar.gz 47432 BLAKE2B 5fef7061c797e63dabc3f77daf3dbc8a58671c257430dc8ba4680363a9ace5722562fc7e0aba618d53820e703b261dbe0182638f16223d1202080450a6c21ec2 SHA512 de5ed1af035260f4ae550c53b08c4ff302c978350784cbfd2981d1691f55d9c0f26b9333c74adea939b3f4578dd47e66ee99112e10afc5497c64011827d19dbc diff --git a/app-shells/fzy/files/1.0-cflags.patch b/app-shells/fzy/files/1.0-cflags.patch deleted file mode 100644 index 4805b4814a45..000000000000 --- a/app-shells/fzy/files/1.0-cflags.patch +++ /dev/null @@ -1,34 +0,0 @@ -From 89b4a0437dce6f99de80482d484b3e0346067889 Mon Sep 17 00:00:00 2001 -From: Georgy Yakovlev <gyakovlev@gentoo.org> -Date: Fri, 24 Apr 2020 19:12:16 -0700 -Subject: [PATCH] cflags - ---- - Makefile | 4 ++-- - 1 file changed, 2 insertions(+), 2 deletions(-) - -diff --git a/Makefile b/Makefile -index 2d23118..713daad 100644 ---- a/Makefile -+++ b/Makefile -@@ -1,7 +1,7 @@ - VERSION=1.0 - - CPPFLAGS=-DVERSION=\"${VERSION}\" -D_GNU_SOURCE --CFLAGS+=-Wall -Wextra -g -std=c99 -O3 -pedantic -Ideps -+CFLAGS+=-Wall -Wextra -std=c99 -pedantic -Ideps - PREFIX?=/usr/local - MANDIR?=$(PREFIX)/share/man - BINDIR?=$(PREFIX)/bin -@@ -29,7 +29,7 @@ check: test/fzytest - $(DEBUGGER) ./test/fzytest - - fzy: $(OBJECTS) -- $(CC) $(CFLAGS) $(CCFLAGS) -o $@ $(OBJECTS) $(LIBS) -+ $(CC) $(CFLAGS) $(CCFLAGS) $(LDFLAGS) -o $@ $(OBJECTS) $(LIBS) - - %.o: %.c config.h - $(CC) $(CPPFLAGS) $(CFLAGS) -c -o $@ $< --- -2.26.2 - diff --git a/app-shells/fzy/fzy-1.0-r1.ebuild b/app-shells/fzy/fzy-1.0-r1.ebuild deleted file mode 100644 index 2e74b46c1a85..000000000000 --- a/app-shells/fzy/fzy-1.0-r1.ebuild +++ /dev/null @@ -1,45 +0,0 @@ -# Copyright 1999-2021 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=6 - -inherit optfeature 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/${PN}/releases/download/${PV}/${P}.tar.gz" - KEYWORDS="amd64 arm arm64 ppc64 ~riscv x86" -fi - -DESCRIPTION="Fuzzy text selector (interactive grep) for console" -HOMEPAGE="https://github.com/jhawthorn/fzy" - -LICENSE="MIT" -SLOT="0" -IUSE="test" -RESTRICT="!test? ( test )" - -PATCHES=( "${FILESDIR}"/1.0-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 - dobin contrib/fzy-tmux - dobin contrib/fzy-dvtm - einstalldocs - save_config config.h -} - -pkg_postinst() { - savedconfig_pkg_postinst - optfeature "opening search results in dvtm pane with provided ${EPREFIX}/usr/bin/fzy-dvtm" app-misc/dvtm - optfeature "opening search results in tmux pane with provided ${EPREFIX}/usr/bin/fzy-tmux" app-misc/tmux -} diff --git a/app-shells/fzy/fzy-9999.ebuild b/app-shells/fzy/fzy-9999.ebuild deleted file mode 100644 index 702455296c5c..000000000000 --- a/app-shells/fzy/fzy-9999.ebuild +++ /dev/null @@ -1,44 +0,0 @@ -# Copyright 1999-2021 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 - -inherit optfeature 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/${PN}/releases/download/${PV}/${P}.tar.gz" - KEYWORDS="~amd64 ~arm ~arm64 ~riscv ~x86" -fi - -DESCRIPTION="Fuzzy text selector (interactive grep) for console" -HOMEPAGE="https://github.com/jhawthorn/fzy" - -LICENSE="MIT" -SLOT="0" -IUSE="test" -RESTRICT="!test? ( test )" - -src_prepare() { - default - restore_config config.h - tc-export CC - sed -i 's/$(LIBS)/$(LIBS) $(LDFLAGS)/g' Makefile || die -} - -src_install() { - local DOCS=( ALGORITHM.md CHANGELOG.md README.md ) - emake DESTDIR="${D}" PREFIX="${EPREFIX}"/usr install - dobin contrib/fzy-tmux - dobin contrib/fzy-dvtm - einstalldocs - save_config config.h -} - -pkg_postinst() { - savedconfig_pkg_postinst - optfeature "opening search results in dvtm pane with provided ${EPREFIX}/usr/bin/fzy-dvtm" app-misc/dvtm - optfeature "opening search results in tmux pane with provided ${EPREFIX}/usr/bin/fzy-tmux" app-misc/tmux -} diff --git a/app-shells/fzy/metadata.xml b/app-shells/fzy/metadata.xml deleted file mode 100644 index 77fefea822bc..000000000000 --- a/app-shells/fzy/metadata.xml +++ /dev/null @@ -1,23 +0,0 @@ -<?xml version="1.0" encoding="UTF-8"?> -<!DOCTYPE pkgmetadata SYSTEM "https://www.gentoo.org/dtd/metadata.dtd"> -<pkgmetadata> - <maintainer type="person"> - <email>gyakovlev@gentoo.org</email> - <name>Georgy Yakovlev</name> - </maintainer> - <maintainer type="project"> - <email>shell-tools@gentoo.org</email> - <name>Gentoo Shell Tools Project</name> - </maintainer> - <longdescription lang="en"> - Fuzzy text selector (interactive grep) for console. - It can be used to filter any list: - files, command history, processes, hostnames, bookmarks, git commits, etc. - It's designed to be used both as an editor plugin and on the command line. - Rather than clearing the screen, fzy displays its interface directly below - the current cursor position, scrolling the screen if necessary. - </longdescription> - <upstream> - <remote-id type="github">jhawthorn/fzy</remote-id> - </upstream> -</pkgmetadata> |