Skip site navigation (1)Skip section navigation (2)
Date:      Tue, 24 Mar 2026 23:06:01 +0000
From:      Yuri Victorovich <yuri@FreeBSD.org>
To:        ports-committers@FreeBSD.org, dev-commits-ports-all@FreeBSD.org, dev-commits-ports-main@FreeBSD.org
Subject:   git: ac0b41b0fa82 - main - devel/lace: update 2=?utf-8?Q?=2E2.2 =E2=86=92?= 2.2.3
Message-ID:  <69c318d9.31a2c.26f37958@gitrepo.freebsd.org>

index | next in thread | raw e-mail

The branch main has been updated by yuri:

URL: https://cgit.FreeBSD.org/ports/commit/?id=ac0b41b0fa82f85d94e7292b9f0e0d0e5a113092

commit ac0b41b0fa82f85d94e7292b9f0e0d0e5a113092
Author:     Yuri Victorovich <yuri@FreeBSD.org>
AuthorDate: 2026-03-24 21:44:38 +0000
Commit:     Yuri Victorovich <yuri@FreeBSD.org>
CommitDate: 2026-03-24 23:05:57 +0000

    devel/lace: update 2.2.2 → 2.2.3
---
 devel/lace/Makefile                              |  5 +---
 devel/lace/distinfo                              |  6 ++---
 devel/lace/files/patch-CMakeLists.txt            | 31 ------------------------
 devel/lace/files/patch-benchmarks_CMakeLists.txt | 10 --------
 4 files changed, 4 insertions(+), 48 deletions(-)

diff --git a/devel/lace/Makefile b/devel/lace/Makefile
index 772b085c5419..4b72735fe1b1 100644
--- a/devel/lace/Makefile
+++ b/devel/lace/Makefile
@@ -1,6 +1,6 @@
 PORTNAME=	lace
 DISTVERSIONPREFIX=	v
-DISTVERSION=	2.2.2
+DISTVERSION=	2.2.3
 CATEGORIES=	devel
 PKGNAMESUFFIX=	-work-stealing
 
@@ -11,9 +11,6 @@ WWW=		https://github.com/trolando/lace
 LICENSE=	APACHE20
 LICENSE_FILE=	${WRKSRC}/LICENSE
 
-BROKEN_armv7=	compilation fails: error: static assertion failed due to requirement '(sizeof(struct _lace_task) % 64) == 0': lace_task size should be a multiple of LACE_CACHE_LINE_SIZE
-BROKEN_i386=	compilation fails: error: static assertion failed due to requirement '(sizeof(struct _lace_task) % 64) == 0': lace_task size should be a multiple of LACE_CACHE_LINE_SIZE
-
 USES=		cmake:testing
 
 USE_GITHUB=	yes
diff --git a/devel/lace/distinfo b/devel/lace/distinfo
index 348ca108a884..603d835fef0c 100644
--- a/devel/lace/distinfo
+++ b/devel/lace/distinfo
@@ -1,3 +1,3 @@
-TIMESTAMP = 1774371892
-SHA256 (trolando-lace-v2.2.2_GH0.tar.gz) = 73a4dcad8eb3145fae843b8eb766f7f84992292955272ea351c9ba53c128eb4c
-SIZE (trolando-lace-v2.2.2_GH0.tar.gz) = 206306
+TIMESTAMP = 1774392122
+SHA256 (trolando-lace-v2.2.3_GH0.tar.gz) = 72fea4d61d333655ac02531b134800cf75888f3ed370d63b2e862e695cc32a6d
+SIZE (trolando-lace-v2.2.3_GH0.tar.gz) = 206676
diff --git a/devel/lace/files/patch-CMakeLists.txt b/devel/lace/files/patch-CMakeLists.txt
index 680572b933a0..a70f913e01fa 100644
--- a/devel/lace/files/patch-CMakeLists.txt
+++ b/devel/lace/files/patch-CMakeLists.txt
@@ -9,34 +9,3 @@
      add_library(lace::${_target} ALIAS ${_target})
  
      target_compile_features(${_target} PUBLIC c_std_11)
-@@ -115,7 +115,7 @@ foreach(_target lace lace32 lace128)
-     if(CMAKE_C_COMPILER_ID MATCHES "GNU")
-         target_compile_options(${_target} PRIVATE
-             -pipe
--            -Wall -Wextra -Wpedantic -Werror
-+            -Wall -Wextra -Wpedantic
-             -Wshadow # avoid potential shadowing bugs
-             -Wnull-dereference # warn when we could null dereference
-             -Wformat=2 # improve format string checking for logging
-@@ -124,12 +124,11 @@ foreach(_target lace lace32 lace128)
-             -Wconversion # catch implicit narrowing conversions
-             -Wsign-conversion # catch implicit changes to signed/unsigned
-             $<$<CONFIG:Debug>:-O0>
--            $<$<BOOL:${LACE_NATIVE_OPT}>:-march=native>
-         )
-     elseif(CMAKE_C_COMPILER_ID MATCHES "Clang")
-         target_compile_options(${_target} PRIVATE
-             -pipe
--            -Wall -Wextra -Wpedantic -Werror
-+            -Wall -Wextra -Wpedantic
-             -Wshadow # avoid potential shadowing bugs
-             -Wnull-dereference # warn when we could null dereference
-             -Wformat=2 # improve format string checking for logging
-@@ -139,7 +138,6 @@ foreach(_target lace lace32 lace128)
-             -Wsign-conversion # catch implicit changes to signed/unsigned
-             -Watomic-implicit-seq-cst # ensure all atomic load/store are explicit
-             $<$<CONFIG:Debug>:-O0>
--            $<$<BOOL:${LACE_NATIVE_OPT}>:-march=native>
-         )
-     elseif(MSVC)
-         target_compile_options(${_target} PUBLIC
diff --git a/devel/lace/files/patch-benchmarks_CMakeLists.txt b/devel/lace/files/patch-benchmarks_CMakeLists.txt
deleted file mode 100644
index 13c15d3a2ce7..000000000000
--- a/devel/lace/files/patch-benchmarks_CMakeLists.txt
+++ /dev/null
@@ -1,10 +0,0 @@
---- benchmarks/CMakeLists.txt.orig	2026-03-06 23:32:42 UTC
-+++ benchmarks/CMakeLists.txt
-@@ -7,7 +7,6 @@ macro(set_compilation_settings NAME)
-     if(CMAKE_C_COMPILER_ID MATCHES "Clang|GNU")
-         target_compile_options(${NAME} PRIVATE
-             -pipe -Wall -Wextra -Wpedantic -Wno-deprecated
--            $<$<BOOL:${LACE_NATIVE_OPT}>:-march=native>
-         )
-     endif()
- 


home | help

Want to link to this message? Use this
URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?69c318d9.31a2c.26f37958>