FreeBSD/ports 9261ca8archivers/zstr distinfo Makefile

archivers/zstr: update 1.0.7 → 1.1.0
DeltaFile
+3-3archivers/zstr/distinfo
+1-1archivers/zstr/Makefile
+4-42 files

FreeBSD/ports e28e79cdevel/py-uv-build distinfo Makefile

devel/py-uv-build: update 0.9.8 → 0.9.9
DeltaFile
+3-3devel/py-uv-build/distinfo
+1-1devel/py-uv-build/Makefile
+4-42 files

FreeBSD/ports 0a34c61security/trufflehog distinfo Makefile

security/trufflehog: update 3.90.13 → 3.91.0
DeltaFile
+5-5security/trufflehog/distinfo
+1-2security/trufflehog/Makefile
+6-72 files

FreeBSD/ports d094325devel/xbyak distinfo Makefile

devel/xbyak: update 7.25 → 7.30
DeltaFile
+3-3devel/xbyak/distinfo
+1-1devel/xbyak/Makefile
+4-42 files

FreeBSD/ports c3ffb07math/SCIP Makefile, math/SoPlex Makefile distinfo

math/SoPlex: update 7.1.1.0 → 8.0.0
DeltaFile
+5-3math/SoPlex/Makefile
+3-3math/SoPlex/distinfo
+2-0math/SoPlex/pkg-plist
+1-1math/polymake/Makefile
+1-0math/topcom/Makefile
+1-0math/SCIP/Makefile
+13-76 files

FreeBSD/ports 631ef1ddevel/selene distinfo Makefile

devel/selene: update 0.27.1 → 0.29.0
DeltaFile
+23-25devel/selene/distinfo
+11-13devel/selene/Makefile
+34-382 files

FreeBSD/ports 3813f08devel/py-uv distinfo Makefile, devel/uv distinfo Makefile.crates

devel/{,py-}uv: update 0.9.8 → 0.9.9
DeltaFile
+27-11devel/uv/distinfo
+12-4devel/uv/Makefile.crates
+3-3devel/py-uv/distinfo
+1-2devel/uv/Makefile
+1-1devel/py-uv/Makefile
+44-215 files

FreeBSD/ports 2a78c74databases/rqlite distinfo Makefile

databases/rqlite: update 9.2.3 → 9.3.0
DeltaFile
+5-5databases/rqlite/distinfo
+1-1databases/rqlite/Makefile
+6-62 files

FreeBSD/ports 27d5cf4devel/py-ruff distinfo Makefile, devel/ruff distinfo Makefile.crates

devel/{,py-}ruff: update 0.14.4 → 0.14.5
DeltaFile
+15-15devel/ruff/distinfo
+15-15devel/py-ruff/distinfo
+7-8devel/py-ruff/Makefile
+6-6devel/ruff/Makefile.crates
+1-2devel/ruff/Makefile
+44-465 files

FreeBSD/ports 19f7a1bdevel/dra distinfo Makefile

devel/dra: update 0.9.0 → 0.9.1
DeltaFile
+9-9devel/dra/distinfo
+4-5devel/dra/Makefile
+13-142 files

FreeBSD/ports 580ec82textproc Makefile, textproc/py-conllu Makefile pkg-descr

textproc/py-conllu: New port: CoNLL-U format parser for Python
DeltaFile
+34-0textproc/py-conllu/Makefile
+11-0textproc/py-conllu/pkg-descr
+3-0textproc/py-conllu/distinfo
+1-0textproc/Makefile
+49-04 files

FreeBSD/ports 596ef09misc/gemini-cli pkg-plist distinfo, misc/gemini-cli/files package-lock.json

misc/gemini-cli: update 0.13.0 → 0.15.3
DeltaFile
+0-6,312misc/gemini-cli/files/package-lock.json
+138-6misc/gemini-cli/pkg-plist
+3-3misc/gemini-cli/distinfo
+1-2misc/gemini-cli/Makefile
+142-6,3234 files

FreeBSD/ports fb3a101multimedia/qpwgraph distinfo Makefile

multimedia/qpwgraph: update 0.9.6 → 0.9.7
DeltaFile
+3-3multimedia/qpwgraph/distinfo
+3-2multimedia/qpwgraph/Makefile
+6-52 files

FreeBSD/ports 57bc911devel/bacon distinfo Makefile

devel/bacon: update 3.17.0 → 3.20.1
DeltaFile
+347-361devel/bacon/distinfo
+173-181devel/bacon/Makefile
+520-5422 files

FreeBSD/ports 9106c70misc/astc-encoder distinfo Makefile, misc/astc-encoder/files patch-Source_cmake__core.cmake

misc/astc-encoder: update 5.1.0 → 5.3.0
DeltaFile
+2-10misc/astc-encoder/files/patch-Source_cmake__core.cmake
+3-3misc/astc-encoder/distinfo
+3-1misc/astc-encoder/Makefile
+8-143 files

FreeBSD/src 07e6bfetools/build depend-cleanup.sh

depend-cleanup.sh: Remove everything before the last build epoch.

