mirror of
https://github.com/Ponce/slackbuilds
synced 2024-11-21 19:42:24 +01:00
network/verm: Removed (unused, no dependees).
Signed-off-by: Andrew Clemons <andrew.clemons@gmail.com> Signed-off-by: Willy Sudiarto Raharjo <willysr@slackbuilds.org>
This commit is contained in:
parent
6716ba8e5b
commit
7d987a6a2d
7 changed files with 0 additions and 244 deletions
|
@ -1,21 +0,0 @@
|
|||
Verm is a WORM (write-once, read-many) file store to make it easy to reliably
|
||||
store and replicate files.
|
||||
|
||||
This script requires a 'verm' user/group to exist before running.
|
||||
|
||||
The recommended UID/GID is 346. You can create these like so:
|
||||
groupadd -g 346 verm
|
||||
useradd -u 346 -g 346 -m -d /var/lib/verm verm
|
||||
|
||||
The following can be used to start/stop verm automatically:
|
||||
/etc/rc.d/rc.local
|
||||
if [ -x /etc/rc.d/rc.verm ]; then
|
||||
/etc/rc.d/rc.verm start
|
||||
fi
|
||||
|
||||
/etc/rc.d/rc.local_shutdown
|
||||
if [ -x /etc/rc.d/rc.verm ]; then
|
||||
/etc/rc.d/rc.verm stop
|
||||
fi
|
||||
|
||||
NOTE: google-go-lang is only needed at compile time - not needed for runtime.
|
|
@ -1,23 +0,0 @@
|
|||
config() {
|
||||
NEW="$1"
|
||||
OLD="$(dirname $NEW)/$(basename $NEW .new)"
|
||||
if [ ! -r $OLD ]; then
|
||||
mv $NEW $OLD
|
||||
elif [ "$(cat $OLD | md5sum)" = "$(cat $NEW | md5sum)" ]; then
|
||||
rm $NEW
|
||||
fi
|
||||
}
|
||||
|
||||
preserve_perms() {
|
||||
NEW="$1"
|
||||
OLD="$(dirname $NEW)/$(basename $NEW .new)"
|
||||
if [ -e $OLD ]; then
|
||||
cp -a $OLD ${NEW}.incoming
|
||||
cat $NEW > ${NEW}.incoming
|
||||
mv ${NEW}.incoming $NEW
|
||||
fi
|
||||
config $NEW
|
||||
}
|
||||
|
||||
config etc/logrotate.d/verm.new
|
||||
preserve_perms etc/rc.d/rc.verm.new
|
|
@ -1,42 +0,0 @@
|
|||
#!/bin/bash
|
||||
|
||||
PORT=${PORT:-3404}
|
||||
LISTEN=${LISTEN:-localhost}
|
||||
PIDDIR=/var/run/verm
|
||||
LOGDIR=/var/log/verm
|
||||
PIDFILE=$PIDDIR/verm.pid
|
||||
|
||||
. /etc/rc.d/init.d/functions
|
||||
|
||||
runuser() {
|
||||
su "$@"
|
||||
}
|
||||
|
||||
verm_start() {
|
||||
mkdir -p $PIDDIR $LOGDIR
|
||||
chown -R verm:verm $PIDDIR $LOGDIR
|
||||
action "Starting verm: " daemon --pidfile $PIDFILE --user verm "bash -c 'verm -port \"$PORT\" -listen \"$LISTEN\" >> $LOGDIR/verm.log 2>> $LOGDIR/verm_err.log & echo \$! > $PIDFILE'"
|
||||
}
|
||||
|
||||
verm_stop() {
|
||||
action "Stopping verm: " killproc -p $PIDFILE "verm"
|
||||
}
|
||||
|
||||
verm_restart() {
|
||||
verm_stop
|
||||
verm_start
|
||||
}
|
||||
|
||||
case "$1" in
|
||||
'start')
|
||||
verm_start
|
||||
;;
|
||||
'stop')
|
||||
verm_stop
|
||||
;;
|
||||
'restart')
|
||||
verm_restart
|
||||
;;
|
||||
*)
|
||||
echo "usage $0 start|stop|restart"
|
||||
esac
|
|
@ -1,19 +0,0 @@
|
|||
# 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------------------------------------------------------|
|
||||
verm: verm (An immutable, WORM filestore accessible by HTTP)
|
||||
verm:
|
||||
verm: Verm is a WORM (write-once, read-many) file store to make it easy to
|
||||
verm: reliably store and replicate files.
|
||||
verm:
|
||||
verm:
|
||||
verm: https://github.com/willbryant/verm
|
||||
verm:
|
||||
verm:
|
||||
verm:
|
||||
verm:
|
|
@ -1,120 +0,0 @@
|
|||
#!/bin/bash
|
||||
|
||||
# Slackware build script for verm
|
||||
|
||||
# Copyright 2016-2018,2021 Andrew Clemons, Wellington New Zealand
|
||||
# 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=verm
|
||||
VERSION=${VERSION:-1.5.2}
|
||||
BUILD=${BUILD:-2}
|
||||
TAG=${TAG:-_SBo}
|
||||
PKGTYPE=${PKGTYPE:-tgz}
|
||||
|
||||
VERM_UID=${VERM_UID:-346}
|
||||
VERM_GID=${VERM_GID:-346}
|
||||
VERM_PORT=${VERM_PORT:-3404}
|
||||
|
||||
if [ -z "$ARCH" ]; then
|
||||
case "$( uname -m )" in
|
||||
i?86) ARCH=i586 ;;
|
||||
arm*) ARCH=arm ;;
|
||||
*) ARCH=$( uname -m ) ;;
|
||||
esac
|
||||
fi
|
||||
|
||||
# If the variable PRINT_PACKAGE_NAME is set, then this script will report what
|
||||
# the name of the created package would be, and then exit. This information
|
||||
# could be useful to other scripts.
|
||||
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}
|
||||
|
||||
# Bail out if user or group isn't valid on your system
|
||||
# For slackbuilds.org, assigned verm uid/gid are 346/346
|
||||
# See http://slackbuilds.org/uid_gid.txt
|
||||
if ! getent group verm > /dev/null 2>&1 ; then
|
||||
echo " You must have a verm group to run this script."
|
||||
echo " # groupadd -g $VERM_GID verm"
|
||||
exit 1
|
||||
elif ! getent passwd verm > /dev/null 2>&1 ; then
|
||||
echo " You must have a verm user to run this script."
|
||||
echo " # useradd -u $VERM_UID -g $VERM_GID -m -d /var/lib/verm verm"
|
||||
exit 1
|
||||
fi
|
||||
|
||||
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 {} \;
|
||||
|
||||
rm -f go.mod # go.mod exists but should not
|
||||
|
||||
SRCDIR="$(pwd)"
|
||||
export GOPATH="$SRCDIR"
|
||||
mkdir -p src/github.com/willbryant
|
||||
( cd src/github.com/willbryant && ln -s "$GOPATH" verm)
|
||||
|
||||
export GO111MODULE="off"
|
||||
go build -ldflags "-X main.compiled_version=$VERSION -X main.compiled_root_data_directory=/var/lib/verm" "github.com/willbryant/verm"
|
||||
|
||||
mkdir -p $PKG/usr/bin
|
||||
install -m0755 -oroot -groot verm $PKG/usr/bin
|
||||
|
||||
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
|
||||
|
||||
mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION
|
||||
cp -a *.md $PKG/usr/doc/$PRGNAM-$VERSION
|
||||
cat $CWD/$PRGNAM.SlackBuild > $PKG/usr/doc/$PRGNAM-$VERSION/$PRGNAM.SlackBuild
|
||||
|
||||
mkdir -p $PKG/install
|
||||
mkdir -p $PKG/etc/rc.d
|
||||
|
||||
cat $CWD/slack-desc > $PKG/install/slack-desc
|
||||
cat $CWD/doinst.sh > $PKG/install/doinst.sh
|
||||
sed "s/@VERM_PORT/$VERM_PORT/" $CWD/rc.verm > $PKG/etc/rc.d/rc.verm.new
|
||||
chmod 0755 $PKG/etc/rc.d/rc.verm.new
|
||||
|
||||
mkdir -p $PKG/etc/logrotate.d
|
||||
cat $CWD/verm.logrotate > $PKG/etc/logrotate.d/verm.new
|
||||
|
||||
mkdir -p $PKG/var/log/verm
|
||||
chown -R verm:verm $PKG/var/log/verm
|
||||
|
||||
cd $PKG
|
||||
/sbin/makepkg -l y -c n $OUTPUT/$PRGNAM-$VERSION-$ARCH-$BUILD$TAG.$PKGTYPE
|
|
@ -1,10 +0,0 @@
|
|||
PRGNAM="verm"
|
||||
VERSION="1.5.2"
|
||||
HOMEPAGE="https://github.com/willbryant/verm"
|
||||
DOWNLOAD="https://github.com/willbryant/verm/archive/1.5.2/verm-1.5.2.tar.gz"
|
||||
MD5SUM="7bd8fb6aea4483531ac1f5475205cfc0"
|
||||
DOWNLOAD_x86_64=""
|
||||
MD5SUM_x86_64=""
|
||||
REQUIRES="google-go-lang"
|
||||
MAINTAINER="Andrew Clemons"
|
||||
EMAIL="andrew.clemons@gmail.com"
|
|
@ -1,9 +0,0 @@
|
|||
/var/log/verm/*.log {
|
||||
su verm verm
|
||||
rotate 12
|
||||
weekly
|
||||
compress
|
||||
missingok
|
||||
notifempty
|
||||
copytruncate
|
||||
}
|
Loading…
Reference in a new issue