Date: Fri, 15 Apr 2022 20:50:49 GMT From: Rene Ladan <rene@FreeBSD.org> To: ports-committers@FreeBSD.org, dev-commits-ports-all@FreeBSD.org, dev-commits-ports-main@FreeBSD.org Subject: git: b15d7bca348d - main - Mk/Uses: remove support for Ada on 2022-06-30 Message-ID: <202204152050.23FKon2q088998@gitrepo.freebsd.org>
next in thread | raw e-mail | index | archive | help
The branch main has been updated by rene: URL: https://cgit.FreeBSD.org/ports/commit/?id=b15d7bca348d80846656d6be6cac637e6f150e7b commit b15d7bca348d80846656d6be6cac637e6f150e7b Author: Rene Ladan <rene@FreeBSD.org> AuthorDate: 2022-04-15 20:41:23 +0000 Commit: Rene Ladan <rene@FreeBSD.org> CommitDate: 2022-04-15 20:50:28 +0000 Mk/Uses: remove support for Ada on 2022-06-30 USES=ada relies on lang/gcc6-aux which expired on 2022-02-28. Its only serious consumer left is ports-mgmt/synth, which will be removed too [1]. Discussed with: fluffy (maintainer) [1] While here flatten a superfluous variable. --- Mk/Uses/ada.mk | 12 +++++++----- 1 file changed, 7 insertions(+), 5 deletions(-) diff --git a/Mk/Uses/ada.mk b/Mk/Uses/ada.mk index 5bec0ce825b2..a0ec072e0205 100644 --- a/Mk/Uses/ada.mk +++ b/Mk/Uses/ada.mk @@ -10,17 +10,19 @@ .if !defined(_INCLUDE_USES_ADA_MK) _INCLUDE_USES_ADA_MK= yes +DEPRECATED= Depends on expired lang/gcc6-aux +EXPIRATION_DATE=2022-06-30 + CC= ada -ADAXX= gcc6 # framework default . if ${ada_ARGS:Mrun} -RUN_DEPENDS+= ${LOCALBASE}/${ADAXX}-aux/bin/ada:lang/${ADAXX}-aux +RUN_DEPENDS+= ${LOCALBASE}/gcc6-aux/bin/ada:lang/gcc6-aux . endif -BUILD_DEPENDS+= ${LOCALBASE}/${ADAXX}-aux/bin/ada:lang/${ADAXX}-aux -MAKE_ENV+= PATH=${LOCALBASE}/${ADAXX}-aux/bin:${PATH} \ +BUILD_DEPENDS+= ${LOCALBASE}/gcc6-aux/bin/ada:lang/gcc6-aux +MAKE_ENV+= PATH=${LOCALBASE}/gcc6-aux/bin:${PATH} \ ADA_PROJECT_PATH=${LOCALBASE}/lib/gnat -CONFIGURE_ENV+= PATH=${LOCALBASE}/${ADAXX}-aux/bin:${PATH} \ +CONFIGURE_ENV+= PATH=${LOCALBASE}/gcc6-aux/bin:${PATH} \ ADA_PROJECT_PATH=${LOCALBASE}/lib/gnat .endif
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?202204152050.23FKon2q088998>