We were deleting the .a files for llvm when it was build in bootstrap,
but this caused us to rebuild all the bootstrap things since the
bootstrap compiler changed, making the build time 25 minutes instead of
77 seconds on one of my systems. Items before the last rebuild from
scratch epoch are no longer relevant because you have to rebuild
entirely, so the incremental conditions that lead up to them being
needed are no longer true.

Sponsored by:           Netflix
Reviewed by:            jrtc27, emaste
Differential Revision:  https://reviews.freebsd.org/D53693
DeltaFile
+2-207tools/build/depend-cleanup.sh
+2-2071 files

FreeBSD/src ac4b394bin/rm rm.c

rm(1): remove whiteouts when forcibly removing directories

Commit 2ed053cde5 changed UFS' VOP_RMDIR() behavior to no longer
ignore whiteouts when determining whether a directory is empty,
unless explicitly requested by the caller.  However, this also
necessitates a change to rm(1) to avoid breaking the expected
behavior when forcibly removing directory hierarchies via `rm -fr`.
I neglected to make this follow-on change despite discussing it
in the review for the breaking commit (D45987).

Finally address the breakage by making `rm -fr` imply FTS_WHITEOUT
when rm(1) reads directory contents via fts_read(3).  While here,
also fix a logic error which produces a spurious 'No error' warning
message on stdout for each deleted whiteout.

Reported by:    csjp
Reviewed by:    csjp, kib, olce
Differential Revision:  https://reviews.freebsd.org/D53640

(cherry picked from commit 8b92a6ad597e224b616a8b1d6983f3b55c85308e)
DeltaFile
+2-2bin/rm/rm.c
+2-21 files

FreeBSD/ports d93ec00textproc/R-cran-XML distinfo Makefile

textproc/R-cran-XML: Update to 3.99-0.20

Reported by:    portscout
DeltaFile
+3-3textproc/R-cran-XML/distinfo
+1-1textproc/R-cran-XML/Makefile
+4-42 files

FreeBSD/src da0c913sys/conf newvers.sh

15.0: Update to RC1

Approved by:    re (implicit)
DeltaFile
+1-1sys/conf/newvers.sh
+1-11 files

FreeBSD/src acf9009release/pkg_repos release-dvd.conf

15.0: Switch from "quarterly" to "release" pkgs

Approved by:    re (implicit)
DeltaFile
+1-1release/pkg_repos/release-dvd.conf
+1-11 files

FreeBSD/src 1ef6b8erelease/tools vmimage.subr

vmimage.subr: Don't log missing files from pkgs

When installing "extra" packages (aka those built from the ports tree),
we record everything being installed in METALOG.pkg; the contents of
that file is appended to METALOG before we generate the filesystem.

There are two cases when files recorded in METALOG.pkg will no longer
exist by the time we create the final disk image:
1. If a pkg bug results in false dependencies being installed which
are later removed by "pkg autoremove", and
2. If the pkg we build and install from /usr/ports is older than the
pkg on pkg.freebsd.org, and pkg gets upgraded automatically as part of
installing extra packages.

The ultimate issue in both cases is that there's no mechanism for
removing entries from METALOG when we run 'pkg delete'.

Address this build breakage by checking, line by line, if filesystem
objects mentioned in METALOG.pkg exist before appending them to METALOG.

    [7 lines not shown]
DeltaFile
+8-1release/tools/vmimage.subr
+8-11 files

FreeBSD/src 6ac6550release/tools vmimage.subr

vmimage.subr: autoremove -y

Running 'pkg autoremove' without -y results in VM image builds failing
when (bogusly installed) packages are removed.

Approved by:    re (cperciva)
Fixes:  6a13aeac3c1f ("vmimage.subr: pkg autoremove after pkg install")
MFC after:      immediately (needed for 15.0-RC1)

(cherry picked from commit 509dfd369046ee45b724d119c9eed43228fbb894)
(cherry picked from commit 9600598a5c011c161813f929be53c3748a6a0f01)
DeltaFile
+2-2release/tools/vmimage.subr
+2-21 files

FreeBSD/src 93c5db9release/tools vmimage.subr

vmimage.subr: Enable FreeBSD-base repo if pkgbase

When creating a VM image using pkgbase, create a configuration file in
/usr/local/etc/pkg/repos/FreeBSD.conf which enables the FreeBSD-base
repository.  (This repository is defined in /etc/pkg/FreeBSD.conf as
being disabled by default.)

Approved by:    re (cperciva)
Reported by:    Mark Millard
MFC after:      immediately (needed for 15.0-RC1)

(cherry picked from commit e0c41af9256b5c5a6c97c85d468ff734e29f1bd5)
(cherry picked from commit aade340587336218b32285d50b0e86c463f273e1)
DeltaFile
+4-0release/tools/vmimage.subr
+4-01 files

FreeBSD/src 9835413usr.sbin/bsdinstall/scripts pkgbase.in

bsdinstall: Enable FreeBSD-base repo when pkgbase

When performing a pkgbase install, create a configuration file in
/usr/local/etc/pkg/repos/FreeBSD.conf which enables the FreeBSD-base
repository.  (This repository is defined in /etc/pkg/FreeBSD.conf as
being disabled by default.)

