similar to: [PATCH] rpm: use librpm's rpmvercmp

Displaying 20 results from an estimated 300 matches similar to: "[PATCH] rpm: use librpm's rpmvercmp"

2016 Oct 31
5
[PATCH 0/4] supermin: use dnf on Mageia
Hi, as pointed out by Neal Gompa, Mageia recently introduced dnf in the distribution (currently only in Cauldron, which is the future Mageia 6), and most probably it will replace urpmi in the future. As such, on Mageia make supermin prefer dnf over urpmi when found, using the same code already used for Fedora. Related change: make test-harder.sh work explicitly also on Mageia
2014 Sep 17
4
[PATCH 0/2] supermin: use librpm for rpm support
Hi, this work makes supermin use the rpm library instead of invoking rpm directly. This, together with a needed refactoring of the dependency resolution, should help in make supermin faster on rpm-based systems. Surely the patches will still need polishing, especially for behaviours of newly added stuff, but at least it's a good starting point. Noting that you need rpm-devel on most of rpm
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
0
[PATCH] rpm: isolate the "packages as NA RPM list" code
Just code motion, no functional change. --- src/rpm.ml | 25 ++++++++++--------------- 1 file changed, 10 insertions(+), 15 deletions(-) diff --git a/src/rpm.ml b/src/rpm.ml index ce803e1..771022e 100644 --- a/src/rpm.ml +++ b/src/rpm.ml @@ -288,11 +288,7 @@ let rec fedora_download_all_packages pkgs dir = * Use name.arch so it can download any version but only the specific *
2019 Jan 23
2
[supermin PATCH 1/2] rpm: extend the Multiple_matches exception
Add the package that raised the issue, so it can be used to provide better diagnostic. --- src/librpm-c.c | 15 ++++++++++----- src/librpm.ml | 4 ++-- src/librpm.mli | 2 +- 3 files changed, 13 insertions(+), 8 deletions(-) diff --git a/src/librpm-c.c b/src/librpm-c.c index 3bd25a2..75ca4d7 100644 --- a/src/librpm-c.c +++ b/src/librpm-c.c @@ -66,10 +66,15 @@ librpm_handle_closed (void) }
2015 Oct 13
6
[PATCH 0/4] rpm: Choose providers better (RHBZ#1266918).
Fix for https://bugzilla.redhat.com/show_bug.cgi?id=1266918
2015 Apr 02
2
Re: [PATCH] Adding ibm-powerkvm distro detection (the right one)
Hi Pino, On 04/02/2015 09:51 AM, Pino Toscano wrote: > Hi Daniel, > > On Thursday 02 April 2015 09:34:17 Daniel Henrique Barboza wrote: >> On 04/02/2015 05:23 AM, Pino Toscano wrote: >>> Hi Daniel, >>> >>> On Wednesday 01 April 2015 16:37:26 Daniel Henrique Barboza wrote: >>>> The one that got upstream does not work in ibm-powerkvm due to the
2015 Apr 02
2
Re: [PATCH] Adding ibm-powerkvm distro detection (the right one)
On 04/02/2015 11:47 AM, Pino Toscano wrote: > On Thursday 02 April 2015 11:15:07 Daniel Henrique Barboza wrote: >> Hi Pino, >> >> On 04/02/2015 09:51 AM, Pino Toscano wrote: >>> Hi Daniel, >>> >>> On Thursday 02 April 2015 09:34:17 Daniel Henrique Barboza wrote: >>>> On 04/02/2015 05:23 AM, Pino Toscano wrote: >>>>> Hi
2015 Apr 02
2
Re: [PATCH] Adding ibm-powerkvm distro detection (the right one)
Hi Pino, On 04/02/2015 05:23 AM, Pino Toscano wrote: > Hi Daniel, > > On Wednesday 01 April 2015 16:37:26 Daniel Henrique Barboza wrote: >> The one that got upstream does not work in ibm-powerkvm due to the >> rpm_is_avaiable verification >> in the detection (I've attached the wrong version in bugzilla). > the new version of the patch is somehow confusing.
2019 Jan 23
0
[supermin PATCH 2/2] Print Librpm.Multiple_matches exceptions
Print a better diagnostic for them, so it is more clear which package is detected as present multiple times. --- src/supermin.ml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/supermin.ml b/src/supermin.ml index f9798f9..71d8b64 100644 --- a/src/supermin.ml +++ b/src/supermin.ml @@ -298,6 +298,8 @@ let () = error "error: %s: %s: %s" fname (Unix.error_message code) param
2006 Jun 21
2
yum and python. grief and grief. CentOS 4.3
Hello. Maybe after work with FreeBSD I become too spoilt, but I expect that packages from one distribution kit works among themselves well. But that I see: $ rpm -qa | grep rpm rpm-libs-4.3.13_nonptl rpm-python-4.3.13_nonptl rpm-4.3.13_nonptl rpm-build-4.3.13_nonptl $python >>> import rpm ImportError /usr/lib/librpm-4.3.so: undefined symbol: rpm_execcon Thanks.
2019 Jan 22
4
Fedora 29 guestfish not working
Hello, I tried to install guestfish on my Fedora 29 and used the commands from documentation sudo dnf install libguestfs-tools but I got an error when I tried to execute run. You will find below logs below: ************************************************************ * IMPORTANT NOTICE * * When reporting bugs, include the COMPLETE, UNEDITED * output
2014 Nov 24
0
[PATCH] rpm: improve dnf invocation
Handle debug level and packager config. --- src/rpm.ml | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/src/rpm.ml b/src/rpm.ml index 771022e..46954c8 100644 --- a/src/rpm.ml +++ b/src/rpm.ml @@ -308,8 +308,14 @@ let rec fedora_download_all_packages pkgs dir = let rpms = pkgs_as_NA_rpms pkgs in let cmd = - sprintf "%s download --destdir %s
2016 Oct 31
0
[PATCH 4/4] rpm: mageia: prefer dnf over urpmi
Mageia introduced dnf as alternative package manager for the next version 6, with the possibility to replace urpmi as primary in the future. As such, prefer dnf over urpmi+fakeroot to download rpm packages. Thanks to Neal Gompa for his heads-up. --- README | 3 +-- src/rpm.ml | 8 +++++--- 2 files changed, 6 insertions(+), 5 deletions(-) diff --git a/README b/README index 79fcfd8..679bf70
2011 Sep 23
1
should dir(all=TRUE) return "." and ".."?
dir(all=TRUE) returns the file names "." and ".." while dir(recursive=TRUE, all=TRUE, include.dirs=TRUE) does not. I always filter out the "." and ".." entries and was wondering if anyone would mind if dir(all=TRUE) just omitted them? It might make recursive file operations like cleaning out a directory safer, as unlink(recursive=TRUE, dir(all=TRUE,
2005 Aug 08
1
Missing dependencies for HA
CentOS 4.1 and Heartbeat 2.0.0. I'm trying to install the rpm's for heartbeat and heartbeat-stonith and get these failed dependencies. error: Failed dependencies: libcrypto.so.0.9.7 is needed by heartbeat-2.0.0-1.i586 libnet.so.0 is needed by heartbeat-2.0.0-1.i586 librpm-4.1.so is needed by heartbeat-2.0.0-1.i586 librpmdb-4.1.so is needed by
2015 Apr 02
0
Re: [PATCH] Adding ibm-powerkvm distro detection (the right one)
Hi Daniel, On Thursday 02 April 2015 09:34:17 Daniel Henrique Barboza wrote: > On 04/02/2015 05:23 AM, Pino Toscano wrote: > > Hi Daniel, > > > > On Wednesday 01 April 2015 16:37:26 Daniel Henrique Barboza wrote: > >> The one that got upstream does not work in ibm-powerkvm due to the > >> rpm_is_avaiable verification > >> in the detection (I've
2019 Feb 14
1
Proposed function file.backup
Dear R Core: In the kutils package, I wrote a function that is so handy that I would like to ask you put it in R itself. file.backup() will look at a file, find its last modification time, and create a new backup with a name that appends YYYYMMDD-HHMM to the file name. So now, whenever I worry that running write.csv or saving a graph might destroy something valuable, I use an idiom like fn
2015 Apr 02
0
Re: [PATCH] Adding ibm-powerkvm distro detection (the right one)
On Thursday 02 April 2015 11:15:07 Daniel Henrique Barboza wrote: > Hi Pino, > > On 04/02/2015 09:51 AM, Pino Toscano wrote: > > Hi Daniel, > > > > On Thursday 02 April 2015 09:34:17 Daniel Henrique Barboza wrote: > >> On 04/02/2015 05:23 AM, Pino Toscano wrote: > >>> Hi Daniel, > >>> > >>> On Wednesday 01 April 2015 16:37:26
2015 Apr 02
0
Re: [PATCH] Adding ibm-powerkvm distro detection (the right one)
On 04/02/2015 01:20 PM, Daniel Henrique Barboza wrote: > > > On 04/02/2015 11:47 AM, Pino Toscano wrote: >> On Thursday 02 April 2015 11:15:07 Daniel Henrique Barboza wrote: >>> Hi Pino, >>> >>> On 04/02/2015 09:51 AM, Pino Toscano wrote: >>>> Hi Daniel, >>>> >>>> On Thursday 02 April 2015 09:34:17 Daniel Henrique