public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] repo/proj/guru:dev commit in: app-shells/fishtape/
@ 2021-10-16 10:21 Alessandro Barbieri
  0 siblings, 0 replies; 2+ messages in thread
From: Alessandro Barbieri @ 2021-10-16 10:21 UTC (permalink / raw
  To: gentoo-commits

commit:     491507ad868b2be7a4af11e72bf05bd82382b920
Author:     Alessandro Barbieri <lssndrbarbieri <AT> gmail <DOT> com>
AuthorDate: Sat Oct 16 08:56:50 2021 +0000
Commit:     Alessandro Barbieri <lssndrbarbieri <AT> gmail <DOT> com>
CommitDate: Sat Oct 16 10:21:04 2021 +0000
URL:        https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=491507ad

app-shells/fishtape: initial import

Signed-off-by: Alessandro Barbieri <lssndrbarbieri <AT> gmail.com>

 app-shells/fishtape/Manifest              |  1 +
 app-shells/fishtape/fishtape-3.0.1.ebuild | 34 +++++++++++++++++++++++++++++++
 app-shells/fishtape/metadata.xml          | 11 ++++++++++
 3 files changed, 46 insertions(+)

diff --git a/app-shells/fishtape/Manifest b/app-shells/fishtape/Manifest
new file mode 100644
index 000000000..e0e0eec8b
--- /dev/null
+++ b/app-shells/fishtape/Manifest
@@ -0,0 +1 @@
+DIST fishtape-3.0.1.tar.gz 4740 BLAKE2B 8bac0eaa9950a036ac4b137d45e5868bcdfaa18a7a7a385f3f44fbee8effd5370d0a58389c3a7202565e7153386f5fa03acbf14571b7e63f928e6ce0b96af92b SHA512 0237b2e816052de23408560ce4244a26c83901a68aab50b5ff883799d6eaa55deb8274a7ce7e319e0a904aa35e8d0e9f97398cc7ef3ae5e911d782dffc83660a

diff --git a/app-shells/fishtape/fishtape-3.0.1.ebuild b/app-shells/fishtape/fishtape-3.0.1.ebuild
new file mode 100644
index 000000000..d1291056d
--- /dev/null
+++ b/app-shells/fishtape/fishtape-3.0.1.ebuild
@@ -0,0 +1,34 @@
+# Copyright 1999-2021 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+DESCRIPTION="100% pure-Fish test runner"
+HOMEPAGE="https://github.com/jorgebucaran/fishtape"
+SRC_URI="https://github.com/jorgebucaran/fishtape/archive/refs/tags/${PV}.tar.gz -> ${P}.tar.gz"
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="~amd64"
+IUSE="test"
+
+RDEPEND="app-shells/fish"
+DEPEND="
+	${RDEPEND}
+	test? ( app-shells/fishtape )
+"
+
+DOCS=( README.md )
+RESTRICT="!test? ( test )"
+
+src_install() {
+	insinto "/usr/share/fish/vendor_completions.d"
+	doins completions/*
+	insinto "/usr/share/fish/vendor_functions.d"
+	doins functions/*
+	einstalldocs
+}
+
+src_test() {
+	fish -c 'fishtape tests/*' || die
+}

diff --git a/app-shells/fishtape/metadata.xml b/app-shells/fishtape/metadata.xml
new file mode 100644
index 000000000..3e857af97
--- /dev/null
+++ b/app-shells/fishtape/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>lssndrbarbieri@gmail.com</email>
+    <name>Alessandro Barbieri</name>
+  </maintainer>
+  <upstream>
+    <remote-id type="github">jorgebucaran/fishtape</remote-id>
+  </upstream>
+</pkgmetadata>


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

* [gentoo-commits] repo/proj/guru:dev commit in: app-shells/fishtape/
@ 2023-04-13  5:42 Jonas Frei
  0 siblings, 0 replies; 2+ messages in thread
From: Jonas Frei @ 2023-04-13  5:42 UTC (permalink / raw
  To: gentoo-commits

commit:     1f9cca735a2cb87dcaebec260f2abaa332af2e54
Author:     Jonas Frei <freijon <AT> pm <DOT> me>
AuthorDate: Thu Apr 13 05:35:33 2023 +0000
Commit:     Jonas Frei <freijon <AT> pm <DOT> me>
CommitDate: Thu Apr 13 05:35:33 2023 +0000
URL:        https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=1f9cca73

app-shells/fishtape: Make use of 'shell-completion' eclass

Signed-off-by: Jonas Frei <freijon <AT> pm.me>

 app-shells/fishtape/fishtape-3.0.1.ebuild | 5 +++--
 1 file changed, 3 insertions(+), 2 deletions(-)

diff --git a/app-shells/fishtape/fishtape-3.0.1.ebuild b/app-shells/fishtape/fishtape-3.0.1.ebuild
index d1291056d..38b7c1594 100644
--- a/app-shells/fishtape/fishtape-3.0.1.ebuild
+++ b/app-shells/fishtape/fishtape-3.0.1.ebuild
@@ -3,6 +3,8 @@
 
 EAPI=8
 
+inherit shell-completion
+
 DESCRIPTION="100% pure-Fish test runner"
 HOMEPAGE="https://github.com/jorgebucaran/fishtape"
 SRC_URI="https://github.com/jorgebucaran/fishtape/archive/refs/tags/${PV}.tar.gz -> ${P}.tar.gz"
@@ -22,8 +24,7 @@ DOCS=( README.md )
 RESTRICT="!test? ( test )"
 
 src_install() {
-	insinto "/usr/share/fish/vendor_completions.d"
-	doins completions/*
+	dofishcomp completions/*
 	insinto "/usr/share/fish/vendor_functions.d"
 	doins functions/*
 	einstalldocs


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

end of thread, other threads:[~2023-04-13  5:42 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2023-04-13  5:42 [gentoo-commits] repo/proj/guru:dev commit in: app-shells/fishtape/ Jonas Frei
  -- strict thread matches above, loose matches on Subject: below --
2021-10-16 10:21 Alessandro Barbieri

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