search for: zypp

Displaying 19 results from an estimated 19 matches for "zypp".

2009 Mar 14
1
AARGH! I can't make rsync not copy dirs with --files-from option
Listmates I'm running rsync 3.02 and I have a simple thing I'm trying to do, but rsync won't let me do it. What I'm trying to do is consolidate saved rpms on openSuSE 11.0 to a central server for local updates. openSuSE saves the rpms in: /var/cache/zypp/packages/<repository name> I have written a script that parses all the file names and creates temp files that holds the full path to the rpms. The rpms are separated into 5 files which are used to categorize the rpms (delta i586 noarch src x86_64). An example of the file contents is: 17:34...
2013 Apr 11
1
[PATCH] always work with empty --root in zypp driver
The current mode of operation in the zypp driver is to download all packages into a temporary pkg-cache-dir. Installed packages in the root filesystem are ignored, otherwise zypper would download only a subset of packages, and it would not provide a list of all required dependencies. Remove the getuid check to force an empty root director...
2013 May 31
3
Re: [PATCH] Change fallback name for external supermin helper
...rap 2.x which doesn't work. But this requires that febootstrap or supermin is in BuildRequires:, while this change removes the hard dependency of BuildRequires:. But I see, if the appliance is enabled then it would now fail with this change. In my packaging the appliance is not enabled because zypp support in supermin is not yet complete, so I did not spot this part. So just drop this patch for mow, unless you want to remove the version check as well. Olaf
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 +++++++++++++++++++++++++++...
2013 Apr 11
1
[PATCH] remove leading tabs in zypp driver
Signed-off-by: Olaf Hering <olaf at aepfle.de> --- src/supermin_zypp_rpm.ml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/supermin_zypp_rpm.ml b/src/supermin_zypp_rpm.ml index 1c6243d..4247d09 100644 --- a/src/supermin_zypp_rpm.ml +++ b/src/supermin_zypp_rpm.ml @@ -173,7 +173,7 @@ let rec zypp_rpm_list_files pkg = | [filename...
2012 Nov 29
1
febootstrap and zypper
...s > > unprivileged user in the buildsystem. Creating a loop file requires > > root, which is cumbersome in the openSuSE buildservice. > > BTW, febootstrap (which is what we use) runs unprivileged and should > be able to process SuSE rpms. However it does require yum, not > zypper, but that's probably easy to fix if zypper has a way to take a > list of package names and resolve all the dependencies without needing > root and without needing to install any packages. I just looked at this. Does febootstrap do some sort of unrpm? Does it call %pre/%post install sc...
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 co...
2013 Jun 11
3
Re: [PATCH] Mask some package names if appliance is build for SUSE
On Tue, Jun 11, Richard W.M. Jones wrote: > But supermin is supposed to ignore packages that don't exist in the > distro. This is a bug in supermin or the zypp plugin for supermin. It looks like zypper has no "ignore unknown packages/provides" flag. zypper .. install $pkg is called with an unknown package then zypper will just abort because it expects valid input. Maybe there should be some code which iterates over "names" and lets...
2013 May 31
0
Re: [PATCH] Change fallback name for external supermin helper
...ering wrote: > But this requires that febootstrap or supermin is in BuildRequires:, > while this change removes the hard dependency of BuildRequires:. But I > see, if the appliance is enabled then it would now fail with this > change. In my packaging the appliance is not enabled because zypp > support in supermin is not yet complete, so I did not spot this part. Actually I thought zypp support was complete? Oh well, how far off is complete zypp support in supermin? On the slightly related subject, I need to add dnf/libsolv support to supermin. I don't know how much code cou...
2011 Aug 17
0
zypprepo on sles 10.3 and 10.4
Hi, I''ve used the zypprepo type successfully on sles 11.1 to register my server to a repo. However, I can''t get it to work on sles 10.3 and 10.4. However using the zypper sa command I can easily register my repos but it seems impossible to make it work using zypprepos. My /etc/ zypp/zypp.conf file exist with the...
2013 Jun 11
2
[PATCH] Mask some package names if appliance is build for SUSE
Signed-off-by: Olaf Hering <olaf@aepfle.de> --- Not compile-tested! appliance/packagelist.in | 13 ++++++++----- 1 file changed, 8 insertions(+), 5 deletions(-) diff --git a/appliance/packagelist.in b/appliance/packagelist.in index 8a4a5ea..a00a7ad 100644 --- a/appliance/packagelist.in +++ b/appliance/packagelist.in @@ -126,11 +126,9 @@ dosfstools file findutils gawk -gdisk grep
2011 Feb 09
1
rimage package fftw breaks when freeing memory on openSUSE 11.3
...SMP 2010-12-13 11:13:53 +0100 x86_64 x86_64 x86_64 GNU/Linux R - # R --version R version 2.12.1 Patched (2011-02-06 r54252) fftw2 (observe soft link at the end) ----- visit http://software.opensuse.org/113/en -> search for fftw2 -> download fftw2 and fftw2-devel install rpms # zypper install fftw2-2.1.5-245.1.x86_64.rpm Loading repository data... Reading installed packages... Resolving package dependencies... The following NEW package is going to be installed: fftw2 1 new package to install. Overall download size: 285.0 KiB. After the operation, additional 895.0 KiB will...
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 Jul 11
4
Problem with supermin & zypper
...packaging format then you may need to port supermin. If you are expecting that supermin should work on this system or distro then it may be that the package detection code is not working. make[2]: *** [stamp-supermin] Error 1* Now, I installed supermin from git. During configuration it discovered zypper: *checking for zypper... zypper checking for yum... no checking for rpm... rpm checking for yumdownloader... no checking for aptitude... no checking for apt-cache... apt-cache checking for dpkg... no checking if apt-cache depends --recurse is broken... yes checking for pacman... no* I have the...
2013 Jun 11
0
Re: [PATCH] Mask some package names if appliance is build for SUSE
...zerofree > > +#ifndef SUSE > +gdisk > +kmod > +procps-ng > +scrub > +util-linux-ng > +#endif > + > #ifdef VALGRIND_DAEMON > valgrind > #endif But supermin is supposed to ignore packages that don't exist in the distro. This is a bug in supermin or the zypp plugin for supermin. Rich. -- Richard Jones, Virtualization Group, Red Hat http://people.redhat.com/~rjones virt-df lists disk usage of guests without needing to install any software inside the virtual machine. Supports Linux and Windows. http://people.redhat.com/~rjones/virt-df/
2013 Jun 11
0
Re: [PATCH] Mask some package names if appliance is build for SUSE
On Tue, Jun 11, Olaf Hering wrote: > On Tue, Jun 11, Richard W.M. Jones wrote: > > > But supermin is supposed to ignore packages that don't exist in the > > distro. This is a bug in supermin or the zypp plugin for supermin. Related to this, zypper --xml gives the chance to parse the output. But doing it all in the shell is cumbersome. Right now there is no output if something fails. Whats the best way to do "xml sel -t -m 'stream/install-summary/to-install/solvable[@type='\''...
2013 May 31
2
[PATCH] Change fallback name for external supermin helper
Use basename of external helper instead of 'no' for external supermin helpers. This gives a clear error messages what binary is actually missing, and it is now possible to install the missing package without recompiling libguestfs. In addition its now also possible to use private builds of supermin (if they are in PATH) with a given libguestfs binary package. Signed-off-by: Olaf Hering
2010 Apr 14
7
SuSE and zypper
Hi, I found the zypper provider mentioned on this list in another thread, but it failes with the flowing error : Package[kvm]/ensure: change from 0.11.0-4.5.2 to true failed: Could not update: undefined method `zypper'' for #<Puppet::Type::Package::ProviderZypper:0x7fd1acf9e360> at Is the latest provide...
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 HACKI...