summaryrefslogtreecommitdiff
path: root/src/upgrade.c
AgeCommit message (Collapse)AuthorFilesLines
2010-06-01state: improve error messages from dependency failuresTimo Teräs1-7/+5
Print more information why installation changeset calculation failed. Fixes #187.
2010-05-12upgrade: reset versioned deps in world when doing upgrade -aNatanael Copa1-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
2009-08-06all: implement database open optionsTimo Teras1-14/+10
so user can override trusted keys directory and repositories file.
2009-08-04state: fix world dependencies to be honored alwaysTimo Teras1-0/+3
previously they might have been skipped on certain situations. this also fixes some other reverse dependency enforcements and implements new "pending" state for locked name.
2009-06-25help: auto construct helpTimo Teras1-3/+6
And add some more verbosity to the help message.
2009-06-25upgrade: add --available optionTimo Teras1-1/+20
That will make the upgrade prefer packages available in repositories. This is good if one want's to downgrade packages by removing an experimental repository. Or to force re-install of locally built vs. repository version when the package version are same, but checksum is different. Fixes #51.
2009-06-25upgrade: new appletTimo Teras1-0/+55
Currently just goes through all world dependencies and updates them where possible (ref #51).