Age | Commit message (Collapse) | Author | |
---|---|---|---|
2024-09-06 | community/xwayland: upgrade to 24.1.2 | Simon Zeni | |
2024-09-06 | community/libinput: upgrade to 1.26.2 | Simon Zeni | |
2024-09-06 | testing/py3-pyinstrument: upgrade to 4.7.3 | Celeste | |
https://github.com/joerick/pyinstrument/compare/v4.7.2...v4.7.3 | |||
2024-09-06 | testing/perl-nice-try: upgrade to 1.3.13 | Celeste | |
https://metacpan.org/release/JDEGUEST/Nice-Try-v1.3.13/diff/JDEGUEST/Nice-Try-v1.3.12 | |||
2024-09-06 | main/perl-module-build-tiny: upgrade to 0.051 | Celeste | |
https://metacpan.org/release/LEONT/Module-Build-Tiny-0.051/diff/LEONT/Module-Build-Tiny-0.050 | |||
2024-09-06 | community/jj_tui: upgrade to 0.7.4 | Celeste | |
https://github.com/faldor20/jj_tui/compare/v0.7.2...v0.7.4 | |||
2024-09-06 | main/memcached: upgrade to 1.6.30 | Celeste | |
https://github.com/memcached/memcached/wiki/ReleaseNotes1630 | |||
2024-09-06 | main/hwdata: upgrade to 0.387 | Simon Zeni | |
2024-09-06 | community/py3-glad: upgrade to 2.0.7 | Simon Zeni | |
2024-09-06 | community/wireplumber: upgrade to 0.5.6 | Bart Ribbers | |
2024-09-06 | community/freeipmi: increase stack size | sodface | |
2024-09-06 | community/networkmanager-l2tp: fix build with gcc 14 | mio | |
2024-09-06 | testing/tree-sitter-haskell: enable tests | Alexey Yerin | |
2024-09-06 | testing/tree-sitter-haskell: upgrade to 0.23.0 | Alexey Yerin | |
2024-09-06 | community/syncthing: upgrade to 1.27.12 | Sertonix | |
2024-09-06 | testing/embree3: remove | Sertonix | |
The last usage of embree3 has been removed in 369f7de33c4 | |||
2024-09-06 | community/ruff: upgrade to 0.6.4 | Hugo Osvaldo Barrera | |
2024-09-06 | community/phosh: upgrade to 0.41.1 | Stefan Hansson | |
2024-09-06 | testing/py3-fastavro: upgrade to 1.9.7 | Iztok Fister Jr. | |
2024-09-06 | community/py3-cdsapi: upgrade to 0.7.2 | Iztok Fister Jr. | |
2024-09-06 | scripts/mkimage.sh: simplify for loops | Sertonix | |
2024-09-06 | scripts/mkimage.sh: fix cross creating | Sertonix | |
2024-09-06 | community/py3-libvirt: upgrade to 10.7.0 | Krassy Boykinov | |
2024-09-06 | community/libvirt: security upgrade to 10.7.0 | Krassy Boykinov | |
* CVE-2024-8235 | |||
2024-09-06 | main/mesa: upgrade to 24.2.2, disable LTO | ptrcnull | |
2024-09-06 | community/geoclue: upgrade to 2.7.2 | Krassy Boykinov | |
* mozilla location service removed with this release | |||
2024-09-06 | community/py3-simframe: upgrade to 1.0.5 | Celeste | |
2024-09-06 | community/libgweather4: upgrade to 4.4.4 | Krassy Boykinov | |
2024-09-06 | community/py3-altair: remove aport | Iztok Fister Jr. | |
2024-09-06 | main/tzdata: upgrade to 2024b | Natanael Copa | |
2024-09-06 | community/telepathy-glib: fix build with gcc 14 | Natanael Copa | |
2024-09-06 | main/libepoxy: fix source filename | fossdd | |
2024-09-06 | testing/steghide: fix source filename | fossdd | |
2024-09-06 | testing/dolt: upgrade to 1.42.18 | Celeste | |
2024-09-06 | community/remind: upgrade to 05.00.05 | Celeste | |
2024-09-06 | community/perl-graph: upgrade to 0.9732 | Celeste | |
2024-09-06 | main/perl-test-simple: upgrade to 1.302203 | Celeste | |
2024-09-06 | testing/perl-autobox: upgrade to 3.0.2 | Celeste | |
also, upgrade to apkbuild-cpan template 4 | |||
2024-09-06 | community/traefik: upgrade to 3.1.2 | Fabricio Silva | |
use webui provided upstream instead of build it | |||
2024-09-06 | main/iputils: upgrade to 20240905 | Celeste | |
2024-09-06 | main/alpine-base: move os-release to /usr | Clayton Craft | |
This moves os-release to /usr, and creates a relative symlink at /etc/os-release to it. The symlink is for backwards compatibility. This is the recommended way to install os-release, as described in the os-release manpage[1] 1. https://www.man7.org/linux/man-pages/man5/os-release.5.html | |||
2024-09-06 | main/rust: upgrade to 1.81.0 | Celeste | |
2024-09-06 | main/rust: do not build vendored lld | Celeste | |
Based on https://blog.rust-lang.org/2024/05/17/enabling-rust-lld-on-linux.html it seems Rust is moving towards using LLD as default linker. Rust 1.81.0 beta4 attempts to build its own vendored LLD, which requires adding packages like cmake, samurai, and libxml2-dev to makedepends. Setting this option ensures we never accidentally build that. If we wanted to use LLD, we would give preference to system LLD instead. | |||
2024-09-06 | main/rust: skip stage0 when bootstrapping from same version | Celeste | |
We constrain the version of `rust-bootstrap` with `>=$_bootver`, so essentially `$_bootver` can either be the previous version (taken care by the `>` part), or the current version (`=`). Therefore, to allow for faster rebuilding, skip stage0 by setting `local-rebuild=true` whenever $_bootver is the same as $pkgver. | |||
2024-09-06 | main/rust: allow re-running build() | Celeste | |
This comes in handy when debugging why a build fails, use `--incremental` so we do not have to rebuild all stages each time build() is run. Also, `./configure` will exit with the following message if a "config.toml" (even an empty one) is found: "configure: ERROR: Existing 'config.toml' detected. Exiting" So, if "config.toml" exists, assume we want to restart the build by skipping `./configure` and proceeding on to `./x.py`. | |||
2024-09-06 | main/rust: make bootstrap faster | Celeste | |
- Skip LTO=thin during bootstrap to save time. - Only build `cargo` subpackage, which is a strict requirement for bootstrap. - Build with `./x.py build` and `_bootstrap_install` instead of `./x.py dist` and `_unpack_build_dist`. The latter is a more expensive operation that builds a tarball which we have to unpack all over again. | |||
2024-09-06 | main/rust: unset some env vars while cross compiling | Celeste | |
RUSTFLAGS contains the flag for DT_RELR on x86_64, which is usually silently ignored on archs where it is not supported, but with binutils 2.43, bootstrap.sh fails on loongarch64 due to this. CC/CXX cause Rust to miscompile some crates, as it tries to use the cross compiler to build for $CBUILD. | |||
2024-09-06 | community/git-annex: upgrade to 10.20240831 | Antoine Martin | |
2024-09-06 | community/gallery-dl: upgrade to 1.27.3 | ptrcnull | |
2024-09-06 | testing/vale: take over maintainership | fossdd | |
Ref: !71483 |