diff options
author | Lorenzo Salvadore <salvadore@FreeBSD.org> | 2025-02-06 17:26:38 +0000 |
---|---|---|
committer | Lorenzo Salvadore <salvadore@FreeBSD.org> | 2025-02-06 17:36:02 +0000 |
commit | 1ce7d70a7f4e221a73ecec7c46685586843fb317 (patch) | |
tree | dc11a320f3439e423710d55fb91668c1f61a9fa1 | |
parent | 9bc25ee236c4abd6b2cca81b2c845a9380f0008e (diff) |
devel/asmutils: Deprecate port
Latest upstream release is 19 years ago. Its release notes announce that
the software would eventually be replaced by a small Linux distribution
called a-Linux.
See https://asm.sourceforge.net/asmutils.html for more details.
The port is for i386 only, which is not a tier 1 platform for any
supported FreeBSD version.
The port does not build with GCC 14, which is soon to become GCC_DEFAULT
version. Set USE_GCC=13 so that it does not block GCC_DEFAULT version
update. [1]
PR: 284486 [1]
-rw-r--r-- | devel/asmutils/Makefile | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/devel/asmutils/Makefile b/devel/asmutils/Makefile index 9b873ceb03eb..231910b8b0dc 100644 --- a/devel/asmutils/Makefile +++ b/devel/asmutils/Makefile @@ -1,6 +1,6 @@ PORTNAME= asmutils PORTVERSION= 0.18 -PORTREVISION= 10 +PORTREVISION= 11 CATEGORIES= devel MASTER_SITES= http://asm.sourceforge.net/asmutils/ @@ -10,12 +10,14 @@ WWW= https://asm.sourceforge.net/ LICENSE= GPLv2 +DEPRECATED= latest upstream release is 19 years ago, replaced by a-Linux, does not build with GCC 14 +EXPIRATION_DATE= 2025-03-02 ONLY_FOR_ARCHS= i386 BUILD_DEPENDS= nasm:devel/nasm USES= gmake -USE_GCC= yes +USE_GCC= 13 MAKE_ARGS= OS="${OPSYS:tu}" KERNEL="${OSREL:S/.//g}" CC="${CC}" LD="${LD}" MAKE_JOBS_UNSAFE=yes |