summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* apk-tools-2.0.3v2.0.3Timo Teräs2010-06-081-1/+1
|
* info: fix usage of arraysTimo Teräs2010-06-081-4/+4
|
* state: fix error printingTimo Teräs2010-06-082-2/+6
|
* db: fix usage of apk_name_array in install_ctxTimo Teräs2010-06-071-4/+4
| | | | | got broken to the previous array cleanup and grepping struct definition only from headers.
* all: rework how arrays workTimo Teräs2010-06-0514-121/+137
| | | | | | | | | | Instead of having a null pointer, use a dummy array which just says the array is empty. This helps in multiple places of the code which would otherwise need explicitly need to check first if the array exists. This has been cause of multiple seg.faults in the past as the array check is easily omitted. This also removes (or fixes) all existing checks accordingly.
* state: fix a crash in error printingTimo Teräs2010-06-031-1/+1
|
* db, pkg: fix triggers related crashTimo Teräs2010-06-012-8/+11
| | | | clean up the triggers properly, in proper order.
* state: print missing package names on errorTimo Teräs2010-06-012-8/+23
| | | | | especially important if the package requested from command line does not exist. otherwise we would not print an error at all.
* state: improve error messages from dependency failuresTimo Teräs2010-06-0110-88/+197
| | | | | Print more information why installation changeset calculation failed. Fixes #187.
* state: modify reinstallation printsTimo Teräs2010-05-271-8/+11
| | | | | To print upgrading if package is actually being changed instead of pure reinstall.
* state: show changed packages as upgradesTimo Teräs2010-05-271-2/+10
| | | | | If version is equal, but package contents are different we should show the package being upgraded.
* state: fix deletion of obsoleted dependenciesTimo Teräs2010-05-271-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.
* package: don't leak signing key file fdTimo Teräs2010-05-261-1/+1
| | | | | openssl BIO does not close the fd unless we explicitly tell it to do so.
* search: add search for reverse dependencies in indexTimo Teräs2010-05-191-57/+91
| | | | So it'll be easier to rebuild affected packages. Fixes #349.
* upgrade: reset versioned deps in world when doing upgrade -aNatanael Copa2010-05-121-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
* info: fix querying of removed, but referenced packagesTimo Teras2010-05-051-1/+1
| | | | | Check that package name has packages associated with it before dereferencing the pointer. Fixes #345.
* apk-tools-2.0.2v2.0.2Timo Teras2010-03-161-1/+1
|
* state: virtual packages are always installableTimo Teras2010-03-151-0/+2
| | | | | they do not have any package associated. this is indicated by package with zero installed_size.
* state: check package availability alwaysTimo Teras2010-03-101-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.
* apk-tools-2.0.1v2.0.1Timo Teras2010-03-041-1/+1
|
* fetch: do not include installed non-repository files in searchTimo Teras2010-03-043-13/+19
| | | | | we do not create mirror repositories from other valid repositories, not from what was installed locally.
* cache: do not download files existing in local repositoryTimo Teras2010-03-011-1/+1
| | | | wget:ing local files results in error and is useless.
* db: fix previous commitTimo Teras2010-03-011-0/+1
| | | | add the missing variable.
* db: read also non-repository package index if reading repository indexesTimo Teras2010-03-011-8/+8
| | | | | otherwise regeneration of non-repository index might go wrong or we might delete too many files from cache when doing 'cache clean'.
* Merge branch 'master' into progNatanael Copa2010-02-261-3/+5
|\
| * add: print all failing packages instead of only firstNatanael Copa2010-02-261-3/+5
| | | | | | | | We want see all packages that fails to install and not only the first
* | state: write status for each package changeNatanael Copa2010-02-261-8/+17
| | | | | | | | | | | | | | prints like: (1/12) Installing... (2/12) Installing... etc...
* | state: show percent in progress barNatanael Copa2010-02-261-10/+13
|/ | | | | This makes things a little bit nicer when installing from network with slow lines.
* db: keep packages with no files with installed statusTimo Teras2009-12-251-6/+10
| | | | | got broke few commits ago when apk_pkg_installed() call was moved to happen after the package name has been read.
* state: Default interactive action is YesNatanael Copa2009-12-251-1/+1
| | | | | When pressing only <enter> on the question "..continue [Y/n]?" then lets take that as a "yes"
* apk-tools-2.0v2.0Timo Teras2009-12-231-1/+1
|
* db: make fdb load package description before calling pkg_installTimo Teras2009-12-221-5/+5
| | | | | this is now mandatory after the overlay fixes. otherwise the package will not get listed as installed.
* db: check the overlay files package name rather than the ovl file itselfNatanael Copa2009-12-211-1/+1
|
* db: honor overlay file even for protected pathsTimo Teras2009-12-211-14/+12
|
* apk: remove the unneeded --never-overwriteTimo Teras2009-12-214-29/+5
| | | | | turns out the logic does not work with overlays as expected due to busybox symlinks being unmanaged. remove the useless option.
* db: accept files in overlay without directoryTimo Teras2009-12-211-5/+2
| | | | appears this is possible, so support it.
* db: use proper instance for overlay file entriesTimo Teras2009-12-211-25/+33
| | | | | lookup proper directory instance as the tar output might not be linear.
* apk: --overlay-from-stdinTimo Teras2009-12-214-5/+61
| | | | get list of overlay files from stdin, so those do not get overwritten.
* db: read time only once when writing scriptsdbTimo Teras2009-12-211-1/+3
| | | | less syscalls.
* apk-tools-2.0_rc7v2.0_rc7Timo Teras2009-11-241-1/+1
|
* db: check if target exist before renaming tempfileNatanael Copa2009-11-241-3/+10
| | | | | | do not overwrite target if we have --never-overwrite and target exists. ref #197
* archive: overwrite protection needs to use real filenameTimo Teras2009-11-061-1/+7
| | | | | otherwise we always extract the file as .apk-new and the database side just overwrites.
* version: add support for version control suffixesTimo Teras2009-11-061-3/+8
| | | | | add cvs, svn, git and mercurial tags for creating snapshot packages.
* version: fix remaining version comparisonsTimo Teras2009-11-061-7/+9
| | | | | even more corner cases found which were broke. now all tests should pass.
* test: add test cases for version comparingTimo Teras2009-11-062-0/+741
| | | | so i don't get to break version compares again.
* apk: add --never-overwrite flag (ref #197)Timo Teras2009-11-063-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.
* version: fix comparison of version againTimo Teras2009-11-051-2/+2
| | | | -t 1.3-r0 1.3.1-r0 was broke
* db: fix migration and pruning of symlinks to dirsTimo Teras2009-10-262-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.
* version: fix comparision of pre-suffixesTimo Teras2009-10-261-3/+14
| | | | | got broke in 0b9bfa8d52ea7ec2cae562a71932a9cc6e2b9963 which fixed another corner case. hopefully it's good now. fixes #191.
* apk-tools-2.0_rc6v2.0_rc6Timo Teras2009-09-251-1/+1
|