Krzesimir Nowak
6e177757d5
virtual/man: Sync with gentoo
...
It's from gentoo commit 38b155fa1bf907617067c98eb4ba3a5d0790eb1a.
2021-11-05 20:31:32 +01:00
Krzesimir Nowak
047b320687
sys-libs/gdbm: Sync with gentoo
...
It's from gentoo commit 9a673abef69576f529eb2308d13e30d158bbac36.
2021-11-05 20:31:32 +01:00
Krzesimir Nowak
a70b3781cb
sys-apps/miscfiles: Sync with gentoo
...
It's from gentoo commit 38b155fa1bf907617067c98eb4ba3a5d0790eb1a.
2021-11-05 20:31:32 +01:00
Krzesimir Nowak
4ec042bbb8
sys-apps/man-pages-posix: Sync with gentoo
...
It's from gentoo commit 38b155fa1bf907617067c98eb4ba3a5d0790eb1a.
2021-11-05 20:31:31 +01:00
Krzesimir Nowak
be708740d9
dev-lang/swig: Sync with gentoo
...
It's from gentoo commit 38b155fa1bf907617067c98eb4ba3a5d0790eb1a.
2021-11-05 20:31:30 +01:00
Krzesimir Nowak
ad10398991
app-text/sgml-common: Sync with gentoo
...
It's from gentoo commit 38b155fa1bf907617067c98eb4ba3a5d0790eb1a.
2021-11-05 20:31:30 +01:00
Krzesimir Nowak
b8f0236d8d
app-eselect/eselect-vi: Sync with gentoo
...
It's from gentoo commit cdbe195e46a303ec2b5c46e73a4d9c442d6b9e2c.
2021-11-05 20:31:30 +01:00
Dongsu Park
7b734de837
Merge pull request #235 from flatcar-linux/dongsu/delete-keywords
...
dev-lang/spidermonkey: delete unnecessary ebuilds
2021-11-05 09:50:34 +01:00
Krzesimir Nowak
7355bc0229
Merge pull request #241 from flatcar-linux/krnowak/update-cryptsetup-deps
...
Update cryptsetup deps
2021-11-04 12:11:53 +01:00
Dongsu Park
aae75806b9
eclass: delete unnecessary eclasses needed by spidermonkey
...
Delete unnecessary eclasses pulled in by spidermonkey:
* mozconfig-v6.{52,60}.eclass
* mozcoreconf-v[4-6].eclass
* mozlinguas-v2.eclass
* nsplugins.eclass
2021-11-04 10:07:02 +01:00
Dongsu Park
04e48453f1
dev-lang/spidermonkey: delete unnecessary package
2021-11-04 10:07:02 +01:00
Jeremi Piotrowski
f12f3a05a5
Merge pull request #234 from flatcar-linux/jepio/stage2-openssl-update
...
script/bootstrap: update openssl before stage3. This is to prevent packages from
being rebuilt against openssl-1.1 in stage3, which would require an `emerge @preserved-rebuild`
to resolve.
2021-11-04 09:28:50 +01:00
Jeremi Piotrowski
c03da37716
script/bootstrap: 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.
Signed-off-by: Jeremi Piotrowski <jpiotrowski@microsoft.com>
2021-11-04 09:25:30 +01:00
Krzesimir Nowak
694dec7ff8
dev-libs/gmp: Sync with gentoo
...
It's from gentoo commit 5c888a952dc942822d48a87fae24d36146b9fa87.
2021-11-03 18:14:57 +01:00
Krzesimir Nowak
b81a34abde
dev-libs/nettle: Sync with gentoo
...
It's from gentoo commit 38b155fa1bf907617067c98eb4ba3a5d0790eb1a.
2021-11-03 18:14:57 +01:00
Krzesimir Nowak
972fe28131
dev-libs/libgpg-error: Sync with gentoo
...
It's from gentoo commit 38b155fa1bf907617067c98eb4ba3a5d0790eb1a.
2021-11-03 18:14:57 +01:00
Krzesimir Nowak
f9d055810e
dev-libs/libgcrypt: Sync with gentoo
...
It's from gentoo commit 3c0303bcf57b569ec658a668a7bcf210992cbb47.
2021-11-03 18:14:57 +01:00
Krzesimir Nowak
1e40323f7f
app-crypt/argon2: Sync with gentoo
...
It's from gentoo commit 38b155fa1bf907617067c98eb4ba3a5d0790eb1a.
2021-11-03 18:14:56 +01:00
Krzesimir Nowak
d82ef916b0
dev-libs/popt: Sync with gentoo
...
It's from gentoo commit 38b155fa1bf907617067c98eb4ba3a5d0790eb1a.
2021-11-03 18:14:56 +01:00
Krzesimir Nowak
a5a372e444
dev-libs/json-c: Sync with gentoo
...
It's from gentoo commit 38b155fa1bf907617067c98eb4ba3a5d0790eb1a.
2021-11-03 18:14:56 +01:00
Dongsu Park
1c90561a17
Merge pull request #240 from flatcar-linux/dongsu/github-https
...
*: fix Github URL issues in bootstrap.sh, dev-lang/yasm (take 2)
2021-11-03 17:46:07 +01:00
Dongsu Park
14b3353eaa
scripts: 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.
2021-11-03 15:30:55 +01:00
Dongsu Park
cfadfebd5b
dev-lang/yasm: update to 1.3.0-r1 to fix Github URL protocol
...
Github now rejects an unauthenticated Github URL `git://`, so we need to
replace git with https.
To do that, sync with Gentoo for dev-lang/yasm 1.3.0-r1 including fix
https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0793e1ac0b7c7b3e8572443bbd33faf7ddc26813
2021-11-03 07:17:39 +01:00
Dongsu Park
ed1951fe87
Merge pull request #239 from flatcar-linux/dongsu/revert-github-https
...
Revert "dev-lang/yasm: update to 1.3.0-r1 to fix Github URL protocol"
2021-11-02 18:39:20 +01:00
Dongsu Park
43bb898cbc
Revert "dev-lang/yasm: update to 1.3.0-r1 to fix Github URL protocol"
...
This reverts commit ea28ab385dfffa6b0cbd7267b557764e35f7b060.
2021-11-02 18:34:42 +01:00
Dongsu Park
6e0fd76493
Merge pull request #236 from flatcar-linux/dongsu/ncurses-6.2-20210619
...
*: update gptfdisk, readline, procps for ncurses 6.2_p20210619
2021-11-02 15:15:46 +01:00
Dongsu Park
d8a0045753
Merge pull request #233 from flatcar-linux/dongsu/wget-1.21.2
...
net-misc/wget: update to 1.21.2
2021-11-02 14:25:42 +01:00
Dongsu Park
35d1244b61
Merge pull request #238 from flatcar-linux/dongsu/github-https
...
dev-lang/yasm: update to 1.3.0-r1 to fix Github URL protocol
2021-11-02 14:02:59 +01:00
Dongsu Park
cf88c5ca11
dev-lang/yasm: update to 1.3.0-r1 to fix Github URL protocol
...
Github now rejects an unauthenticated Github URL `git://`, so we need to
replace git with https.
To do that, sync with Gentoo for dev-lang/yasm 1.3.0-r1 including fix
https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0793e1ac0b7c7b3e8572443bbd33faf7ddc26813
2021-11-02 08:25:35 +01:00
Dongsu Park
bb68d68953
Merge pull request #237 from flatcar-linux/rust-1.56.1-main
...
Upgrade virtual Rust in main from 1.56.0 to 1.56.1
2021-11-01 17:25:35 +01:00
Flatcar Buildbot
4dfad63f67
Upgrade virtual Rust in main from 1.56.0 to 1.56.1
2021-11-01 13:19:50 +00:00
Dongsu Park
7d2a26a07b
sys-process/procps: update to 3.3.17-r1
...
Now that ncurses 6.2_p20210619 dropped the USE flag 'unicode', it is
not possible to specify the flag in sys-process/procps.
We need to make the flag optional, by specifying '(+)'.
See also
https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ec71f8061aaa422b7eedfd090e09211736579372
Simply sync with Gentoo for 3.3.17-r1 that includes the fix.
2021-11-01 11:44:04 +01:00
Dongsu Park
7ca4e6f137
sys-apps/gptfdisk: update to 1.0.7-r2
...
Now that ncurses 6.2_p20210619 dropped the USE flag 'unicode', it is
not possible to specify the flag in sys-apps/gptfdisk.
We need to make the flag optional, by specifying '(+)'.
See also
https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d0c4f07166bac4c87f7e290f049e7a1603025444
Simply sync with Gentoo for 1.0.7-r2 that includes the fix.
2021-11-01 11:40:54 +01:00
Dongsu Park
a06e7cbe30
sys-libs/readline: update to 8.1_p1-r1
...
Now that ncurses 6.2_p20210619 dropped the USE flag 'unicode', it is
not possible to specify the flag in sys-libs/readline.
We need to make the flag optional, by specifying '(+)'.
See also
https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=df194650455b53175ed2852547169875002b2292
Simply sync with Gentoo for readline 8.1_p1-r1 that has the fix.
2021-11-01 11:40:49 +01:00
Dongsu Park
e376e392df
net-misc/wget: update to 1.21.2
...
Update net-misc/wget to 1.21.2, mainly to address CVE-2021-31879.
2021-10-28 10:15:57 +02:00
Dongsu Park
0e1e146cf3
Merge pull request #232 from flatcar-linux/rust-1.56.0-main
...
Upgrade virtual Rust in main from 1.55.0 to 1.56.0
2021-10-27 09:52:23 +02:00
Flatcar Buildbot
a9b55251cd
Upgrade virtual Rust in main from 1.55.0 to 1.56.0
2021-10-26 12:08:10 +00:00
Jeremi Piotrowski
e31ef0ca87
Merge pull request #230 from flatcar-linux/jepio/update-gcc-deps-to-eapi-7
...
update gcc deps to EAPI=7.
2021-10-26 13:53:17 +02:00
Dongsu Park
796ba1eeb5
Merge pull request #229 from aniruddha2000/aniruddha/update-nmap-7.92
...
Update net-analyzer/nmap to v7.92
2021-10-25 17:26:52 +02:00
Dongsu Park
781a72a2a2
Merge pull request #228 from aniruddha2000/aniruddha/update-sys-fs-cryptsetup-2.4.1
...
Update sys-fs/cryptsetup to v2.4.1
2021-10-25 17:26:37 +02:00
Aniruddha Basak
261b2337df
Update net-analyzer/nmap to v7.92
2021-10-22 10:39:57 +00:00
Aniruddha Basak
e24c9bbff2
Update sys-fs/cryptsetup to v2.4.1
2021-10-22 09:32:48 +00:00
Jeremi Piotrowski
b61a41306a
dev-libs/mpfr: Sync with Gentoo upstream
...
Sync ebuild to upstream version to switch to EAPI=7, as previous
EAPIs cause issues with multilib deps when running ./build_toolchains
in the context of arm64 SDK.
Upstream commit e4adffda16496e86a61020e8569c6974f8018983
2021-10-20 12:25:26 +00:00
Jeremi Piotrowski
e51102ad70
dev-libs/mpc: Sync with Gentoo upstream
...
Sync ebuild to upstream version to switch to EAPI=7, as previous
EAPIs cause issues with multilib deps when running ./build_toolchains
in the context of arm64 SDK.
Upstream commit e4adffda16496e86a61020e8569c6974f8018983
2021-10-20 12:25:26 +00:00
Jeremi Piotrowski
4db1c1b8c3
net-dns/libidn2: Sync with Gentoo upstream
...
Sync ebuild to upstream version to switch to EAPI=7, as previous
EAPIs cause issues with multilib deps when running ./build_toolchains
in the context of arm64 SDK.
Upstream commit e4adffda16496e86a61020e8569c6974f8018983
2021-10-20 12:25:26 +00:00
Krzesimir Nowak
de74177fc6
Merge pull request #226 from flatcar-linux/krnowak/eapi-update2
...
*: Sync with gentoo
2021-10-19 15:40:15 +02:00
Krzesimir Nowak
ac853406ad
sys-devel/bison: Sync with gentoo
...
It's from gentoo commit 05ac71ce6639a14df6af2f05db1c57d147fd0f19.
The updated sys-apps/gawk started to depend on a newer version of
sys-devel/bison, so update the latter too.
2021-10-19 09:53:29 +02:00
Krzesimir Nowak
d427495e4e
*: Sync with gentoo
...
This is to get rid of EAPI 2.
2021-10-18 18:28:05 +02:00
Dongsu Park
d1707cc374
Merge pull request #224 from ArkaprabhaChakraborty/arkaprabha/update-git
...
Upgrade git 2.32.0
2021-10-14 08:24:42 +02:00
Dongsu Park
b2d0b159f1
Merge pull request #221 from ArkaprabhaChakraborty/arkaprabha/update-curl
...
upgraded curl to 7.79.1
2021-10-14 08:19:40 +02:00