Displaying 5 results from an estimated 5 matches for "supermin_cmdlin".
Did you mean:
supermin_cmdline
2013 Jun 06
1
[supermin PATCH] RFC: Add a --names-only flag.
...a list of package names, adding them to the image
without pulling any dependencies.
Only implemented for Debian at the moment.
zypper wasn't build-tested because I don't have the dependency.
---
src/.depend | 2 +-
src/supermin.ml | 6 +++---
src/supermin_cmdline.ml | 13 ++++++++++---
src/supermin_cmdline.mli | 10 +++++++---
src/supermin_debian.ml | 7 +++++--
src/supermin_package_handlers.ml | 2 +-
src/supermin_package_handlers.mli | 4 ++--
src/supermin_pacman.ml | 2 +-
src/supermin_yum_rpm.ml |...
2013 Aug 19
5
[PATCH v2 0/3 supermin] URPMI & xz support.
Joseph,
Please try my modified versions of these patches. These are
compile-tested on Fedora and they don't break any existing
functionality, but I don't have either urpmi nor a statically-linked
xz so I cannot fully test them.
I have also fixed detection of zlib (2/3).
Rich.
2013 Jun 04
2
[PATCH / RFC] Handle --packager-config in zypp_rpm
...)
diff --git a/src/supermin_zypp_rpm.ml b/src/supermin_zypp_rpm.ml
index c269aab..c9786ce 100644
--- a/src/supermin_zypp_rpm.ml
+++ b/src/supermin_zypp_rpm.ml
@@ -45,6 +45,7 @@
*)
open Unix
open Printf
+open Inifiles
open Supermin_package_handlers
open Supermin_utils
@@ -54,6 +55,19 @@ open Supermin_cmdline
(* Create a temporary directory for use by all the functions in this file. *)
let tmpdir = tmpdir ()
+let get_repos_dir () =
+ let zypper_default = "/etc/zypp/repos.d" in
+ let parse_repos_dir path =
+ let cfg = new inifile path in
+ let dir = (try cfg#getval "main"...
2014 Feb 25
2
[PATCH supermin v4] Supermin 5 rewrite.
...+
src/realpath.ml | 19 ++
src/realpath.mli | 19 ++
src/rpm.ml | 233 ++++++++++++++
src/supermin.ml | 633 +++++++++++++-----------------------
src/supermin.pod | 504 +++++++++++++++++++----------
src/supermin_cmdline.ml | 120 -------
src/supermin_cmdline.mli | 60 ----
src/supermin_debian.ml | 231 --------------
src/supermin_package_handlers.ml | 81 -----
src/supermin_package_handlers.mli | 73 -----
src/supermin_pacman.ml | 145 ---------
src/supermin_pacman_g2....
2013 Apr 09
2
[PATCH 1/2] add run_shell helper
The new run_shell helper is a copy of run_python,
and will be used by upcoming changes.
Signed-off-by: Olaf Hering <olaf at aepfle.de>
---
src/supermin_utils.ml | 9 +++++++++
src/supermin_utils.mli | 5 +++++
2 files changed, 14 insertions(+)
diff --git a/src/supermin_utils.ml b/src/supermin_utils.ml
index f98e09a..cb8a27e 100644
--- a/src/supermin_utils.ml
+++ b/src/supermin_utils.ml