22893 Commits

Author SHA1 Message Date
flatcar-ci
8c583cb5a1 New version: main-3447.0.0-nightly-20221208-2100 2022-12-08 21:00:31 +00:00
Krzesimir Nowak
ec5f6ca252 Merge pull request #2317 from flatcar/krnowak/libarchive-update
profiles: Drop accept keywords for app-arch/libarchive
2022-12-08 12:50:24 +01:00
Krzesimir Nowak
fed5a37dec Merge pull request #397 from flatcar/krnowak/libarchive-update
Update app-arch/libarchive
2022-12-08 12:50:18 +01:00
Mathieu Tortuyaux
1fab9ca500 coreos-base/coreos: add libsodium
update_engine needs to access context from SHA256 to store it and
restore it for further computations on it.
With OpenSSL SHA256 v3 implementation is not possible, let's use the
libsodium implementation.

Signed-off-by: Mathieu Tortuyaux <mtortuyaux@microsoft.com>
2022-12-08 11:18:52 +01:00
Mathieu Tortuyaux
018198129a coreos-base/update_engine: bump commit ID
this pulls the OpenSSL 3 upgrade.

Signed-off-by: Mathieu Tortuyaux <mtortuyaux@microsoft.com>
2022-12-08 11:18:52 +01:00
Krzesimir Nowak
246bc58053 Merge pull request #2316 from flatcar/krnowak/weekly
Updates for weekly update 2022-12-05
2022-12-08 09:43:33 +01:00
Krzesimir Nowak
eaad06ebc7 Merge pull request #396 from flatcar/buildbot/weekly-package-updates-2022-12-05
Weekly package updates 2022-12-05
2022-12-08 09:43:29 +01:00
Krzesimir Nowak
ba22599eff changelog: Add entries 2022-12-08 09:41:08 +01:00
Krzesimir Nowak
6bf8f7603c .github: Update packages list 2022-12-08 09:38:04 +01:00
Krzesimir Nowak
82e387e979 changelog: Add an entry 2022-12-08 09:37:46 +01:00
flatcar-ci
4169c67698 New version: main-3446.0.0-nightly-20221207-2100 2022-12-07 21:00:26 +00:00
Dongsu Park
c857694cbd Merge pull request #395 from flatcar/buildbot/monthly-glsa-metadata-updates-2022-12-01
Monthly GLSA metadata 2022-12-01
2022-12-07 18:01:42 +01:00
Mathieu Tortuyaux
c40db9d10f Revert "coreos-base/update_engine: remove -Werror flag"
This reverts commit 5f720f7b9987bf8b7d15a9569b4a340bdf253260.
2022-12-07 13:33:48 +01:00
Krzesimir Nowak
5cae1e12de profiles: Drop accept keywords for app-arch/libarchive
The updated package is stable for both amd64 and arm64.
2022-12-07 11:37:28 +01:00
Krzesimir Nowak
0e234985c1 app-arch/libarchive: Sync with Gentoo
It's from Gentoo commit b618d6ec93c66f91c071c99c65775aaef2471bdf.
2022-12-07 11:30:47 +01:00
flatcar-ci
ee28e6c793 New version: main-3445.0.0-nightly-20221206-2100 2022-12-06 21:00:29 +00:00
Sayan Chowdhury
3bc4dd34e7 Merge pull request #2311 from flatcar/linux-5.15.81-main
Upgrade Linux Kernel for main from 5.15.79 to 5.15.81
2022-12-07 00:23:05 +05:30
Flatcar Buildbot
b134ce0bb9 sys-kernel: Upgrade Kernel 5.15.79 to 5.15.81 2022-12-07 00:22:20 +05:30
Krzesimir Nowak
f46187dccc .github: Update packages list 2022-12-06 15:08:07 +01:00
Krzesimir Nowak
f3f210208c dev-lang/python: Sync with Gentoo
It's from Gentoo commit 1b39922b75edcd897083f7b0d91aded7ba0523e4.
2022-12-06 15:08:07 +01:00
Krzesimir Nowak
56977d879b net-libs/libpcap: Sync with Gentoo
It's from Gentoo commit 02b17c9bb64e147affc4acecaa0ff4151b2329bf.
2022-12-06 15:08:07 +01:00
Krzesimir Nowak
dd8444f6b6 app-crypt/mit-krb5: Sync with Gentoo
It's from Gentoo commit 02b17c9bb64e147affc4acecaa0ff4151b2329bf.
2022-12-06 15:08:07 +01:00
Sayan Chowdhury
bcf2bb0b77 sys-libs/pam: Apply Flatcar patches
-  sys-libs/pam: Make /sbin/unix_chkpwd suid

