summaryrefslogtreecommitdiff
path: root/app-shells
diff options
context:
space:
mode:
authorLibravatar Terin Stock <terinjokes@gmail.com>2024-09-02 20:40:35 +0200
committerLibravatar Terin Stock <terinjokes@gmail.com>2024-09-02 20:40:35 +0200
commitc6d2f25831fcc97ae38f6c6311e4cfdac0207297 (patch)
tree516bb8ee522e185239f59db630d8013a9076035d /app-shells
parentsys-cluster/kubie: new package, add 0.23.1 (diff)
downloadebuilds-c6d2f25831fcc97ae38f6c6311e4cfdac0207297.tar.xz
app-shells/direnv: new package, add 2.34.0
Diffstat (limited to 'app-shells')
-rw-r--r--app-shells/direnv/Manifest2
-rw-r--r--app-shells/direnv/direnv-2.34.0.ebuild22
2 files changed, 24 insertions, 0 deletions
diff --git a/app-shells/direnv/Manifest b/app-shells/direnv/Manifest
new file mode 100644
index 0000000..aa445e9
--- /dev/null
+++ b/app-shells/direnv/Manifest
@@ -0,0 +1,2 @@
+DIST direnv-2.34.0-vendor.tar.xz 327916 BLAKE2B 40a13b288139a3657189f00d6ac120364f8856a39d7b27c459dca116226fd2ba1800f4318e570a1f2f6e461ffb2038b22988bec60f0fdc5e5c2e6681801a6bfc SHA512 811c236a0470dcc4778ca29f012763dbe1baec5af7b04da43625ba6d0157ee1e58db0472387385e7e67ceddd5398c7021c1cca1f48b8406d8f8f04d928096006
+DIST direnv-2.34.0.tar.gz 94449 BLAKE2B fc040ca3f572f1e2a2a2e7baa04179b471a369219b7286e89c7f3a1dd943a7124b8e559b2512edf5e51aa9464fbc6809cb9855638bfba3d1c4ad608b5e2dff39 SHA512 daf1b1fcb48ede8b7c25e303c5f9e92508ee46c360618560f740b66f82e64f87c4270777de77fe3dd9e6791e51be423e265f3fcd74b41c0b9893221efad65d0a
diff --git a/app-shells/direnv/direnv-2.34.0.ebuild b/app-shells/direnv/direnv-2.34.0.ebuild
new file mode 100644
index 0000000..7fc9ad3
--- /dev/null
+++ b/app-shells/direnv/direnv-2.34.0.ebuild
@@ -0,0 +1,22 @@
+# Copyright 1999-2024 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+inherit go-module
+
+DESCRIPTION="Environment variable manager for shell"
+HOMEPAGE="https://github.com/direnv/direnv"
+SRC_URI="https://github.com/direnv/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
+SRC_URI+=" https://share.terinstock.com/${P}-vendor.tar.xz"
+
+LICENSE="MIT"
+LICENSE+=" BSD"
+SLOT="0"
+KEYWORDS="~amd64"
+RESTRICT="test" # fails
+
+src_install() {
+ einstalldocs
+ emake DESTDIR="${D}" PREFIX="/usr" install
+}