git: 1ce7d70a7f4e - main - devel/asmutils: Deprecate port
- Go to: [ bottom of page ] [ top of archives ] [ this month ]
Date: Thu, 06 Feb 2025 17:36:22 UTC
The branch main has been updated by salvadore: URL: https://cgit.FreeBSD.org/ports/commit/?id=1ce7d70a7f4e221a73ecec7c46685586843fb317 commit 1ce7d70a7f4e221a73ecec7c46685586843fb317 Author: Lorenzo Salvadore <salvadore@FreeBSD.org> AuthorDate: 2025-02-06 17:26:38 +0000 Commit: Lorenzo Salvadore <salvadore@FreeBSD.org> CommitDate: 2025-02-06 17:36:02 +0000 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] --- devel/asmutils/Makefile | 6 ++++-- 1 file 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