public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] repo/proj/guru:master commit in: app-shells/fzf-tab/
@ 2022-04-06  0:07 Ronny Gutbrod
  0 siblings, 0 replies; 9+ messages in thread
From: Ronny Gutbrod @ 2022-04-06  0:07 UTC (permalink / raw
  To: gentoo-commits

commit:     1a314c892275790953db9aaaab7314bb899da76e
Author:     Ronny (tastytea) Gutbrod <gentoo <AT> tastytea <DOT> de>
AuthorDate: Tue Apr  5 21:01:03 2022 +0000
Commit:     Ronny Gutbrod <gentoo <AT> tastytea <DOT> de>
CommitDate: Tue Apr  5 21:26:31 2022 +0000
URL:        https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=1a314c89

app-shells/fzf-tab: initial import

Signed-off-by: Ronny (tastytea) Gutbrod <gentoo <AT> tastytea.de>

 app-shells/fzf-tab/Manifest                     |  1 +
 app-shells/fzf-tab/fzf-tab-0_pre20220331.ebuild | 75 +++++++++++++++++++++++++
 app-shells/fzf-tab/metadata.xml                 | 11 ++++
 3 files changed, 87 insertions(+)

diff --git a/app-shells/fzf-tab/Manifest b/app-shells/fzf-tab/Manifest
new file mode 100644
index 000000000..159ffd9e3
--- /dev/null
+++ b/app-shells/fzf-tab/Manifest
@@ -0,0 +1 @@
+DIST fzf-tab-0_pre20220331.tar.gz 774324 BLAKE2B 59ef88380952dce19e615faf9317a2b71e414bc8320d47da94d62cdfbe9eed9485e002d55bc987f0bf77ace2c6ed3d875b6d7bd1e020db26f15df97b544da676 SHA512 3a350af319f5dbb4405988c7bf7372ca17710199000a6807e5d5dfdc5bf8d97b2e93c7a668f33c6341687aebc9115fff6fe3bd312d473a34db12de51dc5c703f

diff --git a/app-shells/fzf-tab/fzf-tab-0_pre20220331.ebuild b/app-shells/fzf-tab/fzf-tab-0_pre20220331.ebuild
new file mode 100644
index 000000000..b16dfa3d2
--- /dev/null
+++ b/app-shells/fzf-tab/fzf-tab-0_pre20220331.ebuild
@@ -0,0 +1,75 @@
+# Copyright 2022 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+inherit readme.gentoo-r1
+
+MY_COMMIT="103330fdbeba07416d5f90b391eee680cd20d2d6"
+DESCRIPTION="Replace zsh's default completion selection menu with fzf"
+HOMEPAGE="https://github.com/Aloxaf/fzf-tab"
+SRC_URI="https://github.com/Aloxaf/fzf-tab/archive/${MY_COMMIT}.tar.gz -> ${P}.tar.gz"
+S="${WORKDIR}/${PN}-${MY_COMMIT}"
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="~amd64"
+IUSE="test"
+
+RDEPEND="
+	app-shells/zsh
+	app-shells/fzf
+"
+BDEPEND="
+	test? (
+		app-shells/zsh
+		dev-vcs/git
+	)
+"
+
+RESTRICT="!test? ( test )"
+
+DISABLE_AUTOFORMATTING="true"
+DOC_CONTENTS="In order to use ${CATEGORY}/${PN} add
+. /usr/share/zsh/site-functions/${PN}.zsh
+to your ~/.zshrc after compinit, but before plugins which will wrap
+widgets, such as zsh-autosuggestions or fast-syntax-highlighting"
+
+MY_ZSH_LIBDIR="/usr/share/zsh/site-functions"
+
+src_configure() {
+	# Test fails if we modify FZF_TAB_HOME in place
+	sed -E "s|^FZF_TAB_HOME=\"[^\"]+\"$|FZF_TAB_HOME=\"${MY_ZSH_LIBDIR}/${PN}\"|" \
+		${PN}.zsh > ${PN}-patched.zsh || die "Modifying FZF_TAB_HOME failed"
+
+	pushd modules || die "Changing directory failed"
+	default_src_configure
+}
+
+src_compile() {
+	pushd modules || die "Changing directory failed"
+	default_src_compile
+}
+
+src_test() {
+	pushd test || die "Changing directory failed"
+	ZTST_verbose=1 zsh -f ./runtests.zsh fzftab.ztst || die "One or more tests failed"
+}
+
+src_install() {
+	insinto ${MY_ZSH_LIBDIR}
+	newins ${PN}{-patched,}.zsh
+
+	insinto ${MY_ZSH_LIBDIR}/${PN}
+	doins -r lib
+
+	insinto ${MY_ZSH_LIBDIR}/${PN}/modules/Src/aloxaf
+	doins modules/Src/aloxaf/fzftab.so
+
+	readme.gentoo_create_doc
+	einstalldocs
+}
+
+pkg_postinst() {
+	readme.gentoo_print_elog
+}

diff --git a/app-shells/fzf-tab/metadata.xml b/app-shells/fzf-tab/metadata.xml
new file mode 100644
index 000000000..ece0d47d3
--- /dev/null
+++ b/app-shells/fzf-tab/metadata.xml
@@ -0,0 +1,11 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
+<pkgmetadata>
+	<maintainer type="person">
+		<email>gentoo@tastytea.de</email>
+		<name>Ronny (tastytea) Gutbrod</name>
+	</maintainer>
+	<upstream>
+		<remote-id type="github">Aloxaf/fzf-tab</remote-id>
+	</upstream>
+</pkgmetadata>


^ permalink raw reply related	[flat|nested] 9+ messages in thread

* [gentoo-commits] repo/proj/guru:master commit in: app-shells/fzf-tab/
@ 2022-04-06 21:25 Ronny Gutbrod
  0 siblings, 0 replies; 9+ messages in thread
From: Ronny Gutbrod @ 2022-04-06 21:25 UTC (permalink / raw
  To: gentoo-commits

commit:     64951fbc93db511b36e33f932282f9d0ef0ab25b
Author:     Ronny (tastytea) Gutbrod <gentoo <AT> tastytea <DOT> de>
AuthorDate: Wed Apr  6 19:45:59 2022 +0000
Commit:     Ronny Gutbrod <gentoo <AT> tastytea <DOT> de>
CommitDate: Wed Apr  6 19:47:00 2022 +0000
URL:        https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=64951fbc

app-shells/fzf-tab: drop 0_pre20220331

Signed-off-by: Ronny (tastytea) Gutbrod <gentoo <AT> tastytea.de>

 app-shells/fzf-tab/fzf-tab-0_pre20220331.ebuild | 75 -------------------------
 1 file changed, 75 deletions(-)

diff --git a/app-shells/fzf-tab/fzf-tab-0_pre20220331.ebuild b/app-shells/fzf-tab/fzf-tab-0_pre20220331.ebuild
deleted file mode 100644
index b16dfa3d2..000000000
--- a/app-shells/fzf-tab/fzf-tab-0_pre20220331.ebuild
+++ /dev/null
@@ -1,75 +0,0 @@
-# Copyright 2022 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-inherit readme.gentoo-r1
-
-MY_COMMIT="103330fdbeba07416d5f90b391eee680cd20d2d6"
-DESCRIPTION="Replace zsh's default completion selection menu with fzf"
-HOMEPAGE="https://github.com/Aloxaf/fzf-tab"
-SRC_URI="https://github.com/Aloxaf/fzf-tab/archive/${MY_COMMIT}.tar.gz -> ${P}.tar.gz"
-S="${WORKDIR}/${PN}-${MY_COMMIT}"
-
-LICENSE="MIT"
-SLOT="0"
-KEYWORDS="~amd64"
-IUSE="test"
-
-RDEPEND="
-	app-shells/zsh
-	app-shells/fzf
-"
-BDEPEND="
-	test? (
-		app-shells/zsh
-		dev-vcs/git
-	)
-"
-
-RESTRICT="!test? ( test )"
-
-DISABLE_AUTOFORMATTING="true"
-DOC_CONTENTS="In order to use ${CATEGORY}/${PN} add
-. /usr/share/zsh/site-functions/${PN}.zsh
-to your ~/.zshrc after compinit, but before plugins which will wrap
-widgets, such as zsh-autosuggestions or fast-syntax-highlighting"
-
-MY_ZSH_LIBDIR="/usr/share/zsh/site-functions"
-
-src_configure() {
-	# Test fails if we modify FZF_TAB_HOME in place
-	sed -E "s|^FZF_TAB_HOME=\"[^\"]+\"$|FZF_TAB_HOME=\"${MY_ZSH_LIBDIR}/${PN}\"|" \
-		${PN}.zsh > ${PN}-patched.zsh || die "Modifying FZF_TAB_HOME failed"
-
-	pushd modules || die "Changing directory failed"
-	default_src_configure
-}
-
-src_compile() {
-	pushd modules || die "Changing directory failed"
-	default_src_compile
-}
-
-src_test() {
-	pushd test || die "Changing directory failed"
-	ZTST_verbose=1 zsh -f ./runtests.zsh fzftab.ztst || die "One or more tests failed"
-}
-
-src_install() {
-	insinto ${MY_ZSH_LIBDIR}
-	newins ${PN}{-patched,}.zsh
-
-	insinto ${MY_ZSH_LIBDIR}/${PN}
-	doins -r lib
-
-	insinto ${MY_ZSH_LIBDIR}/${PN}/modules/Src/aloxaf
-	doins modules/Src/aloxaf/fzftab.so
-
-	readme.gentoo_create_doc
-	einstalldocs
-}
-
-pkg_postinst() {
-	readme.gentoo_print_elog
-}


^ permalink raw reply related	[flat|nested] 9+ messages in thread

* [gentoo-commits] repo/proj/guru:master commit in: app-shells/fzf-tab/
  2022-04-06 19:50 [gentoo-commits] repo/proj/guru:dev " Ronny Gutbrod
@ 2022-04-06 21:25 ` Ronny Gutbrod
  0 siblings, 0 replies; 9+ messages in thread
From: Ronny Gutbrod @ 2022-04-06 21:25 UTC (permalink / raw
  To: gentoo-commits

commit:     1c18c0e5d6da69d999a281f4587d882d6436fa6a
Author:     Ronny (tastytea) Gutbrod <gentoo <AT> tastytea <DOT> de>
AuthorDate: Wed Apr  6 19:43:24 2022 +0000
Commit:     Ronny Gutbrod <gentoo <AT> tastytea <DOT> de>
CommitDate: Wed Apr  6 19:46:54 2022 +0000
URL:        https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=1c18c0e5

app-shells/fzf-tab: Fix FZF_TAB_HOME modification

From absolute to relative path.

Signed-off-by: Ronny (tastytea) Gutbrod <gentoo <AT> tastytea.de>

 app-shells/fzf-tab/fzf-tab-0_pre20220331-r1.ebuild | 75 ++++++++++++++++++++++
 1 file changed, 75 insertions(+)

diff --git a/app-shells/fzf-tab/fzf-tab-0_pre20220331-r1.ebuild b/app-shells/fzf-tab/fzf-tab-0_pre20220331-r1.ebuild
new file mode 100644
index 000000000..4bf956b44
--- /dev/null
+++ b/app-shells/fzf-tab/fzf-tab-0_pre20220331-r1.ebuild
@@ -0,0 +1,75 @@
+# Copyright 2022 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+inherit readme.gentoo-r1
+
+MY_COMMIT="103330fdbeba07416d5f90b391eee680cd20d2d6"
+DESCRIPTION="Replace zsh's default completion selection menu with fzf"
+HOMEPAGE="https://github.com/Aloxaf/fzf-tab"
+SRC_URI="https://github.com/Aloxaf/fzf-tab/archive/${MY_COMMIT}.tar.gz -> ${P}.tar.gz"
+S="${WORKDIR}/${PN}-${MY_COMMIT}"
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="~amd64"
+IUSE="test"
+
+RDEPEND="
+	app-shells/fzf
+	app-shells/zsh
+"
+BDEPEND="
+	test? (
+		app-shells/zsh
+		dev-vcs/git
+	)
+"
+
+RESTRICT="!test? ( test )"
+
+DISABLE_AUTOFORMATTING="true"
+DOC_CONTENTS="In order to use ${CATEGORY}/${PN} add
+. /usr/share/zsh/site-functions/${PN}.zsh
+to your ~/.zshrc after compinit, but before plugins which will wrap
+widgets, such as zsh-autosuggestions or fast-syntax-highlighting"
+
+MY_ZSH_LIBDIR="/usr/share/zsh/site-functions"
+
+src_configure() {
+	# Test fails if we modify FZF_TAB_HOME in place
+	sed -E "s|^(FZF_TAB_HOME=\"[^\"]+)\"$|\1/${PN}\"|" \
+		${PN}.zsh > ${PN}-patched.zsh || die "Modifying FZF_TAB_HOME failed"
+
+	pushd modules || die "Changing directory failed"
+	default_src_configure
+}
+
+src_compile() {
+	pushd modules || die "Changing directory failed"
+	default_src_compile
+}
+
+src_test() {
+	pushd test || die "Changing directory failed"
+	ZTST_verbose=1 zsh -f ./runtests.zsh fzftab.ztst || die "One or more tests failed"
+}
+
+src_install() {
+	insinto ${MY_ZSH_LIBDIR}
+	newins ${PN}{-patched,}.zsh
+
+	insinto ${MY_ZSH_LIBDIR}/${PN}
+	doins -r lib
+
+	insinto ${MY_ZSH_LIBDIR}/${PN}/modules/Src/aloxaf
+	doins modules/Src/aloxaf/fzftab.so
+
+	readme.gentoo_create_doc
+	einstalldocs
+}
+
+pkg_postinst() {
+	readme.gentoo_print_elog
+}


^ permalink raw reply related	[flat|nested] 9+ messages in thread

* [gentoo-commits] repo/proj/guru:master commit in: app-shells/fzf-tab/
@ 2022-09-30  2:12 Haelwenn Monnier
  0 siblings, 0 replies; 9+ messages in thread
From: Haelwenn Monnier @ 2022-09-30  2:12 UTC (permalink / raw
  To: gentoo-commits

commit:     1c2ae1df6ff5441c0b9c036f54ae7195d3a5d52b
Author:     Ronny (tastytea) Gutbrod <gentoo <AT> tastytea <DOT> de>
AuthorDate: Thu Sep 29 14:16:26 2022 +0000
Commit:     Haelwenn Monnier <contact <AT> hacktivis <DOT> me>
CommitDate: Thu Sep 29 14:16:26 2022 +0000
URL:        https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=1c2ae1df

app-shells/fzf-tab: add 0_pre20220815

Signed-off-by: Ronny (tastytea) Gutbrod <gentoo <AT> tastytea.de>

 app-shells/fzf-tab/Manifest                     |  1 +
 app-shells/fzf-tab/fzf-tab-0_pre20220815.ebuild | 75 +++++++++++++++++++++++++
 2 files changed, 76 insertions(+)

diff --git a/app-shells/fzf-tab/Manifest b/app-shells/fzf-tab/Manifest
index 159ffd9e3..a051eae8e 100644
--- a/app-shells/fzf-tab/Manifest
+++ b/app-shells/fzf-tab/Manifest
@@ -1 +1,2 @@
 DIST fzf-tab-0_pre20220331.tar.gz 774324 BLAKE2B 59ef88380952dce19e615faf9317a2b71e414bc8320d47da94d62cdfbe9eed9485e002d55bc987f0bf77ace2c6ed3d875b6d7bd1e020db26f15df97b544da676 SHA512 3a350af319f5dbb4405988c7bf7372ca17710199000a6807e5d5dfdc5bf8d97b2e93c7a668f33c6341687aebc9115fff6fe3bd312d473a34db12de51dc5c703f
+DIST fzf-tab-0_pre20220815.tar.gz 774621 BLAKE2B d945b8a206505972fe23f9339c470386d8cdd3b71336372ccf5bf0599fc0569813bcd577e290323f803e9d99cbfc0c275941a4710ee8dfe45002271cbee89bf0 SHA512 0fa16dbcc755717ae3f7873b5a62da28d620493eaf679f74e5f77187a5253f7c0dab55fbcdfceb0fd895be5e080a773bc1a75670551fc3ef7755ce976fa94591

diff --git a/app-shells/fzf-tab/fzf-tab-0_pre20220815.ebuild b/app-shells/fzf-tab/fzf-tab-0_pre20220815.ebuild
new file mode 100644
index 000000000..94aec83ca
--- /dev/null
+++ b/app-shells/fzf-tab/fzf-tab-0_pre20220815.ebuild
@@ -0,0 +1,75 @@
+# Copyright 2022 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+inherit readme.gentoo-r1
+
+MY_COMMIT="938eef72e93ddb0609205a663bf0783f4e1b5fae"
+DESCRIPTION="Replace zsh's default completion selection menu with fzf"
+HOMEPAGE="https://github.com/Aloxaf/fzf-tab"
+SRC_URI="https://github.com/Aloxaf/fzf-tab/archive/${MY_COMMIT}.tar.gz -> ${P}.tar.gz"
+S="${WORKDIR}/${PN}-${MY_COMMIT}"
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="~amd64"
+IUSE="test"
+
+RDEPEND="
+	app-shells/fzf
+	app-shells/zsh
+"
+BDEPEND="
+	test? (
+		app-shells/zsh
+		dev-vcs/git
+	)
+"
+
+RESTRICT="test" # bug 861638
+
+DISABLE_AUTOFORMATTING="true"
+DOC_CONTENTS="In order to use ${CATEGORY}/${PN} add
+. /usr/share/zsh/site-functions/${PN}.zsh
+to your ~/.zshrc after compinit, but before plugins which will wrap
+widgets, such as zsh-autosuggestions or fast-syntax-highlighting"
+
+src_configure() {
+	# Test fails if we modify FZF_TAB_HOME in place
+	sed -E "s|^(FZF_TAB_HOME=\"[^\"]+)\"$|\1/${PN}\"|" \
+		${PN}.zsh > ${PN}-patched.zsh || die "Modifying FZF_TAB_HOME failed"
+
+	pushd modules || die "Changing directory failed"
+	default_src_configure
+}
+
+src_compile() {
+	pushd modules || die "Changing directory failed"
+	default_src_compile
+}
+
+src_test() {
+	pushd test || die "Changing directory failed"
+	ZTST_verbose=1 zsh -f ./runtests.zsh fzftab.ztst || die "One or more tests failed"
+}
+
+src_install() {
+	local zsh_libdir="/usr/share/zsh/site-functions"
+
+	insinto ${zsh_libdir}
+	newins ${PN}{-patched,}.zsh
+
+	insinto ${zsh_libdir}/${PN}
+	doins -r lib
+
+	insinto ${zsh_libdir}/${PN}/modules/Src/aloxaf
+	doins modules/Src/aloxaf/fzftab.so
+
+	readme.gentoo_create_doc
+	einstalldocs
+}
+
+pkg_postinst() {
+	readme.gentoo_print_elog
+}


^ permalink raw reply related	[flat|nested] 9+ messages in thread

* [gentoo-commits] repo/proj/guru:master commit in: app-shells/fzf-tab/
@ 2022-09-30  2:12 Haelwenn Monnier
  0 siblings, 0 replies; 9+ messages in thread
From: Haelwenn Monnier @ 2022-09-30  2:12 UTC (permalink / raw
  To: gentoo-commits

commit:     16318ed8adffc195bea415389111a3352e3fcc1e
Author:     Ronny (tastytea) Gutbrod <gentoo <AT> tastytea <DOT> de>
AuthorDate: Thu Sep 29 14:17:10 2022 +0000
Commit:     Haelwenn Monnier <contact <AT> hacktivis <DOT> me>
CommitDate: Thu Sep 29 14:17:10 2022 +0000
URL:        https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=16318ed8

app-shells/fzf-tab: disable tests

Bug: https://bugs.gentoo.org/861638
Signed-off-by: Ronny (tastytea) Gutbrod <gentoo <AT> tastytea.de>

 app-shells/fzf-tab/fzf-tab-0_pre20220331-r1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/app-shells/fzf-tab/fzf-tab-0_pre20220331-r1.ebuild b/app-shells/fzf-tab/fzf-tab-0_pre20220331-r1.ebuild
index 4bf956b44..70a756649 100644
--- a/app-shells/fzf-tab/fzf-tab-0_pre20220331-r1.ebuild
+++ b/app-shells/fzf-tab/fzf-tab-0_pre20220331-r1.ebuild
@@ -27,7 +27,7 @@ BDEPEND="
 	)
 "
 
-RESTRICT="!test? ( test )"
+RESTRICT="test" # bug 861638
 
 DISABLE_AUTOFORMATTING="true"
 DOC_CONTENTS="In order to use ${CATEGORY}/${PN} add


^ permalink raw reply related	[flat|nested] 9+ messages in thread

* [gentoo-commits] repo/proj/guru:master commit in: app-shells/fzf-tab/
@ 2022-11-26 10:54 Florian Schmaus
  0 siblings, 0 replies; 9+ messages in thread
From: Florian Schmaus @ 2022-11-26 10:54 UTC (permalink / raw
  To: gentoo-commits

commit:     21968dbd1cc3aea59ecbb98ed9cbe44364e24b8a
Author:     Ronny (tastytea) Gutbrod <gentoo <AT> tastytea <DOT> de>
AuthorDate: Thu Nov 24 13:31:18 2022 +0000
Commit:     Florian Schmaus <flow <AT> gentoo <DOT> org>
CommitDate: Thu Nov 24 13:31:18 2022 +0000
URL:        https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=21968dbd

app-shells/fzf-tab: drop 0_pre20220331-r1

Signed-off-by: Ronny (tastytea) Gutbrod <gentoo <AT> tastytea.de>

 app-shells/fzf-tab/Manifest                        |  1 -
 app-shells/fzf-tab/fzf-tab-0_pre20220331-r1.ebuild | 75 ----------------------
 2 files changed, 76 deletions(-)

diff --git a/app-shells/fzf-tab/Manifest b/app-shells/fzf-tab/Manifest
index 84623d867..0a9d2d980 100644
--- a/app-shells/fzf-tab/Manifest
+++ b/app-shells/fzf-tab/Manifest
@@ -1,3 +1,2 @@
-DIST fzf-tab-0_pre20220331.tar.gz 774324 BLAKE2B 59ef88380952dce19e615faf9317a2b71e414bc8320d47da94d62cdfbe9eed9485e002d55bc987f0bf77ace2c6ed3d875b6d7bd1e020db26f15df97b544da676 SHA512 3a350af319f5dbb4405988c7bf7372ca17710199000a6807e5d5dfdc5bf8d97b2e93c7a668f33c6341687aebc9115fff6fe3bd312d473a34db12de51dc5c703f
 DIST fzf-tab-0_pre20220815.tar.gz 774621 BLAKE2B d945b8a206505972fe23f9339c470386d8cdd3b71336372ccf5bf0599fc0569813bcd577e290323f803e9d99cbfc0c275941a4710ee8dfe45002271cbee89bf0 SHA512 0fa16dbcc755717ae3f7873b5a62da28d620493eaf679f74e5f77187a5253f7c0dab55fbcdfceb0fd895be5e080a773bc1a75670551fc3ef7755ce976fa94591
 DIST fzf-tab-0_pre20221124.tar.gz 774711 BLAKE2B eb2b5ade1bc50f1fe06265084fe5b675fa54e85d0b2590b84bb542217c1cffd1d676bba3e279009614da587a302d017dafbd5ed8f349887d23e5f1e93c68fc84 SHA512 b12e21d1cd5752801aa738b9b8b20c2627f15e1f8d8d1e169e4379ee1de662c62c9c1edb8d7c298d71009c3fd9c10c537dae683b4e087934969e0aa116ec9c72

diff --git a/app-shells/fzf-tab/fzf-tab-0_pre20220331-r1.ebuild b/app-shells/fzf-tab/fzf-tab-0_pre20220331-r1.ebuild
deleted file mode 100644
index 70a756649..000000000
--- a/app-shells/fzf-tab/fzf-tab-0_pre20220331-r1.ebuild
+++ /dev/null
@@ -1,75 +0,0 @@
-# Copyright 2022 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-inherit readme.gentoo-r1
-
-MY_COMMIT="103330fdbeba07416d5f90b391eee680cd20d2d6"
-DESCRIPTION="Replace zsh's default completion selection menu with fzf"
-HOMEPAGE="https://github.com/Aloxaf/fzf-tab"
-SRC_URI="https://github.com/Aloxaf/fzf-tab/archive/${MY_COMMIT}.tar.gz -> ${P}.tar.gz"
-S="${WORKDIR}/${PN}-${MY_COMMIT}"
-
-LICENSE="MIT"
-SLOT="0"
-KEYWORDS="~amd64"
-IUSE="test"
-
-RDEPEND="
-	app-shells/fzf
-	app-shells/zsh
-"
-BDEPEND="
-	test? (
-		app-shells/zsh
-		dev-vcs/git
-	)
-"
-
-RESTRICT="test" # bug 861638
-
-DISABLE_AUTOFORMATTING="true"
-DOC_CONTENTS="In order to use ${CATEGORY}/${PN} add
-. /usr/share/zsh/site-functions/${PN}.zsh
-to your ~/.zshrc after compinit, but before plugins which will wrap
-widgets, such as zsh-autosuggestions or fast-syntax-highlighting"
-
-MY_ZSH_LIBDIR="/usr/share/zsh/site-functions"
-
-src_configure() {
-	# Test fails if we modify FZF_TAB_HOME in place
-	sed -E "s|^(FZF_TAB_HOME=\"[^\"]+)\"$|\1/${PN}\"|" \
-		${PN}.zsh > ${PN}-patched.zsh || die "Modifying FZF_TAB_HOME failed"
-
-	pushd modules || die "Changing directory failed"
-	default_src_configure
-}
-
-src_compile() {
-	pushd modules || die "Changing directory failed"
-	default_src_compile
-}
-
-src_test() {
-	pushd test || die "Changing directory failed"
-	ZTST_verbose=1 zsh -f ./runtests.zsh fzftab.ztst || die "One or more tests failed"
-}
-
-src_install() {
-	insinto ${MY_ZSH_LIBDIR}
-	newins ${PN}{-patched,}.zsh
-
-	insinto ${MY_ZSH_LIBDIR}/${PN}
-	doins -r lib
-
-	insinto ${MY_ZSH_LIBDIR}/${PN}/modules/Src/aloxaf
-	doins modules/Src/aloxaf/fzftab.so
-
-	readme.gentoo_create_doc
-	einstalldocs
-}
-
-pkg_postinst() {
-	readme.gentoo_print_elog
-}


^ permalink raw reply related	[flat|nested] 9+ messages in thread

* [gentoo-commits] repo/proj/guru:master commit in: app-shells/fzf-tab/
@ 2022-11-26 10:54 Florian Schmaus
  0 siblings, 0 replies; 9+ messages in thread
From: Florian Schmaus @ 2022-11-26 10:54 UTC (permalink / raw
  To: gentoo-commits

commit:     f49b4e01d13fafb3d342d25db49e31936375cae6
Author:     Ronny (tastytea) Gutbrod <gentoo <AT> tastytea <DOT> de>
AuthorDate: Thu Nov 24 13:30:16 2022 +0000
Commit:     Florian Schmaus <flow <AT> gentoo <DOT> org>
CommitDate: Thu Nov 24 13:30:16 2022 +0000
URL:        https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=f49b4e01

app-shells/fzf-tab: don't run tests without USE=test

Signed-off-by: Ronny (tastytea) Gutbrod <gentoo <AT> tastytea.de>

 app-shells/fzf-tab/fzf-tab-0_pre20221124.ebuild | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/app-shells/fzf-tab/fzf-tab-0_pre20221124.ebuild b/app-shells/fzf-tab/fzf-tab-0_pre20221124.ebuild
index d56b3e63f..cea1aa0b5 100644
--- a/app-shells/fzf-tab/fzf-tab-0_pre20221124.ebuild
+++ b/app-shells/fzf-tab/fzf-tab-0_pre20221124.ebuild
@@ -27,6 +27,8 @@ BDEPEND="
 	)
 "
 
+RESTRICT="!test? ( test )"
+
 DISABLE_AUTOFORMATTING="true"
 DOC_CONTENTS="In order to use ${CATEGORY}/${PN} add
 . /usr/share/zsh/site-functions/${PN}.zsh


^ permalink raw reply related	[flat|nested] 9+ messages in thread

* [gentoo-commits] repo/proj/guru:master commit in: app-shells/fzf-tab/
@ 2024-01-30 11:33 David Roman
  0 siblings, 0 replies; 9+ messages in thread
From: David Roman @ 2024-01-30 11:33 UTC (permalink / raw
  To: gentoo-commits

commit:     43ec8073a54032c5852287b7d37a32f06e0508a3
Author:     tastytea <gentoo <AT> tastytea <DOT> de>
AuthorDate: Mon Jan 29 19:42:39 2024 +0000
Commit:     David Roman <davidroman96 <AT> gmail <DOT> com>
CommitDate: Mon Jan 29 19:50:16 2024 +0000
URL:        https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=43ec8073

app-shells/fzf-tab: add 0_pre20230611

add workaround for >=clang-16

Bug: https://github.com/Aloxaf/fzf-tab/issues/337
Closes: https://bugs.gentoo.org/887281
Closes: https://bugs.gentoo.org/901157
Signed-off-by: tastytea <gentoo <AT> tastytea.de>

 app-shells/fzf-tab/Manifest                     |  1 +
 app-shells/fzf-tab/fzf-tab-0_pre20230611.ebuild | 76 +++++++++++++++++++++++++
 2 files changed, 77 insertions(+)

diff --git a/app-shells/fzf-tab/Manifest b/app-shells/fzf-tab/Manifest
index 0a9d2d9807..0143c2ab0b 100644
--- a/app-shells/fzf-tab/Manifest
+++ b/app-shells/fzf-tab/Manifest
@@ -1,2 +1,3 @@
 DIST fzf-tab-0_pre20220815.tar.gz 774621 BLAKE2B d945b8a206505972fe23f9339c470386d8cdd3b71336372ccf5bf0599fc0569813bcd577e290323f803e9d99cbfc0c275941a4710ee8dfe45002271cbee89bf0 SHA512 0fa16dbcc755717ae3f7873b5a62da28d620493eaf679f74e5f77187a5253f7c0dab55fbcdfceb0fd895be5e080a773bc1a75670551fc3ef7755ce976fa94591
 DIST fzf-tab-0_pre20221124.tar.gz 774711 BLAKE2B eb2b5ade1bc50f1fe06265084fe5b675fa54e85d0b2590b84bb542217c1cffd1d676bba3e279009614da587a302d017dafbd5ed8f349887d23e5f1e93c68fc84 SHA512 b12e21d1cd5752801aa738b9b8b20c2627f15e1f8d8d1e169e4379ee1de662c62c9c1edb8d7c298d71009c3fd9c10c537dae683b4e087934969e0aa116ec9c72
+DIST fzf-tab-0_pre20230611.tar.gz 774797 BLAKE2B 81c1bdb6d5a6fbb2d8ac686821a5b80e953e4cbf4072853190a9c7bb370edc2e87cff1ce17d632c5554f46906335ed1e6cda8ff8c46cb8fbe2177f6da50afc71 SHA512 091fbc1a185a51ee74025d3b431e225ee0d2ffaa1e8c5a7c45ba4fe629ccc335cab118989f2bfc0e143ce3424cc290f97a78ad3da7ae1ed19500c27b6d4e0267

diff --git a/app-shells/fzf-tab/fzf-tab-0_pre20230611.ebuild b/app-shells/fzf-tab/fzf-tab-0_pre20230611.ebuild
new file mode 100644
index 0000000000..5cccc4a221
--- /dev/null
+++ b/app-shells/fzf-tab/fzf-tab-0_pre20230611.ebuild
@@ -0,0 +1,76 @@
+# Copyright 2022,2024 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+inherit flag-o-matic readme.gentoo-r1
+
+MY_COMMIT="c2b4aa5ad2532cca91f23908ac7f00efb7ff09c9"
+DESCRIPTION="Replace zsh's default completion selection menu with fzf"
+HOMEPAGE="https://github.com/Aloxaf/fzf-tab"
+SRC_URI="https://github.com/Aloxaf/fzf-tab/archive/${MY_COMMIT}.tar.gz -> ${P}.tar.gz"
+S="${WORKDIR}/${PN}-${MY_COMMIT}"
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="~amd64"
+IUSE="test"
+
+RDEPEND="
+	app-shells/fzf
+	app-shells/zsh
+"
+BDEPEND="
+	test? (
+		app-shells/zsh
+		dev-vcs/git
+	)
+"
+
+RESTRICT="!test? ( test )"
+
+DISABLE_AUTOFORMATTING="true"
+DOC_CONTENTS="In order to use ${CATEGORY}/${PN} add
+. /usr/share/zsh/site-functions/${PN}.zsh
+to your ~/.zshrc after compinit, but before plugins which will wrap
+widgets, such as zsh-autosuggestions or fast-syntax-highlighting"
+
+src_configure() {
+	# Test fails if we modify FZF_TAB_HOME in place
+	sed -E "s|^(FZF_TAB_HOME=\"[^\"]+)\"$|\1/${PN}\"|" \
+		${PN}.zsh > ${PN}-patched.zsh || die "Modifying FZF_TAB_HOME failed"
+
+	pushd modules || die "Changing directory failed"
+	append-cflags -Wno-error=implicit-function-declaration -Wno-error=implicit-int
+	default_src_configure
+}
+
+src_compile() {
+	pushd modules || die "Changing directory failed"
+	default_src_compile
+}
+
+src_test() {
+	pushd test || die "Changing directory failed"
+	ZTST_verbose=1 zsh -f ./runtests.zsh fzftab.ztst || die "One or more tests failed"
+}
+
+src_install() {
+	local zsh_libdir="/usr/share/zsh/site-functions"
+
+	insinto ${zsh_libdir}
+	newins ${PN}{-patched,}.zsh
+
+	insinto ${zsh_libdir}/${PN}
+	doins -r lib
+
+	insinto ${zsh_libdir}/${PN}/modules/Src/aloxaf
+	doins modules/Src/aloxaf/fzftab.so
+
+	readme.gentoo_create_doc
+	einstalldocs
+}
+
+pkg_postinst() {
+	readme.gentoo_print_elog
+}


^ permalink raw reply related	[flat|nested] 9+ messages in thread

* [gentoo-commits] repo/proj/guru:master commit in: app-shells/fzf-tab/
@ 2024-01-30 11:33 David Roman
  0 siblings, 0 replies; 9+ messages in thread
From: David Roman @ 2024-01-30 11:33 UTC (permalink / raw
  To: gentoo-commits

commit:     1d7707e40c167241973b809778a9d142f41f2e1a
Author:     tastytea <gentoo <AT> tastytea <DOT> de>
AuthorDate: Mon Jan 29 19:44:59 2024 +0000
Commit:     David Roman <davidroman96 <AT> gmail <DOT> com>
CommitDate: Mon Jan 29 19:50:20 2024 +0000
URL:        https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=1d7707e4

app-shells/fzf-tab: drop 0_pre20220815, 0_pre20221124

Signed-off-by: tastytea <gentoo <AT> tastytea.de>

 app-shells/fzf-tab/Manifest                     |  2 -
 app-shells/fzf-tab/fzf-tab-0_pre20220815.ebuild | 75 -------------------------
 app-shells/fzf-tab/fzf-tab-0_pre20221124.ebuild | 75 -------------------------
 3 files changed, 152 deletions(-)

diff --git a/app-shells/fzf-tab/Manifest b/app-shells/fzf-tab/Manifest
index 0143c2ab0b..21a290d1be 100644
--- a/app-shells/fzf-tab/Manifest
+++ b/app-shells/fzf-tab/Manifest
@@ -1,3 +1 @@
-DIST fzf-tab-0_pre20220815.tar.gz 774621 BLAKE2B d945b8a206505972fe23f9339c470386d8cdd3b71336372ccf5bf0599fc0569813bcd577e290323f803e9d99cbfc0c275941a4710ee8dfe45002271cbee89bf0 SHA512 0fa16dbcc755717ae3f7873b5a62da28d620493eaf679f74e5f77187a5253f7c0dab55fbcdfceb0fd895be5e080a773bc1a75670551fc3ef7755ce976fa94591
-DIST fzf-tab-0_pre20221124.tar.gz 774711 BLAKE2B eb2b5ade1bc50f1fe06265084fe5b675fa54e85d0b2590b84bb542217c1cffd1d676bba3e279009614da587a302d017dafbd5ed8f349887d23e5f1e93c68fc84 SHA512 b12e21d1cd5752801aa738b9b8b20c2627f15e1f8d8d1e169e4379ee1de662c62c9c1edb8d7c298d71009c3fd9c10c537dae683b4e087934969e0aa116ec9c72
 DIST fzf-tab-0_pre20230611.tar.gz 774797 BLAKE2B 81c1bdb6d5a6fbb2d8ac686821a5b80e953e4cbf4072853190a9c7bb370edc2e87cff1ce17d632c5554f46906335ed1e6cda8ff8c46cb8fbe2177f6da50afc71 SHA512 091fbc1a185a51ee74025d3b431e225ee0d2ffaa1e8c5a7c45ba4fe629ccc335cab118989f2bfc0e143ce3424cc290f97a78ad3da7ae1ed19500c27b6d4e0267

diff --git a/app-shells/fzf-tab/fzf-tab-0_pre20220815.ebuild b/app-shells/fzf-tab/fzf-tab-0_pre20220815.ebuild
deleted file mode 100644
index 94aec83ca2..0000000000
--- a/app-shells/fzf-tab/fzf-tab-0_pre20220815.ebuild
+++ /dev/null
@@ -1,75 +0,0 @@
-# Copyright 2022 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-inherit readme.gentoo-r1
-
-MY_COMMIT="938eef72e93ddb0609205a663bf0783f4e1b5fae"
-DESCRIPTION="Replace zsh's default completion selection menu with fzf"
-HOMEPAGE="https://github.com/Aloxaf/fzf-tab"
-SRC_URI="https://github.com/Aloxaf/fzf-tab/archive/${MY_COMMIT}.tar.gz -> ${P}.tar.gz"
-S="${WORKDIR}/${PN}-${MY_COMMIT}"
-
-LICENSE="MIT"
-SLOT="0"
-KEYWORDS="~amd64"
-IUSE="test"
-
-RDEPEND="
-	app-shells/fzf
-	app-shells/zsh
-"
-BDEPEND="
-	test? (
-		app-shells/zsh
-		dev-vcs/git
-	)
-"
-
-RESTRICT="test" # bug 861638
-
-DISABLE_AUTOFORMATTING="true"
-DOC_CONTENTS="In order to use ${CATEGORY}/${PN} add
-. /usr/share/zsh/site-functions/${PN}.zsh
-to your ~/.zshrc after compinit, but before plugins which will wrap
-widgets, such as zsh-autosuggestions or fast-syntax-highlighting"
-
-src_configure() {
-	# Test fails if we modify FZF_TAB_HOME in place
-	sed -E "s|^(FZF_TAB_HOME=\"[^\"]+)\"$|\1/${PN}\"|" \
-		${PN}.zsh > ${PN}-patched.zsh || die "Modifying FZF_TAB_HOME failed"
-
-	pushd modules || die "Changing directory failed"
-	default_src_configure
-}
-
-src_compile() {
-	pushd modules || die "Changing directory failed"
-	default_src_compile
-}
-
-src_test() {
-	pushd test || die "Changing directory failed"
-	ZTST_verbose=1 zsh -f ./runtests.zsh fzftab.ztst || die "One or more tests failed"
-}
-
-src_install() {
-	local zsh_libdir="/usr/share/zsh/site-functions"
-
-	insinto ${zsh_libdir}
-	newins ${PN}{-patched,}.zsh
-
-	insinto ${zsh_libdir}/${PN}
-	doins -r lib
-
-	insinto ${zsh_libdir}/${PN}/modules/Src/aloxaf
-	doins modules/Src/aloxaf/fzftab.so
-
-	readme.gentoo_create_doc
-	einstalldocs
-}
-
-pkg_postinst() {
-	readme.gentoo_print_elog
-}

diff --git a/app-shells/fzf-tab/fzf-tab-0_pre20221124.ebuild b/app-shells/fzf-tab/fzf-tab-0_pre20221124.ebuild
deleted file mode 100644
index cea1aa0b57..0000000000
--- a/app-shells/fzf-tab/fzf-tab-0_pre20221124.ebuild
+++ /dev/null
@@ -1,75 +0,0 @@
-# Copyright 2022 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-inherit readme.gentoo-r1
-
-MY_COMMIT="ff0ef4e2ea6de7177f009c9b91082825d38b9b95"
-DESCRIPTION="Replace zsh's default completion selection menu with fzf"
-HOMEPAGE="https://github.com/Aloxaf/fzf-tab"
-SRC_URI="https://github.com/Aloxaf/fzf-tab/archive/${MY_COMMIT}.tar.gz -> ${P}.tar.gz"
-S="${WORKDIR}/${PN}-${MY_COMMIT}"
-
-LICENSE="MIT"
-SLOT="0"
-KEYWORDS="~amd64"
-IUSE="test"
-
-RDEPEND="
-	app-shells/fzf
-	app-shells/zsh
-"
-BDEPEND="
-	test? (
-		app-shells/zsh
-		dev-vcs/git
-	)
-"
-
-RESTRICT="!test? ( test )"
-
-DISABLE_AUTOFORMATTING="true"
-DOC_CONTENTS="In order to use ${CATEGORY}/${PN} add
-. /usr/share/zsh/site-functions/${PN}.zsh
-to your ~/.zshrc after compinit, but before plugins which will wrap
-widgets, such as zsh-autosuggestions or fast-syntax-highlighting"
-
-src_configure() {
-	# Test fails if we modify FZF_TAB_HOME in place
-	sed -E "s|^(FZF_TAB_HOME=\"[^\"]+)\"$|\1/${PN}\"|" \
-		${PN}.zsh > ${PN}-patched.zsh || die "Modifying FZF_TAB_HOME failed"
-
-	pushd modules || die "Changing directory failed"
-	default_src_configure
-}
-
-src_compile() {
-	pushd modules || die "Changing directory failed"
-	default_src_compile
-}
-
-src_test() {
-	pushd test || die "Changing directory failed"
-	ZTST_verbose=1 zsh -f ./runtests.zsh fzftab.ztst || die "One or more tests failed"
-}
-
-src_install() {
-	local zsh_libdir="/usr/share/zsh/site-functions"
-
-	insinto ${zsh_libdir}
-	newins ${PN}{-patched,}.zsh
-
-	insinto ${zsh_libdir}/${PN}
-	doins -r lib
-
-	insinto ${zsh_libdir}/${PN}/modules/Src/aloxaf
-	doins modules/Src/aloxaf/fzftab.so
-
-	readme.gentoo_create_doc
-	einstalldocs
-}
-
-pkg_postinst() {
-	readme.gentoo_print_elog
-}


^ permalink raw reply related	[flat|nested] 9+ messages in thread

end of thread, other threads:[~2024-01-30 11:33 UTC | newest]

Thread overview: 9+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2022-09-30  2:12 [gentoo-commits] repo/proj/guru:master commit in: app-shells/fzf-tab/ Haelwenn Monnier
  -- strict thread matches above, loose matches on Subject: below --
2024-01-30 11:33 David Roman
2024-01-30 11:33 David Roman
2022-11-26 10:54 Florian Schmaus
2022-11-26 10:54 Florian Schmaus
2022-09-30  2:12 Haelwenn Monnier
2022-04-06 21:25 Ronny Gutbrod
2022-04-06 19:50 [gentoo-commits] repo/proj/guru:dev " Ronny Gutbrod
2022-04-06 21:25 ` [gentoo-commits] repo/proj/guru:master " Ronny Gutbrod
2022-04-06  0:07 Ronny Gutbrod

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox