Commit Graph

4477 Commits

Author SHA1 Message Date
Flatcar Buildbot
c279e4326c dev-python/cython: Sync with Gentoo
It's from Gentoo commit c53da22d65ae278754b43ae3b4b92741f5fe3edd.
2023-03-13 13:15:41 +00:00
Flatcar Buildbot
b03d264615 dev-perl/libintl-perl: Sync with Gentoo
It's from Gentoo commit 5015f406c08d735105edc5dbeb92a030206e3075.
2023-03-13 13:15:39 +00:00
Flatcar Buildbot
e72bb577ad dev-libs/libxslt: Sync with Gentoo
It's from Gentoo commit 12386ce90dfc9baaa30050c7cebc42c79f84d01f.
2023-03-13 13:15:28 +00:00
Flatcar Buildbot
5bd2d52a95 dev-libs/libnl: Sync with Gentoo
It's from Gentoo commit aba209886d59ced153de7895438ecc3256b6fbb9.
2023-03-13 13:15:25 +00:00
Flatcar Buildbot
aedf8f1909 dev-libs/libltdl: Sync with Gentoo
It's from Gentoo commit 99540c9e8affde6208899673ee9c0596e22e09e7.
2023-03-13 13:15:25 +00:00
Flatcar Buildbot
e362f9d00f dev-libs/gobject-introspection-common: Sync with Gentoo
It's from Gentoo commit 2c88ed9d5f36e6e05f61173d1ecf150e2a6a52dc.
2023-03-13 13:15:22 +00:00
Flatcar Buildbot
7a9a81af5b dev-libs/gobject-introspection: Sync with Gentoo
It's from Gentoo commit 105ae1721863fa09e75e5659bbe29d49f2e77039.
2023-03-13 13:15:22 +00:00
Flatcar Buildbot
2e5de95970 dev-libs/glib: Sync with Gentoo
It's from Gentoo commit 0e2507b78c90588db8a97b7842f082915209d7a2.
2023-03-13 13:15:22 +00:00
Flatcar Buildbot
099bb69e3c dev-libs/elfutils: Sync with Gentoo
It's from Gentoo commit 54baf36e57874343d1e0910586e6cbf3db7bec87.
2023-03-13 13:15:21 +00:00
Flatcar Buildbot
a840b06d2d dev-lang/python: Sync with Gentoo
It's from Gentoo commit ba2987d9eab5e8e8f78ad0fe88f893aad3c10807.
2023-03-13 13:15:15 +00:00
Flatcar Buildbot
e5c58aa361 app-shells/bash-completion: Sync with Gentoo
It's from Gentoo commit 90e21f91513d9770e65c125b1415ab69b039b2ef.
2023-03-13 13:15:06 +00:00
Flatcar Buildbot
46125016b5 app-portage/portage-utils: Sync with Gentoo
It's from Gentoo commit 14a07eb230f0b23ad5d4d1f1825ccd5496b09bb5.
2023-03-13 13:15:06 +00:00
Flatcar Buildbot
ecbaed1645 app-emulation/qemu-guest-agent: Sync with Gentoo
It's from Gentoo commit a995e12397c3b9e7fcee49b21875f6ec74d11d69.
2023-03-13 13:15:04 +00:00
Flatcar Buildbot
57d21aaf8b app-emulation/qemu: Sync with Gentoo
It's from Gentoo commit 25016a2d27ade1c95fac6018c6fbe33ca5909347.
2023-03-13 13:15:04 +00:00
Flatcar Buildbot
6a347bb760 app-editors/vim-core: Sync with Gentoo
It's from Gentoo commit 4107569394f4710e79bd17841c9d2f0f6881e57d.
2023-03-13 13:15:04 +00:00
Flatcar Buildbot
0549c6cee5 app-editors/vim: Sync with Gentoo
It's from Gentoo commit 1d4c8dd11eaf466cfd5d5bdb633573b12b48153d.
2023-03-13 13:15:03 +00:00
Flatcar Buildbot
c435a8a71e app-arch/ncompress: Sync with Gentoo
It's from Gentoo commit 89d134ea0b12098601e6d41da667f156bd7a0055.
2023-03-13 13:14:59 +00:00
Flatcar Buildbot
82626de06d app-arch/libarchive: Sync with Gentoo
It's from Gentoo commit d51663a8453424cd5c57800066309e48a16361bd.
2023-03-13 13:14:59 +00:00
Flatcar Buildbot
171f2c0260 app-alternatives/awk: Sync with Gentoo
It's from Gentoo commit 216f39ea557e3950aa4d0c174f36df737afcb5fe.
2023-03-13 13:14:56 +00:00
Krzesimir Nowak
6fce845a48 changelog: Add entries 2023-03-09 14:51:54 +01:00
Thilo Fromm
ed540046f5 scripts/bootstrap: Apply Flatcar modifications
- install curl before baselayout

  Now that Github rejects access to an unauthenticated URL with
  `git://`, we have to make git and libcurl work with
  `https://`. However, during the SDK stage2, curl is not explicitly
  installed, but just inherited from the stage1. As a result, curl is
  built without the `ssl` USE flag.  So installation of baselayout
  fails with:

