summaryrefslogtreecommitdiffstats
path: root/development/tfenv
diff options
context:
space:
mode:
Diffstat (limited to 'development/tfenv')
-rw-r--r--development/tfenv/README4
-rw-r--r--development/tfenv/slack-desc19
-rw-r--r--development/tfenv/tfenv.SlackBuild103
-rw-r--r--development/tfenv/tfenv.info10
4 files changed, 136 insertions, 0 deletions
diff --git a/development/tfenv/README b/development/tfenv/README
new file mode 100644
index 0000000000..e3ce1be440
--- /dev/null
+++ b/development/tfenv/README
@@ -0,0 +1,4 @@
+Terraform version manager inspired by rbenv
+
+This package conflicts with the terraform package, so only install one
+or the other.
diff --git a/development/tfenv/slack-desc b/development/tfenv/slack-desc
new file mode 100644
index 0000000000..0c714411f4
--- /dev/null
+++ b/development/tfenv/slack-desc
@@ -0,0 +1,19 @@
+# HOW TO EDIT THIS FILE:
+# The "handy ruler" below makes it easier to edit a package description.
+# Line up the first '|' above the ':' following the base package name, and
+# the '|' on the right side marks the last column you can put a character in.
+# You must make exactly 11 lines for the formatting to be correct. It's also
+# customary to leave one space after the ':' except on otherwise blank lines.
+
+ |-----handy-ruler------------------------------------------------------|
+tfenv: tfenv (Terraform version manager inspired by rbenv)
+tfenv:
+tfenv: Terraform version manager inspired by rbenv.
+tfenv:
+tfenv: https://github.com/tfutils/tfenv
+tfenv:
+tfenv:
+tfenv:
+tfenv:
+tfenv:
+tfenv:
diff --git a/development/tfenv/tfenv.SlackBuild b/development/tfenv/tfenv.SlackBuild
new file mode 100644
index 0000000000..cb3614b636
--- /dev/null
+++ b/development/tfenv/tfenv.SlackBuild
@@ -0,0 +1,103 @@
+#!/bin/bash
+
+# Slackware build script for tfenv
+
+# Copyright 2023 Andrew Clemons, Tokyo Japan
+# All rights reserved.
+#
+# Redistribution and use of this script, with or without modification, is
+# permitted provided that the following conditions are met:
+#
+# 1. Redistributions of this script must retain the above copyright
+# notice, this list of conditions and the following disclaimer.
+#
+# THIS SOFTWARE IS PROVIDED BY THE AUTHOR "AS IS" AND ANY EXPRESS OR IMPLIED
+# WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
+# MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO
+# EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
+# SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
+# PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS;
+# OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
+# WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR
+# OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF
+# ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
+
+cd $(dirname $0) ; CWD=$(pwd)
+
+PRGNAM=tfenv
+VERSION=${VERSION:-3.0.0}
+BUILD=${BUILD:-1}
+TAG=${TAG:-_SBo}
+PKGTYPE=${PKGTYPE:-tgz}
+
+ARCH=noarch
+
+if [ ! -z "${PRINT_PACKAGE_NAME}" ]; then
+ echo "$PRGNAM-$VERSION-$ARCH-$BUILD$TAG.$PKGTYPE"
+ exit 0
+fi
+
+TMP=${TMP:-/tmp/SBo}
+PKG=$TMP/package-$PRGNAM
+OUTPUT=${OUTPUT:-/tmp}
+
+set -e
+
+rm -rf $PKG
+mkdir -p $TMP $PKG $OUTPUT
+cd $TMP
+rm -rf $PRGNAM-$VERSION
+tar xvf $CWD/$PRGNAM-$VERSION.tar.gz
+cd $PRGNAM-$VERSION
+chown -R root:root .
+find -L . \
+ \( -perm 777 -o -perm 775 -o -perm 750 -o -perm 711 -o -perm 555 \
+ -o -perm 511 \) -exec chmod 755 {} \; -o \
+ \( -perm 666 -o -perm 664 -o -perm 640 -o -perm 600 -o -perm 444 \
+ -o -perm 440 -o -perm 400 \) -exec chmod 644 {} \;
+
+mkdir -p $PKG/usr/share/tfenv/
+mv bin lib libexec share $PKG/usr/share/tfenv/
+mkdir -p $PKG/usr/bin
+
+(
+ cd $PKG/usr/bin
+ ln -s ../share/tfenv/bin/tfenv .
+ ln -s ../share/tfenv/bin/terraform .
+)
+
+(
+ cd $PKG/usr/share/tfenv
+ ln -s ../../doc/$PRGNAM-$VERSION/CHANGELOG.md
+)
+
+find $PKG -print0 | xargs -0 file | grep -e "executable" -e "shared object" | grep ELF \
+ | cut -f 1 -d : | xargs strip --strip-unneeded 2> /dev/null || true
+
+# install versions in users home
+mkdir -p $PKG/etc/profile.d/
+cat << "EOF" > $PKG/etc/profile.d/tfenv.csh
+#!/bin/csh
+
+setenv TFENV_CONFIG_DIR "${HOME}/.config/tfenv"
+EOF
+
+cat << "EOF" > $PKG/etc/profile.d/tfenv.sh
+#!/bin/sh
+
+export TFENV_CONFIG_DIR="${XDG_CONFIG_HOME:-$HOME/.config}/tfenv"
+EOF
+
+chmod 0755 $PKG/etc/profile.d/*
+
+mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION
+cp -a \
+ CHANGELOG.md LICENSE README.md \
+ $PKG/usr/doc/$PRGNAM-$VERSION
+cat $CWD/$PRGNAM.SlackBuild > $PKG/usr/doc/$PRGNAM-$VERSION/$PRGNAM.SlackBuild
+
+mkdir -p $PKG/install
+cat $CWD/slack-desc > $PKG/install/slack-desc
+
+cd $PKG
+/sbin/makepkg -l y -c n $OUTPUT/$PRGNAM-$VERSION-$ARCH-$BUILD$TAG.$PKGTYPE
diff --git a/development/tfenv/tfenv.info b/development/tfenv/tfenv.info
new file mode 100644
index 0000000000..e01774e1bf
--- /dev/null
+++ b/development/tfenv/tfenv.info
@@ -0,0 +1,10 @@
+PRGNAM="tfenv"
+VERSION="3.0.0"
+HOMEPAGE="https://github.com/tfutils"
+DOWNLOAD="https://github.com/tfutils/tfenv/archive/v3.0.0/tfenv-3.0.0.tar.gz"
+MD5SUM="f1634dd159d2a01c42c26c980a3bdaee"
+DOWNLOAD_x86_64=""
+MD5SUM_x86_64=""
+REQUIRES=""
+MAINTAINER="Andrew Clemons"
+EMAIL="andrew.clemons@gmail.com"