Age | Commit message (Collapse) | Author | |
---|---|---|---|
2021-11-14 | meson: work-in-progress host-compile | Waldemar Brodkorb | |
2021-11-13 | glib: link against ffi | Waldemar Brodkorb | |
2021-11-13 | coreutils: update to 9.0 | Waldemar Brodkorb | |
2021-11-13 | kexec-tools: update to 2.0.23 | Waldemar Brodkorb | |
2021-11-12 | rsync: update to 3.2.3 | Waldemar Brodkorb | |
2021-11-12 | gdk-pixbuf: fix build dependencies | Waldemar Brodkorb | |
2021-11-11 | use kernel 5.10 for ppc64 | Waldemar Brodkorb | |
2021-11-11 | xtensa: use -mlongcalls for big-endian, too | Waldemar Brodkorb | |
2021-11-11 | bfin fdpic gcc 10 fails | Waldemar Brodkorb | |
2021-11-11 | gcr: needs libgtk3 | Waldemar Brodkorb | |
2021-11-11 | libffi: disable symbol versioning | Waldemar Brodkorb | |
2021-11-11 | meson: update to 0.60.1 | Waldemar Brodkorb | |
2021-11-11 | gstreamer: update to 1.19.3 | Waldemar Brodkorb | |
2021-11-11 | fix | Waldemar Brodkorb | |
2021-11-11 | libtiff: use autotools for correct *.pc generation | Waldemar Brodkorb | |
2021-11-11 | daq: update to 2.0.7 | Waldemar Brodkorb | |
2021-11-11 | icu4c: update to 70.1 | Waldemar Brodkorb | |
2021-11-04 | ppp: fix rp-pppoe plugin compile | Waldemar Brodkorb | |
2021-11-04 | wolfssl: update to 5.0.0 | Waldemar Brodkorb | |
2021-11-04 | qingy: fix gcc 10.x compile error | Waldemar Brodkorb | |
2021-11-04 | popt: update to 1.18 | Waldemar Brodkorb | |
2021-11-04 | p5-html-parser: update to 3.7.6 | Waldemar Brodkorb | |
2021-11-04 | tiff: update to 4.3.0 | Waldemar Brodkorb | |
2021-11-04 | libffi: update to 3.4.2 | Waldemar Brodkorb | |
2021-11-04 | curl: update to 7.79.1 | Waldemar Brodkorb | |
2021-11-04 | perl.mk fixup after version bump of perl | Waldemar Brodkorb | |
2021-11-04 | c-ares: update to 1.18.1 | Waldemar Brodkorb | |
2021-11-04 | directfb: update to 1.7.7 | Waldemar Brodkorb | |
2021-11-04 | mdadm: Add dependencies on kernel symbols | Phil Sutter | |
Without kernel support for MD RAID, mdadm is pretty useless. Signed-off-by: Phil Sutter <phil@nwl.cc> | |||
2021-11-04 | package: cryptsetup: Update to 2.4.1 | Phil Sutter | |
There is a new (optional) dependency libargon2 - a builtin fallback exists but is supposed to be slow. Add mandatory kernel modules for kernel crypto backend and the default cipher choice when creating new LUKS mappings. Signed-off-by: Phil Sutter <phil@nwl.cc> | |||
2021-11-04 | package: Port libargon2 package | Phil Sutter | |
This is an optional dependency of a more recent cryptsetup package. It replaces the bundled one and is supposed to be faster. Signed-off-by: Phil Sutter <phil@nwl.cc> | |||
2021-11-04 | lvm: Update to version 2.02.188 | Phil Sutter | |
Drop all patches while doing so, seems to work just fine without. New dependency is libaio. Also add a dependency on BLK_DEV_DM kernel symbol. Note the backported patch from upstream fixing for libc implementations without symbol versioning support which caused a segfault in cryptsetup due to recursive calls to dm_task_get_info_base(). Signed-off-by: Phil Sutter <phil@nwl.cc> | |||
2021-11-04 | package: Port libaio | Phil Sutter | |
This is required by a more recent version of lvm package. Signed-off-by: Phil Sutter <phil@nwl.cc> | |||
2021-11-04 | samba: Update to version 4.13.2 | Phil Sutter | |
Signed-off-by: Phil Sutter <phil@nwl.cc> | |||
2021-11-04 | package: Port p5-parse-yapp | Phil Sutter | |
Host-build required by a more recent samba package. Signed-off-by: Phil Sutter <phil@nwl.cc> | |||
2021-11-04 | heimdal: Update to version 7.7.0 | Phil Sutter | |
Signed-off-by: Phil Sutter <phil@nwl.cc> | |||
2021-11-04 | perl: Update perl and perl-cross | Phil Sutter | |
Perl update avoids an "Attempt to free unreferenced scalar" error in miniperl when host building. Update perl-cross while being at it. Signed-off-by: Phil Sutter <phil@nwl.cc> | |||
2021-11-04 | nfs-utils: Update to version 2.5.2 | Phil Sutter | |
Also update patches. Signed-off-by: Phil Sutter <phil@nwl.cc> | |||
2021-11-04 | libtirpc: Update to version 1.3.1 | Phil Sutter | |
Fixes compiling with recent gcc. Signed-off-by: Phil Sutter <phil@nwl.cc> | |||
2021-11-04 | gdb: Fix libgmp dependency checks | Phil Sutter | |
Added checks for libgmp in configure scripts are not really portable, at least 'gdb' subdir configure used host's libgmp and consequently failed. At least there's 'host_configargs' to define additional arguments; use it to point sub-configure to the right location. Signed-off-by: Phil Sutter <phil@nwl.cc> | |||
2021-11-04 | scripts: Review patch_git.sh and update-patches-git | Phil Sutter | |
Fix git-backed package patching and patch updating scripts: * patch_git.sh was entirely broken (since forever?!) due to a missing 'cd' call * update-patches-git formatted the marker commit as patch instead of ignoring it The major improvement of this review is the elimination of the mandatory final marker commit. Putting it before the series being applied works well and allows to add a patch to the series without demanding a git-rebase call to get the marker back on top. While being at it: * Call 'git am --abort' only if there was a git repo already * Call git-commit and git-format-patch with extra options to avoid side-effects from a user's .gitconfig * Explicitly specify output format in git-log to avoid surprises, also split output properly with 'read' * Eliminate fake_hdr variable Signed-off-by: Phil Sutter <phil@nwl.cc> | |||
2021-11-04 | zile: update to 2.6.2 | Waldemar Brodkorb | |
2021-11-04 | nano: update to 5.9 | Waldemar Brodkorb | |
2021-11-04 | libgc: update to 8.2.0 | Waldemar Brodkorb | |
2021-11-04 | vim: update to 8.2 | Waldemar Brodkorb | |
2021-11-04 | openkdap: update to 2.6.0 | Waldemar Brodkorb | |
2021-11-04 | mariadb: use distfiles.openadk.org | Waldemar Brodkorb | |
2021-11-02 | libdrm: update to 2.4.107, convert to meson | Waldemar Brodkorb | |
2021-11-02 | freeglut: update to 3.2.1, add buildroot patch to compile with gcc 10.x | Waldemar Brodkorb | |
2021-11-02 | systemd depends on glibc | Waldemar Brodkorb | |