Tagged Questions

RPM Package Manager (RPM) is a powerful and mature command-line driven package management system capable of installing, uninstalling, verifying, querying, and updating Unix software packages. Each software package consists of an archive of files along with information about the package like its version, a description, and the like.

learn more… | top users | synonyms

18
votes
4answers
8k views

Can yum be used to list the contents of a package?

I know how to use rpm to list the contents of a package (rpm -qpil package.rpm). Is there any way to do this with yum?
10
votes
7answers
2k views

What is the minimum I have to do to create an RPM file?

I just want to create an RPM file to distribute my Linux binary "foobar", with only a couple of dependencies. It has a config file, /etc/foobar.conf and should be installed in /usr/bin/foobar. ...
8
votes
3answers
461 views

Several groups in RPM package

Is it possible for single rpm package to belong to several groups? In spec file you can set package group: Group: System Environment/Base What I need is to be able to set several groups for ...
8
votes
6answers
3k views

Using Hudson to build RPM packages

I've a C project set up in Hudson doing nighly builds, i've also an .rpm spec file used for creating rpms from these sources. Does anyone have any experience on how to build rpms out of all this ...
8
votes
3answers
4k views

How do I use rpm to update/replace existing files?

I have several applications that I wish to deploy using rpm. Some of the files in my application deployments override files from other deployed packages. Simply including the new files in the ...
6
votes
1answer
1k views

rpmbuild %{dist} not defined on CentOS 5.5?

I'm attempting to use the %{dist} tag in my RPM spec file to provide distribution-specific dependencies between Fedora Core (e.g. fc12), CentOS 5 (e.g. el5) and Amazon's Linux AMI: Release: ...
6
votes
5answers
496 views

Release management system for Linux

What we need in our firm is a sort of release management tool for Linux/C++. Our products consist of multiple libraries and config files. Here I will list the basic features we want such system to ...
6
votes
4answers
1k views

Why RPM is better than DEB for MeeGo?

I know there has been a lot fuzz about this subject on various forums and newsgroups concerning the merge of Moblin and Maemo. I'd like to know what stackoverflow-fellows think about this. What are ...
5
votes
1answer
152 views

Why does rpmbuild(1) ignore the compressed tar(1) file named by the “Source:” tag in the RPM “spec” file?

The file ldm.spec contains the line Source: /web/ftp/pub/ldm/%{name}-%{version}.tar.gz in its first section. %{name} and %{version} are set correctly. The given file does exist. The ...
5
votes
4answers
473 views

Rails + New Relic: What does RPM mean?

I just started using New Relic RPM with my rails app, and one of the metrics they provide is "Throughput RPM". I have googled everywhere and thoroughly combed the New Relic docs, and I cannot find ANY ...
5
votes
2answers
1k views

rpmbuild error: Installed (but unpackaged) file(s) found

I am building a custom rpm to install apache, among other things. When i try and build i get the above error, and then it lists /httpd-2.2.17/ and all of its subfiles. As far as i know, this is the ...
5
votes
3answers
252 views

rpm installing an icon to the desktop

In Fedora Gnome... Using a .desktop file in my rpm, I have successfully put my gui software into the gnome application menu. I am wondering if there is a way to also put the icon onto the gnome ...
5
votes
2answers
2k views

CentOS 5.5 - symbolic link creation into RPM spec file

I need to create the following symbolic links into RPM file /bin/ln -sf libcrypto.so.0.9.8e /lib/libcrypto.so.0.9.8 /bin/ln -sf libssl.so.0.9.8e /lib/libssl.so.0.9.8 In my RPM spec file: %files ...
5
votes
2answers
1k views

How can I make an RPM depend on package a OR package b?

This seems like a simple question, but the docs don't seem to have anything to say on the subject. I would like to do something like Requires: vim or emacs but when I do that, I in fact depend on ...
5
votes
3answers
952 views

Installing java on linux using ssh

I want to install java on many computers using ssh so I want to write a bash script that will do (roughly): for c in computers do scp jre--.rpm $c ssh $c 'sudu -s; chmod a+x jre--.rpm ; ...
5
votes
2answers
4k views

