pkgsrc-Changes archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

CVS commit: pkgsrc/security/tlswrapper



Module Name:    pkgsrc
Committed By:   schmonz
Date:           Tue Jan 10 17:03:59 UTC 2023

Modified Files:
        pkgsrc/security/tlswrapper: Makefile PLIST distinfo
Removed Files:
        pkgsrc/security/tlswrapper/patches: patch-Makefile

Log Message:
Update to 20230101. From the changelog:

20230101:
- removed duplicit crypto_scalarmult_curve25519.* implementation and
  used X25519 from bearssl library
- randombytes: rollback to /dev/urandom variant only
- Makefile: removed bearssl target

20221229:
- fixed parallel build

20221227:
- LICENCE updated from public-domain to CC0
- updated examples and linked examples.md from README.md
- added more error log messages when proxy-protocol is used


To generate a diff of this commit:
cvs rdiff -u -r1.6 -r1.7 pkgsrc/security/tlswrapper/Makefile \
    pkgsrc/security/tlswrapper/distinfo
cvs rdiff -u -r1.2 -r1.3 pkgsrc/security/tlswrapper/PLIST
cvs rdiff -u -r1.3 -r0 pkgsrc/security/tlswrapper/patches/patch-Makefile

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: pkgsrc/security/tlswrapper/Makefile
diff -u pkgsrc/security/tlswrapper/Makefile:1.6 pkgsrc/security/tlswrapper/Makefile:1.7
--- pkgsrc/security/tlswrapper/Makefile:1.6     Sun Sep 11 19:33:05 2022
+++ pkgsrc/security/tlswrapper/Makefile Tue Jan 10 17:03:59 2023
@@ -1,16 +1,16 @@
-# $NetBSD: Makefile,v 1.6 2022/09/11 19:33:05 schmonz Exp $
+# $NetBSD: Makefile,v 1.7 2023/01/10 17:03:59 schmonz Exp $
 
 DISTNAME=              ${GITHUB_PROJECT}
 PKGNAME=               ${GITHUB_PROJECT}-${GITHUB_TAG}
 CATEGORIES=            security net
 MASTER_SITES=          ${MASTER_SITE_GITHUB:=janmojzis/}
 GITHUB_PROJECT=                tlswrapper
-GITHUB_TAG=            20220901
+GITHUB_TAG=            20230101
 
 MAINTAINER=            schmonz%NetBSD.org@localhost
 HOMEPAGE=              https://github.com/janmojzis/tlswrapper/
 COMMENT=               UCSPI/inetd-style TLS encryption wrapper
-#LICENSE=              # TODO: (see mk/license.mk)
+LICENSE=               cc0-1.0-universal
 
 TEST_TARGET=           test
 
@@ -24,12 +24,14 @@ INSTALLATION_DIRS=  bin man/man1 share/ex
 
 do-install:
        cd ${WRKSRC};                                                   \
-       ${INSTALL_DATA} examples.md \
-               ${DESTDIR}${PREFIX}/share/examples/${PKGBASE};          \
+       for i in README.md examples.md; do                              \
+               ${INSTALL_DATA} $${i}                                   \
+                       ${DESTDIR}${PREFIX}/share/examples/${PKGBASE};  \
+       done;                                                           \
        for i in tlswrapper tlswrapper-smtp tlswrapper-tcp; do          \
-               ${INSTALL_PROGRAM} $${i} \
+               ${INSTALL_PROGRAM} $${i}                                \
                        ${DESTDIR}${PREFIX}/bin;                        \
-               ${INSTALL_MAN} man/$${i}.1 \
+               ${INSTALL_MAN} man/$${i}.1                              \
                        ${DESTDIR}${PREFIX}/${PKGMANDIR}/man1;          \
        done
 
Index: pkgsrc/security/tlswrapper/distinfo
diff -u pkgsrc/security/tlswrapper/distinfo:1.6 pkgsrc/security/tlswrapper/distinfo:1.7
--- pkgsrc/security/tlswrapper/distinfo:1.6     Sun Sep 11 19:33:05 2022
+++ pkgsrc/security/tlswrapper/distinfo Tue Jan 10 17:03:59 2023
@@ -1,6 +1,5 @@
-$NetBSD: distinfo,v 1.6 2022/09/11 19:33:05 schmonz Exp $
+$NetBSD: distinfo,v 1.7 2023/01/10 17:03:59 schmonz Exp $
 
-BLAKE2s (tlswrapper-20220901.tar.gz) = bdd737eb0ec0cb31550eea387a72e4317b3ce345170022d6c51536cb7be06aee
-SHA512 (tlswrapper-20220901.tar.gz) = d4ed61270c4ce5d5660bc7ac2892f9c1610b88ff7a8aff27834159e858ef10a6ea2f568c53d80a0dcbc43a0d98bd9212b66a0a003caf3ccc5e31d9504530b74d
-Size (tlswrapper-20220901.tar.gz) = 249120 bytes
-SHA1 (patch-Makefile) = 06d4b97ac026693def83bbab09249737a152ac97
+BLAKE2s (tlswrapper-20230101.tar.gz) = 8526c77eacaa699c4a2928f18554fd571a99e6d80fd8ef9aa50f51c048972a30
+SHA512 (tlswrapper-20230101.tar.gz) = ff867ba7d5c4d3dc08bd9d27aeb79cd57d33570843aeca86cc3e415a22f175d7a270899d1a71e293d099aa9a1489ac1b65cd95f625f6a5cf3e1d245dada11245
+Size (tlswrapper-20230101.tar.gz) = 249311 bytes

Index: pkgsrc/security/tlswrapper/PLIST
diff -u pkgsrc/security/tlswrapper/PLIST:1.2 pkgsrc/security/tlswrapper/PLIST:1.3
--- pkgsrc/security/tlswrapper/PLIST:1.2        Sat Jan 15 19:04:24 2022
+++ pkgsrc/security/tlswrapper/PLIST    Tue Jan 10 17:03:59 2023
@@ -1,8 +1,9 @@
-@comment $NetBSD: PLIST,v 1.2 2022/01/15 19:04:24 schmonz Exp $
+@comment $NetBSD: PLIST,v 1.3 2023/01/10 17:03:59 schmonz Exp $
 bin/tlswrapper
 bin/tlswrapper-smtp
 bin/tlswrapper-tcp
 man/man1/tlswrapper-smtp.1
 man/man1/tlswrapper-tcp.1
 man/man1/tlswrapper.1
+share/examples/tlswrapper/README.md
 share/examples/tlswrapper/examples.md



Home | Main Index | Thread Index | Old Index