- Feb 12, 2025
-
-
Timo Teräs authored
The earlier fix for 32-bit arches also messed up the sign extension for error code portion. Fix this by using a struct instead of trying to be clever with the bit shifts. fixes 8d41ff40 fetch: fix fetch_err_make() for 32-bit arches fixes #11082
-
Timo Teräs authored
it is used to build the help on build host
-
Fixes cross compilation of the documentation.
-
- Feb 10, 2025
-
-
This fixes some tests when for example the --interactive flag has been set through the apk config.
-
- Feb 08, 2025
-
-
nina authored
There are gholes in the apk_digest_str array, where the field is NULL. This will result in a segfault because strcmp cannot take a NULL.
-
Timo Teräs authored
-
Timo Teräs authored
- This allows explicitly to specify an index file or repository with new or old style index name. - Allow specifying repository components: a repositories line like: https://dl-cdn.alpinelinux.org/alpine/edge main community will automatically expand to: https://dl-cdn.alpinelinux.org/alpine/edge/main https://dl-cdn.alpinelinux.org/alpine/edge/community - Support for variables fixes #10765 fixes #10787
-
Timo Teräs authored
-
- Feb 06, 2025
-
-
Timo Teräs authored
automatically generate the option with and without "no-" prefix and pass the variant in the argument
-
- Feb 04, 2025
-
-
Timo Teräs authored
RFC2616 §3.3.1 requires compliant client to accept the two obsolete formats in addition to the Internet standard format. Based on patch by John Hallam <sw@j.hallam.dk>
-
- Feb 03, 2025
-
-
Christian Marangi authored
Fix compilation error for missing stdarg.h due to va_start and va_end. Signed-off-by:
Christian Marangi <ansuelsmth@gmail.com>
-
Christian Marangi authored
Make sha global variables constant to mute compilation warning with OpenSSL version 1 or 2. OpenSSL 3 changed and require EVP_MD non-const. Signed-off-by:
Christian Marangi <ansuelsmth@gmail.com>
-
Christian Marangi authored
Correctly handle error from pipe2 and open to mute compilation warning. Signed-off-by:
Christian Marangi <ansuelsmth@gmail.com>
-
Christian Marangi authored
Fix compilation error for missing sched.h due to unshare and CLONE_NEWNS and CLONE_NEWUSER. Signed-off-by:
Christian Marangi <ansuelsmth@gmail.com>
-
Christian Marangi authored
Fix compilation error for missing limits.h due to PATH_MAX. Signed-off-by:
Christian Marangi <ansuelsmth@gmail.com>
-
Christian Marangi authored
Fix compilation error for missing inttypes.h header due to PRIu64 usage. Signed-off-by:
Christian Marangi <ansuelsmth@gmail.com>
-
Timo Teräs authored
fixes commit 48980518 ctx, trust: load public keys also from lib/apk/keys
-
Timo Teräs authored
-
Timo Teräs authored
ref #11069
-
- Feb 02, 2025
-
-
Sertonix authored
Fixes help of mkndx and fetch which printed PKGNAMESPEC_ in the help output. This also matches the behaviour of scdoc.
-
- Jan 31, 2025
-
-
Timo Teräs authored
The logic for beyond range characters was inverted. spn takes accept mask, and if characters is outside range it cannot be in the accept mask. And wise versa.
-
- Jan 30, 2025
-
-
Signed-off-by:
Jiri Kastner <cz172638@gmail.com>
-
Timo Teräs authored
Update the old package matching to detect better if full path or just filename portion should be matched.
-
Timo Teräs authored
the limit of 512 array entries is not sufficient for large packages
-
- Jan 28, 2025
-
-
Timo Teräs authored
Origin is an atom and is always non-null, check the length instead.
-
- Jan 24, 2025
-
-
Timo Teräs authored
This makes the group id and option id packing to option.val more readable.
-
Timo Teräs authored
- move adb_walk_text - move serialize_adb both are intended only for adbgen which is basically a debugging applet
-
Timo Teräs authored
simplifies code a little bit
-
Timo Teräs authored
-
Timo Teräs authored
these are in apk_* namespace and also defines the iterator
-
Timo Teräs authored
non_repository_check() already prints proper error, so don't print specification error after it. ref #11078
-
- Jan 23, 2025
-
-
Timo Teräs authored
The orphan check should be on the name - not the package itself. Keep this now in apk_name and use the data also in app_list. fixes #11078
-
Timo Teräs authored
ref #11069
-
- Jan 21, 2025
-
-
busybox realpath doesn't have the -e option. The option didn't seem to be needed anyways so remove it.
-
Sertonix authored
This allows using a config file with an installation where --root != /. And it finally allows using apk in such setup without passing --root to every command.
-
Timo Teräs authored
fixes #11076
-
Timo Teräs authored
This simplifies things for future.
-
Timo Teräs authored
It's already used in multiple places and simplifies things.
-
Timo Teräs authored
Process repositories.d from etc/apk and lib/apk. Files form etc/apk take precendence. Process files in alphabetical order. fixes #11069
-
Timo Teräs authored
There might be still cached data in the main stream. fixes 49905d47 io: introduce and use apk_istream_skip
-