diff options
author | Sebastian Arcus <s.arcus@open-t.co.uk> | 2016-11-09 17:39:20 +0000 |
---|---|---|
committer | David Spencer <idlemoor@slackbuilds.org> | 2016-11-11 20:36:22 +0000 |
commit | 5adebd16cdf05cc6471f498d4aaac0600655c51c (patch) | |
tree | b87dbac9a26a8ed950aa8047d4b3bf6f2cb67bc8 | |
parent | 9beffd8789e903b05d576cc2e7f76ed08f7497be (diff) | |
download | slackbuilds-5adebd16cdf05cc6471f498d4aaac0600655c51c.tar.gz |
network/easyrsa: Added (CLI utility for managing a PKI CA).
Signed-off-by: David Spencer <idlemoor@slackbuilds.org>
-rw-r--r-- | network/easyrsa/README | 8 | ||||
-rw-r--r-- | network/easyrsa/easyrsa.SlackBuild | 64 | ||||
-rw-r--r-- | network/easyrsa/easyrsa.info | 10 | ||||
-rw-r--r-- | network/easyrsa/slack-desc | 19 |
4 files changed, 101 insertions, 0 deletions
diff --git a/network/easyrsa/README b/network/easyrsa/README new file mode 100644 index 0000000000..46b44b5543 --- /dev/null +++ b/network/easyrsa/README @@ -0,0 +1,8 @@ +EasyRSA is a CLI utility to build and manage a PKI CA. Initially part of the +OpenVPN project (www.openvpn.net), now maintained by the community. + +The EasyRSA package and scripts are installed under /usr/share/easyrsa. They +can be copied anywhere else convenient when they are to be used. + +Further instructions for version 3 usage at: +https://community.openvpn.net/openvpn/wiki/EasyRSA3-OpenVPN-Howto diff --git a/network/easyrsa/easyrsa.SlackBuild b/network/easyrsa/easyrsa.SlackBuild new file mode 100644 index 0000000000..62ac1ef656 --- /dev/null +++ b/network/easyrsa/easyrsa.SlackBuild @@ -0,0 +1,64 @@ +#!/bin/sh +# Slackware build script for EasyRSA +# Copyright 2016 Sebastian Arcus, United Kingdom +# 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. + +PRGNAM=easyrsa +SRCNAM=EasyRSA +VERSION=${VERSION:-3.0.1} +BUILD=${BUILD:-1} +TAG=${TAG:-_SBo} + +ARCH=noarch + +CWD=$(pwd) +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 $SRCNAM-$VERSION +tar xvf $CWD/$SRCNAM-$VERSION.tgz +cd $SRCNAM-$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/$PRGNAM +cp -a easyrsa openssl-1.0.cnf vars.example x509-types $PKG/usr/share/$PRGNAM + +mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION +cp -a \ + COPYING ChangeLog README.quickstart.md gpl-2.0.txt doc/* \ + $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:-tgz} diff --git a/network/easyrsa/easyrsa.info b/network/easyrsa/easyrsa.info new file mode 100644 index 0000000000..ecdd66939d --- /dev/null +++ b/network/easyrsa/easyrsa.info @@ -0,0 +1,10 @@ +PRGNAM="easyrsa" +VERSION="3.0.1" +HOMEPAGE="https://github.com/OpenVPN/easy-rsa" +DOWNLOAD="https://github.com/OpenVPN/easy-rsa/releases/download/3.0.1/EasyRSA-3.0.1.tgz" +MD5SUM="5fd4b1a07983a517484bf57c31f7befb" +DOWNLOAD_x86_64="" +MD5SUM_x86_64="" +REQUIRES="" +MAINTAINER="Sebastian Arcus" +EMAIL="s.arcus@open-t.co.uk" diff --git a/network/easyrsa/slack-desc b/network/easyrsa/slack-desc new file mode 100644 index 0000000000..94943ff36b --- /dev/null +++ b/network/easyrsa/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------------------------------------------------------| +easyrsa: EasyRSA (CLI utility for managing a PKI CA) +easyrsa: +easyrsa: EasyRSA is a CLI utility to build and manage a PKI CA. +easyrsa: +easyrsa: Initially part of the OpenVPN project (www.openvpn.net), now +easyrsa: maintained by the community. +easyrsa: +easyrsa: Further instructions for version 3 usage at: +easyrsa: https://community.openvpn.net/openvpn/wiki/EasyRSA3-OpenVPN-Howto +easyrsa: +easyrsa: Homepage: https://github.com/OpenVPN/easy-rsa |