search for: rpm_vercmp

Displaying 4 results from an estimated 4 matches for "rpm_vercmp".

Did you mean: _rpmvercmp
2019 Apr 12
6
[supermin PATCH 0/5] rpm: fix package selection w/ multilib
This patch series fixes the way supermin sorts the list of installed packages when resolving a name, picking the right package for the host architecture. Pino Toscano (5): rpm: do not unpack parameters rpm: fix version comparison rpm: query the RPM architecture rpm: fix package sorting (RHBZ#1696822) utils: remove unused 'compare_architecture' function src/librpm-c.c | 10
2014 Nov 24
5
[PATCH] rpm: use librpm's rpmvercmp
...| 1 + src/librpm.mli | 1 + src/rpm.ml | 2 +- 4 files changed, 15 insertions(+), 1 deletion(-) diff --git a/src/librpm-c.c b/src/librpm-c.c index 1ae3bad..fc847d6 100644 --- a/src/librpm-c.c +++ b/src/librpm-c.c @@ -122,6 +122,12 @@ supermin_rpm_version (value unit) } value +supermin_rpm_vercmp (value av, value bv) +{ + return Val_int (rpmvercmp (String_val (av), String_val (bv))); +} + +value supermin_rpm_open (value debugv) { CAMLparam1 (debugv); @@ -445,6 +451,12 @@ supermin_rpm_version (value unit) } value +supermin_rpm_vercmp (value av, value bv) +{ + abort (); +} + +value...
2019 Jan 23
2
[supermin PATCH 1/2] rpm: extend the Multiple_matches exception
...t != 1) - librpm_raise_multiple_matches (count); + librpm_raise_multiple_matches (pkgv, count); h = rpmdbNextIterator (iter); assert (h != NULL); diff --git a/src/librpm.ml b/src/librpm.ml index 4eeba77..b6f9ff8 100644 --- a/src/librpm.ml +++ b/src/librpm.ml @@ -23,7 +23,7 @@ external rpm_vercmp : string -> string -> int = "supermin_rpm_vercmp" "noalloc" type t -exception Multiple_matches of int +exception Multiple_matches of string * int external rpm_open : ?debug:int -> t = "supermin_rpm_open" external rpm_close : t -> unit = "super...
2015 Oct 13
6
[PATCH 0/4] rpm: Choose providers better (RHBZ#1266918).
Fix for https://bugzilla.redhat.com/show_bug.cgi?id=1266918