pkgsrc-Changes-HG archive
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]
[pkgsrc/trunk]: pkgsrc/security/tlswrapper Update to 20230101. From the chang...
details: https://anonhg.NetBSD.org/pkgsrc/rev/9b6354f3eedd
branches: trunk
changeset: 391602:9b6354f3eedd
user: schmonz <schmonz%pkgsrc.org@localhost>
date: Tue Jan 10 17:03:59 2023 +0000
description:
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
diffstat:
security/tlswrapper/Makefile | 16 +++++++++-------
security/tlswrapper/PLIST | 3 ++-
security/tlswrapper/distinfo | 9 ++++-----
security/tlswrapper/patches/patch-Makefile | 16 ----------------
4 files changed, 15 insertions(+), 29 deletions(-)
diffs (90 lines):
diff -r f3d468de8193 -r 9b6354f3eedd security/tlswrapper/Makefile
--- a/security/tlswrapper/Makefile Tue Jan 10 13:56:27 2023 +0000
+++ b/security/tlswrapper/Makefile Tue Jan 10 17:03:59 2023 +0000
@@ -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 @@
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
diff -r f3d468de8193 -r 9b6354f3eedd security/tlswrapper/PLIST
--- a/security/tlswrapper/PLIST Tue Jan 10 13:56:27 2023 +0000
+++ b/security/tlswrapper/PLIST Tue Jan 10 17:03:59 2023 +0000
@@ -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
diff -r f3d468de8193 -r 9b6354f3eedd security/tlswrapper/distinfo
--- a/security/tlswrapper/distinfo Tue Jan 10 13:56:27 2023 +0000
+++ b/security/tlswrapper/distinfo Tue Jan 10 17:03:59 2023 +0000
@@ -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
diff -r f3d468de8193 -r 9b6354f3eedd security/tlswrapper/patches/patch-Makefile
--- a/security/tlswrapper/patches/patch-Makefile Tue Jan 10 13:56:27 2023 +0000
+++ /dev/null Thu Jan 01 00:00:00 1970 +0000
@@ -1,16 +0,0 @@
-$NetBSD: patch-Makefile,v 1.3 2022/09/11 19:33:05 schmonz Exp $
-
-Do not consider building a local copy of BearSSL.
-
---- Makefile.orig 2022-08-30 13:33:51.000000000 +0000
-+++ Makefile
-@@ -267,9 +267,6 @@ tlswrapper-test: tlswrapper-test.o $(OBJ
-
-
- bearssl:
-- echo 'int main(){}' > try.c
-- $(CC) $(CFLAGS) $(CPPFLAGS) $(LDFLAGS) -o try try.c || (sh bearssl.sh; cd bearssl; make; rm build/*.so; )
-- rm -f try.c try
- mkdir -p bearssl/inc
-
- tlswrapper-tcp: tlswrapper
Home |
Main Index |
Thread Index |
Old Index