Commit Graph

2689 Commits

Author SHA1 Message Date
Dongsu Park
7f89d06380 Merge pull request #140 from kinvolk/dongsu/dhcpcd-8.1.9
net-misc/dhcpcd: update to 8.1.9
2021-01-22 09:49:21 +01:00
Dongsu Park
311fdd6f25 net-misc/dhcpcd: update to 8.1.9
Update dhcpcd to 8.1.9 to address the following security issues:

* CVE-2019-11577
* CVE-2019-11766

Note, dhcpcd is not a standard tool of Flatcar, because by default
networking is configured via systemd-networkd. We update the package
just for potential use cases that still depend on dhcpcd. However,
in the long term, we should not ship dhcpcd in the production images.
2021-01-22 07:52:52 +01:00
Krzesimir Nowak
8aeedb1818 sys-libs/libnih: Drop unused package 2021-01-21 16:35:34 +01:00
Dongsu Park
274a9830d4 app-crypt/mit-krb5; update to 1.18.2-r2
Update mit-krb5 to 1.18.2-r2, to address the security issue
CVE-2020-28196.
See also https://security.gentoo.org/glsa/202011-17.
2021-01-19 16:52:49 +01:00
Dongsu Park
c9afc48e35 net-libs/nghttp2: add new package nghttp2
As `net-misc/curl` 7.74 pulls in `net-libs/nghttp2`, we need to add
a new package for that.
2021-01-18 09:24:54 +01:00
Dongsu Park
88a3416c13 profiles: add curl to MISC-FREE license group
Now that curl has its own license file, it should be also added to
`MISC-FREE` license group, just like Gentoo.
Simply sync `license_groups` with Gentoo.
2021-01-18 09:24:36 +01:00
Dongsu Park
399118dca6 licenses: add a new license curl
Now that curl >= 7.70 requires its own license file, we need to make
it included in the SDK, so that `/var/gentoo/repos/gentoo/licenses/curl`
can be available. Without that file, the image build step fails due to
a missing license file for curl.
2021-01-15 16:27:29 +01:00
Dongsu Park
2b2694a871 net-misc/curl: update to 7.74.0
We need to update net-misc/curl to 7.74.0, mainly to address the
following security issues:

* CVE-2020-8169
* CVE-2020-8231
* CVE-2020-8284
* CVE-2020-8285
* CVE-2020-8286
2021-01-15 16:21:19 +01:00
Flatcar Buildbot
d961e5519e Upgrade virtual Rust in main from 1.48.0 to 1.49.0 2021-01-05 08:00:51 +00:00
Dongsu Park
c0065d5e68 Merge pull request #135 from kinvolk/rust-1.48.0-main
Upgrade virtual Rust in main from 1.47.0 to 1.48.0
2020-12-17 12:40:37 +01:00
Dongsu Park
8b5f29caa1 Merge pull request #121 from kinvolk/dongsu/sqlite-gentoo
dev-db/sqlite: update to 3.33.0
2020-12-15 14:25:51 +01:00
Flatcar Buildbot
e281533d23 Upgrade virtual Rust in main from 1.47.0 to 1.48.0 2020-12-15 07:43:14 +00:00
Dongsu Park
978f39f90d virtual/jpeg: delete unnecessary package
Now that libjpeg-turbo was deleted, we can now delete virtual/jpeg.
2020-12-04 16:38:19 +01:00
Dongsu Park
1a7e2f51b1 media-libs/libjpeg-turbo: delete unnecessary package
Since qemu in Flatcar SDK does not need to pull in libjpeg-turbo, we can
delete it completely.
2020-12-04 16:37:03 +01:00
Dongsu Park
606d6b9ca1 Merge pull request #132 from kinvolk/dongsu/github-actions-pr-v3
.github: use create-pull-request@v3 to fix set-env issues
2020-12-01 12:03:03 +01:00
Dongsu Park
e48e61ce45 Merge pull request #131 from kinvolk/dongsu/dwarves-1.19
dev-util/dwarves: update to 1.19 for CONFIG_DEBUG_INFO_BTF
2020-12-01 11:27:24 +01:00
Dongsu Park
1babbbce12 .github: use create-pull-request@v3 to fix set-env issues
Github Actions for Rust started failing with following errors:

```
Error: Unable to process command '::set-env name=PULL_REQUEST_NUMBER::718' successfully.
Error: The `set-env` command is disabled. Please upgrade to using
Environment Files or opt into unsecure command execution by setting the
`ACTIONS_ALLOW_UNSECURE_COMMANDS` environment variable to `true`. For
more information see:
https://github.blog/changelog/2020-10-01-github-actions-deprecating-set-env-and-add-path-commands/
```

