RedHat: is it possible to install packages in a kind of mock environment to build RPMs
Is there a tool that allows to install the dependecies of an RPM .spec into an isolated environment? I won't install such dependencies globally on the system and I am not able to do so since I have not root privileges.
The reason
I want to build a package A which depends on a newer version of B (which cannot be installed globally on the system).
I like to build the newer version of B and let the build tool install B's -devel
it into an isolated environment to provide all necessary files for the build of A.
Solutions
- Are there any tools to do this?
- If not, what should I take care of when trying to do this with say
chroot
? - Would this be a bad practice?
Yes, the tool is called mock
and it's in EPEL.
Typical usage:
rpmbuild -bs mypackage.spec
mock -r epel-6-x86_64 mypackage-0.1-1.src.rpm
This is actually the preferred way to build RPMs, precisely because it isolates the process from the system so that unexpected dependencies don't get pulled in.
You can modify the files in /etc/mock
to have it pull in your own packages, private repo, etc., or check the docs for info on how to add packages to the mock
chroot environment manually.
Note that users should be added to the mock
group to be allowed to use mock
.
Not coincidentally, the koji
build server that Red Hat uses calls mock
to build each individual package. If you have to build a lot of packages all the time, it may be worth looking into setting up a koji
build server.
I think attempting to build packages on production hosts is bad practice and attempting to do it without root privileges is more complicated than bringing up your own build machines. What I normally do is the following.
- Install VirtualBox or similar tool on your desktop/laptop
- Create 32/64 VMs of the OS you use in production
- Install the usually mock, rpmbuild, etc tools
- Create the RPMs for the package and any additional deps for both archs on yours VMs
- After testing push the RPMs into your internal repo for distribution to your servers
- Test again to make sure the proper dependencies are being pulled in
- Release via your config management.