diff options
author | Juergen Daubert <jue@jue.li> | 2021-02-24 11:50:01 +0100 |
---|---|---|
committer | Juergen Daubert <jue@jue.li> | 2021-02-24 11:50:01 +0100 |
commit | 76146453c04bc6db7d8de51d38b335ba6232c31e (patch) | |
tree | d8e193203281618a48748bfa14beef15daf45448 /stunnel | |
parent | bda550acaaaf1a43d253118f6cebb77db44759fd (diff) | |
download | opt-76146453c04bc6db7d8de51d38b335ba6232c31e.tar.gz opt-76146453c04bc6db7d8de51d38b335ba6232c31e.tar.xz |
stunnel: update to 5.58
Diffstat (limited to 'stunnel')
-rw-r--r-- | stunnel/.signature | 6 | ||||
-rw-r--r-- | stunnel/Pkgfile | 47 |
2 files changed, 27 insertions, 26 deletions
diff --git a/stunnel/.signature b/stunnel/.signature index 799d46a21..5bf6b6e50 100644 --- a/stunnel/.signature +++ b/stunnel/.signature @@ -1,7 +1,7 @@ untrusted comment: verify with /etc/ports/opt.pub -RWSE3ohX2g5d/QCdCnAaJqpMHrzyPxHqcTc1MZt2BbEh/hX4AD2C6711s00lrR8dw2EJrgdXejUCQgBMnNs2XCqKg0dkx0eqcQE= -SHA256 (Pkgfile) = 718fa2611e3214633c60798ca43b9b887787c72a76890c15ac89879dccca60c9 +RWSE3ohX2g5d/Q0GUrVvdZ90TZ0FtJhGHshgOIZTY+fel7+Duw3RdJtU9A5eEc8Ks9Cdl5WqM98H1nVgXOJwxFwph8YVi+EEPwc= +SHA256 (Pkgfile) = 3a46eecbfc06fc395cb4a95d8a48a45f2edd059937c1cb17efea1a8b114bbaf1 SHA256 (.footprint) = f83e6abdfdb94cb68ef512ba0ef5d19a1e180887f2cf7c92d2916af0ec7b1e51 -SHA256 (stunnel-5.57.tar.gz) = af5ab973dde11807c38735b87bdd87563a47d2fa1c72a07929fcfce80a600fe1 +SHA256 (stunnel-5.58.tar.gz) = d4c14cc096577edca3f6a2a59c2f51869e35350b3988018ddf808c88e5973b79 SHA256 (stunnel.conf) = ef09041fd68530a6029826678eb22db30a80d8a77308ee361b12aa466f7daa28 SHA256 (stunnel) = c6e5c2bcfd87b709bbc24b5c24a603b43bc9440e125eeaf283a11daadc78cbd7 diff --git a/stunnel/Pkgfile b/stunnel/Pkgfile index abf500af0..38ff79570 100644 --- a/stunnel/Pkgfile +++ b/stunnel/Pkgfile @@ -1,34 +1,35 @@ # Description: Stunnel wraps normal socket connections with SSL/TLS -# URL: https://www.stunnel.org -# Maintainer: Juergen Daubert, jue at crux dot nu -# Depends on: openssl zlib +# URL: https://www.stunnel.org +# Maintainer: Juergen Daubert, jue at crux dot nu +# Depends on: openssl zlib name=stunnel -version=5.57 +version=5.58 release=1 source=(https://www.stunnel.org/downloads/$name-$version.tar.gz \ - $name.conf $name) + $name.conf $name) build () { - cd $name-$version + cd $name-$version - ./configure --prefix=/usr \ - --sysconfdir=/etc \ - --localstatedir=/var \ - --with-ssl=/usr \ - --disable-{fips,systemd,libwrap} \ - --enable-ipv6 - make + ./configure \ + --prefix=/usr \ + --sysconfdir=/etc \ + --localstatedir=/var \ + --with-ssl=/usr \ + --disable-{fips,systemd,libwrap} \ + --enable-ipv6 + make - install -D -m 0755 src/stunnel $PKG/usr/sbin/stunnel - install -D -m 0644 doc/stunnel.8 $PKG/usr/share/man/man8/stunnel.8 - install -D -m 0755 $SRC/stunnel $PKG/etc/rc.d/stunnel - install -D -m 0644 $SRC/stunnel.conf $PKG/etc/stunnel.conf + install -D -m 0755 src/stunnel $PKG/usr/sbin/stunnel + install -D -m 0644 doc/stunnel.8 $PKG/usr/share/man/man8/stunnel.8 + install -D -m 0755 $SRC/stunnel $PKG/etc/rc.d/stunnel + install -D -m 0644 $SRC/stunnel.conf $PKG/etc/stunnel.conf - install -d $PKG/var/run - install -d -m 770 -o stunnel -g stunnel $PKG/var/run/stunnel - - install -d $PKG/etc/ssl/{certs,keys} - touch $PKG/etc/ssl/{certs/stunnel.crt,keys/stunnel.key} - chmod 0600 $PKG/etc/ssl/keys/stunnel.key + install -d $PKG/var/run + install -d -m 770 -o stunnel -g stunnel $PKG/var/run/stunnel + + install -d $PKG/etc/ssl/{certs,keys} + touch $PKG/etc/ssl/{certs/stunnel.crt,keys/stunnel.key} + chmod 0600 $PKG/etc/ssl/keys/stunnel.key } |