- Oct 09, 2012
-
-
Timo Teräs authored
-
Timo Teräs authored
So we get better error report if package is not deleted due to reverse dependency.
-
Timo Teräs authored
The 'a' package is now more preferred which actually makes more sense.
-
- Oct 08, 2012
-
-
Timo Teräs authored
Enabled when all attempts to satisfy a name failed, we know that we can ignore all decisions until we find a decision affecting the name we wanted to satisfy.
-
Timo Teräs authored
to be functional when backtracking
-
Timo Teräs authored
-
- Oct 05, 2012
-
-
Timo Teräs authored
-
Timo Teräs authored
We can't just use the primary name, as that would mess up backtracking. We need to record the name which caused the name to get considered - that way the right last_touched_decision is used on backtracking.
-
- Oct 03, 2012
-
-
Timo Teräs authored
* push_decision expects to always get the package primary 'name' as apk_name. ASSERT that and fix problem cases. (though - this might need to be reverted, and store the non primary name in apk_decision instead to accomodate for better backtracking optimizations) * fix error reporting of virtual package names * make 'assign_name' errors soft. the incorrect packages just are no longer consider instead of aborting whole calculation. * fix backtracking of virtual packages that are not depended directly
-
Natanael Copa authored
Print name of package and void double "ERROR"
-
Natanael Copa authored
-
- Sep 28, 2012
-
-
fixes #1396
-
- Sep 20, 2012
-
-
Timo Teräs authored
-
- Sep 04, 2012
-
-
Timo Teräs authored
fchmodat does not support this flag - symlinks do not have permissions. Sysadmin probably does not expect us to not follow symlinks either: if /var -> /mnt/foo/var, we should be making sure the permissions and ownership is correct on the target directory, not on the symlink. Since fchmodat never returned ENOENT with AT_SYMLINK_NOFOLLOW, this also fixes directory re-creation if it does not exist. fixes #1348.
-
- Jul 16, 2012
-
-
Timo Teräs authored
-
Timo Teräs authored
Add new 'd' flag for it.
-
Timo Teräs authored
If a directory has protection mask, but does not exist in db, we do not handle it right unless we calculate the protection mask by hand, or create temporary db dir entry for it. For simplicity create always the db dir entry -- depending on audit type we likely need to create it anyway. This commit also caches the db dir entry in the audit tree context to avoid duplicate lookups. ref #1241.
-
- Jul 09, 2012
-
-
Timo Teräs authored
Use the paths' protection mask where available instead of the parent paths'. ref #1241
-
- Jun 06, 2012
-
-
Natanael Copa authored
- makes -v option useful - makes --origin --quiet --exact useful for piping and scripting - makes the default output more readable
-
- May 07, 2012
-
-
Natanael Copa authored
ref #1122
-
Natanael Copa authored
Do not print version numbers or compare result char when in quiet mode. This makes the output suitable for be used in scripts or pipes. For example: # Upgrade all packages that matches a given regexp apk version --limit '<' --quiet | grep $regexp | apk fix --reinstall # Delete all packages that are removed from repository apk version --limit '?' --quiet | xargs apk del
-
Natanael Copa authored
This makes it possible to differ between downgradable packages (-l '<') and unavailable in repos (-l '?').
-
- May 01, 2012
-
-
Timo Teräs authored
-
Timo Teräs authored
-
- Apr 27, 2012
-
-
Timo Teräs authored
-
Timo Teräs authored
-
Timo Teräs authored
-
Timo Teräs authored
fixes #1116
-
Timo Teräs authored
Fixes --recurse during audit.
-
- Apr 03, 2012
-
-
Timo Teräs authored
fixes #1072
-
- Mar 31, 2012
-
-
Timo Teräs authored
-
Timo Teräs authored
-
- Mar 30, 2012
-
-
Timo Teräs authored
fixes #1069
-
- Mar 28, 2012
-
-
Timo Teräs authored
-
Timo Teräs authored
-
- Mar 01, 2012
-
-
Timo Teräs authored
-
- Feb 29, 2012
-
-
Timo Teräs authored
-
Timo Teräs authored
apk_name_state is now quite small; and we avoid overhead of two pointers (+ malloc overhead) when we just make it part of apk_name. It also fixes some problems (that got introduced) where apk_name_state was not allocated.
-
Timo Teräs authored
-
Timo Teräs authored
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.
-