```
git fetch https://github.com/flatcar-linux/baselayout.git --prune +HEAD:refs/git-r3/HEAD
fatal: unable to access 'https://github.com/flatcar-linux/baselayout.git/':
Protocol "https" not supported or disabled in libcurl
```

  To resolve the issue, we need to install curl with `BOOTSTRAP_USE=ssl`
  before trying to install baselayout.

- update openssl before stage3

  Right now our bootstrap flow is different then gentoo's - we don't
  update the seed when building stage1 and use a different ebuilds
  snapshot for stage1 compared to stage2 and stage3. This is causing
  us trouble now, because we introduced openssl-3, but seed/stage1
  still contains openssl-1.1. During `emerge -e @system` in stage3,
  some packages that depend on openssl may build against the stage1
  version, which results in an error during depcleaning (they would
  need to be rebuilt instead).  Stage3 is not extensible, so instead,
  explicitly update openssl in stage2. This workaround can be removed
  as soon as we release a seed with openssl-3.

Co-authored-by: Dongsu Park <dpark@linux.microsoft.com>
Co-authored-by: Jeremi Piotrowski <jpiotrowski@microsoft.com>
Co-authored-by: Krzesimir Nowak <knowak@microsoft.com>
2023-03-02 17:39:56 +01:00
Krzesimir Nowak
d2dea5545b scripts: Sync with Gentoo
It's from Gentoo commit 991727070a928a03481303ed5b0a571534853445.
2023-03-02 17:39:56 +01:00
Krzesimir Nowak
8eb68e4e68 .github: Add sys-apps/texinfo to packages list 2023-03-02 17:39:56 +01:00
Krzesimir Nowak
3d830272f9 sys-apps/texinfo: Add from Gentoo
It's from Gentoo commit b072cfaeb12a28b977754564d1817463cfc8ffae.

Moved from coreos-overlay.
2023-03-02 17:39:56 +01:00
Krzesimir Nowak
6cbdb3e845 .github: Update packages list
Add or remove some packages we have updated or dropped with the weekly
updates.

