File sbcl.spec of Package failed_sbcl
#
# spec file for package sbcl
#
# Copyright (c) 2013 SUSE LINUX Products 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/
#
Name: sbcl
Version: 1.1.13
Release: 0
Summary: Steel Bank Common Lisp
License: SUSE-Public-Domain and BSD-3-Clause
Group: Development/Languages/Other
Url: http://www.sbcl.org/
Source: http://downloads.sourceforge.net/project/sbcl/sbcl/%version/%{name}-%{version}-source.tar.bz2
Source1: README.openSUSE
Source2: sbclrc.sample
Source3: customize-target-features.lisp
BuildRequires: ctags
BuildRequires: ghostscript
BuildRequires: sbcl
BuildRequires: zlib-devel
%if 0%{?fedora_version:1}
BuildRequires: texinfo-tex
%else
BuildRequires: netcfg
BuildRequires: texinfo
%endif
%if 0%{?suse_version} > 1220 || 0%{?fedora_version:1}
BuildRequires: texlive-dvips
%else
BuildRequires: texlive
%endif
# PATCH-FIX-OPENSUSE sbcl-1.0.54-optflags.patch from fedora author unknown --use optflags
Patch0: sbcl-1.0.54-optflags.patch
# PATCH-FIX-OPENSUSE dont-split-doc.patch from debian author unknown --don't split docs
Patch1: dont-split-doc.patch
# PATCH-FIX-OPENSUSE install README.openSUSE and sbclrc.sample
Patch3: sbcl-1.1.2-install.patch
# PATCH-FIX-OPENSUSE sbcl-1.1.4-personality.patch based on fedora author unknown --fix access to proc in chroot env
Patch4: sbcl-1.1.13-personality.patch
# PATCH-FIX-OPENSUSE https://bugs.launchpad.net/sbcl/+bug/1087955
Patch5: sbcl-disable-frlock-test.patch
BuildRoot: %{_tmppath}/%{name}-%{version}-build
%description
Steel Bank Common Lisp (SBCL) is a high performance Common Lisp
compiler. It is open source / free software, with a permissive license.
In addition to the compiler and runtime system for ANSI Common Lisp, it
provides an interactive environment including a debugger, a statistical
profiler, a code coverage tool, and many other extensions.
%prep
%setup -q
%patch0 -p1 -b optflags
%patch1 -p1 -b docpatch
%patch3 -p1 -b install
%patch4 -p1 -b personality
%patch5 -p1 -b frlock
cp %{S:1} .
cp %{S:2} .
cp %{S:3} .
sed -i -e "s|\"%version\"|\"%version-%release-%_vendor\"|" version.lisp-expr
%build
CFLAGS="%optflags"
%_buildshell make.sh --xc-host="sbcl --disable-debugger --no-sysinit --no-userinit" --prefix=%{_prefix}
cd doc/manual && make
%install
INSTALL_ROOT=%{buildroot}/%{_prefix} %_buildshell install.sh
if test %{_docdir} != %{_prefix}/share/doc ;then
mkdir -p %{buildroot}/%{_docdir}
mv %{buildroot}/%{_prefix}/share/doc/sbcl %{buildroot}/%{_docdir}/
fi
## Unpackaged files
rm -f %{buildroot}%{_infodir}/dir
# CVS crud
find %{buildroot} -name CVS -type d | xargs rm -rf
find %{buildroot} -name .cvsignore | xargs rm -f
find %{buildroot} -name .gitignore | xargs rm -f
# remove the a.out files
find %{buildroot} -name a\.out | xargs rm -f
# 'test-passed' files from %%check
find %{buildroot} -name 'test-passed' | xargs rm -vf
find %{buildroot} -name 'test-output' -type d | xargs rm -rf
# remove dangling texinfo files
find %{buildroot} -name *\.texinfo | xargs rm -f
# remove Makefiles
find %{buildroot} -name Makefile | xargs rm -f
%clean
rm -rf %{buildroot}
# How to make that info stuff portable?
%if 0%{?install_info:1} > 0
%post
%install_info --info-dir=%{_infodir} %{_infodir}/asdf.info.*
%install_info --info-dir=%{_infodir} %{_infodir}/sbcl.info.*
%postun
%install_info_delete --info-dir=%{_infodir} %{_infodir}/asdf.info.*
%install_info_delete --info-dir=%{_infodir} %{_infodir}/sbcl.info.*
%endif
%files
%defattr(-,root,root,-)
%doc %{_docdir}/%{name}
%doc %{_mandir}/man1/sbcl.1*
%doc %{_infodir}/asdf.info*
%doc %{_infodir}/sbcl.info*
%{_bindir}/%{name}
%dir %{_prefix}/lib/%{name}
%{_prefix}/lib/%{name}/*
%changelog