Approved by:    re (cperciva)
Reported by:    Mark Millard
Reviewed by:    markj
MFC after:      immediately (needed for 15.0-RC1)
Differential Revision:  https://reviews.freebsd.org/D53777

(cherry picked from commit a96230e0329b32cbee0999813787a86eab521da4)
(cherry picked from commit 5d9062f2581ed280c49699a5d7c808015997ed24)
DeltaFile
+4-0usr.sbin/bsdinstall/scripts/pkgbase.in
+4-01 files

FreeBSD/src dbe26farelease/tools vmimage.subr

vmimage.subr: Log pkg/local.sqlite if pkgbase

We were doing this in vm_extra_install_packages but VM images without
any extra packages installed would not get this installed.  This
results in a pkgbase system which thinks it doesn't have any packages
installed (even though all the files are right there).

Add a "metalog_add_data ./var/db/pkg/local.sqlite" call to the pkgbase
install code path, and make the call from vm_extra_install_packages
conditional on !PKGBASE.

Approved by:    re (cperciva)
Reported by:    Michael Dexter
MFC after:      immediately (needed for 15.0-RC1)

(cherry picked from commit 10a4f2d016dccb5cfa03800bebc09a9b421c4df7)
(cherry picked from commit 6b15dc234dc56cd65f07063c1f933c214c477120)
DeltaFile
+4-1release/tools/vmimage.subr
+4-11 files

FreeBSD/src 567ba10release Makefile.gce

GCE: Don't .error on unsupported targets

We ingest Makefile.gce even when we're not trying to create GCE images
so we don't want to .error here.  Instead, set GCE_ARCH to a dummy
value which should make the problem clear to anyone who attempts to
create GCE images on an unsupported architecture.

Approved by:    re (cperciva)
Reported by:    Jenkins
Fixes:          0a8ecca4e315 ("GCE: Specify the architecture of images")

(cherry picked from commit 787d09753f70bb382a7cbfba742a612fa54069e6)
(cherry picked from commit 375f8df26be16b58ff9185823e5d90761d2144e3)
DeltaFile
+1-1release/Makefile.gce
+1-11 files

FreeBSD/src c0a98d7release Makefile.gce

GCE: Specify the architecture of images

Without a specified architecture, a user can attempt to create an
arm64 instance with an amd64 image or vice versa. With the change
the API will prevent that mismatch.

Approved by:    re (cperciva)

(cherry picked from commit 0a8ecca4e3156bcd4ebbfcb24d968e67a3a09434)
(cherry picked from commit 93769d225fddad4bc56f4edf543de45d8b666734)
DeltaFile
+9-0release/Makefile.gce
+9-01 files

FreeBSD/src 75ee49drelease Makefile.gce

GCE: Add TARGET and FS to image family

GCE image family is meant to be unique per set of image characteristics
so that a user can create instances using the image family instead of the
image name to reliably get a similar image with updated software, but no
other changes.

Without this change, the instances create API would select the most recent
non-deprecated image matching the name, regardless of architecture or
filesystem.

Approved by:    re (cperciva)

(cherry picked from commit fc83e6c5e1f20087314dc52b63e485db87a98b86)
(cherry picked from commit 0005bb76e2e707f5ed39ca67beddb8a5d629c72e)
DeltaFile
+2-2release/Makefile.gce
+2-21 files

FreeBSD/src 5d83213usr.sbin/pkg FreeBSD.conf.quarterly-release FreeBSD.conf.latest

pkg: Add FreeBSD-base to /etc/pkg/FreeBSD.conf

On -CURRENT and -STABLE this gets bits from pkg.freebsd.org; but we get
base system bits from pkgbase.freebsd.org for BETA/RC/RELEASE.

Note that this repository is disabled by default, but can still be used
by explicitly specifying it, e.g. "pkg upgrade -r FreeBSD-base".

Approved by:    re (cperciva)
With hat:       re
MFC after:      8 hours (needed in 15.0-RC1)

(cherry picked from commit 8e0b1a1c03a35a5db13e370cb3e62585d3db68e3)
(cherry picked from commit 91e1c18012dc839f400f971f02bc08798c6b9ce9)
DeltaFile
+9-0usr.sbin/pkg/FreeBSD.conf.quarterly-release
+9-0usr.sbin/pkg/FreeBSD.conf.latest
+9-0usr.sbin/pkg/FreeBSD.conf.quarterly
+27-03 files

FreeBSD/src 1b859fdusr.sbin/bsdinstall/scripts pkgbase.in

bsdinstall: Don't install FreeBSD-base.conf

When installing e.g. 15.0-RC1, we want to get files from the 15.0-RC1
pkgbase repository; but running 'pkg upgrade' after installation should
get the latest bits build from releng/15.0.

Approved by:    re (cperciva)
With hat:       re
MFC after:      8 hours (needed in 15.0-RC1)

(cherry picked from commit bdfc223c7a64369ed133a179c40067435a9f2cb3)
(cherry picked from commit e4bc038ef80607ad9ceedb52e059ebc061a2a8be)
DeltaFile
+2-10usr.sbin/bsdinstall/scripts/pkgbase.in
+2-101 files