This is to avoid importing fcaps eclass which adds a dependency on
sys-libs/libcap, which in turn depends on sys-libs/pam. To get out of
this conundrum, we could specify a "-filecaps" use flag for
sys-libs/pam. Problem with this solution would be no capability
override for the binary making it unable to read /etc/shadow. Thus we
make the binary suid. This is strictly less secure than overriding its
capabilities, but I have no idea how to solve it in a less hacky way.

-  sys-libs/pam: Install configuration into /usr

Also provide a tmpfiles fragment to bring it back.

- sys-libs/pam: Locked accounts functionality

Signed-off-by: Sayan Chowdhury <schowdhury@microsoft.com>
2022-12-06 15:06:47 +01:00
Krzesimir Nowak
ef09c88d70 sys-libs/pam: Reset to vanilla ebuild 2022-12-06 15:03:29 +01:00
Dongsu Park
eec5d85328 sys-devel/gdb: Apply Flatcar modifications
- Fix cross build issues with configuring gmp libs

  As gdb 11 or newer requires gmp libs as dependency, a cross build of
  gdb 11.2 started to fail when its configure scripts try to detect if
  gmp exists.  The failure occurs mainly because the build still
  passes '-L/usr/lib64` to LDFLAGS. Let's say, for example, host
  toolchains outside of sysroot have amd64 libs, while the target
  inside of sysroot should have arm64 libs. However, configure scripts
  of gdb 11.2 still try to find its libs outside of sysroot,
  /usr/lib64, although it should find its libs inside of sysroot,
  e.g. /build/arm64/usr/lib64.

  To fix the cross build issues, pass --with-sysroot as well as
  --libdir, correctly with ${ESYSROOT}.

  As a side note, for some reason, upstream gdb configure scripts are
  not able to correctly make use of its gmp-specific options like
  --with-gmp or --with-gmp-lib. Passing those options does not bring
  anything.  Also configure must have both --with-sysroot and
  --libdir, to make the build work.

- Replace dependency on virtual/yacc with app-alternatives/yacc

  The former is gone in favor of the latter in Gentoo. This change
  will be dropped when we sync the package with Gentoo again.
2022-12-06 14:53:36 +01:00
Krzesimir Nowak
1f88c934c0 sys-devel/gdb: Reset to vanilla ebuild 2022-12-06 14:51:21 +01:00
Sayan Chowdhury
f6efb50cb6 net-firewall/iptables: Apply the Flatcar patches
Signed-off-by: Sayan Chowdhury <sayan@kinvolk.io>
2022-12-06 14:49:54 +01:00
Krzesimir Nowak
fd2b43d9cf net-firewall/iptables: Reset to vanilla ebuild 2022-12-06 14:42:47 +01:00
Sayan Chowdhury
b621893c2e app-shells/bash: Apply Flatcar patches
Signed-off-by: Sayan Chowdhury <schowdhury@microsoft.com>
2022-12-06 14:41:10 +01:00
Krzesimir Nowak
0a0f1733f4 app-shells/bash: Reset to vanilla ebuild 2022-12-06 14:40:14 +01:00
Krzesimir Nowak
4bd509277a sys-libs/glibc: Apply Flatcar modifications
- take care of nscd.conf via tmpfiles, add files/nscd-conf.tmpfiles.
  - comment out 'dostrip -x' to force the OS image binaries to be stripped
  - remove everything glibc wants to put under /etc since we use
    baselayout to provide that
  - replace virtual/awk with app-alternatives/awk
