summaryrefslogtreecommitdiff
path: root/dev-util/bats-support
diff options
context:
space:
mode:
authorroot <root@alpha.trunkmasters.com>2026-06-04 05:48:38 -0500
committerroot <root@alpha.trunkmasters.com>2026-06-04 05:48:38 -0500
commitbfd9c39e4712ebdb442d4ca0673061faed1e70e1 (patch)
tree0d7a74b4463ee387f9cf9368ceb1b757f694f72a /dev-util/bats-support
parentf716a9fe6455d39eef01e718aae68dae61c19704 (diff)
downloadbaldeagleos-repo-bfd9c39e4712ebdb442d4ca0673061faed1e70e1.tar.gz
baldeagleos-repo-bfd9c39e4712ebdb442d4ca0673061faed1e70e1.tar.xz
baldeagleos-repo-bfd9c39e4712ebdb442d4ca0673061faed1e70e1.zip
Revert "Adding metadata"
This reverts commit f716a9fe6455d39eef01e718aae68dae61c19704.
Diffstat (limited to 'dev-util/bats-support')
-rw-r--r--dev-util/bats-support/Manifest1
-rw-r--r--dev-util/bats-support/bats-support-0.3.0.ebuild30
-rw-r--r--dev-util/bats-support/metadata.xml20
3 files changed, 51 insertions, 0 deletions
diff --git a/dev-util/bats-support/Manifest b/dev-util/bats-support/Manifest
new file mode 100644
index 000000000000..82880344acb3
--- /dev/null
+++ b/dev-util/bats-support/Manifest
@@ -0,0 +1 @@
+DIST bats-support-0.3.0.tar.gz 10403 BLAKE2B 2cd488f420e2e1975f744aa15fb84e7e34b2226b06dcc6dc2959404e267d0d08b5c218b34da8e14b49ffb5c430545a2153c889904ccd08c74a7861495bca9c3d SHA512 417a8054462a44a6f46e375526cc1c920bae54ea76ddec3ff46603fe68bdb5c58f51bfb1c7e066347a3b71ff4d43986fd5157eb55151e0c4b5d189d81282ea14
diff --git a/dev-util/bats-support/bats-support-0.3.0.ebuild b/dev-util/bats-support/bats-support-0.3.0.ebuild
new file mode 100644
index 000000000000..b3ac473cc584
--- /dev/null
+++ b/dev-util/bats-support/bats-support-0.3.0.ebuild
@@ -0,0 +1,30 @@
+# Copyright 1999-2021 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+DESCRIPTION="Supporting library for Bats test helpers"
+HOMEPAGE="https://github.com/bats-core/bats-support"
+SRC_URI="https://github.com/bats-core/bats-support/archive/v${PV}.tar.gz -> ${P}.tar.gz"
+
+LICENSE="CC0-1.0"
+SLOT="0"
+KEYWORDS="~amd64"
+IUSE="test"
+
+RDEPEND="dev-util/bats"
+DEPEND="${RDEPEND}"
+
+DOCS=( README.md CHANGELOG.md )
+RESTRICT="!test? ( test )"
+
+src_install() {
+ insinto "/usr/share/${PN}"
+ doins *.bash
+ doins -r src
+ einstalldocs
+}
+
+src_test() {
+ bats test || die
+}
diff --git a/dev-util/bats-support/metadata.xml b/dev-util/bats-support/metadata.xml
new file mode 100644
index 000000000000..60dbcfa19ec0
--- /dev/null
+++ b/dev-util/bats-support/metadata.xml
@@ -0,0 +1,20 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE pkgmetadata SYSTEM "https://www.gentoo.org/dtd/metadata.dtd">
+<pkgmetadata>
+ <!-- maintainer-needed -->
+ <upstream>
+ <remote-id type="github">bats-core/bats-support</remote-id>
+ </upstream>
+ <longdescription lang="en">
+bats-support is a supporting library providing common functions to test helper libraries written for Bats.
+
+Features:
+
+error reporting
+output formatting
+language tools
+See the shared documentation to learn how to install and load this library.
+
+If you want to use this library in your own helpers or just want to learn about its internals see the developer documentation in the source files.
+ </longdescription>
+</pkgmetadata>