Also drop sys-power/iasl, we don't have it any more.
2023-03-02 17:39:56 +01:00
Krzesimir Nowak
bee582760d dev-python/platformdirs: Add from Gentoo
It's from Gentoo commit aa8c011f5376ea3b6cef77580bd630b4bcfc0548.
2023-03-02 17:39:56 +01:00
Krzesimir Nowak
b888d3fc63 dev-python/appdirs: Drop unnecessary package
Used to be a dependency of dev-python/setuptools before it was
updated.
2023-03-02 17:39:56 +01:00
Krzesimir Nowak
125a5a8b0e net-libs/nghttp2: Sync with Gentoo
It's from Gentoo commit 9c0432bbae303f86f8142cf42b17334aff77140e.
2023-03-02 17:39:56 +01:00
Krzesimir Nowak
f2efb6e7cc app-text/sgml-common: Sync with Gentoo
It's from Gentoo commit 4af109f34b5bf97f25e6cdec6c292ab2599b6c65.
2023-03-02 17:39:56 +01:00
Krzesimir Nowak
8bae1ce374 app-text/docbook-xsl-stylesheets: Sync with Gentoo
It's from Gentoo commit 03677f912ed3fd5e02cbbbb2c9f37940d87d6c97.
2023-03-02 17:39:56 +01:00
Krzesimir Nowak
5846ab83ca app-text/docbook-xsl-ns-stylesheets: Add from Gentoo
It's from Gentoo commit c17701cef3dafad58a8a1a978ff5d585974abf0a.
2023-03-02 17:39:56 +01:00
Krzesimir Nowak
8940bae85c app-text/docbook-xml-dtd: Sync with Gentoo
It's from Gentoo commit 2056068fe7a93194be30b4504b0dd4960225b033.
2023-03-02 17:39:56 +01:00
Krzesimir Nowak
002470aef3 app-text/build-docbook-catalog: Sync with Gentoo
It's from Gentoo commit 91d9ac680f3c80df288a607f31c6bd188d501a2c.
2023-03-02 17:39:56 +01:00
Flatcar Buildbot
514251d8d5 virtual/pkgconfig: Sync with Gentoo
It's from Gentoo commit 9c70ade482350595ea273b4b00545a7a23d3e42d.
2023-03-02 17:39:56 +01:00
Flatcar Buildbot
4111b92659 sys-libs/binutils-libs: Sync with Gentoo
It's from Gentoo commit e590be61f6ea99840e520c931d1b7158548087ef.
2023-03-02 17:39:56 +01:00
Flatcar Buildbot
52f8bd7dfb sys-kernel/linux-headers: Sync with Gentoo
It's from Gentoo commit 49d659b4c11e9d3955f13d8c98b4ef8544e4117d.
2023-03-02 17:39:56 +01:00
Flatcar Buildbot
4dfbc20204 sys-devel/patch: Sync with Gentoo
It's from Gentoo commit 383d8ccf52fefc0f320882e73424a61cc6ceca6e.
2023-03-02 17:39:56 +01:00
Flatcar Buildbot
c27a6d18c5 sys-devel/gnuconfig: Sync with Gentoo
It's from Gentoo commit 7d94f84a03f472a3ea8513c105c743f4bc64f4bc.
2023-03-02 17:39:56 +01:00
Flatcar Buildbot
987d23cee7 sys-devel/gettext: Sync with Gentoo
It's from Gentoo commit 708a5eb5bbffb026c0e6097a20987797122aa07d.
2023-03-02 17:39:56 +01:00
Flatcar Buildbot
7e06ebdc30 sys-devel/gcc: Sync with Gentoo
It's from Gentoo commit db2110a4dcd7e99e00afd41429b94f4fe67e36fb.
2023-03-02 17:39:56 +01:00
Flatcar Buildbot
43e0e07dc1 sys-devel/flex: Sync with Gentoo
It's from Gentoo commit 7ff3874a1a6ea59ad3ea195b66921b7e332f2f4d.
2023-03-02 17:39:56 +01:00
Flatcar Buildbot
4305b666c6 sys-devel/crossdev: Sync with Gentoo
It's from Gentoo commit 27bd73e1860c85f68ba5353eec6b88bafbe615a2.
2023-03-02 17:39:56 +01:00
Flatcar Buildbot
3a73fdd26a sys-devel/binutils: Sync with Gentoo
It's from Gentoo commit 07d598347c2a311c91eacd4303e0517cf0a127c3.
2023-03-02 17:39:56 +01:00
Flatcar Buildbot
9a20113257 sys-devel/autoconf-archive: Sync with Gentoo
It's from Gentoo commit 92d13a6c5aee33c11fcfcb71adda551ffd79626f.
2023-03-02 17:39:56 +01:00
Flatcar Buildbot
c6add7cbee sys-apps/portage: Sync with Gentoo
It's from Gentoo commit ec6eec4ea23359cc040b1a0875c67515400f0035.
2023-03-02 17:39:56 +01:00
Flatcar Buildbot
f3c573b172 sys-apps/less: Sync with Gentoo
It's from Gentoo commit 1812c4a4ebafcc691905a05ff3e37b433ee093ca.
2023-03-02 17:39:56 +01:00
Flatcar Buildbot
49ee0601e4 sys-apps/i2c-tools: Sync with Gentoo
It's from Gentoo commit 33e06973dd9d1c5f2878f7019fc1699e014668b7.
2023-03-02 17:39:56 +01:00
Flatcar Buildbot
4e7d98f85f sys-apps/gawk: Sync with Gentoo
It's from Gentoo commit a0e668ea8d03e81c6b233097c57728680db678d9.
2023-03-02 17:39:56 +01:00
Flatcar Buildbot
a300b45106 sys-apps/findutils: Sync with Gentoo
It's from Gentoo commit d2ef800da5803e21b6ea91b94281291f5e253d87.
2023-03-02 17:39:56 +01:00
Flatcar Buildbot
11e43a9b59 sys-apps/file: Sync with Gentoo
It's from Gentoo commit 24d43d252387be846c4cae6014aa74bbf1f1d90e.
2023-03-02 17:39:56 +01:00