search for: zypp_rpm

Displaying 6 results from an estimated 6 matches for "zypp_rpm".

2013 Jun 04
0
Re: [PATCH / RFC] Handle --packager-config in zypp_rpm
On Tue, Jun 04, 2013 at 11:37:45AM +0200, Olaf Hering wrote: > Finally, the parser uses ocaml-inifiles to read the config file. This is > a new build dependency. inifiles should be available in various > distributions, copies of the original sources can be found via google. Can you try the 3 commits I pushed:
2013 Jun 04
2
[PATCH / RFC] Handle --packager-config in zypp_rpm
This is an attempt to handle a different --reposd-dir in the zypp_rpm driver. Up to now the system repositories in /etc/zypp/repos.d were used. To specify a different set of repositories for zypp a parser for a simple zypper.conf is added in this patch. It just looks for reposdir= in section main, like this: [main] reposdir=/path/to/other/repofiles If the config...
2013 Apr 11
2
[PATCH] handle --use-installed in zypp driver
An attempt to use installed files in zypp driver. Add also a comment about the theory of operation. Enable set -x in shell only in verbose mode. This adds a dependency to xmlstarlet, which is required to parse zypper output. Signed-off-by: Olaf Hering <olaf at aepfle.de> --- src/supermin_zypp_rpm.ml | 93 +++++++++++++++++++++++++++++++++++++++++------- 1 file changed, 80 insertions(+), 13 deletions(-) diff --git a/src/supermin_zypp_rpm.ml b/src/supermin_zypp_rpm.ml index 2089837..720f50a 100644 --- a/src/supermin_zypp_rpm.ml +++ b/src/supermin_zypp_rpm.ml @@ -18,6 +18,31 @@ (* Zypper a...
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
2013 Jun 06
1
[supermin PATCH] RFC: Add a --names-only flag.
...+++++++++--- 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 | 2 +- src/supermin_zypp_rpm.ml | 10 +++++----- 10 files changed, 36 insertions(+), 22 deletions(-) diff --git a/src/.depend b/src/.depend index 624191e..8342f31 100644 --- a/src/.depend +++ b/src/.depend @@ -5,11 +5,11 @@ supermin_cmdline.cmo: config.cmo supermin_cmdline.cmi supermin_cmdline.cmx: config.cmx superm...
2014 Feb 25
2
[PATCH supermin v4] Supermin 5 rewrite.
...ml | 145 --------- src/supermin_pacman_g2.ml | 149 --------- src/supermin_urpmi_rpm.ml | 132 -------- src/supermin_utils.ml | 158 --------- src/supermin_utils.mli | 78 ----- src/supermin_yum_rpm.ml | 262 --------------- src/supermin_zypp_rpm.ml | 269 ---------------- src/types.ml | 19 ++ src/utils.ml | 207 ++++++++++++ src/utils.mli | 95 ++++++ 76 files changed, 4497 insertions(+), 7269 deletions(-) delete mode 100644 .gitmodules create mode 100644 HACKING...