wok rev 25072
updated openvpn packages (2.5.0 -> 2.5.7)
author | Hans-G?nter Theisgen |
---|---|
date | Sat Jun 11 10:37:17 2022 +0100 (2022-06-11) |
parents | 00a9a7506076 |
children | 3b19fa0b9a88 |
files | openvpn-doc/receipt openvpn-down-root/receipt openvpn-pam/receipt openvpn/description.txt openvpn/receipt |
line diff
1.1 --- a/openvpn-doc/receipt Sat Jun 11 09:07:17 2022 +0100 1.2 +++ b/openvpn-doc/receipt Sat Jun 11 10:37:17 2022 +0100 1.3 @@ -1,7 +1,7 @@ 1.4 # SliTaz package receipt. 1.5 1.6 PACKAGE="openvpn-doc" 1.7 -VERSION="2.5.2" 1.8 +VERSION="2.5.7" 1.9 CATEGORY="network" 1.10 TAGS="vpn tunnel" 1.11 SHORT_DESC="Documentation for OpenVPN." 1.12 @@ -19,7 +19,7 @@ 1.13 { 1.14 mkdir -p $fs/usr/share/openvpn 1.15 1.16 - cp -a $install/usr/share/ $fs/usr/ 1.17 + cp -a $install/usr/share $fs/usr 1.18 cp -a $src/sample/sample-config-files $fs/usr/share/openvpn 1.19 cp -a $src/sample/sample-plugins $fs/usr/share/openvpn 1.20 cp -a $src/sample/sample-keys $fs/usr/share/openvpn
2.1 --- a/openvpn-down-root/receipt Sat Jun 11 09:07:17 2022 +0100 2.2 +++ b/openvpn-down-root/receipt Sat Jun 11 10:37:17 2022 +0100 2.3 @@ -1,7 +1,7 @@ 2.4 # SliTaz package receipt. 2.5 2.6 PACKAGE="openvpn-down-root" 2.7 -VERSION="2.5.2" 2.8 +VERSION="2.5.7" 2.9 CATEGORY="network" 2.10 TAGS="vpn tunnel" 2.11 SHORT_DESC="The down-root plugin for OpenVPN." 2.12 @@ -18,6 +18,7 @@ 2.13 genpkg_rules() 2.14 { 2.15 mkdir -p $fs/usr/share/openvpn 2.16 + 2.17 cp -a $src/src/plugins/down-root/.libs/openvpn-plugin-down-root.so \ 2.18 $fs/usr/share/openvpn 2.19 }
3.1 --- a/openvpn-pam/receipt Sat Jun 11 09:07:17 2022 +0100 3.2 +++ b/openvpn-pam/receipt Sat Jun 11 10:37:17 2022 +0100 3.3 @@ -1,7 +1,7 @@ 3.4 # SliTaz package receipt. 3.5 3.6 PACKAGE="openvpn-pam" 3.7 -VERSION="2.5.2" 3.8 +VERSION="2.5.7" 3.9 CATEGORY="network" 3.10 TAGS="vpn tunnel" 3.11 SHORT_DESC="PAM plugin for OpenVPN."
4.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 4.2 +++ b/openvpn/description.txt Sat Jun 11 10:37:17 2022 +0100 4.3 @@ -0,0 +1,8 @@ 4.4 +OpenVPN protocol has emerged to establish itself as a de-facto standard 4.5 +in the open source networking space with over 50 million downloads. 4.6 +OpenVPN is entirely a community-supported OSS project which uses the GPL 4.7 +license. 4.8 +The project has many developers and contributors from OpenVPN Inc. and 4.9 +from the broader OpenVPN community. 4.10 +In addition, there are numerous projects that extend or are otherwise 4.11 +related to OpenVPN.
5.1 --- a/openvpn/receipt Sat Jun 11 09:07:17 2022 +0100 5.2 +++ b/openvpn/receipt Sat Jun 11 10:37:17 2022 +0100 5.3 @@ -1,7 +1,7 @@ 5.4 # SliTaz package receipt. 5.5 5.6 PACKAGE="openvpn" 5.7 -VERSION="2.5.2" 5.8 +VERSION="2.5.7" 5.9 CATEGORY="network" 5.10 TAGS="vpn tunnel network" 5.11 SHORT_DESC="Full-featured open source SSL VPN solution." 5.12 @@ -26,14 +26,16 @@ 5.13 # Rules to configure and make the package. 5.14 compile_rules() 5.15 { 5.16 + # 2.5.7 unrecognised: 5.17 +# --enable-password-save 5.18 + 5.19 ./configure \ 5.20 --prefix=/usr \ 5.21 - --enable-password-save \ 5.22 $CONFIGURE_ARGS && 5.23 make && 5.24 ( cd src/plugins/auth-pam/ ; make ) && 5.25 ( cd src/plugins/down-root/ ; make ) && 5.26 - make DESTDIR=$DESTDIR install 5.27 + make install DESTDIR=$DESTDIR 5.28 } 5.29 5.30 # Rules to gen a SliTaz package suitable for Tazpkg. 5.31 @@ -44,12 +46,12 @@ 5.32 cp -a $install/usr/sbin/openvpn $fs/usr/sbin 5.33 cp -a $stuff/* $fs 5.34 5.35 - chown root.root $fs/etc/init.d/* 5.36 - chmod 0644 $fs/etc/openvpn/openvpn.conf 5.37 + chown root.root $fs/etc/init.d/* 5.38 + chmod 0644 $fs/etc/openvpn/openvpn.conf 5.39 } 5.40 5.41 post_remove() 5.42 { 5.43 - # remove config 5.44 - rm -rf ${root}/etc/openvpn 5.45 + # remove configuration 5.46 + rm -rf $root/etc/openvpn 5.47 }