search for: 3340fa6

Displaying 4 results from an estimated 4 matches for "3340fa6".

Did you mean: 33406
2016 Aug 31
0
[PATCH 2/2] Use os-release to detect the distro
...(List.mem (Os_release.get_id ()) [ "debian"; "ubuntu" ] || + try (stat "/etc/debian_version").st_kind = S_REG with Unix_error _ -> false) let dpkg_primary_arch = ref "" let settings = ref no_settings diff --git a/src/pacman.ml b/src/pacman.ml index 3340fa6..c35668a 100644 --- a/src/pacman.ml +++ b/src/pacman.ml @@ -24,8 +24,9 @@ open Package_handler let pacman_detect () = Config.pacman <> "no" && Config.fakeroot <> "no" && - (stat "/etc/arch-release").st_kind = S_REG && - C...
2016 Aug 31
8
[PATCH 0/2] supermin: use /etc/os-release
Hi, let's make supermin use /etc/os-release as primary source instead of the various release files in /etc; apparently distros (e.g. openSUSE) are starting removing them. Thanks, Pino Toscano (2): Add simple handling of /etc/os-release Use os-release to detect the distro src/Makefile.am | 3 +++ src/dpkg.ml | 3 ++- src/os_release.ml | 78
2016 Feb 18
0
[PATCH 3/3] Add and use an helper error function
...ed to port supermin. If @@ -128,8 +128,7 @@ To list which package handlers are compiled into this version of supermin, do: supermin --list-drivers -"; - exit 1 +" let rec get_package_handler () = match !handler with diff --git a/src/pacman.ml b/src/pacman.ml index 45fb393..3340fa6 100644 --- a/src/pacman.ml +++ b/src/pacman.ml @@ -66,10 +66,8 @@ let pacman_package_of_string str = ) lines; let name = !name and evr = !evr and arch = !arch in - if name = "" || evr = "" || arch = "" then ( - eprintf "supermin: pacman: Name/V...
2016 Feb 18
4
[PATCH 0/3] supermin: miscellaneous cleanups
Hi, few cleanups in the supermin codebase; no actual functional change. Thanks, -- Pino Toscano (3): ext2: simplify tracking of visited modules utils: remove unused run_python function Add and use an helper error function src/build.ml | 20 +++++----------- src/dpkg.ml | 4 +--- src/ext2_initrd.ml | 10 ++++---- src/kernel.ml | 27