summaryrefslogtreecommitdiff
AgeCommit message (Collapse)AuthorFilesLines
2013-07-02defines: detect endianess on arm, for armelTimo Teräs1-0/+3
2013-06-30Allow "apk search -x" for -eDubiousjim1-1/+3
2013-06-30apk: infrastructure for short-option-only synonymsDubiousjim1-8/+9
2013-06-28fix: improve usageDubiousjim1-2/+2
Acked-by: Natanael Copa <ncopa@alpinelinux.org>
2013-06-28version: clarify usageDubiousjim1-3/+4
Acked-by: Natanael Copa <ncopa@alpinelinux.org>
2013-06-28add, del: main dependencies -> 'world'Dubiousjim2-2/+2
Acked-by: Natanael Copa <ncopa@alpinelinux.org>
2013-06-28various: applet help text and comment fixesDubiousjim12-22/+21
Acked-by: Natanael Copa <ncopa@alpinelinux.org>
2013-06-26build: lua module build fixesNatanael Copa2-4/+6
- do not link with -llua. We should not link apk or lua module with it. - default to lua 5.2 - allow override the lua version with LUA_VERSION - allow override the lua pkg-config package with LUA_PC - only add the pkg-config lua --cflags to the lua module
2013-06-21db: write ipkg flags in proper placeTimo Teräs1-7/+8
2013-06-21db: reset broken pkg state on reinstallTimo Teräs1-0/+2
2013-06-21commit: fix another re-installing misspelling to reinstallingTimo Teräs1-1/+1
2013-06-20apk-tools-2.4.0_rc1v2.4.0_rc1Timo Teräs1-1/+1
2013-06-20commit: fix ssize_t printingTimo Teräs1-4/+5
2013-06-20solver: fix pinning+cache to workTimo Teräs5-24/+32
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äs8-138/+144
fixes #1482
2013-06-19solver: fix package deletion to consier provides properlyTimo Teräs3-28/+48
2013-06-19all: few behavioural regression fixesTimo Teräs6-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.
2013-06-19solver: properly order deletion of unneeded packagesTimo Teräs6-75/+179
2013-06-19applets: unify help message by removing final dotsTimo Teräs13-24/+16
2013-06-19fetch, del: perform wildcard matchingTimo Teräs2-88/+92
ref #511
2013-06-19solver: add logic: transitive provides exclusionTimo Teräs2-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.
2013-06-19apk: set automatic flags before parsing the optsNatanael Copa1-1/+1
Otherwise we cannot override with --no-progress
2013-06-19print: move progress bar update logic to apk_print_progressNatanael Copa5-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.
2013-06-19del: fix a segfault when trying to delete uninstalled packagesTimo Teräs1-1/+4
2013-06-19print: percent arg for process_fd is integerNatanael Copa1-1/+1
With commit 0a131418899436b58a163978176d99c08cbddb0c the percent variable became an integer instead of size_t. We fix the format modifier accordingly.
2013-06-19dot: new option: --installedTimo Teräs1-2/+13
to consider only installed packages
2013-06-19upgrade: new option: --latest (-l)Timo Teräs8-65/+134
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.
2013-06-18errors: fix a test case, and misanalysis of certain namesTimo Teräs2-1/+3
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.
2013-06-18policy: new appletTimo Teräs4-6/+83
to show different versions of package and the repositories from which it is available from.
2013-06-18db: store repository tag names including leading @Timo Teräs5-57/+67
2013-06-18fix, info, ver: perform wildcard matchingTimo Teräs4-120/+62
ref #511
2013-06-18apk: use string array in applet mains, separate apk_name_foreach_matchingTimo Teräs19-214/+284
2013-06-18url: fix fetching from local repositoriesNatanael Copa2-5/+6
2013-06-18errors: improve analysis for virtual packagesTimo Teräs4-18/+35
if all packages named N provide the virtual package, list only the name N instead of all packages providing it.
2013-06-18all: various conversions to foreach_array_item, and simplifications of codeTimo Teräs7-189/+109
2013-06-17fetch: implement progress (fixes #1170)Timo Teräs2-45/+65
2013-06-17io: get rid of APK_PROGRESS_SCALETimo Teräs5-30/+11
no need to muldiv all the time, just pass the current amount of bytes done, and let callbacks use that directly.
2013-06-17cache: implement progress bar (ref #1170)Timo Teräs6-16/+51
2013-06-17print: move progress printing to common functionsTimo Teräs6-39/+46
2013-06-17db, cache: do not use cache/tmp for downloadsTimo Teräs3-25/+28
instead use prefix for temporary files.
2013-06-17url: remove unused apk_url_downloadTimo Teräs2-34/+0
2013-06-17db: refactor repository file constructionTimo Teräs9-180/+181
Fixes also 'fetch' applet to prefer copying/linking to files from cache if possible.
2013-06-17io: fix splice for copying unknown lengthsTimo Teräs3-9/+22
2013-06-15pkg: apk_pkg_foreach_* add matching generationTimo Teräs4-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.
2013-06-15lua: use apk_dep_analyzeTimo Teräs3-26/+2
and remove the now unused apk_dep_is_materialized_or_provided which was superceded by apk_dep_analyze.
2013-06-14errors: detect self-conflicts properlyTimo Teräs3-6/+13
and add the provided version information to the conflicts. fixes the final test case that was broken. hooray.
2013-06-14solver: use array_foreach_item and clean upsTimo Teräs1-156/+130
2013-06-14audit, index, search, upgrade: use foreach_array_itemTimo Teräs4-17/+15
2013-06-13solver, errors: fix few additional test cases and clean upsTimo Teräs6-25/+25
2013-06-13search: speed up searching exact package namesTimo Teräs1-16/+26