guix/guix.spec
2015-02-25 19:01:28 +00:00

119 lines
3.8 KiB
RPMSpec

#
# spec file for package guix
#
# Copyright (c) 2015 SUSE LINUX GmbH, Nuernberg, Germany.
#
# All modifications and additions to the file contributed by third parties
# remain the property of their copyright owners, unless otherwise agreed
# upon. The license for this file, and modifications and additions to the
# file, is the same license as for the pristine package itself (unless the
# license for the pristine package is not an Open Source License, in which
# case the license is the MIT License). An "Open Source License" is a
# license that conforms to the Open Source Definition (Version 1.9)
# published by the Open Source Initiative.
# Please submit bugfixes or comments via http://bugs.opensuse.org/
#
%define guile guile-2.0.9.tar.xz
Name: guix
Version: 0.8.1
Release: 0
Summary: GNU Package manager
License: GPL-3.0
Group: System/Packages
Url: http://www.gnu.org/software/guix/
Source0: ftp://alpha.gnu.org/gnu/guix/%{name}-%{version}.tar.gz
Source1: ftp://alpha.gnu.org/gnu/guix/%{name}-%{version}.tar.gz.sig
Source2: %{name}.keyring
# source file renamed - this would lead to 3 same file names
# http://alpha.gnu.org/gnu/guix/bootstrap/i686-linux/20131110/%%{guile}
Source3: i686-linux-%{guile}
# http://alpha.gnu.org/gnu/guix/bootstrap/x86_64-linux/20131110/%%{guile}
Source4: x86_64-linux-%{guile}
# http://alpha.gnu.org/gnu/guix/bootstrap/mips64el-linux/20131110/%%{guile}
Source5: mips64el-linux-%{guile}
# http://alpha.gnu.org/gnu/guix/bootstrap/armhf-linux/20150101/guile-2.0.11.tar.xz
Source6: armhf-linux-guile-2.0.11.tar.xz
Source10: guixd.service
Source11: sysconfig.guix
BuildRequires: gcc-c++
BuildRequires: guile-devel
BuildRequires: libbz2-devel
BuildRequires: libgcrypt-devel
BuildRequires: pkgconfig
BuildRequires: sqlite3-devel
BuildRequires: systemd-rpm-macros
Requires: guile
Requires: libgcrypt-devel
Requires(pre): %{install_info_prereq}
BuildRoot: %{_tmppath}/%{name}-%{version}-build
%{?systemd_requires}
%description
Purely functional package manager and a distribution thereof.
%prep
%setup -q
mkdir -p gnu/packages/bootstrap/{i686,x86_64,mips64el,armhf}-linux
cp %{SOURCE3} gnu/packages/bootstrap/i686-linux/%{guile}
cp %{SOURCE4} gnu/packages/bootstrap/x86_64-linux/%{guile}
cp %{SOURCE5} gnu/packages/bootstrap/mips64el-linux/%{guile}
cp %{SOURCE6} gnu/packages/bootstrap/armhf-linux/guile-2.0.11.tar.xz
%build
%configure \
--disable-silent-rules
make %{?_smp_mflags}
%install
make DESTDIR=%{buildroot} install %{?_smp_mflags}
%find_lang %{name}
%find_lang guix-packages
install -d -m 0755 %{buildroot}%{_unitdir}
install -D -m 0644 -t %{buildroot}%{_unitdir} %{SOURCE10}
install -d -m 0755 %{buildroot}%{_localstatedir}/adm/fillup-templates/
install -D -m 0644 -t %{buildroot}%{_localstatedir}/adm/fillup-templates/ %{SOURCE11}
rm %{buildroot}%{_infodir}/dir
%pre
%{_sbindir}/groupadd -r guix-builders >/dev/null 2>/dev/null || :
for i in `seq 1 5`; do
%{_sbindir}/useradd -r -o -g guix-builders -G guix-builders -u $((60+$i)) -c "Guix builder $i" \
-s /sbin/nologin -d %{_localstatedir}/empty guix-builder$i 2> /dev/null || :
done
%service_add_pre guixd.service
%preun
%service_del_preun guixd.service
%post
%install_info --info-dir=%{_infodir} %{_infodir}/guix.info.gz
%service_add_post guixd.service
%{fillup_only guixd}
%postun
%install_info_delete --info-dir=%{_infodir} %{_infodir}/guix.info.gz
%service_del_postun guixd.service
%files -f %{name}.lang -f guix-packages.lang
%defattr(-,root,root)
%doc COPYING README
%{_datadir}/guile
%{_datadir}/guix
%{_bindir}/guix*
%{_sbindir}/guix*
%{_libexecdir}/guix
%{_libexecdir}/guix-authenticate
%{_infodir}/guix*
%{_infodir}/images
%{_unitdir}/guixd.service
%{_localstatedir}/adm/fillup-templates/*
%changelog