aboutsummaryrefslogtreecommitdiff
path: root/CHANGES
diff options
context:
space:
mode:
authorTijl Coosemans <tijl@FreeBSD.org>2024-01-20 11:38:46 +0000
committerTijl Coosemans <tijl@FreeBSD.org>2024-02-29 20:21:37 +0000
commit572f2361692640bc27729191b1267aa3fcc354a7 (patch)
tree045ff420f2555324a0d04a6c22ff1fb15a6917ce /CHANGES
parent0eb74bac9c1d8f485bc316ee51a23c6c87171322 (diff)
downloadports-572f2361692640bc27729191b1267aa3fcc354a7.tar.gz
ports-572f2361692640bc27729191b1267aa3fcc354a7.zip
Mk/*: Build with a clean environment
Both our make and gmake use the MAKEFLAGS environment variable but the values aren't compatible and the latest version of gmake complains about that. To rule out that any environment variable can cause problems like this, add a new command SETENVI=/usr/bin/env -i that clears the environment, and use it to run upstream build systems with a clean environment. Introduce a new variable WRK_ENV that contains the environment to use with SETENVI in all targets that run upstream build commands. Variables that are common between CONFIGURE_ENV and MAKE_ENV could be moved to WRK_ENV but for now it just contains a minimal environment: HOME=${WRKDIR}: Fixes USES=elixir ports that were using the user's HOME. OSVERSION: For cross building; determines the output of uname -K and getosreldate(3); affects net/freebsd-telnetd for example. PATH: Fixes USES=gem ports that were using the user's PATH. PWD=$${PWD}: Preserve current working directory; affects USES=go ports. TERM: To preserve colored output to terminals. TMPDIR: For users who define that. UNAME_*: For cross building; determines the output of uname(1); affects lang/python* for example. This commit deals with everything under Mk/. Ports that have their own targets running upstream build commands can switch to SETENVI later. The ports tree adds its definition of ARCH to the MAKEFLAGS environment variable, which is interpreted by sub-makes as command line arguments, which means that any definition of ARCH in upstream makefiles was overridden. The following ports required fixes now that this is no longer the case. games/iortcw, games/q3cellshading, games/tremulous: These use Quake 3 engine code. Fix use of ARCH. Reduce diff between FreeBSD code and Linux code. games/legesmotus: Remove ARCH related patches. lang/ocaml: Patch configure script so it detects amd64 correctly. Also make the powerpc case consistent with the other architectures. This also affects other ocaml ports like devel/ocaml-ocamlbuild and math/ocaml-num that include a Makefile.config installed by lang/ocaml. While here, use SETENVI in check-test target. net/libnatpmp: Use of upstream definition of ARCH triggers installation in PREFIX/lib64 on amd64. Disable this. PR: 276478 Approved by: portmgr (antoine) Exp-run by: antoine
Diffstat (limited to 'CHANGES')
-rw-r--r--CHANGES17
1 files changed, 16 insertions, 1 deletions
diff --git a/CHANGES b/CHANGES
index 710d36ae6446..b840bc11fdeb 100644
--- a/CHANGES
+++ b/CHANGES
@@ -10,7 +10,22 @@ in the release notes and/or placed into UPDATING.
All ports committers are allowed to commit to this file.
-20230111:
+20240229:
+AUTHOR: tijl@FreeBSD.org
+
+ A new command SETENVI that clears the environment and a new variable
+ WRK_ENV that contains a basic environment to use with SETENVI have
+ been added.
+ Ports that run (parts of) the upstream build system directly using
+ commands like "${SETENV} ${MAKE_ENV} ${MAKE_CMD} ..." should change
+ that to "${SETENVI} ${WRK_ENV} ${MAKE_ENV} ${MAKE_CMD} ...". This way
+ the build system runs with a clean environment without interference
+ from the user environment or ports framework environment. Ports can
+ add extra environment variables to WRK_ENV similar to CONFIGURE_ENV,
+ MAKE_ENV, TEST_ENV, and so on, but WRK_ENV is used in all targets
+ while the latter are target-specific.
+
+20240111:
AUTHOR: bapt@FreeBSD.org
MAN[1-8LN]PREFIX variable has been removed from the framework, use PREFIX