Skip site navigation (1)Skip section navigation (2)
Date:      Mon, 29 Jul 2024 19:00:53 GMT
From:      Ed Maste <emaste@FreeBSD.org>
To:        src-committers@FreeBSD.org, dev-commits-src-all@FreeBSD.org, dev-commits-src-main@FreeBSD.org
Subject:   git: 4a06d149371c - main - depend-cleanup: remove entries from 2020 and 2021
Message-ID:  <202407291900.46TJ0rhr055853@gitrepo.freebsd.org>

next in thread | raw e-mail | index | archive | help
The branch main has been updated by emaste:

URL: https://cgit.FreeBSD.org/src/commit/?id=4a06d149371c16287e1dd5a8fa51e92346a0c3f4

commit 4a06d149371c16287e1dd5a8fa51e92346a0c3f4
Author:     Ed Maste <emaste@FreeBSD.org>
AuthorDate: 2024-07-29 17:06:48 +0000
Commit:     Ed Maste <emaste@FreeBSD.org>
CommitDate: 2024-07-29 18:57:32 +0000

    depend-cleanup: remove entries from 2020 and 2021
    
    > These tests increase the build time (albeit by a small amount), so
    > they should be removed once enough time has passed and it is extremely
    > unlikely anyone would try a NO_CLEAN build against an object tree from
    > before the related change.
    
    The comment suggests a year is a reasonable period but we'll be somewhat
    more conservative for now, in part so that we retain different examples
    of special cases.
    
    Reviewed by:    brooks, imp
    Sponsored by:   The FreeBSD Foundation
    Differential Revision: https://reviews.freebsd.org/D46178
---
 tools/build/depend-cleanup.sh | 51 -------------------------------------------
 1 file changed, 51 deletions(-)

diff --git a/tools/build/depend-cleanup.sh b/tools/build/depend-cleanup.sh
index 45f04c0ace73..b93d50a57ff4 100755
--- a/tools/build/depend-cleanup.sh
+++ b/tools/build/depend-cleanup.sh
@@ -103,57 +103,6 @@ clean_dep()
 }
 
 # Date      Rev      Description
-# 20200310  r358851  rename of openmp's ittnotify_static.c to .cpp
-clean_dep lib/libomp ittnotify_static c
-# 20200414  r359930  closefrom
-clean_dep lib/libc   closefrom S
-
-# 20200826  r364746  OpenZFS merge, apply a big hammer (remove whole tree)
-if [ -e "$OBJTOP"/cddl/lib/libzfs/.depend.libzfs_changelist.o ] && \
-    egrep -qw "cddl/contrib/opensolaris/lib/libzfs/common/libzfs_changelist.c" \
-    "$OBJTOP"/cddl/lib/libzfs/.depend.libzfs_changelist.o; then
-	echo "Removing old ZFS tree"
-	for libcompat in "" $ALL_libcompats; do
-		dirprfx=${libcompat:+obj-lib${libcompat}/}
-		run rm -rf "$OBJTOP"/${dirprfx}cddl
-	done
-fi
-
-# 20200916  WARNS bumped, need bootstrapped crunchgen stubs
-if [ -e "$OBJTOP"/rescue/rescue/rescue.c ] && \
-    ! grep -q 'crunched_stub_t' "$OBJTOP"/rescue/rescue/rescue.c; then
-	echo "Removing old rescue(8) tree"
-	run rm -rf "$OBJTOP"/rescue/rescue
-fi
-
-# 20210105  fda7daf06301   pfctl gained its own version of pf_ruleset.c
-if [ -e "$OBJTOP"/sbin/pfctl/.depend.pf_ruleset.o ] && \
-    egrep -qw "sys/netpfil/pf/pf_ruleset.c" \
-    "$OBJTOP"/sbin/pfctl/.depend.pf_ruleset.o; then
-	echo "Removing old pf_ruleset dependecy file"
-	run rm -rf "$OBJTOP"/sbin/pfctl/.depend.pf_ruleset.o
-fi
-
-# 20210108  821aa63a0940   non-widechar version of ncurses removed
-if [ -e "$OBJTOP"/lib/ncurses/ncursesw ]; then
-	echo "Removing stale ncurses objects"
-	for libcompat in "" $ALL_libcompats; do
-		dirprfx=${libcompat:+obj-lib${libcompat}/}
-		run rm -rf "$OBJTOP"/${dirprfx}lib/ncurses
-	done
-fi
-
-# 20210608  f20893853e8e    move from atomic.S to atomic.c
-clean_dep   cddl/lib/libspl atomic S
-# 20211207  cbdec8db18b5    switch to libthr-friendly pdfork
-clean_dep   lib/libc        pdfork S
-
-# 20211230  5e6a2d6eb220    libc++.so.1 path changed in ldscript
-if [ -e "$OBJTOP"/lib/libc++/libc++.ld ] && \
-    fgrep -q "/usr/lib/libc++.so" "$OBJTOP"/lib/libc++/libc++.ld; then
-	echo "Removing old libc++ linker script"
-	run rm -f "$OBJTOP"/lib/libc++/libc++.ld
-fi
 
 # 20220326  fbc002cb72d2    move from bcmp.c to bcmp.S
 if [ "$MACHINE_ARCH" = "amd64" ]; then



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?202407291900.46TJ0rhr055853>