Displaying 2 results from an estimated 2 matches for "ph_package_name".
Did you mean:
ac_package_name
2014 Sep 17
4
[PATCH 0/2] supermin: use librpm for rpm support
Hi,
this work makes supermin use the rpm library instead of invoking rpm
directly. This, together with a needed refactoring of the dependency
resolution, should help in make supermin faster on rpm-based systems.
Surely the patches will still need polishing, especially for behaviours
of newly added stuff, but at least it's a good starting point.
Noting that you need rpm-devel on most of rpm
2014 Feb 25
2
[PATCH supermin v4] Supermin 5 rewrite.
...here"; packager_config = None; }
+
+type file = {
+ ft_path : string;
+ ft_config : bool;
+}
+
+type package_handler = {
+ ph_detect : unit -> bool;
+ ph_init : settings -> unit;
+ ph_package_of_string : string -> package option;
+ ph_package_to_string : package -> string;
+ ph_package_name : package -> string;
+ ph_get_requires : package -> PackageSet.t;
+ ph_get_all_requires : PackageSet.t -> PackageSet.t;
+ ph_get_files : package -> file list;
+ ph_get_all_files : PackageSet.t -> file list;
+ ph_download_package : package -> string -> unit;
+ ph_download_...