Skip site navigation (1)Skip section navigation (2)
Date:      Tue, 12 May 2026 09:11:49 +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: 2fee22de3757 - main - devel/lace14: Remove
Message-ID:  <6a02eed5.35c37.530b87d2@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=2fee22de375724948d3c8a8c2903b27ca87b55c4

commit 2fee22de375724948d3c8a8c2903b27ca87b55c4
Author:     Yuri Victorovich <yuri@FreeBSD.org>
AuthorDate: 2026-05-12 08:44:13 +0000
Commit:     Yuri Victorovich <yuri@FreeBSD.org>
CommitDate: 2026-05-12 09:11:46 +0000

    devel/lace14: Remove
---
 MOVED                                              |  1 +
 devel/Makefile                                     |  1 -
 devel/lace14/Makefile                              | 28 ------------------
 devel/lace14/distinfo                              |  3 --
 devel/lace14/files/patch-CMakeLists.txt            | 34 ----------------------
 devel/lace14/files/patch-benchmarks_CMakeLists.txt | 11 -------
 devel/lace14/pkg-descr                             |  2 --
 devel/lace14/pkg-plist                             | 11 -------
 8 files changed, 1 insertion(+), 90 deletions(-)

diff --git a/MOVED b/MOVED
index c7a9ef47ce0d..7a1dd5e090cd 100644
--- a/MOVED
+++ b/MOVED
@@ -5293,3 +5293,4 @@ devel/py-termstyle||2026-05-09|Has expired: Upstream project appears to be aband
 www/p5-Catalyst-Controller-BindLex||2026-05-09|Has expired: Upstream unmaintained and declared to be dangerous to use
 editors/abiword-docs||2026-05-10|Has expired: abisource.com no longer exists
 games/linwarrior||2026-05-10|Has expired: Abandoned and obsolete, last release in 2010, not really playable
+devel/lace14|devel/lace|2026-05-12|Last user switched to devel/lace
diff --git a/devel/Makefile b/devel/Makefile
index 823f82723cf2..a72d7df02b9d 100644
--- a/devel/Makefile
+++ b/devel/Makefile
@@ -1207,7 +1207,6 @@
     SUBDIR += kunifiedpush
     SUBDIR += lab
     SUBDIR += lace
-    SUBDIR += lace14
     SUBDIR += lager
     SUBDIR += laminar
     SUBDIR += lasi
