summaryrefslogtreecommitdiff
path: root/src/apk_package.h
AgeCommit message (Collapse)AuthorFilesLines
2022-02-21db: sort world dependencies to layersTimo Teräs1-0/+3
2022-02-21db: prepare database reading for layersTimo Teräs1-0/+1
2021-12-03db: convert v3 scripts to ipkg on installTimo Teräs1-0/+1
fixes #10796
2021-11-22db: synthesize symlink hashes for v3 packagesTimo Teräs1-0/+1
The v3 format will not require the hash, but synthesize it to the DB so v3 packages can get installed properly. fixes #10785
2021-11-09database: support loading v3 indexesTimo Teräs1-1/+1
2021-11-03db, audit: support sha256-160 hashes for v3 pkg compatTimo Teräs1-0/+1
2021-10-27db, add: support adding v3 package filesTimo Teräs1-1/+6
2021-07-27Refactor .apk extraction codeTimo Teräs1-41/+1
This moves and isolates the tar code to tar.c. And the actual file extraction to disk is moved to extract.c. A new API is introduced and used for v2 file extraction. This essentially moves and isolates the apk_sign_ctx_* beast into extract_v2.c and offers a saner interface to handling packages. A place holder is added for v3 extraction.
2020-10-09rename adb_trust to apk_trust, and use it as package signature keystore tooTimo Teräs1-2/+3
2020-10-09make apk_flags non-global, make progress printing state non-globalTimo Teräs1-1/+2
ref #10682
2020-08-24fix, simplify and document upgrade --ignoreTimo Teräs1-7/+3
2020-05-07use SPDX-License-Identifier in source filesTBK1-3/+1
2019-12-29del: report non-matching names and install-if rule non-deletionTimo Teräs1-0/+1
2018-10-26add support for openssl 1.1Timo Teräs1-1/+1
2017-11-02solver: implement support for choosing default virtualsWilliam Pitcock1-0/+1
By introducing a new package metadata field, `provider_priority` (index letter `k`), we can specify default packages to satisfy a virtual. If a user wishes to select an alternative provider for the virtual, a changeset swapping the default provider for the selected provider will be generated by the dependency resolver.
2017-05-27version: add support for fuzzy version matchingWilliam Pitcock1-1/+2
This is useful for requirements such as: python3=~3.6, which would match python3-3.6.[0-9]. This implementation should in theory be backwards compatible with the implementation in Adelie.
2015-12-10commit: self-conflict error and satisfies printingTimo Teräs1-0/+1
- self-conflicts when the exact same version of a name is provided twice is now properly detected and diagnozed - don't print redundant satisfies diagnostic
2015-04-17make file install errors non-fatal, and xattr errors hiddenTimo Teräs1-0/+1
user xattrs on tmpfs are not supported no non-grsec kernels, and many times root fs is mounted without user_xattr. Thus to allow things to go smoothly on non-grsec kernels xattr unsupported errors are now hidden. xattrs can be fixed still now with "apk fix --xattrs"
2014-05-19solver: fix installation of non-repository packages during tmpfs bootTimo Teräs1-1/+2
allow packages in the cache's installed to be selected for installation by the solver. add test case for the issue.
2013-06-28various: applet help text and comment fixesDubiousjim1-1/+1
Acked-by: Natanael Copa <ncopa@alpinelinux.org>
2013-06-20solver: fix pinning+cache to workTimo Teräs1-2/+1
Mistakenly allowed masked out package to be installed if it was in cache.
2013-06-20commit, db: make file conflicts and script errors non-fatalTimo Teräs1-6/+8
fixes #1482
2013-06-19all: few behavioural regression fixesTimo Teräs1-0/+1
Wildcard matching with no names should match all packages only for info and search applet. "apk del" would otherwise try to delete everything, etc. Fix also interactive mode to ask questions only if we are actually changing something.
2013-06-18all: various conversions to foreach_array_item, and simplifications of codeTimo Teräs1-4/+2
2013-06-17fetch: implement progress (fixes #1170)Timo Teräs1-1/+1
2013-06-17db: refactor repository file constructionTimo Teräs1-2/+2
Fixes also 'fetch' applet to prefer copying/linking to files from cache if possible.
2013-06-15pkg: apk_pkg_foreach_* add matching generationTimo Teräs1-8/+12
So same package it is possible to not match same package multiple times. Use generation count, so this is handled cleanly during recursion, like in the use case of search applet.
2013-06-15lua: use apk_dep_analyzeTimo Teräs1-1/+0
and remove the now unused apk_dep_is_materialized_or_provided which was superceded by apk_dep_analyze.
2013-06-13pkg: add global reverse dependency iterator helpers and use themTimo Teräs1-5/+21
... in the error printing and the package deletion.
2013-06-13errors: rewrite the logic how errors are reportedTimo Teräs1-0/+6
Instead of the dependency oriented logic, switch to print them for each package or name needed. Might give a bit more readable errors now. There's still few corner cases that proper error is not output, which are cought by the test cases.
2013-06-13solver: prune broken world dependencies with --forceTimo Teräs1-0/+1
mostly useful for reboot, when all packages are not available.
2013-06-13solver: rewrite as deductive solver -- core featuresTimo Teräs1-2/+2
Implementing basic dependency handling, install_if and awareness of pinning.
2013-05-30db: unify handling of special packagesTimo Teräs1-1/+0
make cache a special kind of repository, and automatically cache special packages (virtual packages, or ones installed from command line). add test cases for handling virtual packages. fixes #1617.
2012-10-08solver: optimize backjumpingTimo Teräs1-1/+2
to be functional when backtracking
2012-02-29solver, test: make conflicts unconditionalTimo Teräs1-1/+1
Solver will now never report partial solution where a conflict constraint is not satisfied. The is because with --force we might install the partial solution; and if conflicted packages were to be installed we might have extra trouble.
2012-02-24all: introduce apk_provides and use it in apk_nameTimo Teräs1-1/+9
in preparation for provides support. implements also some dependency satisfaction helper routines. ref #574.
2012-02-24pkg: add field for provides as 'p'Timo Teräs1-1/+1
ref #574
2012-02-22db, solver, io: scan cache items at startupTimo Teräs1-1/+2
It is faster to just scan the cache directory for existing packages at startup than trying to faccessat() them on demand. It also makes quite a few parts of the code more readable and simpler.
2012-02-15solver, db: repository pinning improvementsTimo Teräs1-0/+1
* solver internally calculates now using tags; not repository masks * installeddb now contains the tag name where the package came from -> we can now handle upgrades properly * the pinning is still a preference, and not strictly enforced; versioned dependencies may overrule preference
2012-01-12db: support line feed as 'world' dependency separatorTimo Teräs1-1/+1
* default writing the world with spaces if a space is found (for backwards compatibility) for now
2011-10-29solver, db: implement repository pinningTimo Teräs1-3/+5
Improves /etc/apk/repositories format so you can say: http://nl.alpinelinux.org/alpine/v2.3/main @edge http://nl.alpinelinux.org/alpine/edge/main @testing http://nl.alpinelinux.org/alpine/edge/testing After which you can pin dependencies to these tags using: apk add stableapp newapp@edge bleedingapp@testing Apk will now by default only use the untagged repositories, but adding a tag to specific dependency: 1. will prefer that tag for the name 2. allowing pulling in dependencies from that tag (though, it prefers untagged packages to satisfy deps if possible) fixes #575
2011-10-24solver, pkg: implement versioned conflictsTimo Teräs1-1/+2
One can now say in dependency "!foo<2" which means, that if foo is installed, it needs to be >=2, but it's not a required dependency.
2011-10-19pkg: convert struct apk_install_package flags to bitfieldTimo Teräs1-3/+1
2011-10-19pkg: introduce "replaces_priority"Timo Teräs1-0/+1
If two packages replace each other, the one with highes priority will keep the file. Additionally, if we have a package overriding another's file it's remembered and handled properly. This is essentially to allow "policy packages" which just overwrite certain (configuration) files from other package(s).
2011-10-18pkg, info: remember installed packages "replaces"Timo Teräs1-7/+7
"replaces" is now turned to a full dependency type list, so you can make package overwrite files only certain versions of the package (though, we should probably take this into account already at solution calculation phase). Also make 'info --replaces' print the "replaces" of the package. This is in preparation for the policy package support, which still requires "replacement priority" field to decide which packages' files get the preference.
2011-09-14solver: make state pointers completely internalTimo Teräs1-0/+1
the only bit of information needed in solver commit is the "hard" topology sorting information for trigger ordering. fixes a bug in "apk del" which uses the state pointers to do intermediate calculations between solution solving and commit.
2011-09-13all: update copyright year statementTimo Teräs1-1/+1
2011-08-05solver: move topology sorting to solver codeTimo Teräs1-1/+4
this allows quite some optimizations to running time and memory requirements.
2011-07-26solver: new package selection logic (which is not yet used)Timo Teräs1-0/+1
* basic code for a backtracking, forward checking dependency satisfier * works better when there are tricky dependencies to solve (when can't just upgrade everything to most preferred versions) * the new code always evaluates all of 'world' constraints (old code just does incremental updates based on heuristics) * is probably somewhat slower than old code (probably unnoticeable difference in most cases) * makes easier to write support for provides and repository pinning * test applet and a bunch of test cases added which uses the new code * from the old feature set install_if is not yet implemented
2011-04-04pkg: add origin, maintainer, build_time and commit id to indexTimo Teräs1-1/+3
Parse these fields from .PKGINFO, and write them to index.