It happens because we have used peter-evans/create-pull-request@v2,
which did not have a bug fix for the set-env issue.
The bug was fixed in create-pull-request
[v3.4.1](https://github.com/peter-evans/create-pull-request/releases/tag/v3.4.1).
So we just need to update the version to `v3`, which already includes
v3.4.1.
2020-12-01 11:14:44 +01:00
Dongsu Park
530d1e1791 Merge pull request #114 from kinvolk/rust-1.47.0-main
virtual: Upgrade Rust 1.46.0 to 1.47.0
2020-11-30 16:19:04 +01:00
Dongsu Park
706cc0eb21 dev-util/dwarves: update to 1.19 for CONFIG_DEBUG_INFO_BTF
It is already possible to enable kernel config `CONFIG_DEBUG_INFO_BTF`
using dwarves 1.18 included in the current Flatcar SDK, as long as its
arch is amd64.

However, Kernel build fails in case of arm64, when Kernel version is
>= 5.9 and dwarves version is <= 1.18, like the following:

```
+ pahole -J .tmp_vmlinux.btf
PAHOLE: Error: Found symbol of zero size when encoding btf
(sym: '__kvm_nvhe_arm64_ssbd_callback_required', cu: '../source/arch/arm64/kernel/cpu_errata.c').
PAHOLE: Error: Use '-j' or '--force' to ignore such symbols and force emit the btf.
../source/scripts/link-vmlinux.sh: line 141: 1929102 Segmentation fault
```

The bug was fixed via
https://git.kernel.org/pub/scm/devel/pahole/pahole.git/commit/?id=2e719cca6672,
("btf_encoder: revamp how per-CPU variables are encoded").
The fix was first included in dwarves
[1.19](https://git.kernel.org/pub/scm/devel/pahole/pahole.git/tag/?h=v1.19).
Thus we need to get dwarves 1.19 included in Flatcar SDK, so that the
next Alpha Kernels could have `CONFIG_DEBUG_INFO_BTF` enabled.
2020-11-30 14:54:16 +01:00
Thilo Fromm
0fe4212a73 net-dns/libidn2-2.3.0: EAPI7 -> EAPI6 to break glibc-2.32 toolchain dep loop
Signed-off-by: Thilo Fromm <thilo@kinvolk.io>
2020-11-24 13:51:13 +01:00
Thilo Fromm
9f9be4551b virtual/awk,eclass: add awk-1.ebuild, update toolchain-funcs for glibc-2.32
Signed-off-by: Thilo Fromm <thilo@kinvolk.io>
2020-11-24 13:51:13 +01:00
Thilo Fromm
2bebee3291 Merge pull request #127 from kinvolk/t-lo/update-to-gcc-9.3.0
dev-util,sys-devel,sys-libs,sys-kernel: update to gcc-9.3.0
2020-11-18 14:52:55 +01:00
Thilo Fromm
361ad25ee4 dev-util,sys-(devel|libs|kernel): modify gcc-9.3.0 updates, clean up
This commit introduces Flatcar specific modification
to the Gentoo recipes for updating to gcc-9.3.0 introduced
in the previous commit. The changes are required
in order to make things build with the Flatcar SDK.

The commit also removes old, stale, unused recipes.

The changes include:

dev-util/perf/perf-4.9.13.ebuild: fix binutils ebuild RDEPEND
dev-util/perf/perf-5.8.ebuild: remove python3_{8} compat; unmask arm64, amd64
sys-devel/binutils: remove old, stale versions
sys-devel/binutils/binutils-2.35.ebuild: backport to EAPI6 because our
                 outdated emerge does not handle BDEPEND dependencies correctly,
                 resulting in BDEPEND being pulled in as runtime deps.
                 Unmask for amd64 and arm64.
sys-devel/binutils/binutils-9999.ebuild: backport to EAPI6
net-dns/dnsmasq: remove old, stale versions
sys-devel/crossdev: remove old versions
sys-devel/gcc: remove old versions
sys-devel/gcc/gcc-9.3.0-r1.ebuild: use EAPI6 because of emerge
                 BDEPEND issue (see above)
sys-devel/libtool/libtool-2.4.6-r6.ebuild: use EAPI6 because of emerge
                 BDEPEND issue (see above)
sys-kernel/linux-headers: remove old versions
ys-kernel/linux-headers/linux-headers-5.8.ebuild: unmask for amd64, arm64

Signed-off-by: Thilo Fromm <thilo@kinvolk.io>
2020-11-18 14:44:40 +01:00
Thilo Fromm
7e0f49e2fc dev-util,sys-(devel|libs|kernel): import recipes for update to gcc-9.3.0
This commit includes the necessary changes to upgrade the SDK
compiler to gcc-9.3.0. The changes include:

eclass: update toolchain.eclass to EAPI7
acct-(user|group): add dnsmasq user / group
net-dns/dnsmasq: update to dnsmasq-2.82
dev-util/perf: update to perf-5.8.ebuild
sys-devel/binutils: update to binutils-2.35.ebuild
sys-libs/binutils-libs: update to binutils-libs-2.35.ebuild
sys-devel/crossdev: update to crossdev-20200801.ebuild
sys-devel/gcc: update to gcc-9.3.0-r1.ebuild
sys-devel/libtool: update to libtool-2.4.6-r6.ebuild
sys-kernel/linux-headers: update to linux-headers-5.9.ebuild

Signed-off-by: Thilo Fromm <thilo@kinvolk.io>
2020-11-18 14:03:42 +01:00
Dongsu Park
a901ea801d dev-util/dwarves: introduce new dev tool dwarves
To build Kernel with `CONFIG_DEBUG_INFO_BTF`, we need to get pahole, a
part of dwarves included in the Flatcar SDK.
So simply import `dev-util/dwarves` from upstream Gentoo.
2020-11-17 15:37:14 +01:00
Thilo Fromm
f7314c720b acct(group|user)/ntp: add NTP group and user
Signed-off-by: Thilo Fromm <thilo@kinvolk.io>
2020-11-16 13:35:47 +01:00
Thilo Fromm
a6fb769199 net-fs/cifs-utils: update to 6.11
Signed-off-by: Thilo Fromm <thilo@kinvolk.io>
2020-11-13 16:58:05 +01:00
Dongsu Park
b8ba9979e4 Merge pull request #122 from kinvolk/dongsu/samba-sssd
dev-libs, sys-libs: Updated libs needed by samba, sssd
2020-11-13 15:10:12 +01:00
Dongsu Park
db5635cca2 Merge pull request #59 from kinvolk/dongsu/pkgconfig-0.29.2-alpha
dev-util/pkgconfig: bump to 0.29.2 for PKG_CHECK_MODULES_STATIC for alpha
2020-11-13 15:08:07 +01:00
Dongsu Park
b3061d608d sys-libs/tevent: update to 0.10.2
To be able to build `net-fs/samba` 4.11, we need to update
`sys-libs/tevent` to 0.10.2.
2020-11-06 13:50:57 +01:00
Dongsu Park
7cacf2c668 sys-libs/talloc: update to 2.3.1
To be able to `net-fs/samba` 4.11, we need to import `sys-libs/talloc`
to 2.3.1.
2020-11-06 13:50:55 +01:00
Dongsu Park
9cd5e87a35 sys-libs/tdb: update to 1.4.3
To be able to build samba 4.11, we need to update `sys-libs/tdb` to
1.4.3.
2020-11-06 13:50:53 +01:00
Dongsu Park
dd27327b93 app-crypt/p11-kit: import p11-kit from Gentoo
To be able to build sssd 2.3.1, we need to import `app-crypt/p11-kit`
from upstream Gentoo.
2020-11-06 13:50:51 +01:00
Dongsu Park
50c3589497 dev-libs/libtasn1: import libtasn1 from Gentoo
To build `net-libs/gnutls` 3.6, we need to import `dev-libs/libtasn1`.
2020-11-06 13:50:48 +01:00
Dongsu Park
22155497c6 dev-libs/nettle: update to 3.6
To build `net-libs/gnutls` 3.6.15, we need to also update
`dev-libs/nettle` to 3.6.
2020-11-06 13:50:46 +01:00
Dongsu Park
7a818340fa net-libs/gnutls: import from upstream Gentoo
To be able to build `net-fs/samba` 4.11, we need to import
`net-libs/gnutls` from upstream Gentoo. Since gnutls is one of the
hard requirements of upstream Samba, we are not able to disable the
dependency on gnutls.
2020-11-06 13:50:43 +01:00
Sayan Chowdhury
72be7c4946 sys-block/open-isns: Add the new package
Signed-off-by: Sayan Chowdhury <sayan@kinvolk.io>
2020-11-06 11:13:28 +05:30
Dongsu Park
e3db28c9c5 dev-util/glib-utils: update to 2.64.5 2020-10-30 16:52:20 +01:00
Dongsu Park
8494602fb1 dev-db/sqlite: update to 3.33.0
Now that `dev-lang/tcl` is included in SDK, we can now build
dev-db/sqlite without having to rely on third-party patches
in coreos-overlay.

So simply sync sqlite with Gentoo upstream, and update to the latest
version 3.33.0.
2020-10-30 16:04:31 +01:00
Sayan Chowdhury
e7b5405278 dev-libs/glib: Sync the package with upstream
Signed-off-by: Sayan Chowdhury <sayan.chowdhury2012@gmail.com>
2020-10-30 14:17:24 +01:00
Krzesimir Nowak
407e682a37 app-arch: Import from Gentoo
An updated systemd will need it.
2020-10-26 14:15:15 +01:00
Dongsu Park
0be496912c Merge pull request #119 from flatcar-linux/dongsu/sdk-pkgs-re2c-file
dev-util,sys-apps: update re2c, file
2020-10-23 15:06:58 +02:00
Dongsu Park
2c820da16e Merge pull request #118 from flatcar-linux/dongsu/meson-gdbus
dev-util: update meson, gdbus-codegen
2020-10-23 15:06:11 +02:00
Dongsu Park
f8a27a086e sys-apps/file: update to 5.39
Update sys-apps/file to 5.39 to address
https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2019-18218 .
2020-10-22 15:20:38 +02:00
Dongsu Park
5b8dbb7fb2 dev-util/re2c: update to 2.0.3
Update dev-util/re2c to 2.0.3 to address
https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2020-11958 .
2020-10-22 15:19:06 +02:00
Dongsu Park
c320d06f06 dev-util/gdbus-codegen: update to 2.64.5
Now that dev-libs/glib was updated to 2.64.5, we need to also update
dev-util/gdbus-codegen to 2.64.5.

Otherwise we would see strange slot conflicts like:

```
 * Error: The above package list contains packages which cannot be
 * installed at the same time on the same system.

 (dev-libs/glib-2.64.5:2/2::portage-stable, ebuild scheduled for merge) pulled in by
   >=dev-libs/glib-2.58.3:2 required by (dev-util/gdbus-codegen-2.58.3:0/0::portage-stable, binary scheduled for merge)

 (dev-util/gdbus-codegen-2.58.3:0/0::portage-stable, binary scheduled for merge) pulled in by
   dev-util/gdbus-codegen required by (coreos-base/hard-host-depends-0.0.1-r194:0/0::coreos, binary scheduled for merge)
```
2020-10-22 14:30:38 +02:00
Sayan Chowdhury
c6a6d5a685 dev-util/meson: Sync package with the upstream
Signed-off-by: Sayan Chowdhury <sayan.chowdhury2012@gmail.com>
2020-10-22 14:30:38 +02:00
Dongsu Park
698a6c104d dev-libs/libxml2: update to 2.9.10-r3
Update libxml2 to 2.9.10-r3, to multiple security issues in libxml2:

https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2019-20388
https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2020-7595

See also https://security.gentoo.org/glsa/202010-04 .
2020-10-21 16:34:26 +02:00
Dongsu Park
6c98682dd6 sys-fs/cryptsetup: update to 2.3.2
Since cryptsetup 1.7.5 cannot be built with json-c 0.15,
we need to also update cryptsetup to 2.3.2.
2020-10-21 16:34:17 +02:00
Dongsu Park
1bc50f2cd2 eclass: sync cmake-multilib.eclass with Gentoo
Now that json-c 0.15 requires new definitions in cmake-multilib.eclass,
we need to sync cmake-multilib.eclass with upstream Gentoo.
2020-10-21 16:32:18 +02:00
Dongsu Park
2fbc9fb0b8 dev-libs/json-c: update 0.15
Update json-c to 0.15, to address
https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2020-12762 .
2020-10-21 16:32:18 +02:00
Dongsu Park
69e05d7dbc dev-libs/libuv: update to 1.39.0
Update libuv to 1.39.0 to address
https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2020-8252 .
2020-10-21 16:32:10 +02:00
Dongsu Park
4d28d167f5 net-dns/c-ares: update to 1.61.1
Update net-dns/c-ares to 1.61.1, to address
https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2017-1000381 .
2020-10-21 16:25:20 +02:00
Sayan Chowdhury
0bbfd9bc1e app-arch/tar: Sync with upstream
Signed-off-by: Sayan Chowdhury <sayan.chowdhury2012@gmail.com>
2020-10-20 05:45:10 +00:00
Dongsu Park
47e30b2847 virtual/rust: update to 1.47.0
Update virtual/rust to 1.47.0, to make dev-lang/rust 1.47.0 work well.
2020-10-13 13:45:57 +02:00
Krzesimir Nowak
1550782835 Merge pull request #112 from flatcar-linux/krnowak/dracut-update
Update dracut
2020-10-08 18:46:03 +02:00
Alban Crequy
3593d2251c Merge pull request #111 from flatcar-linux/alban/update-seccomp
bump(sys-libs/libseccomp): sync with upstream
2020-10-02 19:27:26 +02:00
Krzesimir Nowak
654ebbf5dd eclass: Pull in an eclass needed by a new dracut 2020-09-30 19:49:09 +02:00
Krzesimir Nowak
215d9bda8b eclass: Sync systemd.eclass with upstream 2020-09-30 19:48:30 +02:00
Krzesimir Nowak
9a2855f189 sys-kernel/dracut: Sync with gentoo 2020-09-30 19:41:18 +02:00
Alban Crequy
8dc4b6702d bump(sys-libs/libseccomp): sync with upstream
Change python check to python3_6 so it builds in Flatcar.
Update checksums
2020-09-26 14:36:19 +02:00
Dongsu Park
4dc4d60108 dev-lang/tcl: add tcl for SDK dependencies
Since sqlite 3.32 or newer requires dev-lang/tcl to be available in
the Flatcar SDK by default, we should add dev-lang/tcl into the SDK.
2020-09-25 17:30:35 +02:00
Dongsu Park
f710c0d0c8 sys-apps/makedev: bring back the package for bootstrap_sdk
The bootstrap_sdk stage still requires `sys-apps/makedev` to be
available, as listed in `profiles/default/linux/packages.build`.
We need to bring it back to make the SDK build work again.

This reverts commit df8159f565972eb31455ff5e4cbfba8c4a12bb52.
2020-09-25 16:37:39 +02:00
Dongsu Park
44d3e1f36a sys-devel/bin86: remove unnecessary package
Remove unnecessary package sys-apps/bin86.
We can do so because sys-devel/dev86 is now gone.
2020-09-25 10:36:08 +02:00
Dongsu Park
94a78bda6c sys-devel/dev86: remove unnecessary package
Remove unnecessary package sys-apps/dev86.
We can do so because sys-firmware/vgabios is now gone.
2020-09-25 10:36:08 +02:00
Dongsu Park
c8219909ce sys-firmware/vgabios: remove unnecessary package
Remove unnecessary package sys-firmware/vgabios.
2020-09-25 10:36:08 +02:00
Dongsu Park
292e92707f sys-apps/makedev: remove unnecessary package
Remove unnecessary package sys-apps/makedev.
2020-09-25 10:36:08 +02:00
Dongsu Park
1a3e753bdc dev-python/mox: remove unnecessary package
Remove unnecessary package dev-python/mox.
2020-09-25 10:36:08 +02:00
Dongsu Park
7c7e4697e0 dev-python/lockfile: remove unnecessary package
Remove unnecessary package dev-python/lockfile.
2020-09-25 10:36:08 +02:00
Dongsu Park
5da94c7ba1 dev-python/greenlet: remove unnecessary package
Remove unnecessary package dev-python/greenlet.
2020-09-25 10:36:08 +02:00
Dongsu Park
1490a39eaa dev-python/gevent: remove unnecessary package
Remove unnecessary package dev-python/gevent.
2020-09-25 10:36:08 +02:00
Dongsu Park
736b536417 dev-libs/libtasn1: remove unnecessary package
Remove unnecessary package dev-libs/libtasn1.
2020-09-25 10:36:08 +02:00
Dongsu Park
0e08a9713f dev-libs/jemalloc: remove unnecessary package
Remove unnecessary package dev-libs/jemalloc.
2020-09-25 10:36:08 +02:00
Dongsu Park
57310a1b1d dev-libs/apr: remove unnecessary package
Remove unnecessary package dev-libs/apr.
We can do so because dev-libs/apr-util, net-libs/serf is now gone.
2020-09-25 10:36:08 +02:00
Dongsu Park
0a2827ee69 dev-libs/apr-util: remove unnecessary package
Remove unnecessary package dev-libs/apr-util.
We can do so because net-libs/serf is now gone.
2020-09-25 10:36:08 +02:00
Dongsu Park
2f9f7da8aa net-libs/serf: remove unnecessary package
Remove unnecessary package net-libs/serf.
2020-09-25 10:36:08 +02:00
Dongsu Park
ad2352b192 dev-db/sqlite: bring back sqlite 3.31.1 for SDK
To make the SDK build work again, we need to bring back dev-db/sqlite
3.31.1 in portage-stable. It is not enough to have it in coreos-overlay.

This reverts commit 4a7a4e3d272812963c3cd21431d1849ca9df11e4.
2020-09-23 16:36:55 +02:00
Dongsu Park
89553c6977 Merge pull request #107 from flatcar-linux/dongsu/sqlite-3.32.3
dev-db/sqlite: move sqlite to coreos-overlay
2020-09-23 14:39:41 +02:00
Dongsu Park
9e6d56ed1b dev-db/sqlite: move sqlite to coreos-overlay
Move dev-db/sqlite to coreos-overlay to resolve security issues, as well
as to keep non-full archive ebuilds.
2020-09-18 17:47:40 +02:00
Dongsu Park
6916f04de8 net-libs/libpcap: update to 1.9.1
Update net-libs/libpcap to 1.9.1, to address security issue
CVE-2019-15163, an issue of allowing attackers to cause a denial of
service (NULL pointer dereference and daemon crash) if a crypt() call
fails.
2020-09-17 13:41:47 +02:00
Dongsu Park
a9a8ee6efc net-analyzer/tcpdump: update to 4.9.3
Update tcpdump to 4.9.3, to address security issue CVE-2018-10103,
mishandling the printing of SMB data.
2020-09-17 13:41:45 +02:00
Dongsu Park
5490b0439c net-misc/rsync: update to 3.2.3
Update rsync to 3.2.3, actually to update zlib bundled in rsync.
It is to address security issue CVE-2016-9841, an issue of allowing
context-dependent attackers to have unspecified impact by leveraging
improper pointer arithmetic.
2020-09-17 13:41:42 +02:00
Dongsu Park
9384fe3321 dev-libs/libbsd: update to 0.10.0
Update libbsd to 0.10.0, to address security issue CVE-2019-20367,
an out-of-bounds read during a comparison for a symbol name from the
string table.
2020-09-17 13:41:23 +02:00
Dongsu Park
4c9ee1d6e8 app-misc/jq: update to 1.6-r3
Update app-misc/jq to 1.6-r3, to address security issue CVE-2015-8863.
It is mainly to fix off-by-one error in the tokenadd function. It allows
remote attackers to cause a denial of service (crash) via a long
JSON-encoded number, which triggers a heap-based buffer overflow.
2020-09-17 13:41:21 +02:00
Dongsu Park
f4ba9b110c .github: Improve body text of PR for virtual/rust
Improve body text of each PR for `virtual/rust`, by mentioning that
it should be merged together with its paired PR in coreos-overlay.

Explicitly name `virtual/rust` instead of `Cargo`, because there is
no more ebuild for `cargo`.
Rename the dispatched event-type name to `rust-pull-request-main`, as
`cargo` has already disappeared.

Make the repository-dispatch action receive additional client-payload with
a field `coreos-overlay-pull-request-number` sent by the corresponding PR
in coreos-overlay. The PR number is then used for adding a link in the body
text, for pointing back to the PR in coreos-overlay.
2020-09-09 11:56:52 +02:00
Flatcar Buildbot
2cb1b39e52 Upgrade Cargo in main from 1.44.1 to 1.46.0 2020-09-01 07:31:46 +00:00
Thilo Fromm
be6d21ef38 net-firewall/ipset: update to ipset-7.6
Signed-off-by: Thilo Fromm <thilo@kinvolk.io>
2020-08-27 18:58:28 +02:00
Krzesimir Nowak
31bbaa6546 Merge pull request #99 from flatcar-linux/krnowak/fix-rules
sys-fs/mdadm: Drop it, temporarily
2020-08-27 16:14:03 +02:00
Thilo Fromm
5ede2a63eb Merge pull request #100 from flatcar-linux/t-lo/iproute2-5.8.0-with-elf-support
sys-apps/iproute2: bump to 5.8.0, add ELF support
2020-08-27 13:52:25 +02:00
Thilo Fromm
9707103932 sys-apps/iproute2: bump to 5.7.0.xx, add ELF support
Signed-off-by: Thilo Fromm <thilo@kinvolk.io>
2020-08-27 09:31:20 +02:00
Krzesimir Nowak
87a61e40a0 sys-fs/mdadm: Drop it, temporarily
We are going to have mdadm in coreos-overlay. It will contain an extra
patch, so it can't be a part of portage-stable.
2020-08-25 11:25:21 +02:00
Kai Lüke
91fbd929a7 net-dns/bind: Drop old ebuild file to silence warning
The old ebuild file has a syntax issue and is missing a patch file.
2020-08-21 12:04:33 +02:00
Thilo Fromm
7df019224b net-dns/bind-tools: update to 9.11.22 and 9.16.6
Signed-off-by: Vincent Batts <vbatts@kinvolk.io>
2020-08-20 17:25:43 -04:00
Kai Lüke
612735eced dev-libs/jansson: Import from Gentoo 2020-08-10 23:31:34 +02:00
Kai Lüke
4ef02eb401 eclass/ssl-cert: Sync from Gentoo 2020-08-07 22:31:40 +02:00
Kai Lüke
37d6fdd69f net-nds/openldap: Sync from Gentoo 2020-08-07 22:22:51 +02:00
Kai Lüke
3d58e109d8 acct-user/tss: Import from Gentoo 2020-08-07 13:54:40 +02:00
Kai Lüke
40face0d7b acct-group/tss: Import from Gentoo 2020-08-07 13:50:14 +02:00
Kai Lüke
df8a5e3754 dev-embedded/u-boot-tools: Sync from Gentoo 2020-08-06 16:36:38 +02:00
Kai Lüke
a87cd173d9 app-crypt/mit-krb5: Fix Python version 2020-08-05 18:52:43 +02:00
Kai Lüke
2e60c26cd3 app-crypt/mit-krb5: Sync with Gentoo's latest stable 2020-08-05 18:52:36 +02:00
Kai Lüke
d731c2b6d7 net-dns/bind-tools: Sync with Gentoo's latest stable 2020-08-05 18:52:31 +02:00
Dongsu Park
0ac37230ef dev-util/pkgconfig: bump to 0.29.2 for PKG_CHECK_MODULES_STATIC
pkg-config 0.29 or newer introduced a macro `PKG_CHECK_MODULES_STATIC`,
which is needed by ebuilds like dev-util/strace >= 5.5.
So we should update pkg-config to 0.29.2, to avoid such issues.
(see 0efb668bd5)

```
***** autoconf *****
***** PWD: /build/amd64-usr/var/tmp/portage/dev-util/strace-5.6/work/strace-5.6
***** autoconf --force -I /build/amd64-usr/usr/share/aclocal

configure:17585: error: possibly undefined macro: PKG_CHECK_MODULES_STATIC
```
2020-07-29 17:25:26 +02:00
Kai Lüke
6a15a68fc3 Revert "sys-libs/readline: update to 8.0_p4"
This reverts commit 36bc8e0edb7ce961b5020b8152514560a5feb3eb
until we have a newer gdb. The md5-cache changes were dropped.
2020-07-28 18:41:24 +02:00
Kai Lüke
761551ac22 Merge pull request #91 from flatcar-linux/kai/no-md5-cache
metadata: Delete md5-cache
2020-07-28 16:52:23 +02:00
Kai Lüke
898d49bdc1 metadata: Delete md5-cache
The metadata/md5-cache folder is machine-generated based on the
other files in the repository. It causes merge conflicts when at
one time they were not regernated in a commit and then later a
commit does it and includes cache changes which are incompatible
with later or newer states.
Remove the folder as it is not necessary to have it and was removed
in upstream Gentoo, too.
2020-07-27 16:22:24 +02:00
Kai Lüke
7411de99f3 .github: Give background on Rust updates 2020-07-24 11:15:26 +02:00
Kai Lüke
042515d58f .github: Only update the new main branch
The new main branch is the only branch that should get new software
updates (with the exception of the maintenance branches that get kernel
updates).
2020-07-24 11:10:42 +02:00
Kai Lüke
bdc2dc8405 .github: Use new main branch 2020-07-23 18:38:55 +02:00
Dongsu Park
62c7d06103 .github: add Github actions for virtual/rust
Whenever a new upstream Rust release appears, a Github workflow in
`coreos-overlay` creates a new pull request for `dev-lang/rust`.
At the same time, it sends a repository dispatch event to
portage-stable, so it also creates a pull request for `virtual/rust`.
2020-07-23 18:37:21 +02:00
Dongsu Park
d76aaa8255 Merge pull request #82 from flatcar-linux/dongsu/readline-pcre-alpha
{sys,dev}-libs: readline 8.0_p4, libpcre2 10.34 for alpha
2020-07-23 11:00:46 +02:00
Sayan Chowdhury
f4278500a1 chore(metadata): Regenerate cache 2020-07-20 11:23:42 +00:00
Sayan Chowdhury
acaba20aff app-crypt/argon2: Add new package
Signed-off-by: Sayan Chowdhury <sayan.chowdhury2012@gmail.com>
2020-07-20 11:22:51 +00:00
Dongsu Park
1c85345546 Merge pull request #79 from flatcar-linux/dongsu/libgit-alpha
dev-libs/libgit2: import libgit2 for alpha
2020-07-14 14:37:44 +02:00
Dongsu Park
2640ab9600 Merge pull request #80 from flatcar-linux/rust-1.44.1-alpha
Upgrade Cargo in Alpha from 1.43.1 to 1.44.1
2020-07-14 14:37:00 +02:00
Dongsu Park
2897d75a24 Merge pull request #73 from flatcar-linux/dongsu/gnupg-remove-alpha
app-crypt/gnupg: move gnupg to coreos-overlay for alpha
2020-07-10 09:58:10 +02:00
Dongsu Park
5c344dfb72 eclass: sync linux-info.eclass to fix Kernel build issues
Kernel 5.8-rc2 or newer added a commit
f2f02ebd8f
("kbuild: improve cc-option to clean up all temporary files") , which
causes make commands to create an object output directory. Apparently
harmless. The commit was backported to stable Kernels, 4.19.131, 5.4.50,
5.7.7.

In Flatcar and Gentoo, however, `getfilevar()` in `linux-info.eclass`
runs a make command, which creates `${M}`, an object output directory,
with a root account. As Gentoo sandbox creates everything as non-root
account, the subsequent steps like `src_unpack` fail to touch the same
directory.

Upstream Gentoo already has a fix
5a3acd443c
("linux-info.eclass: Pass M=${T} to the Linux Makefile unconditionally.").
See also https://bugs.gentoo.org/729178 .

So simply sync `linux-info.eclass` with Gentoo.
2020-07-08 11:37:45 +02:00
Dongsu Park
2f8c3420b0 Merge pull request #49 from flatcar-linux/dongsu/git-2.26-alpha
dev-vcs/git: bump to 2.26.2 for alpha
2020-06-29 10:33:26 +02:00
Dongsu Park
e43021feb2 dev-libs/libpcre2: update to 10.34
Update dev-libs/libpcre2 to 10.34, to address security issues listed in
[GLSA 202006-16](https://security.gentoo.org/glsa/202006-16).

* CVE-2019-20454
2020-06-25 11:07:15 +02:00
Dongsu Park
3913e852e7 sys-libs/readline: update to 8.0_p4
Update sys-libs/readline to 8.0_p4, to address security issues listed in
[GLSA 202006-04](https://security.gentoo.org/glsa/202006-04).

* CVE-2019-6488
* CVE-2019-7309
* CVE-2019-9169
* CVE-2020-10029
* CVE-2020-1751
2020-06-25 11:07:13 +02:00
Flatcar Buildbot
21f6580c69 Upgrade Cargo in Alpha from 1.43.1 to 1.44.1 2020-06-23 07:30:48 +00:00
Dongsu Park
751413c7c0 eclass: import cmake.eclass
As `dev-libs/libgit2` inherits `cmake.eclass`, we need to import it
from upstream Gentoo.
2020-06-22 13:55:14 +02:00
Dongsu Park
e0d8b0246a dev-libs/libgit2: import libgit2
As dev-lang/rust >= 1.44.0 requires `dev-libs/libgit2`, we need to
import libgit2 from upstream Gentoo.
2020-06-22 13:54:26 +02:00
Sayan Chowdhury
f92aec8c94 sys-apps/iucode_tool: Add iucode_tool-2.3.1/2.3
Signed-off-by: Sayan Chowdhury <sayan@kinvolk.io>
2020-06-18 19:44:26 +05:30
Kai Lüke
22e7bfece1 sys-libs/tdb: Bump to 1.3.15 2020-05-29 14:22:32 +02:00
Kai Lüke
629ffbccdb sys-libs/tevent: Bump to 0.9.37 2020-05-29 14:22:31 +02:00
Kai Lüke
0f71e99622 sys-libs/talloc: Bump to 2.1.11 2020-05-29 14:22:31 +02:00
Kai Lüke
d169023e3f Revert "sys-libs/tdb: move sys-libs/tdb to coreos-overlay"
This reverts commit 9d65392f7c49ea88cd42c3243c3cb1e07160c50e.
2020-05-29 14:22:31 +02:00
Kai Lüke
da4ca881d5 Revert "sys-libs/tevent: move sys-libs/tevent to coreos-overlay"
This reverts commit 4fa5574db866abbba28e91c69539194805eee52d.
2020-05-29 14:22:31 +02:00
Kai Lüke
984fe13c62 Revert "sys-libs/talloc: move talloc to coreos-overlay"
This reverts commit f4cdd5b7a0c7f1e7da9948cbb4937d63380f53b5.
2020-05-29 14:22:31 +02:00
Dongsu Park
1b1e9ca582 Merge pull request #67 from flatcar-linux/rust-1.43.1-alpha
Upgrade Cargo in Alpha from 1.36.0 to 1.43.1
2020-05-29 09:49:15 +02:00
Dongsu Park
a404f75580 Merge pull request #62 from flatcar-linux/dongsu/remove-strace-alpha
dev-util/strace: move strace to coreos-overlay for alpha
2020-05-28 17:12:24 +02:00
Dongsu Park
50d8978bd1 dev-vcs/git: bump to 2.26.2
Update git to 2.26.2, to address the following security issues:

* [CVE-2020-5260](https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2020-5260)
* [CVE-2020-11008](https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2020-11008)
2020-05-28 17:05:33 +02:00
Dongsu Park
e777cf2378 dev-libs/libgpg-error: import libgpg-error
Import a new package libgpg-error needed by app-crypt/gnupg 2.2.20.
2020-05-26 10:41:31 +02:00
Dongsu Park
365306aea9 app-crypt/gnupg: move gnupg to coreos-overlay
To apply 3rd-party patches to gnupg, move it to coreos-overlay.
2020-05-26 09:51:58 +02:00
Benjamin Gilbert
c98c795dc7 bump(metadata/glsa): sync with upstream 2020-05-25 12:10:09 +02:00
Benjamin Gilbert
8e6121e55e bump(metadata/glsa): sync with upstream 2020-05-25 12:10:09 +02:00
Benjamin Gilbert
ad734b5315 bump(metadata/glsa): sync with upstream 2020-05-25 12:10:09 +02:00
Benjamin Gilbert
f1c0fc9283 bump(metadata/glsa): sync with upstream 2020-05-25 12:10:09 +02:00
Dongsu Park
7f979e1bfc dev-vcs/git: update to 2.24.1
Update git to 2.24.1 to address the following security issues:

* [CVE-2019-1348](https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2019-1348)
* [CVE-2019-1349](https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2019-1349)
* [CVE-2019-1350](https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2019-1350)
* [CVE-2019-1351](https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2019-1351)
* [CVE-2019-1352](https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2019-1352)
* [CVE-2019-1353](https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2019-1353)
* [CVE-2019-1354](https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2019-1354)
* [CVE-2019-1387](https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2019-1387)
* [CVE-2019-19604](https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2019-19604)
2020-05-25 12:10:09 +02:00
Benjamin Gilbert
a3e2871525 bump(app-editors/vim-core): sync with upstream 2020-05-25 12:10:09 +02:00
Benjamin Gilbert
4130429e44 app-editors/vim: move to overlay 2020-05-25 12:10:08 +02:00
Benjamin Gilbert
80e3e9a338 bump(sys-fs/e2fsprogs): sync with upstream 2020-05-25 12:10:08 +02:00
Benjamin Gilbert
58410bf398 bump(sys-libs/e2fsprogs-libs): sync with upstream 2020-05-25 12:10:08 +02:00
Benjamin Gilbert
a0bb13a47e bump(dev-db/sqlite): sync with upstream 2020-05-25 12:10:08 +02:00
Benjamin Gilbert
001e63779b bump(dev-libs/nss): sync with upstream 2020-05-25 12:10:08 +02:00
Benjamin Gilbert
4e8a606e3a bump(dev-libs/nspr): sync with upstream 2020-05-25 12:10:08 +02:00
Benjamin Gilbert
3c7d8f4321 bump(dev-libs/libgcrypt): sync with upstream 2020-05-25 12:10:07 +02:00
Benjamin Gilbert
6d1ceac2bc bump(app-arch/libarchive): sync with upstream 2020-05-25 12:10:07 +02:00
Benjamin Gilbert
3b88f61811 bump(app-arch/unzip): sync with upstream 2020-05-25 12:10:07 +02:00