-
Notifications
You must be signed in to change notification settings - Fork 52
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #2440 from flatcar/buildbot/weekly-portage-stable-…
…package-updates-2024-11-11 Weekly portage-stable package updates 2024-11-11
- Loading branch information
Showing
538 changed files
with
21,661 additions
and
14,440 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
- SDK: autoconf ([2.72](https://lists.gnu.org/archive/html/autotools-announce/2023-12/msg00003.html)) | ||
- SDK: cmake ([3.30.5](https://cmake.org/cmake/help/v3.30/release/3.30.html#id5)) | ||
- base, dev: azure-vm-utils ([0.4.0](https://github.com/Azure/azure-vm-utils/commits/v0.4.0/)) | ||
- base, dev: bind ([9.18.29](https://bind9.readthedocs.io/en/v9.18.29/notes.html#notes-for-bind-9-18-29)) | ||
- base, dev: bpftool ([7.4.0](https://github.com/libbpf/bpftool/releases/tag/v7.4.0)) | ||
- base, dev: checkpolicy ([3.7](https://github.com/SELinuxProject/selinux/releases/tag/3.7)) | ||
- base, dev: gawk ([5.3.1](https://lists.gnu.org/archive/html/info-gnu/2024-09/msg00008.html)) | ||
- base, dev: libarchive ([3.7.7](https://github.com/libarchive/libarchive/releases/tag/v3.7.7)) | ||
- base, dev: libselinux ([3.7](https://github.com/SELinuxProject/selinux/releases/tag/3.7)) | ||
- base, dev: libsepol ([3.7](https://github.com/SELinuxProject/selinux/releases/tag/3.7)) | ||
- base, dev: libxml2 ([2.12.8](https://gitlab.gnome.org/GNOME/libxml2/-/releases/v2.12.8)) | ||
- base, dev: mokutil ([0.7.2](https://github.com/lcp/mokutil/commits/0.7.2/)) | ||
- dev: gentoolkit ([0.6.8](https://gitweb.gentoo.org/proj/gentoolkit.git/log/?h=gentoolkit-0.6.8)) | ||
- docker: docker ([27.3.1](https://github.com/moby/moby/releases/tag/v27.3.1)) | ||
- docker: docker-cli ([27.3.1](https://github.com/moby/moby/releases/tag/v27.3.1)) | ||
- sysext-python: charset-normalizer ([3.4.0](https://github.com/jawah/charset_normalizer/releases/tag/3.4.0)) | ||
- sysext-python: distlib ([0.3.9](https://github.com/pypa/distlib/blob/0.3.9/CHANGES.rst)) | ||
- sysext-python: jaraco-functools ([4.1.0](https://github.com/jaraco/jaraco.functools/blob/v4.1.0/NEWS.rsto)) | ||
- sysext-python: pyproject-hooks ([1.2.0](https://github.com/pypa/pyproject-hooks/blob/v1.2.0/docs/changelog.rst)) | ||
- sysext-python: rich ([13.9.3](https://github.com/Textualize/rich/releases/tag/v13.9.3)) | ||
- sysext-python: trove-classifiers ([2024.10.21.16](https://github.com/pypa/trove-classifiers/commits/2024.10.21.16/)) | ||
- sysext-python: truststore ([0.10.0](https://github.com/sethmlarson/truststore/blob/v0.10.0/CHANGELOG.md)) | ||
- vmware: libmspack ([1.11](https://github.com/kyz/libmspack/commits/v1.11/libmspack)) |
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
62 changes: 62 additions & 0 deletions
62
sdk_container/src/third_party/coreos-overlay/coreos/config/env/net-dns/bind
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,62 @@ | ||
# Keep only tool binaries and libraries those binaries need. | ||
ndb_install_mask=" | ||
/etc | ||
/var | ||
/usr/bin/arpaname | ||
/usr/bin/named-* | ||
/usr/bin/nsec3hash | ||
/usr/lib/systemd | ||
/usr/lib/tmpfiles.d | ||
/usr/lib64/bind | ||
/usr/lib64/libisccc* | ||
/usr/libexec | ||
/usr/sbin | ||
" | ||
|
||
INSTALL_MASK+="${ndb_install_mask}" | ||
PKG_INSTALL_MASK+="${ndb_install_mask}" | ||
|
||
unset ndb_install_mask | ||
|
||
# Override fowners to ignore changing owner or group to named. The | ||
# only files that this happens for are files that we have put into | ||
# {PKG_,}INSTALL_MASK. This will help us avoid installing | ||
# acct-user/named and acct-user/group. | ||
fowners_script=$(command -v fowners) | ||
fowners() { | ||
if [[ ${#} -gt 0 && ( ${1} = named:* || ${1} = *:named ) ]]; then | ||
return 0 | ||
fi | ||
"${fowners_script}" "${@}" | ||
} | ||
|
||
# The pkg_postinst phase function wants to generate an rndc.key file | ||
# with /usr/sbin/rndc-confgen script if the key file is missing, then | ||
# change the ownership to the named group. We don't need the key file | ||
# at all as it's presumably for named. Also, we masked the installtion | ||
# of the script. Thus we fool the phase function by putting an empty | ||
# key file there, so the function won't trigger the generation. We | ||
# drop the key file later too. | ||
# | ||
# TODO: The paths ought to be prefixed with ${EROOT}, but the | ||
# 9.18.29-r2 ebuild is botched in this regard. This was fixed in | ||
# 9.18.31-r1, so when we update to that version, the ${EROOT} prefix | ||
# will need to be added. | ||
cros_pre_pkg_postinst_add_fake_rndc_key() { | ||
local dir='/etc/bind' | ||
if [[ ! -d "${dir}" ]]; then | ||
mkdir "${dir}" || die | ||
fi | ||
touch "${dir}/rndc.key" || die | ||
} | ||
# TODO: This function should just do: | ||
# | ||
# rm -rf "${EROOT}/etc/bind" || die | ||
cros_post_pkg_postinst_drop_fake_rndc_key() { | ||
# Remove the file only if it exists and is empty. | ||
local dir='/etc/bind' file="${dir}/rndc.key" | ||
if [[ -f "${file}" && ! -s "${file}" ]]; then | ||
rm -f "${file}" || die | ||
fi | ||
rmdir "${dir}" # it's fine if it fails | ||
} |
12 changes: 0 additions & 12 deletions
12
sdk_container/src/third_party/coreos-overlay/coreos/config/env/net-dns/bind-tools
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.