Инструменты пользователя

Инструменты сайта


linux:build-rpm:centos

Это старая версия документа!


Как состряпать rpm под CentOS

Подготовка среды

Для начала подготавливаем среду на той машине, где мы это будем делать

yum install rpm-build make m4 gcc-c++ autoconf automake redhat-rpm-config

Создаем каталоги для постройки rpm пакетов в своем домашнем каталоге

mkdir -p ~/rpmbuild/{BUILD,RPMS,SOURCES,SPECS,SRPMS}

И затем

echo '%_topdir %(echo $HOME)/rpmbuild' > ~/.rpmmacros

Как собрать csync2 под CentOS 6.0 x86_64

Сам проект вроде как живет по адресу http://oss.linbit.com/csync2

Сначала берем последнюю версию csync2

# cd ~
# mkdir git
# cd git
# git clone http://git.linbit.com/csync2.git
Initialized empty Git repository in /home/linko/git/csync2/.git/

Выясняем, что мы там скачали

# cd csync2
# cat csync2.spec | grep ^Version
Version:      2.0

Значит, будем строить версию csync2-2.0

# cd ..
# cp -R csync2 csync2-2.0
# rm -R csync2-2.0/.git

csync2.spec в оригинальной поставке кривая. Кривость заключается в том, что там нет генерации сертификатов, патча для xinetd и все пихается в /etc, а не в /etc/csync2

Делаем свою:

csync2.spec
Summary: Cluster synchronization tool
Name: csync2
Version: 2.0
Release: 0.1.rc1
Group: Applications/System
License: GPLv2+
URL: http://oss.linbit.com/csync2/
Source0: csync2-%{version}.tar.gz
Source1: csync2-README.quickstart
Patch0: csync2-fix-xinetd.patch
 
BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root
 
Requires(post): openssl
Requires: xinetd
BuildRequires: sqlite-devel sqlite librsync gnutls-devel librsync-devel
 
%description
Csync2 is a cluster synchronization tool. It can be used to keep files on
multiple hosts in a cluster in sync. Csync2 can handle complex setups with
much more than just 2 hosts, handle file deletions and can detect conflicts.
It is expedient for HA-clusters, HPC-clusters, COWs and server farms.
 
%prep
%setup -q
%patch0 -p1 -b .fix-xinetd
install -p -m 644 %{SOURCE1} README.quickstart
 
 
%build
%configure --sysconfdir=%{_sysconfdir}/csync2
make %{?_smp_mflags}
 
 
%install
rm -rf %{buildroot}
make install DESTDIR=%{buildroot}
mkdir -p %{buildroot}%{_var}/lib/csync2
install -p -D -m 644 csync2.xinetd %{buildroot}%{_sysconfdir}/xinetd.d/csync2
 
# We need these empty files to be able to %%ghost them
touch %{buildroot}%{_sysconfdir}/csync2/csync2_ssl_key.pem
touch %{buildroot}%{_sysconfdir}/csync2/csync2_ssl_cert.pem
 
 
%clean
rm -rf %{buildroot}
 
 
%post
umask 077
if [ ! -f %{_sysconfdir}/csync2/csync2_ssl_key.pem ]; then
/usr/bin/openssl genrsa -rand /proc/apm:/proc/cpuinfo:/proc/dma:/proc/filesystems:/proc/interrupts:/proc/ioports:/proc/pci:/proc/rtc:/proc/uptime 1024 > %{_sysconfdir}/csync2/csync2_ssl_key.pem 2>/dev/null
fi
 
FQDN=`hostname`
if [ "x${FQDN}" = "x" ]; then
   FQDN=localhost.localdomain
fi
 
if [ ! -f %{_sysconfdir}/csync2/csync2_ssl_cert.pem ]; then
cat << EOF | /usr/bin/openssl req -new -key %{_sysconfdir}/csync2/csync2_ssl_key.pem -x509 -days 3000 -out %{_sysconfdir}/csync2/csync2_ssl_cert.pem 2>/dev/null
--
SomeState
SomeCity
SomeOrganization
 
 
 
EOF
fi
 
%preun
# Cleanup all databases upon last removal
if [ $1 -eq 0 ]; then
  %{__rm} -f %{_var}/lib/csync2/*
fi
 
 
%files
%defattr(-,root,root,-)
%doc README README.quickstart AUTHORS COPYING
%dir %{_sysconfdir}/csync2/
%config(noreplace) %{_sysconfdir}/csync2/csync2.cfg
%config(noreplace) %{_sysconfdir}/xinetd.d/csync2
%ghost %config %{_sysconfdir}/csync2/csync2_ssl_key.pem
%ghost %config %{_sysconfdir}/csync2/csync2_ssl_cert.pem
%{_sbindir}/csync2
%{_sbindir}/csync2-compare
%{_mandir}/man1/csync2.1*
%dir %{_var}/lib/csync2/
 
 
%changelog
* Tue Nov 13 2007 Matthias Saou <http://freshrpms.net/> 1.34-4
- Change configuration directory to be /etc/csync2/ since the program requires
  quite a few files, and putting all of them in /etc/ was messy.
- Include certificate generation upon package installation, based on mod_ssl.
- Rewrite the csync2-README.quickstart file.
- Remove db files upon last removal.
 
* Tue Nov 13 2007 Matthias Saou <http://freshrpms.net/> 1.34-1
- Take ownership of the package.
- Update to 1.34.
 
* Tue Mar 27 2007 <ruben@rubenkerkhof.com> 1.33-5
- Fix ownership of documentation directory (bz 233954)
 
* Thu Jan 25 2007 <ruben@rubenkerkhof.com> 1.33-4
- Included a README.fedora with instructions on how to create a self-signed
  certificate
- Included a mkcert.sh script to create a self-signed certificate
- Removed the creation of ssl certificate from the %%install section
 
* Wed Jan 22 2007 <ruben@rubenkerkhof.com> 1.33-3
- Fixed the xinetd file so there's no need to specify the port in /etc/services
- Create ssl certificates
 
* Mon Jan 22 2007 <ruben@rubenkerkhof.com> 1.33-2
- Some cleanups as per bz review 223633
 
* Sat Jan 20 2007 <ruben@rubenkerkhof.com> 1.33-1
- Initial import
# tar -pczf csync2-2.0.tar.gz csync2-2.0
# cp csync2-2.0/csync2.spec ~/rpmbuild/SPECS
# cp csync2-2.0.tar.gz ~/rpmbuild/SOURCES
# cd ~/rpmbuild/SPECS/
# rpmbuild -bp csync2.spec
# rpmbuild -ba csync2.spec

rpmbuild -ta source.tar.gz

linux/build-rpm/centos.1319114373.txt.gz · Последнее изменение: 2011/10/20 16:39 — linko22@gmail.com