Linux desktop shortcut and icon from install

What do I need to add to my .spec file to create the desktop shortcut and assign an icon to the shortcut during install of my .rpm? If a script is required, an example would be very helpful.
4
votes
2answers
163 views

Python RPM I built won't install

Because I have to install multiple versions of Python on multiple Oracle Linux servers which are built via a kickstart process, I wanted to build a python rpm for our yum repository. I was able to ...
3
votes
1answer
35 views

How to distribute kernel modules using a RPM?

What is the recommended approach for distributing a kernel module using a RPM? Ideally, for portability, I would like the RPM to be able to build the modules against the running kernel's headers ...
3
votes
1answer
157 views

What actually is $RPM_BUILD_ROOT?

In the process of building an RPM package, I have to specify the BuildRoot and later will be used in %install which invovles $RPM_BUILD_ROOT. I always think that $RPM_BUILD_ROOT is the fake ...
3
votes
1answer
291 views

Specifying alternatives in RPM dependencies

I've got a Java app that I am packaging as an RPM. Ideally I would like to specify Java as a dependency. I need to install in both Fedora and RHEL environments. The problem is RHEL java is called ...
3
votes
2answers
419 views

chkconfig command in rpm spec file

I would like to use 'chkconfig --del NetworkManager' command in the %install section of a rpm spec file. If I include this command the rpm is building fine but when I install that rpm, it looks that ...
3
votes
1answer
869 views

How can I build an RPM on my MacOS system?

I'm running Mac OS X 10.6.6. I have some data-only RPMs that I'd like to build. Until recently I've done most of my development on a VM running CentOS, but one by one I've been able to transition ...
3
votes
2answers
546 views

setup.py examples?

After studying this page: http://docs.python.org/distutils/builtdist.html I am hoping to find some setup.py files to study so as to make my own (with the goal of making a fedora rpm file). Could ...
3
votes
2answers
670 views

how to define a rpm spec macro with empty body?

the problem is quite easy to exhibit: rpm --eval "%define xyz" error: Macro %xyz has empty body i want to get the patch_level and echo_dist may return sles11 or sles11sp1, for sle1s11 i just want ...
3
votes
1answer
373 views

Installing an empty directory with RPM

In my install section of my rpm Spec file I have a bunch of mkdir's to create the directories I need. The ones that don't have any files installed in them get pruned out in the end and don't end up ...
3
votes
2answers
655 views

How to set the build area for rpmbuild per-invocation

I'm modifying an automated build, and want to tell rpmbuild to use a specific build area when invoking it. This is similar to an existing question, but more specific. I don't want to run any of the ...
3
votes
2answers
215 views

Packaging multiple rpms in one file

Is it possible to paqckage multiple rpms into one file. I have got two bundles one of which requires that the other be installed. I would like to create a single installable out of them in such a way ...
3
votes
3answers
267 views

Understanding how rpmbuild works

It seems that the RPM logic is quite different from what I know already and I am having some issues understanding the "RPM logic". For my work, I have to create a documentation on "How-to create a RPM ...
3
votes
2answers
833 views

Adding License Agreement in RPM package

Is it possbile to add License agreement in the RPM package? When user installs the RPM, it should prompt to accept the user license agreement.
3
votes
3answers
1k views

rpm build error

