summaryrefslogtreecommitdiffstats
path: root/src/febootstrap_yum_rpm.ml
Commit message (Collapse)AuthorAgeFilesLines
* Don't pass use_installed to every package handler function.Richard W.M. Jones2011-10-181-8/+7
| | | | | | | | | | | | | | | use_installed is a global variable (defined in febootstrap_cmdline.mli) so there's not much point in passing it around to every function that needs it. This commit removes the optional argument in favour of just using the global variable in each package handler. However we still need a place where we can bail if the --use-installed flag is used for package handlers which don't support this yet. Thus add a ph_init function is called after the right package handler has been detected but before it is used. This is a convenient place to put the --use-installed checking and any other initialization that is required.
* febootstrap: Use contents of installed Debian packages instead of ↵Hilko Bengen2011-09-231-2/+8
| | | | | | | downloading and unpacking them. This also adds --use-installed switch (which for now only works for Debian).
* yum-rpm: Add more debugging to the Python code.Richard W.M. Jones2011-09-141-5/+17
|
* Move febootstrap into src/ subdirectory.Richard W.M. Jones2011-09-011-0/+237
Now we have src/ for febootstrap and helper/ for febootstrap-supermin-helper.