14297 Commits

Author SHA1 Message Date
Sayan Chowdhury
520b9975d9 Merge pull request #2017 from flatcar-linux/sayan/update-cifs-utils-6.15
net-fs/cifs-utils: Add the package.accept_keywords for cifs-utils
2022-07-13 14:30:59 +05:30
Flatcar Buildbot
224d98c21d dev-lang: Upgrade Go 1.18.3 to 1.18.4 2022-07-13 08:47:35 +00:00
Flatcar Buildbot
acf8ee4e2a dev-lang: Upgrade Go 1.17.11 to 1.17.12 2022-07-13 08:47:35 +00:00
Jeremi Piotrowski
759df3dee2 Merge pull request #1840 from flatcar-linux/jepio/nvidia-service-improvement
nvidia driver build improvements
2022-07-13 10:40:50 +02:00
Sayan Chowdhury
0fd8bab4a8 changelog: Add the changelog entry to the cifs-utils
Signed-off-by: Sayan Chowdhury <schowdhury@microsoft.com>
2022-07-13 13:09:46 +05:30
Flatcar Buildbot
f19e737de9 sys-kernel: Upgrade Kernel 5.15.52 to 5.15.54 2022-07-13 07:22:41 +00:00
Sayan Chowdhury
18299dc636 profiles: remove outdated arm64 accept_keywords for curl
Signed-off-by: Sayan Chowdhury <schowdhury@microsoft.com>
2022-07-12 20:34:02 +05:30
Sayan Chowdhury
40e929af24 net-misc/curl: Sync with Gentoo upstream; updates to 7.84.0
gentoo ref: 1aa4ba5418

Signed-off-by: Sayan Chowdhury <schowdhury@microsoft.com>
2022-07-12 20:30:38 +05:30
Sayan Chowdhury
c0204785ec app-admin/sudo: Sync with Gentoo upstream; updates to 1.9.10-r1
gentoo sync ref: 6e69c00ebc

Signed-off-by: Sayan Chowdhury <schowdhury@microsoft.com>
2022-07-12 19:38:59 +05:30
Dongsu Park
a023d537fe changelog: add changelog for gnupg 2.2.35 2022-07-12 11:20:56 +02:00
Dongsu Park
5725e318b5 app-crypt/gnupg: add patches for accepting without UIDs
When the GnuPG keyserver is set to `keys.openpgp.org`, `gpg --recv-keys`
occasionally fails with the following error:

```
gpg: key E52F0DB391453C45: no user ID
```

We need to make GnuPG accept keys even without UIDs.
Original patches come from
f292beac11/debian/patches/import-merge-without-userid .
See also https://dev.gnupg.org/T4393 .

Based on commit ff9200d8d3fce1feaa1eaa751a0dd2a50acbaae0 .
2022-07-12 11:20:53 +02:00
Sayan Chowdhury
926e4501d4 net-fs/cifs-utils: Add the package.accept_keywords for cifs-utils
Signed-off-by: Sayan Chowdhury <schowdhury@microsoft.com>
2022-07-12 14:14:44 +05:30
Sayan Chowdhury
01af08e54d net-fs/cifs-utils: Sync with Gentoo upstrea; updates to 6.15
Signed-off-by: Sayan Chowdhury <schowdhury@microsoft.com>
2022-07-12 14:13:49 +05:30
flatcar-ci
056752222e New version: main-3297.0.0-nightly-20220711-2100 2022-07-11 21:00:28 +00:00
Dongsu Park
eb108906b6 app-crypt/gnupg: update to 2.2.35-r1
Update to gnupg 2.2.35-r1, mainly to address CVE-2022-34903.