Hi I tried to build a rpm package which is giving me the following error /usr/lib/rpm/find-debuginfo.sh /usr/src/redhat/BUILD/RPMS find: invalid predicate `' error: Bad exit status from ...
3
votes
2answers
4k views

Requires GLIBCXX_3.4.9 if I've already installed GLIBCXX_4.1.2?

I'm installing the last version of MediainfoDLL on Fedora 8/9 64bits (http://mediainfo.sourceforge.net/es/Download/Fedora). I downloaded libmediainfo-0.7.20 and libzen0-0.4.3 files. When I tried to ...
3
votes
5answers
378 views

How to package a game for Linux?

I have a game that currently runs under Windows and Mac OS X and I'd like to make it available under Linux. The porting should be fairly easy since it's a Java based game and uses portable libraries ...
3
votes
5answers
2k views

AIX deployment : installp or rpm?

I am deploying a large set of perl/shell/sql code on AIX. these could be (and are) different applications with their own dev teams, source control repos, etc. I am lazy and want to make ...
3
votes
5answers
4k views

Create RPM package from ANT script under Windows

I need to create an RPM package from an ANT script that runs on a Windows computer. This package must contain the result classes from the build plus some other, additional resources. I guess there ...
2
votes
0answers
30 views

RPM: find subpackages names from spec

How could I known what are the subpackages of a spec file? There is any macro expanding to the list of package+subpackages? I do not want to use grep because subpackages may be defined using -n or ...
2
votes
3answers
100 views

Determine if package installed with Yum Python API?

TLDR; I need simple a Python call given a package name (e.g., 'make') to see if it's installed; if not, install it (I can do the latter part). Problem: So there are a few code examples given in ...
2
votes
1answer
28 views

installer updation using RPM

I have a rpm package for my application and the path of the installation is /company/application/version. I am finding very difficult since its a unix platform and there is no registry concept. I ...
2
votes
2answers
31 views

How to know the value of built-in macro in RPM?

How do I view the value of these macro in RPM? I can take a guess that %_bindir is /usr/bin, %_tmppaht is /tmp, but how do I exactly view its value and is its value system-dependent? %_prefix ...
2
votes
1answer
52 views

How do I find out w/YUM or RPM what files it installed?

I installed Fedora 16 last night and saw it had NoMachine's NX in the repo. I did a yum install nx and it says it installed correctly, but for the life of me I can't find the .service or ...
2
votes
0answers
67 views

How to replace file from existing RPM package? [closed]

Possible Duplicate: How do I use rpm to update/replace existing files? Suppose I have an already installed RPM package on my system. I want create another package which can overwrite some ...
2
votes
3answers
333 views

Example of a multi-module web application with the rpm-maven-plugin?

Does anyone know of any web applications that are built with Maven to an RPM? The RPM Maven Plugin provides the functionality to build to an RPM, but it's documentation is lacking. Specifically, I'm ...
2
votes
2answers
46 views

How to prevent a SUSE RPM from installing on a RedHat system

We have a product that is distributed via RPMs. We create both SUSE SLES10 SP1 RPMs and RedHat 5.5 RPMs. There are differences between the two, things will not work correctly (often mysteriosly) if ...
2
votes
2answers
48 views

Please help building an RPM

I'm trying to build my own rpm package and have a couple of doubts. First of all, in several places I've red that one shouldn't build rpms as root. Why is that? During the building process, rpmbuild ...
2
votes
1answer
93 views

How to update the RPM version?

How to update a RPM version? Shall i just update it in my spec file and re-build the entire package?
2
votes
1answer
171 views

How to get automake, libtool, and rpmbuild to work together

I'm trying to create an RPM of my package, which is built using automake and libtool, and I've encountered a problem: rpmbuild aborts upon discovering that the installed programs of the package ...
2
votes
3answers
345 views

How do you make _topdir relative to the location of the .spec file when building an RPM?

I have a .spec file that relies on a variable called _topdir. Right now when you checkout the SRPM source from git, you have to go and change where _topdir is pointing to to get the rpmbuild to ...
2
votes
2answers
191 views

How can I force Anaconda to install my package after coreutils?

I have a customized RPM that builds a set of subpackages. Each subpackage has a %post script in the spec file that is used to copy some symlinks to another folder: %post server echo "Copying ...
2
votes
3answers
149 views

How to bundle an application for Linux

I am writing a (closed-source) application and will provide binaries for all three major platforms (MacOS X, Linux and Windows). It uses Qt under the LGPL license so I am required to dynamically link ...
2
votes
1answer
101 views

excluding file types when packaging an rpm

In my spec file for packaging a python rpm, I want to remove certain filetypes in certain directories: e.g., I want to exclude source *.py files in these directories: lib/*.py comm/*.py I think I ...
2
votes
1answer
281 views

setting installation path for python rpm

Can I set the installation path (relative or absolute) for a python rpm's content? Would I set this in the spec file? Specifically I am trying to do this for Fedora.

1 2 3 4 5 6