aboutsummaryrefslogtreecommitdiffstats
path: root/src
Commit message (Collapse)AuthorAgeFilesLines
...
* commit: fix another re-installing misspelling to reinstallingTimo Teräs2013-06-211-1/+1
|
* commit: fix ssize_t printingTimo Teräs2013-06-201-4/+5
|
* solver: fix pinning+cache to workTimo Teräs2013-06-205-24/+32
| | | | | Mistakenly allowed masked out package to be installed if it was in cache.
* commit, db: make file conflicts and script errors non-fatalTimo Teräs2013-06-205-134/+140
| | | | fixes #1482
* solver: fix package deletion to consier provides properlyTimo Teräs2013-06-193-28/+48
|
* all: few behavioural regression fixesTimo Teräs2013-06-196-5/+13
| | | | | | | | | 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.
* solver: properly order deletion of unneeded packagesTimo Teräs2013-06-192-73/+130
|
* applets: unify help message by removing final dotsTimo Teräs2013-06-1913-24/+16
|
* fetch, del: perform wildcard matchingTimo Teräs2013-06-192-88/+92
| | | | ref #511
* solver: add logic: transitive provides exclusionTimo Teräs2013-06-192-25/+67
| | | | | | | If name N is required, and all providers of A also provide B, it means that only instances of B can be selected that provide N. This is strong help with cases when so:libfoo.so.1 is updated to so:libfoo.so.2 and not everything is recompiled.
* apk: set automatic flags before parsing the optsNatanael Copa2013-06-191-1/+1
| | | | Otherwise we cannot override with --no-progress
* print: move progress bar update logic to apk_print_progressNatanael Copa2013-06-195-49/+48
| | | | | | | | | | | | | | | | | | | - let the apk_print functions deal with the forced print itself. We avoid that the callbacks need to deal with the force flag. We can also get rid of the APK_PRINT_PROGRESS_* defines. - let the reader of --progress-fd decide how often things are updated rather than having a fixed granularity off 1/100 (percent) - avoid detect screen size and percent/bar calculations in case the --no-progress was given - track satistics for both the ascii bar and percent info and update bar only if either percent or bar changes. This makes the bar go smoother when width is wider than 100 chars and it makes the percent counter go smooth when screen width is less thann 100 chars. It also simplifies the callbacks as they no longer need to deal with update granularity.
* del: fix a segfault when trying to delete uninstalled packagesTimo Teräs2013-06-191-1/+4
|
* print: percent arg for process_fd is integerNatanael Copa2013-06-191-1/+1
| | | | | | With commit 0a131418899436b58a163978176d99c08cbddb0c the percent variable became an integer instead of size_t. We fix the format modifier accordingly.
* dot: new option: --installedTimo Teräs2013-06-191-2/+13
| | | | to consider only installed packages
* upgrade: new option: --latest (-l)Timo Teräs2013-06-195-62/+106
| | | | | | | | | | | | | Select latest version of package (if it is not pinned), and print error if it cannot be installed due to other dependencies. Together with --available, it selects the latest package which is present at least in some repository. This also fixes few solver issues with ordering of package selection that got quite apparent with this flag. Namely, we cannot "lock" a package until it's reverse dependencies are locked or not all of the solver flags are propagated properly.
* errors: fix a test case, and misanalysis of certain namesTimo Teräs2013-06-181-0/+2
| | | | | | the pinning11 changed when @repo got the leading @ on error messages. analyze_dep() now properly ignores conflict dependencies, as those names are usually intentionally left unassigned.
* policy: new appletTimo Teräs2013-06-184-6/+83
| | | | | to show different versions of package and the repositories from which it is available from.
* db: store repository tag names including leading @Timo Teräs2013-06-185-57/+67
|
* fix, info, ver: perform wildcard matchingTimo Teräs2013-06-184-120/+62
| | | | ref #511
* apk: use string array in applet mains, separate apk_name_foreach_matchingTimo Teräs2013-06-1819-214/+284
|
* url: fix fetching from local repositoriesNatanael Copa2013-06-182-5/+6
|
* errors: improve analysis for virtual packagesTimo Teräs2013-06-182-17/+28
| | | | | if all packages named N provide the virtual package, list only the name N instead of all packages providing it.
* all: various conversions to foreach_array_item, and simplifications of codeTimo Teräs2013-06-187-189/+109
|
* fetch: implement progress (fixes #1170)Timo Teräs2013-06-172-45/+65
|
* io: get rid of APK_PROGRESS_SCALETimo Teräs2013-06-175-30/+11
| | | | | no need to muldiv all the time, just pass the current amount of bytes done, and let callbacks use that directly.
* cache: implement progress bar (ref #1170)Timo Teräs2013-06-176-16/+51
|
* print: move progress printing to common functionsTimo Teräs2013-06-176-39/+46
|
* db, cache: do not use cache/tmp for downloadsTimo Teräs2013-06-173-25/+28
| | | | instead use prefix for temporary files.
* url: remove unused apk_url_downloadTimo Teräs2013-06-172-34/+0
|
* db: refactor repository file constructionTimo Teräs2013-06-179-180/+181
| | | | | Fixes also 'fetch' applet to prefer copying/linking to files from cache if possible.
* io: fix splice for copying unknown lengthsTimo Teräs2013-06-173-9/+22
|
* pkg: apk_pkg_foreach_* add matching generationTimo Teräs2013-06-154-71/+64
| | | | | | 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.
* lua: use apk_dep_analyzeTimo Teräs2013-06-153-26/+2
| | | | | and remove the now unused apk_dep_is_materialized_or_provided which was superceded by apk_dep_analyze.
* errors: detect self-conflicts properlyTimo Teräs2013-06-141-4/+6
| | | | | and add the provided version information to the conflicts. fixes the final test case that was broken. hooray.
* solver: use array_foreach_item and clean upsTimo Teräs2013-06-141-156/+130
|
* audit, index, search, upgrade: use foreach_array_itemTimo Teräs2013-06-144-17/+15
|
* solver, errors: fix few additional test cases and clean upsTimo Teräs2013-06-133-22/+20
|
* search: speed up searching exact package namesTimo Teräs2013-06-131-16/+26
|
* search: fix reverse dependency searching (fixes #2084)Timo Teräs2013-06-131-52/+47
| | | | | use the new apk_pkg_foreach_reverse_dependency helper to find the reverse dependencies properly.
* pkg: add global reverse dependency iterator helpers and use themTimo Teräs2013-06-134-137/+124
| | | | ... in the error printing and the package deletion.
* errors: rewrite the logic how errors are reportedTimo Teräs2013-06-137-102/+314
| | | | | | | 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.
* solver: prune broken world dependencies with --forceTimo Teräs2013-06-136-36/+61
| | | | mostly useful for reboot, when all packages are not available.
* solver: corner case fixesTimo Teräs2013-06-133-8/+27
| | | | | | | - try harder to not change anything during self-upgrade - also honor locking to packages that where earlier used in merging common dependencies - clarify upgrade applet help messages
* solver: rewrite as deductive solver -- pinning supportTimo Teräs2013-06-133-29/+140
| | | | Fix also pinning test cases to be more sane.
* solver: rewrite as deductive solver -- per name flagsTimo Teräs2013-06-133-17/+40
| | | | | Handle properly per-name preference flags, and add test cases for testing those via fix applet.
* solver: rewrite as deductive solver -- core featuresTimo Teräs2013-06-1314-1913/+1057
| | | | | Implementing basic dependency handling, install_if and awareness of pinning.
* lua: support for lua 5.2Natanael Copa2013-06-131-15/+32
|
* Revert "Revert "solver: increase score fields to 32-bits (from 16-bits)""William Pitcock2013-06-122-39/+31
| | | | This reverts commit a2d873a77c6dd2e7f6219e6941af796e1f904e69.
* libapk, apk(8): fix header inclusion issues with musl's headersWilliam Pitcock2013-06-126-1/+6
|