pkgsrc-Changes archive

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

CVS commit: pkgsrc/net/libquic



Module Name:    pkgsrc
Committed By:   wiz
Date:           Thu Aug 21 18:49:07 UTC 2025

Modified Files:
        pkgsrc/net/libquic: distinfo
Added Files:
        pkgsrc/net/libquic/patches: patch-CMakeLists.txt
            patch-boringssl_CMakeLists.txt patch-protobuf_CMakeLists.txt

Log Message:
libquic: fix build with cmake 4


To generate a diff of this commit:
cvs rdiff -u -r1.4 -r1.5 pkgsrc/net/libquic/distinfo
cvs rdiff -u -r0 -r1.1 pkgsrc/net/libquic/patches/patch-CMakeLists.txt \
    pkgsrc/net/libquic/patches/patch-boringssl_CMakeLists.txt \
    pkgsrc/net/libquic/patches/patch-protobuf_CMakeLists.txt

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

Modified files:

Index: pkgsrc/net/libquic/distinfo
diff -u pkgsrc/net/libquic/distinfo:1.4 pkgsrc/net/libquic/distinfo:1.5
--- pkgsrc/net/libquic/distinfo:1.4     Tue Oct 26 11:05:55 2021
+++ pkgsrc/net/libquic/distinfo Thu Aug 21 18:49:06 2025
@@ -1,9 +1,11 @@
-$NetBSD: distinfo,v 1.4 2021/10/26 11:05:55 nia Exp $
+$NetBSD: distinfo,v 1.5 2025/08/21 18:49:06 wiz Exp $
 
 BLAKE2s (libquic-0.0.3.tar.gz) = 9898f85077ce4301d2e34357be21070e86b5169413f6b1090a7c75f493a55896
 SHA512 (libquic-0.0.3.tar.gz) = a04f5285b2448cd763daa9833574e5977e903975dd20980c80020ee4177df6ff6294ee2c1821d97a8ac34e44aae215178f57b52a12826135f5ee4efc8e74643b
 Size (libquic-0.0.3.tar.gz) = 5848330 bytes
+SHA1 (patch-CMakeLists.txt) = 58a283a2b7d4687295d53b1a4be04d29a9258009
 SHA1 (patch-Makefile) = 5cdfd0daf53e61b5d14f6bc1e60c8f03a72da99d
+SHA1 (patch-boringssl_CMakeLists.txt) = 029edf78a957ff5f86215e9ec06754642e9c5c44
 SHA1 (patch-boringssl_crypto_aes_aes__test.cc) = 8e4dd8bc2f00e790675c1c6b12bffaac00d0d981
 SHA1 (patch-crypto__bio__bio_test.cc) = 36d61ff4b424ca29b320b3ac132dc1f0bf468f85
 SHA1 (patch-crypto__bio__internal.h) = 39e070e153db2c3a8ba814e1902f8abc96f9a082
@@ -11,5 +13,6 @@ SHA1 (patch-crypto__bio__socket_helper.c
 SHA1 (patch-crypto__lhash__lhash_test.c) = 4183d05f29062bb8e67fe23b1a8795509f049a02
 SHA1 (patch-crypto__mem.c) = c65a57491c2cf98b4c0b0b3309bd20cb70a22852
 SHA1 (patch-include__openssl__thread.h) = f4cc2433a30be7bd476dabdff7d8be186a95ce0d
+SHA1 (patch-protobuf_CMakeLists.txt) = f7637c2dd101b173c7daadea3655ce7cea16e7cd
 SHA1 (patch-src__base__base_paths_posix.cc) = 8fbf7865f16fd89017a33b8c3ae9f5cdccb598a2
 SHA1 (patch-src__build__build_config.h) = b0cb41d7418836b9327c09fb843a2dc3278863a6

Added files:

Index: pkgsrc/net/libquic/patches/patch-CMakeLists.txt
diff -u /dev/null pkgsrc/net/libquic/patches/patch-CMakeLists.txt:1.1
--- /dev/null   Thu Aug 21 18:49:07 2025
+++ pkgsrc/net/libquic/patches/patch-CMakeLists.txt     Thu Aug 21 18:49:06 2025
@@ -0,0 +1,12 @@
+$NetBSD: patch-CMakeLists.txt,v 1.1 2025/08/21 18:49:06 wiz Exp $
+
+Fix build with cmake 4.
+
+--- CMakeLists.txt.orig        2025-08-21 18:42:33.190956664 +0000
++++ CMakeLists.txt
+@@ -1,4 +1,4 @@
+-cmake_minimum_required (VERSION 2.8.10)
++cmake_minimum_required (VERSION 3.5)
+ 
+ project (libquic)
+ 
Index: pkgsrc/net/libquic/patches/patch-boringssl_CMakeLists.txt
diff -u /dev/null pkgsrc/net/libquic/patches/patch-boringssl_CMakeLists.txt:1.1
--- /dev/null   Thu Aug 21 18:49:07 2025
+++ pkgsrc/net/libquic/patches/patch-boringssl_CMakeLists.txt   Thu Aug 21 18:49:06 2025
@@ -0,0 +1,12 @@
+$NetBSD: patch-boringssl_CMakeLists.txt,v 1.1 2025/08/21 18:49:06 wiz Exp $
+
+Fix build with cmake 4.
+
+--- boringssl/CMakeLists.txt.orig      2016-03-11 16:33:39.000000000 +0000
++++ boringssl/CMakeLists.txt
+@@ -1,4 +1,4 @@
+-cmake_minimum_required (VERSION 2.8.10)
++cmake_minimum_required (VERSION 3.5)
+ 
+ project (BoringSSL)
+ 
Index: pkgsrc/net/libquic/patches/patch-protobuf_CMakeLists.txt
diff -u /dev/null pkgsrc/net/libquic/patches/patch-protobuf_CMakeLists.txt:1.1
--- /dev/null   Thu Aug 21 18:49:07 2025
+++ pkgsrc/net/libquic/patches/patch-protobuf_CMakeLists.txt    Thu Aug 21 18:49:06 2025
@@ -0,0 +1,12 @@
+$NetBSD: patch-protobuf_CMakeLists.txt,v 1.1 2025/08/21 18:49:06 wiz Exp $
+
+Fix build with cmake 4.
+
+--- protobuf/CMakeLists.txt.orig       2025-08-21 18:43:41.348819228 +0000
++++ protobuf/CMakeLists.txt
+@@ -1,4 +1,4 @@
+-cmake_minimum_required (VERSION 2.8.10)
++cmake_minimum_required (VERSION 3.5)
+ 
+ project (libprotobuf)
+ 



Home | Main Index | Thread Index | Old Index