wok rev 24507
updated easy-rsa (3.0.6 -> 3.0.8)
author | Hans-G?nter Theisgen |
---|---|
date | Sun Feb 20 16:37:53 2022 +0100 (2022-02-20) |
parents | 8f37db468deb |
children | 47514fe128b6 |
files | easy-rsa/description.txt easy-rsa/receipt |
line diff
1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 1.2 +++ b/easy-rsa/description.txt Sun Feb 20 16:37:53 2022 +0100 1.3 @@ -0,0 +1,4 @@ 1.4 +Easy-rsa is a CLI utility to build and manage a PKI CA. 1.5 +In laymen's terms, this means to create a root certificate authority, 1.6 +and request and sign certificates, including intermediate CAs and 1.7 +certificate revocation lists (CRL).
2.1 --- a/easy-rsa/receipt Sun Feb 20 14:41:23 2022 +0000 2.2 +++ b/easy-rsa/receipt Sun Feb 20 16:37:53 2022 +0100 2.3 @@ -1,13 +1,14 @@ 2.4 # SliTaz package receipt. 2.5 2.6 PACKAGE="easy-rsa" 2.7 -VERSION="3.0.6" 2.8 +VERSION="3.0.8" 2.9 CATEGORY="security" 2.10 -SHORT_DESC="A Shell-based CA Utility" 2.11 +SHORT_DESC="A Shell-based CA Utility." 2.12 MAINTAINER="pascal.bellard@slitaz.org" 2.13 LICENSE="GPL2" 2.14 +WEB_SITE="https://github.com/OpenVPN/easy-rsa" 2.15 + 2.16 TARBALL="$PACKAGE-$VERSION.tar.gz" 2.17 -WEB_SITE="https://github.com/OpenVPN/easy-rsa" 2.18 WGET_URL="https://github.com/OpenVPN/easy-rsa/archive/v$VERSION.tar.gz" 2.19 2.20 DEPENDS="openssl" 2.21 @@ -21,9 +22,13 @@ 2.22 # Rules to gen a SliTaz package suitable for Tazpkg. 2.23 genpkg_rules() 2.24 { 2.25 - mkdir -p $install/usr/share $fs/usr/share $fs/usr/bin 2.26 - cp -a $src/doc $install/usr/share 2.27 - cp -a $src/easyrsa${VERSION%%.*} $fs/usr/share/easy-rsa 2.28 + mkdir -p $install/usr/share 2.29 + mkdir -p $fs/usr/share 2.30 + mkdir -p $fs/usr/bin 2.31 + 2.32 + cp -a $src/doc $install/usr/share 2.33 + cp -a $src/easyrsa${VERSION%%.*} $fs/usr/share/easy-rsa 2.34 + 2.35 cat > $fs/usr/bin/make-cadir <<EOT 2.36 #!/bin/sh 2.37 2.38 @@ -35,5 +40,6 @@ 2.39 cp /usr/share/easy-rsa/openssl-easyrsa.cnf "\$1" 2.40 cp /usr/share/easy-rsa/vars.example "\$1/vars" 2.41 EOT 2.42 - chmod +x $fs/usr/bin/make-cadir 2.43 + 2.44 + chmod +x $fs/usr/bin/make-cadir 2.45 }