Gentoo Archives: gentoo-commits

From: Alessandro Barbieri <lssndrbarbieri@×××××.com>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/proj/guru:dev commit in: app-shells/fishtape/
Date: Sat, 16 Oct 2021 10:21:43
Message-Id: 1634379664.491507ad868b2be7a4af11e72bf05bd82382b920.Alessandro-Barbieri@gentoo
1 commit: 491507ad868b2be7a4af11e72bf05bd82382b920
2 Author: Alessandro Barbieri <lssndrbarbieri <AT> gmail <DOT> com>
3 AuthorDate: Sat Oct 16 08:56:50 2021 +0000
4 Commit: Alessandro Barbieri <lssndrbarbieri <AT> gmail <DOT> com>
5 CommitDate: Sat Oct 16 10:21:04 2021 +0000
6 URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=491507ad
7
8 app-shells/fishtape: initial import
9
10 Signed-off-by: Alessandro Barbieri <lssndrbarbieri <AT> gmail.com>
11
12 app-shells/fishtape/Manifest | 1 +
13 app-shells/fishtape/fishtape-3.0.1.ebuild | 34 +++++++++++++++++++++++++++++++
14 app-shells/fishtape/metadata.xml | 11 ++++++++++
15 3 files changed, 46 insertions(+)
16
17 diff --git a/app-shells/fishtape/Manifest b/app-shells/fishtape/Manifest
18 new file mode 100644
19 index 000000000..e0e0eec8b
20 --- /dev/null
21 +++ b/app-shells/fishtape/Manifest
22 @@ -0,0 +1 @@
23 +DIST fishtape-3.0.1.tar.gz 4740 BLAKE2B 8bac0eaa9950a036ac4b137d45e5868bcdfaa18a7a7a385f3f44fbee8effd5370d0a58389c3a7202565e7153386f5fa03acbf14571b7e63f928e6ce0b96af92b SHA512 0237b2e816052de23408560ce4244a26c83901a68aab50b5ff883799d6eaa55deb8274a7ce7e319e0a904aa35e8d0e9f97398cc7ef3ae5e911d782dffc83660a
24
25 diff --git a/app-shells/fishtape/fishtape-3.0.1.ebuild b/app-shells/fishtape/fishtape-3.0.1.ebuild
26 new file mode 100644
27 index 000000000..d1291056d
28 --- /dev/null
29 +++ b/app-shells/fishtape/fishtape-3.0.1.ebuild
30 @@ -0,0 +1,34 @@
31 +# Copyright 1999-2021 Gentoo Authors
32 +# Distributed under the terms of the GNU General Public License v2
33 +
34 +EAPI=8
35 +
36 +DESCRIPTION="100% pure-Fish test runner"
37 +HOMEPAGE="https://github.com/jorgebucaran/fishtape"
38 +SRC_URI="https://github.com/jorgebucaran/fishtape/archive/refs/tags/${PV}.tar.gz -> ${P}.tar.gz"
39 +
40 +LICENSE="MIT"
41 +SLOT="0"
42 +KEYWORDS="~amd64"
43 +IUSE="test"
44 +
45 +RDEPEND="app-shells/fish"
46 +DEPEND="
47 + ${RDEPEND}
48 + test? ( app-shells/fishtape )
49 +"
50 +
51 +DOCS=( README.md )
52 +RESTRICT="!test? ( test )"
53 +
54 +src_install() {
55 + insinto "/usr/share/fish/vendor_completions.d"
56 + doins completions/*
57 + insinto "/usr/share/fish/vendor_functions.d"
58 + doins functions/*
59 + einstalldocs
60 +}
61 +
62 +src_test() {
63 + fish -c 'fishtape tests/*' || die
64 +}
65
66 diff --git a/app-shells/fishtape/metadata.xml b/app-shells/fishtape/metadata.xml
67 new file mode 100644
68 index 000000000..3e857af97
69 --- /dev/null
70 +++ b/app-shells/fishtape/metadata.xml
71 @@ -0,0 +1,11 @@
72 +<?xml version="1.0" encoding="UTF-8"?>
73 +<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
74 +<pkgmetadata>
75 + <maintainer type="person">
76 + <email>lssndrbarbieri@×××××.com</email>
77 + <name>Alessandro Barbieri</name>
78 + </maintainer>
79 + <upstream>
80 + <remote-id type="github">jorgebucaran/fishtape</remote-id>
81 + </upstream>
82 +</pkgmetadata>