2022-12-06 14:38:29 +01:00
Krzesimir Nowak
43ccab8e9d sys-libs/glibc: Reset to vanilla ebuild 2022-12-06 14:36:54 +01:00
Krzesimir Nowak
a4326957df dev-lang/python-oem: Apply Flatcar modifications 2022-12-06 14:34:48 +01:00
Krzesimir Nowak
4dc2f9a83d dev-lang/python-oem: Reset to vanilla ebuild 2022-12-06 14:32:39 +01:00
Krzesimir Nowak
f76441eaeb dev-lang/python-oem: Update dependency
The `virtual/awk` package is replaced with `app-alternatives/awk`, so
reflect that in the ebuild.
2022-12-06 14:32:39 +01:00
Krzesimir Nowak
33d5bace3f profiles: Do not pull in pip stuff from dev-lang/python 2022-12-06 14:32:39 +01:00
Krzesimir Nowak
990b2749a3 coreos/config: Update description for app-crypt/mit-krb5 overrides 2022-12-06 14:32:39 +01:00
Jeremi Piotrowski
1db12d110d Merge pull request #2315 from flatcar/bug-847-kernel-fix-backport
sys-kernel/coreos-sources: Add backport of bugfix for #847
2022-12-06 13:35:15 +01:00
Kai Lüke
e1f4b08d86
Merge pull request #601 from flatcar/mantle-update-main
Upgrade mantle container image to latest HEAD in main
2022-12-06 11:54:27 +01:00
Flatcar Buildbot
29186d73ad metadata: Monthly GLSA metadata updates 2022-12-06 11:44:15 +01:00
Jeremi Piotrowski
b7eec9eed7 changelog: add entry for Flatcar#847 bugfix 2022-12-06 11:42:15 +01:00
Krzesimir Nowak
962a694804 virtual/awk: Drop package (replaced by app-alternative/awk) 2022-12-06 11:34:37 +01:00
Krzesimir Nowak
ffbe56f80f virtual/yacc: Drop package (replaced by app-alternative/yacc) 2022-12-06 11:34:37 +01:00
Krzesimir Nowak
ca76eaf945 app-alternatives/awk: Add from Gentoo
It's from Gentoo commit a88b50da320f6eca75f92a5e59b1657674775d85.
2022-12-06 10:51:53 +01:00
Flatcar Buildbot
f4827dc3f1 Update mantle container image to latest HEAD 2022-12-05 21:00:46 +00:00
flatcar-ci
0cbd825c13 New version: main-3444.0.0-nightly-20221205-2100 2022-12-05 21:00:25 +00:00
Sayan Chowdhury
9700f36c3f Merge pull request #2309 from flatcar/sayan/update-sudo-1.9.12_p1
add-admin/sudo: Sync with Gentoo upstream; updates to 1.9.12_p1
2022-12-05 19:17:44 +05:30
Jeremi Piotrowski
61592da5ec sys-kernel/coreos-sources: Add backport of bugfix for #847
Users reported a deadlock in ext4 that occurs under loads after kernel 5.15.72.
We debugged and found that this issue is also present upstream (6.x) and found
a fix. The fix has been validated to fix the issue, but we're still waiting for
a reponse from the ext4 maintainer.

In the meantime, apply the backport to our kernel sources, so that users can be
unblocked from updating. This will be released to alpha/beta first, and
hopefully by the time it is promoted to stable, the fix will be merged to the
kernel tree and backported to 5.15.
2022-12-05 13:31:20 +01:00
Krzesimir Nowak
6ef13eea5f app-alternatives/yacc: Add from Gentoo
It's from Gentoo commit 3465091539af22c037e3c910c3acf84d889e49fd.
2022-12-05 10:33:57 +01:00
Flatcar Buildbot
5502013370 sys-libs/libcap: Sync with Gentoo
It's from Gentoo commit 450a93f8953e3ccab40aa54308bec115f80e526c.
2022-12-05 07:15:10 +00:00