Age | Commit message (Collapse) | Author | Files | Lines | |
---|---|---|---|---|---|
2010-06-01 | state: improve error messages from dependency failures | Timo Teräs | 10 | -88/+197 | |
Print more information why installation changeset calculation failed. Fixes #187. | |||||
2010-05-27 | state: modify reinstallation prints | Timo Teräs | 1 | -8/+11 | |
To print upgrading if package is actually being changed instead of pure reinstall. | |||||
2010-05-27 | state: show changed packages as upgrades | Timo Teräs | 1 | -2/+10 | |
If version is equal, but package contents are different we should show the package being upgraded. | |||||
2010-05-27 | state: fix deletion of obsoleted dependencies | Timo Teräs | 1 | -1/+2 | |
In addition to autocleaning dependencies on deletion, we need to autoclean the old package on upgrade too. This is to make sure that obsoleted dependencies (existed previously, but not in new package) are removed where appropriate. | |||||
2010-05-26 | package: don't leak signing key file fd | Timo Teräs | 1 | -1/+1 | |
openssl BIO does not close the fd unless we explicitly tell it to do so. | |||||
2010-05-19 | search: add search for reverse dependencies in index | Timo Teräs | 1 | -57/+91 | |
So it'll be easier to rebuild affected packages. Fixes #349. | |||||
2010-05-12 | upgrade: reset versioned deps in world when doing upgrade -a | Natanael Copa | 1 | -2/+7 | |
Doing "apk add file.apk" adds a versioned dependency to allow downgrading, and sticky version. Most often this is to install single packages from newer repository. So it would make sense to reset them to non-versioned if doing: apk upgrade -a fixes #346 | |||||
2010-05-05 | info: fix querying of removed, but referenced packages | Timo Teras | 1 | -1/+1 | |
Check that package name has packages associated with it before dereferencing the pointer. Fixes #345. | |||||
2010-03-16 | apk-tools-2.0.2v2.0.2 | Timo Teras | 1 | -1/+1 | |
2010-03-15 | state: virtual packages are always installable | Timo Teras | 1 | -0/+2 | |
they do not have any package associated. this is indicated by package with zero installed_size. | |||||
2010-03-10 | state: check package availability always | Timo Teras | 1 | -7/+16 | |
even if we have only one package as candidate, we need to check it's availability. otherwise we can endup with bad changeset referring to unavailable package. | |||||
2010-03-04 | apk-tools-2.0.1v2.0.1 | Timo Teras | 1 | -1/+1 | |
2010-03-04 | fetch: do not include installed non-repository files in search | Timo Teras | 3 | -13/+19 | |
we do not create mirror repositories from other valid repositories, not from what was installed locally. | |||||
2010-03-01 | cache: do not download files existing in local repository | Timo Teras | 1 | -1/+1 | |
wget:ing local files results in error and is useless. | |||||
2010-03-01 | db: fix previous commit | Timo Teras | 1 | -0/+1 | |
add the missing variable. | |||||
2010-03-01 | db: read also non-repository package index if reading repository indexes | Timo Teras | 1 | -8/+8 | |
otherwise regeneration of non-repository index might go wrong or we might delete too many files from cache when doing 'cache clean'. | |||||
2010-02-26 | Merge branch 'master' into prog | Natanael Copa | 1 | -3/+5 | |
2010-02-26 | state: write status for each package change | Natanael Copa | 1 | -8/+17 | |
prints like: (1/12) Installing... (2/12) Installing... etc... | |||||
2010-02-26 | state: show percent in progress bar | Natanael Copa | 1 | -10/+13 | |
This makes things a little bit nicer when installing from network with slow lines. | |||||
2010-02-26 | add: print all failing packages instead of only first | Natanael Copa | 1 | -3/+5 | |
We want see all packages that fails to install and not only the first | |||||
2009-12-25 | db: keep packages with no files with installed status | Timo Teras | 1 | -6/+10 | |
got broke few commits ago when apk_pkg_installed() call was moved to happen after the package name has been read. | |||||
2009-12-25 | state: Default interactive action is Yes | Natanael Copa | 1 | -1/+1 | |
When pressing only <enter> on the question "..continue [Y/n]?" then lets take that as a "yes" | |||||
2009-12-23 | apk-tools-2.0v2.0 | Timo Teras | 1 | -1/+1 | |
2009-12-22 | db: make fdb load package description before calling pkg_install | Timo Teras | 1 | -5/+5 | |
this is now mandatory after the overlay fixes. otherwise the package will not get listed as installed. | |||||
2009-12-21 | db: check the overlay files package name rather than the ovl file itself | Natanael Copa | 1 | -1/+1 | |
2009-12-21 | db: honor overlay file even for protected paths | Timo Teras | 1 | -14/+12 | |
2009-12-21 | apk: remove the unneeded --never-overwrite | Timo Teras | 4 | -29/+5 | |
turns out the logic does not work with overlays as expected due to busybox symlinks being unmanaged. remove the useless option. | |||||
2009-12-21 | db: accept files in overlay without directory | Timo Teras | 1 | -5/+2 | |
appears this is possible, so support it. | |||||
2009-12-21 | db: use proper instance for overlay file entries | Timo Teras | 1 | -25/+33 | |
lookup proper directory instance as the tar output might not be linear. | |||||
2009-12-21 | apk: --overlay-from-stdin | Timo Teras | 4 | -5/+61 | |
get list of overlay files from stdin, so those do not get overwritten. | |||||
2009-12-21 | db: read time only once when writing scriptsdb | Timo Teras | 1 | -1/+3 | |
less syscalls. | |||||
2009-11-24 | apk-tools-2.0_rc7v2.0_rc7 | Timo Teras | 1 | -1/+1 | |
2009-11-24 | db: check if target exist before renaming tempfile | Natanael Copa | 1 | -3/+10 | |
do not overwrite target if we have --never-overwrite and target exists. ref #197 | |||||
2009-11-06 | archive: overwrite protection needs to use real filename | Timo Teras | 1 | -1/+7 | |
otherwise we always extract the file as .apk-new and the database side just overwrites. | |||||
2009-11-06 | version: add support for version control suffixes | Timo Teras | 1 | -3/+8 | |
add cvs, svn, git and mercurial tags for creating snapshot packages. | |||||
2009-11-06 | version: fix remaining version comparisons | Timo Teras | 1 | -7/+9 | |
even more corner cases found which were broke. now all tests should pass. | |||||
2009-11-06 | test: add test cases for version comparing | Timo Teras | 2 | -0/+741 | |
so i don't get to break version compares again. | |||||
2009-11-06 | apk: add --never-overwrite flag (ref #197) | Timo Teras | 3 | -2/+25 | |
to never ever overwrite a while in the filesystem the user knows about. it gives the impression of extraction succeeding even though nothing was done. this is inteded to be used only for bootstrapping with overlay. | |||||
2009-11-05 | version: fix comparison of version again | Timo Teras | 1 | -2/+2 | |
-t 1.3-r0 1.3.1-r0 was broke | |||||
2009-10-26 | db: fix migration and pruning of symlinks to dirs | Timo Teras | 2 | -3/+5 | |
the old code treated a symlink to directory as file; it tried to calculate regular has of it. fix this by: 1) using no follow on migration and pruning stats, and 2) the helper function to check if it's point to directory and not calculate hash in that case. fixes #188. | |||||
2009-10-26 | version: fix comparision of pre-suffixes | Timo Teras | 1 | -3/+14 | |
got broke in 0b9bfa8d52ea7ec2cae562a71932a9cc6e2b9963 which fixed another corner case. hopefully it's good now. fixes #191. | |||||
2009-09-25 | apk-tools-2.0_rc6v2.0_rc6 | Timo Teras | 1 | -1/+1 | |
2009-09-16 | pkg: fix parsing of empty dependencies | Timo Teras | 1 | -1/+1 | |
if the dependencies are empty with only trailing new line, the parsing was incorrect. fix the new line check. | |||||
2009-09-04 | version: --index output to stdout instead of stderr | Timo Teras | 1 | -4/+4 | |
2009-09-03 | apk-tools-2.0_rc5v2.0_rc5 | Timo Teras | 1 | -1/+1 | |
2009-09-03 | index: do not segfault if there are no description | Natanael Copa | 1 | -5/+7 | |
2009-09-03 | index, version: support for repository descriptions (fixes #141) | Timo Teras | 8 | -25/+89 | |
ability embed description information to repository indexes (e.g. repository name and version) and show it via "apk version -I". | |||||
2009-08-20 | apk-tools-2.0_rc4v2.0_rc4 | Timo Teras | 1 | -1/+1 | |
2009-08-19 | state: require an available package for re-installs | Timo Teras | 1 | -1/+2 | |
otherwise we would not be able to pick a package that exists as a candidate for re-installation. fixes #138. | |||||
2009-08-17 | fix: upgrade also mentioned package (fixes #136) | Timo Teras | 1 | -7/+9 | |