Gentoo commit: 2b8f76c36b848ee02b57c00b29fa293d0c0dfc02
2022-07-11 13:22:20 +02:00
Flatcar Buildbot
c6ac1100d6 Update mantle container image to latest HEAD 2022-07-11 07:10:34 +00:00
flatcar-ci
392ce4089b New version: main-3292.0.0-nightly-20220706-2100 2022-07-06 21:00:36 +00:00
Krzesimir Nowak
f50d2cbb4e Merge pull request #2007 from flatcar-linux/linux-5.15.52-main
Upgrade Linux Kernel in main from 5.15.51 to 5.15.52
2022-07-06 15:19:28 +02:00
flatcar-ci
4e1909afc2 New version: main-3291.0.0-nightly-20220705-2100 2022-07-05 21:00:30 +00:00
Flatcar Buildbot
40beab1df7 dev-lang: Upgrade dev-lang/rust 1.61.0 to 1.62.0 2022-07-05 07:39:35 +00:00
Flatcar Buildbot
5e445140e7 sys-kernel: Upgrade Kernel 5.15.51 to 5.15.52 2022-07-03 07:21:56 +00:00
flatcar-ci
9ba0c27cb2 New version: main-3286.0.0-nightly-20220630-2100 2022-07-01 15:37:28 +00:00
Dongsu Park
edb6d2e7d0 Merge pull request #2001 from flatcar-linux/dongsu/glibc-2.34-p1
preparation for glibc 2.34
2022-07-01 15:05:25 +02:00
Dongsu Park
0d64fd726d changelog: add changelog for gdb 11.2 2022-07-01 15:02:31 +02:00
Flatcar Buildbot
610686c022 Update mantle container image to latest HEAD 2022-06-30 21:00:54 +00:00
flatcar-ci
99e9460f0f New version: main-3286.0.0-nightly-20220630-2100 2022-06-30 21:00:27 +00:00
Dongsu Park
47e5c0d929 sys-devel/gdb: 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.
2022-06-30 17:46:19 +02:00
Dongsu Park
416e41b2c3 sys-devel/gdb: sync with Gentoo for gdb 11.2
Update sys-devel/gdb to 11.2, as gdb 9 is not compatible with glibc 2.34
any more.
2022-06-30 17:46:19 +02:00
Dongsu Park
c4316b1bbc profiles: accept keywords for app-crypt/adcli 0.9.1-r2
To install app-crypt/adcli 0.9.1-r2, accept keywords for ~amd64 and
~arm64.
2022-06-30 17:46:19 +02:00
Dongsu Park
014ef063bf app-admin/adcli: move adcli to portage-stable
To fix build issues that happen in adcli 0.9 with glibc 2.34, we should
sync adcli with upstream Gentoo, where the build issue is already fixed.
As Gentoo has the ebuild under the category `app-crypt`, we simply move
from adcli from coreos-overlay to portage-stable, move adcli to the
app-crypt category, and update the version to 0.9.1-r2.
2022-06-30 17:46:19 +02:00
Dongsu Park
994ae65e71 coreos-base/coreos: rename app-admin/adcli to app-crypt/adcli
Since app-admin/adcli was moved to app-crypt/adcli, being consistent
with upstream Gentoo, update it also in coreos-base/coreos ebuild.
2022-06-30 17:46:19 +02:00
Kai Lueke
86dec4e1df coreos-base/coreos-init: Remove outdated LTS motd information
This pulls in
https://github.com/flatcar-linux/init/pull/75
to update the LTS info that is printed on login.
2022-06-30 12:05:48 +02:00
flatcar-ci
89db53401a New version: main-3285.0.0-nightly-20220629-2100 2022-06-29 21:00:27 +00:00
Krzesimir Nowak
375f634187 changelog: Fix link 2022-06-29 17:23:46 +02:00
Flatcar Buildbot
ed5a5c6b2d sys-kernel: Upgrade Kernel 5.15.50 to 5.15.51 2022-06-29 07:23:13 +00:00
Flatcar Buildbot
d02975f832 Update mantle container image to latest HEAD 2022-06-28 21:01:04 +00:00
flatcar-ci
55ddaf4d16 New version: main-3284.0.0-nightly-20220628-2100 2022-06-28 21:00:45 +00:00
Krzesimir Nowak
7550545520 Merge pull request #1990 from flatcar-linux/cacerts-3.80-main
Upgrade ca-certificates in main from 3.79 to 3.80
2022-06-28 08:27:56 +02:00
flatcar-ci
0aaf36555f New version: main-3283.0.0-nightly-20220627-2100 2022-06-27 21:00:28 +00:00
Krzesimir Nowak
911586b472 changelog: Fix link 2022-06-27 17:27:33 +02:00
Flatcar Buildbot
fd64754ec2 app-misc: Upgrade ca-certificates 3.79 to 3.80 2022-06-27 07:22:39 +00:00
Flatcar Buildbot
e639b65a2c sys-kernel: Upgrade Kernel 5.15.48 to 5.15.50 2022-06-26 07:21:29 +00:00
Dongsu Park
ca0e6ba32e changelog/updates: add changelog for packages needed by glibc 2.34
Add changelog for packages needed by glibc 2.34.
2022-06-24 17:39:40 +02:00
Dongsu Park
7943955d0c app-crypt/adcli: move adcli from coreos-overlay
To fix build issues that happen in adcli 0.9 with glibc 2.34, we should
sync adcli with upstream Gentoo, where the build issue is already fixed.
As Gentoo has the ebuild under the category `app-crypt`, we simply move
from adcli from coreos-overlay to portage-stable, move adcli to the
app-crypt category, and update the version to 0.9.1-r2.
2022-06-24 17:39:40 +02:00
flatcar-ci
737debfdeb New version: main-3279.0.0-nightly-20220623-2100 2022-06-23 21:00:28 +00:00
flatcar-ci
e3af9c9baa New version: main-3277.0.0-nightly-20220621-2100 2022-06-21 21:00:29 +00:00
Sayan Chowdhury
72e2e368c4 Merge pull request #1972 from flatcar-linux/linux-5.15.48-main
Upgrade Linux Kernel in main from 5.15.47 to 5.15.48
2022-06-21 02:45:55 +05:30
flatcar-ci
f12224d985 New version: main-3276.0.0-nightly-20220620-2100 2022-06-20 21:00:22 +00:00
flatcar-ci
11ab199dbb New version: main-3273.0.0-nightly-20220617-2100 2022-06-17 21:00:29 +00:00
Sayan Chowdhury
c72393a02b changelog: Add updates, security for the intel-microcode
Signed-off-by: Sayan Chowdhury <schowdhury@microsoft.com>
2022-06-17 16:16:50 +05:30