Commit 2fee22de authored by Yuri Victorovich's avatar Yuri Victorovich
Browse files

devel/lace14: Remove

parent 03e08d98
Loading
Loading
Loading
Loading
+1 −0
Original line number Diff line number Diff line
@@ -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
+0 −1
Original line number Diff line number Diff line
@@ -1207,7 +1207,6 @@
    SUBDIR += kunifiedpush
    SUBDIR += lab
    SUBDIR += lace
    SUBDIR += lace14
    SUBDIR += lager
    SUBDIR += laminar
    SUBDIR += lasi

devel/lace14/Makefile

deleted100644 → 0
+0 −28
Original line number Diff line number Diff line
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>

devel/lace14/distinfo

deleted100644 → 0
+0 −3
Original line number Diff line number Diff line
TIMESTAMP = 1754657253
SHA256 (trolando-lace-v1.5.1_GH0.tar.gz) = 9aea38c98a059e0ddfb36df09683ea39cf55a66b4da16000532684c28d5fd6d8
SIZE (trolando-lace-v1.5.1_GH0.tar.gz) = 155792
+0 −34
Original line number Diff line number Diff line
--- 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>>
Loading