# HG changeset patch # User Hans-G?nter Theisgen # Date 1654940237 -3600 # Node ID adec29cf18561762849f0e7659d71612256fcc2a # Parent 00a9a7506076420341574ff3af674db2adb1d5fa updated openvpn packages (2.5.0 -> 2.5.7) diff -r 00a9a7506076 -r adec29cf1856 openvpn-doc/receipt --- a/openvpn-doc/receipt Sat Jun 11 09:07:17 2022 +0100 +++ b/openvpn-doc/receipt Sat Jun 11 10:37:17 2022 +0100 @@ -1,7 +1,7 @@ # SliTaz package receipt. PACKAGE="openvpn-doc" -VERSION="2.5.2" +VERSION="2.5.7" CATEGORY="network" TAGS="vpn tunnel" SHORT_DESC="Documentation for OpenVPN." @@ -19,7 +19,7 @@ { mkdir -p $fs/usr/share/openvpn - cp -a $install/usr/share/ $fs/usr/ + cp -a $install/usr/share $fs/usr cp -a $src/sample/sample-config-files $fs/usr/share/openvpn cp -a $src/sample/sample-plugins $fs/usr/share/openvpn cp -a $src/sample/sample-keys $fs/usr/share/openvpn diff -r 00a9a7506076 -r adec29cf1856 openvpn-down-root/receipt --- a/openvpn-down-root/receipt Sat Jun 11 09:07:17 2022 +0100 +++ b/openvpn-down-root/receipt Sat Jun 11 10:37:17 2022 +0100 @@ -1,7 +1,7 @@ # SliTaz package receipt. PACKAGE="openvpn-down-root" -VERSION="2.5.2" +VERSION="2.5.7" CATEGORY="network" TAGS="vpn tunnel" SHORT_DESC="The down-root plugin for OpenVPN." @@ -18,6 +18,7 @@ genpkg_rules() { mkdir -p $fs/usr/share/openvpn + cp -a $src/src/plugins/down-root/.libs/openvpn-plugin-down-root.so \ $fs/usr/share/openvpn } diff -r 00a9a7506076 -r adec29cf1856 openvpn-pam/receipt --- a/openvpn-pam/receipt Sat Jun 11 09:07:17 2022 +0100 +++ b/openvpn-pam/receipt Sat Jun 11 10:37:17 2022 +0100 @@ -1,7 +1,7 @@ # SliTaz package receipt. PACKAGE="openvpn-pam" -VERSION="2.5.2" +VERSION="2.5.7" CATEGORY="network" TAGS="vpn tunnel" SHORT_DESC="PAM plugin for OpenVPN." diff -r 00a9a7506076 -r adec29cf1856 openvpn/description.txt --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/openvpn/description.txt Sat Jun 11 10:37:17 2022 +0100 @@ -0,0 +1,8 @@ +OpenVPN protocol has emerged to establish itself as a de-facto standard +in the open source networking space with over 50 million downloads. +OpenVPN is entirely a community-supported OSS project which uses the GPL +license. +The project has many developers and contributors from OpenVPN Inc. and +from the broader OpenVPN community. +In addition, there are numerous projects that extend or are otherwise +related to OpenVPN. diff -r 00a9a7506076 -r adec29cf1856 openvpn/receipt --- a/openvpn/receipt Sat Jun 11 09:07:17 2022 +0100 +++ b/openvpn/receipt Sat Jun 11 10:37:17 2022 +0100 @@ -1,7 +1,7 @@ # SliTaz package receipt. PACKAGE="openvpn" -VERSION="2.5.2" +VERSION="2.5.7" CATEGORY="network" TAGS="vpn tunnel network" SHORT_DESC="Full-featured open source SSL VPN solution." @@ -26,14 +26,16 @@ # Rules to configure and make the package. compile_rules() { + # 2.5.7 unrecognised: +# --enable-password-save + ./configure \ --prefix=/usr \ - --enable-password-save \ $CONFIGURE_ARGS && make && ( cd src/plugins/auth-pam/ ; make ) && ( cd src/plugins/down-root/ ; make ) && - make DESTDIR=$DESTDIR install + make install DESTDIR=$DESTDIR } # Rules to gen a SliTaz package suitable for Tazpkg. @@ -44,12 +46,12 @@ cp -a $install/usr/sbin/openvpn $fs/usr/sbin cp -a $stuff/* $fs - chown root.root $fs/etc/init.d/* - chmod 0644 $fs/etc/openvpn/openvpn.conf + chown root.root $fs/etc/init.d/* + chmod 0644 $fs/etc/openvpn/openvpn.conf } post_remove() { - # remove config - rm -rf ${root}/etc/openvpn + # remove configuration + rm -rf $root/etc/openvpn }