Displaying 4 results from an estimated 4 matches for "debian_detect".
2011 Jun 15
2
[PATCH 1/2] use apt-get instead of aptitude
...ROG(APTGET,[apt-get],[apt-get],[no])
AC_CHECK_PROG(DPKG,[dpkg],[dpkg],[no])
dnl For ArchLinux handler.
diff --git a/febootstrap_debian.ml b/febootstrap_debian.ml
index f0d0be5..745a383 100644
--- a/febootstrap_debian.ml
+++ b/febootstrap_debian.ml
@@ -30,7 +30,7 @@ let tmpdir = tmpdir ()
let debian_detect () =
file_exists "/etc/debian_version" &&
- Config.aptitude <> "no" && Config.dpkg <> "no"
+ Config.apt_get <> "no" && Config.dpkg <> "no"
let debian_resolve_dependencies_and_download names...
2011 Oct 18
5
[PATCH febootstrap] Some cleanups for Debian and Ubuntu
I just tried to get libguestfs to compile on Ubuntu 11.10 using the
latest febootstrap, and the following patches were necessary for me.
They are all just reasonable code cleanups *except* for patch 5/5
which is a gross hack for something I don't understand about how
Ubuntu 11.10 multiarch support works.
Rich.
2011 Sep 12
1
[PATCH] febootstrap: Use contents of installed Debian packages instead of downloading and unpacking them.
...++ b/src/febootstrap_debian.ml
@@ -28,6 +28,9 @@ open Febootstrap_cmdline
(* Create a temporary directory for use by all the functions in this file. *)
let tmpdir = tmpdir ()
+let installed_pkgs =
+ run_command_get_lines "dpkg-query --show --showformat='${Package}\\n'"
+
let debian_detect () =
file_exists "/etc/debian_version" &&
Config.aptitude <> "no" && Config.apt_cache <> "no" && Config.dpkg <> "no"
@@ -51,18 +54,29 @@ let rec debian_resolve_dependencies_and_download names =
not (L...
2014 Feb 25
2
[PATCH supermin v4] Supermin 5 rewrite.
...anklin Street, Fifth Floor, Boston, MA 02110-1301 USA
- *)
-
-(* Debian support. *)
-
-open Unix
-open Printf
-
-open Supermin_package_handlers
-open Supermin_utils
-open Supermin_cmdline
-
-(* Create a temporary directory for use by all the functions in this file. *)
-let tmpdir = tmpdir ()
-
-let debian_detect () =
- file_exists "/etc/debian_version" &&
- Config.aptitude <> "no" && Config.apt_cache <> "no" && Config.dpkg <> "no"
-
-let installed_pkgs = ref []
-
-let debian_init () =
- installed_pkgs :=
- run_command...