Difference between revisions of "Unix/Linux Repositories"

 
Line 1: Line 1:
 +
[[Category:Build Scripts]]
 +
 
This page describes how to configure the '''apt''' or '''yum''' to look for EiffelStudio packages. Additionally it also explains how to create the actual repositories.
 
This page describes how to configure the '''apt''' or '''yum''' to look for EiffelStudio packages. Additionally it also explains how to create the actual repositories.
  

Revision as of 14:51, 28 May 2008


This page describes how to configure the apt or yum to look for EiffelStudio packages. Additionally it also explains how to create the actual repositories.

Client configuration

For apt, run following commands as root:

echo "
deb http://www.eiffel.com/downloads/packages/deb ./
" >> /etc/apt/sources.list
apt-get update

After this typing apt-cache search eiffelstudio in your console should list a number of available packages for EiffelStudio.

For yum its quite similar:

echo "
[base]
name=Eiffel Software
baseurl=http://www.eiffel.com/downloads/packages/yum
enabled=1
" >> /etc/yum.conf

Then yum search eiffelstudio should list the available packages.

Creating repositories

Note: for simplification, we will assume all packages are located in a single directory. This is because there are no distribution/release specific packages of EiffelStudio.

Requirements

For creating an Apt (Debian) repository, following packages are required:

  • dpkg-dev
  • apt-utils
  • gnupg (signing the packages)
apt-get install dpkg-dev apt-utils gnupg

For yum (RPM), these tools are required:

  • yum-arch
  • createrepo
yum install yum-arch createrepo

Using tools

In both cases, copy all .deb/.rpm archives into an empty directory (use different directories for Debian/RPM).

To create the Apt repository, run following commands in the directory where the .deb archives are located:

dpkg-scanpackages . > Packages
gzip -c9 Packages > Packages.gz

apt-ftparchive release . > Release
gpg -abs --default-key $KEY -o Release.gpg Release

Note: the uncompressed Packages file is actually not needed for an online repository. However Apt does use the uncompressed version if your repository is located on a CD-ROM.


Again for Yum its a similar procedure:

yum-arch .
createrepo .


Finally, copy all generated files together with the archives to the location of your repository (http://www.eiffel.com/downloads/packages/deb for the Apt files, respectively http://www.eiffel.com/downloads/packages/yum for the Yum files).


See also