mirror of
git://slackware.nl/current.git
synced 2024-12-26 09:58:59 +01:00
72065739ec
d/parallel-20240222-noarch-1.txz: Upgraded. kde/krita-5.2.2-x86_64-4.txz: Rebuilt. Recompiled against libunibreak-6.0. l/accountsservice-23.13.9-x86_64-1.txz: Upgraded. Thanks to reddog83. l/libass-0.17.1-x86_64-2.txz: Rebuilt. Recompiled against libunibreak-6.0. l/libunibreak-6.0-x86_64-1.txz: Upgraded. Shared library .so-version bump. l/orc-0.4.38-x86_64-1.txz: Upgraded. l/python-requests-2.31.0-x86_64-1.txz: Upgraded. l/python-urllib3-2.2.1-x86_64-1.txz: Upgraded. l/qt6-6.6.2_20240210_15b7e743-x86_64-1.txz: Added. n/wpa_supplicant-2.10-x86_64-3.txz: Rebuilt. Patched the implementation of PEAP in wpa_supplicant to prevent an authentication bypass. For a successful attack, wpa_supplicant must be configured to not verify the network's TLS certificate during Phase 1 authentication, and an eap_peap_decrypt vulnerability can then be abused to skip Phase 2 authentication. The attack vector is sending an EAP-TLV Success packet instead of starting Phase 2. This allows an adversary to impersonate Enterprise Wi-Fi networks. For more information, see: https://www.cve.org/CVERecord?id=CVE-2023-52160 (* Security fix *) xap/gparted-1.6.0-x86_64-1.txz: Upgraded.
32 lines
1 KiB
Diff
32 lines
1 KiB
Diff
From 7e9058c1edda71cd9aa457717ed8fed50cd49666 Mon Sep 17 00:00:00 2001
|
|
From: nater1983 <naterussell83@gmail.com>
|
|
Date: Sun, 25 Feb 2024 20:42:49 +0000
|
|
Subject: [PATCH] Add option to disable Unit Tests
|
|
|
|
- /meson.build
|
|
- /meson_options.txt
|
|
---
|
|
meson.build | 4 +++-
|
|
meson_options.txt | 1 +
|
|
2 files changed, 4 insertions(+), 1 deletion(-)
|
|
|
|
--- ./meson.build.orig 2023-03-27 14:27:39.000000000 -0500
|
|
+++ ./meson.build 2024-02-27 12:42:47.098937158 -0600
|
|
@@ -232,7 +232,9 @@
|
|
subdir('doc/libaccountsservice')
|
|
endif
|
|
|
|
-subdir('tests')
|
|
+if get_option('tests')
|
|
+ subdir('tests')
|
|
+endif
|
|
|
|
configure_file(
|
|
output: 'config.h',
|
|
--- ./meson_options.txt.orig 2023-03-27 14:27:39.000000000 -0500
|
|
+++ ./meson_options.txt 2024-02-27 12:43:12.139935773 -0600
|
|
@@ -13,3 +13,4 @@
|
|
|
|
option('docbook', type: 'boolean', value: false, description: 'build documentation (requires xmlto)')
|
|
option('gtk_doc', type: 'boolean', value: false, description: 'use gtk-doc to build documentation')
|
|
+option('tests', type: 'boolean', value: true, description : 'Build unit tests')
|