aboutsummaryrefslogtreecommitdiffstats
path: root/src/dot.c
Commit message (Collapse)AuthorAgeFilesLines
* apk: usage: cleanup help text when no applet is selectedWilliam Pitcock2018-01-091-0/+1
|
* rework option parsing to have a group structureTimo Teräs2014-10-081-12/+16
| | | | | Add also a new 'commit' group that is the common options for all applets that can commit package changes.
* various: applet help text and comment fixesDubiousjim2013-06-281-1/+1
| | | | Acked-by: Natanael Copa <ncopa@alpinelinux.org>
* dot: new option: --installedTimo Teräs2013-06-191-2/+13
| | | | to consider only installed packages
* apk: use string array in applet mains, separate apk_name_foreach_matchingTimo Teräs2013-06-181-5/+5
|
* all: various conversions to foreach_array_item, and simplifications of codeTimo Teräs2013-06-181-9/+9
|
* solver, dot: elementary provides fixesTimo Teräs2012-02-241-32/+38
| | | | | | implementation is still not near finished, but now at least it can handle it to a minimum degree. many cases are not done right yet, though. ref #574.
* all: introduce apk_provides and use it in apk_nameTimo Teräs2012-02-241-9/+17
| | | | | | | in preparation for provides support. implements also some dependency satisfaction helper routines. ref #574.
* all: update copyright year statementTimo Teräs2011-09-131-1/+1
|
* applets: start using solver codeTimo Teräs2011-09-091-2/+2
| | | | | | | | | still todo: - 'fix' is missing - 'del -R' does not work - 'upgrade' does not do self-upgrade first ... and a lot of testing.
* solver: move topology sorting to solver codeTimo Teräs2011-08-051-8/+7
| | | | | this allows quite some optimizations to running time and memory requirements.
* dot: applet to generate the dot attributed graph language filesTimo Teräs2011-07-241-0/+152
This applet can be used to generate data for graphviz tools. Useful to visualize package dependencies, and possible errors in the repository. Usage examples: apk dot gnome-desktop | tred | dot -Tpng gnome-desktop.png -- to generate simplified dependency chart of gnome-desktop apk dot --errors | dot -Tpng index-errors.png -- to generate chart visualizing dependency errors in index