diff --git a/devel/lace14/Makefile b/devel/lace14/Makefile
deleted file mode 100644
index 9df298a3d090..000000000000
--- a/devel/lace14/Makefile
+++ /dev/null
@@ -1,28 +0,0 @@
-PORTNAME=	lace
-DISTVERSIONPREFIX=	v
-DISTVERSION=	1.5.1
-PORTREVISION=	1
-CATEGORIES=	devel
-PKGNAMESUFFIX=	14-work-stealing
-
-MAINTAINER=	yuri@FreeBSD.org
-COMMENT=	Implementation of work-stealing in C
-WWW=		https://github.com/trolando/lace
-
-LICENSE=	APACHE20
-LICENSE_FILE=	${WRKSRC}/LICENSE
-
-USES=		cmake:testing
-
-USE_GITHUB=	yes
-GH_ACCOUNT=	trolando
-
-CMAKE_ON=		BUILD_SHARED_LIBS
-CMAKE_OFF=		LACE_BUILD_TESTS
-CMAKE_TESTING_ON=	LACE_BUILD_TESTS
-
-PORTSCOUT=	limit:^.*[0-9]+\.[0-9]+\.[0-9]+$$ # prevent tags like mucocos_2014_ri
-
-# tests as of 1.4.2: 100% tests passed, 0 tests failed out of 2
-
-.include <bsd.port.mk>
diff --git a/devel/lace14/distinfo b/devel/lace14/distinfo
deleted file mode 100644
index e43dcc9039a8..000000000000
--- a/devel/lace14/distinfo
+++ /dev/null
@@ -1,3 +0,0 @@
-TIMESTAMP = 1754657253
-SHA256 (trolando-lace-v1.5.1_GH0.tar.gz) = 9aea38c98a059e0ddfb36df09683ea39cf55a66b4da16000532684c28d5fd6d8
-SIZE (trolando-lace-v1.5.1_GH0.tar.gz) = 155792
diff --git a/devel/lace14/files/patch-CMakeLists.txt b/devel/lace14/files/patch-CMakeLists.txt
deleted file mode 100644
index 0df89b0ef40c..000000000000
--- a/devel/lace14/files/patch-CMakeLists.txt
+++ /dev/null
@@ -1,34 +0,0 @@
---- CMakeLists.txt.orig	2023-11-18 14:52:47 UTC
-+++ CMakeLists.txt
-@@ -25,11 +25,11 @@ endif()
-     endif()
- endif()
- 
--add_library(lace STATIC
-+add_library(lace
-     ${CMAKE_CURRENT_SOURCE_DIR}/src/lace.c
-     ${CMAKE_CURRENT_SOURCE_DIR}/src/lace.h
- )
--add_library(lace14 STATIC
-+add_library(lace14
-     ${CMAKE_CURRENT_SOURCE_DIR}/src/lace14.c
-     ${CMAKE_CURRENT_SOURCE_DIR}/src/lace14.h
- )
-@@ -56,7 +56,7 @@ target_compile_options(lace PRIVATE
- 
- target_compile_options(lace PRIVATE
-     $<$<OR:$<CXX_COMPILER_ID:Clang>,$<CXX_COMPILER_ID:GNU>>:
--        -pipe -march=native
-+        -pipe
-         $<$<CONFIG:Debug>:-O0 -Wall -Wextra -Wpedantic>>
-     $<$<CXX_COMPILER_ID:MSVC>:
-         $<$<CONFIG:Debug>:/Od /Wall /Zi>>
-@@ -64,7 +64,7 @@ target_compile_options(lace14 PRIVATE
- 
- target_compile_options(lace14 PRIVATE
-     $<$<OR:$<CXX_COMPILER_ID:Clang>,$<CXX_COMPILER_ID:GNU>>:
--        -pipe -march=native
-+        -pipe
-         $<$<CONFIG:Debug>:-O0 -Wall -Wextra -Wpedantic>>
-     $<$<CXX_COMPILER_ID:MSVC>:
-         $<$<CONFIG:Debug>:/Od /Wall /Zi>>
diff --git a/devel/lace14/files/patch-benchmarks_CMakeLists.txt b/devel/lace14/files/patch-benchmarks_CMakeLists.txt
deleted file mode 100644
index 89d193cca126..000000000000
--- a/devel/lace14/files/patch-benchmarks_CMakeLists.txt
+++ /dev/null
@@ -1,11 +0,0 @@
---- benchmarks/CMakeLists.txt.orig	2025-08-19 10:37:46 UTC
-+++ benchmarks/CMakeLists.txt
-@@ -4,7 +4,7 @@ macro(set_compilation_settings NAME)
-     target_compile_features(${NAME} PRIVATE c_std_11 cxx_std_11)
-     target_compile_options(${NAME} PRIVATE
-         $<$<OR:$<CXX_COMPILER_ID:Clang>,$<CXX_COMPILER_ID:GNU>>:
--            -pipe -march=native -Wall -Wextra -Wpedantic -Wno-deprecated>
-+            -pipe -Wall -Wextra -Wpedantic -Wno-deprecated>
-         $<$<CXX_COMPILER_ID:MSVC>: /W4>
-     )
-     if (CMAKE_BUILD_TYPE STREQUAL "Release")
diff --git a/devel/lace14/pkg-descr b/devel/lace14/pkg-descr
deleted file mode 100644
index b0efdd64bc2b..000000000000
--- a/devel/lace14/pkg-descr
+++ /dev/null
@@ -1,2 +0,0 @@
-Lace is a C framework for fine-grained fork-join parallelism intended for
-scientific computations on multi-core computers.
diff --git a/devel/lace14/pkg-plist b/devel/lace14/pkg-plist
deleted file mode 100644
index 6b1ab64e5d57..000000000000
--- a/devel/lace14/pkg-plist
+++ /dev/null
@@ -1,11 +0,0 @@
-include/lace.h
-include/lace14.h
-include/lace_config.h
-lib/cmake/lace/lace-config-version.cmake
-lib/cmake/lace/lace-config.cmake
-lib/cmake/lace/lace-targets-%%CMAKE_BUILD_TYPE%%.cmake
-lib/cmake/lace/lace-targets.cmake
-lib/liblace.so
-lib/liblace14.so
-libdata/pkgconfig/lace.pc
-libdata/pkgconfig/lace14.pc


home | help

Want to link to this message? Use this
URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?6a02eed5.35c37.530b87d2>