- update to ghc-6.12.1-pre
- separate bcond options into enabled and disabled for clarity - only enable shared for intel x86 archs (Lorenzo Villani) - add quick build profile (Lorenzo Villani) - remove package_debugging hack (use "make install-short") - drop sed BR (Lorenzo Villani) - put all build.mk config into one cat block (Lorenzo Villani) - export CFLAGS to configure (Lorenzo Villani) - add dynamic linking test to check section (thanks Lorenzo Villani) - remove old ghc66 obsoletes - subpackage huge ghc internals library (thanks Lorenzo Villani) - BR ghc-rpm-macros >= 0.3.0 - move html docs to docdir/ghc from html subdir (Lorenzo Villani)
This commit is contained in:
parent
e3475b0683
commit
f673bd89fa
@ -1 +1 @@
|
|||||||
ghc-6.12.0.20091121-src.tar.bz2
|
ghc-6.12.1-src.tar.bz2
|
||||||
|
179
ghc.spec
179
ghc.spec
@ -1,34 +1,29 @@
|
|||||||
|
## default enabled options ##
|
||||||
|
# experimental shared libraries support available in ghc-6.12 for x86
|
||||||
|
%ifarch %{ix86} x86_64
|
||||||
|
%bcond_without shared
|
||||||
|
%endif
|
||||||
# test builds can made faster and smaller by disabling profiled libraries
|
# test builds can made faster and smaller by disabling profiled libraries
|
||||||
# (currently libHSrts_thr_p.a breaks no prof build)
|
# (currently libHSrts_thr_p.a breaks no prof build)
|
||||||
%bcond_without prof
|
%bcond_without prof
|
||||||
# build users_guide, etc
|
# build users_guide, etc
|
||||||
%bcond_without manual
|
%bcond_without manual
|
||||||
|
|
||||||
|
## default disabled options ##
|
||||||
# include extralibs
|
# include extralibs
|
||||||
%bcond_with extralibs
|
%bcond_with extralibs
|
||||||
|
# quick build profile
|
||||||
# experimental shared libraries support available in ghc-6.12
|
%bcond_with quick
|
||||||
%bcond_without shared
|
|
||||||
# include colored html src
|
# include colored html src
|
||||||
%bcond_with hscolour
|
%bcond_with hscolour
|
||||||
|
|
||||||
%global haddock_version 2.5.0
|
%global haddock_version 2.5.0
|
||||||
|
|
||||||
# Fixing packaging problems can be a tremendous pain because it
|
|
||||||
# generally requires a complete rebuild, which takes hours. To offset
|
|
||||||
# the misery, do a complete build once using "rpmbuild -bc", then copy
|
|
||||||
# your built tree to a directory of the same name suffixed with
|
|
||||||
# ".built", using "cp -al". Finally, set this variable, and it will
|
|
||||||
# copy the already-built tree into place during build instead of
|
|
||||||
# actually doing the build.
|
|
||||||
#
|
|
||||||
# Obviously, this can only work if you leave the build section
|
|
||||||
# completely untouched between builds.
|
|
||||||
%global package_debugging 0
|
|
||||||
|
|
||||||
Name: ghc
|
Name: ghc
|
||||||
# break of haskell-platform-2009.2.0.2
|
# break of haskell-platform-2009.2.0.2
|
||||||
Version: 6.12.0.20091121
|
Version: 6.12.1
|
||||||
Release: 1%{?dist}
|
Release: 0.1%{?dist}
|
||||||
Summary: Glasgow Haskell Compilation system
|
Summary: Glasgow Haskell Compilation system
|
||||||
# fedora ghc has only been bootstrapped on the following archs:
|
# fedora ghc has only been bootstrapped on the following archs:
|
||||||
ExclusiveArch: %{ix86} x86_64 ppc alpha
|
ExclusiveArch: %{ix86} x86_64 ppc alpha
|
||||||
@ -40,13 +35,13 @@ Source1: http://www.haskell.org/ghc/dist/%{version}/ghc-%{version}-src-extralibs
|
|||||||
%endif
|
%endif
|
||||||
URL: http://haskell.org/ghc/
|
URL: http://haskell.org/ghc/
|
||||||
BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
|
BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
|
||||||
Obsoletes: ghc682, ghc681, ghc661, ghc66, haddock09
|
Obsoletes: ghc682, ghc681, haddock09
|
||||||
# introduced for f11 and can be removed for f13:
|
# introduced for f11 and can be removed for f13:
|
||||||
Obsoletes: haddock < %{haddock_version}, ghc-haddock-devel < %{haddock_version}
|
Obsoletes: haddock < %{haddock_version}, ghc-haddock-devel < %{haddock_version}
|
||||||
Provides: haddock = %{haddock_version}
|
Provides: haddock = %{haddock_version}
|
||||||
Requires: gcc, gmp-devel
|
BuildRequires: ghc, happy, ghc-rpm-macros >= 0.3.0
|
||||||
BuildRequires: ghc, happy, sed
|
|
||||||
BuildRequires: gmp-devel, ncurses-devel
|
BuildRequires: gmp-devel, ncurses-devel
|
||||||
|
Requires: gcc, gmp-devel
|
||||||
%if %{with shared}
|
%if %{with shared}
|
||||||
# not sure if this is actually needed:
|
# not sure if this is actually needed:
|
||||||
BuildRequires: libffi-devel
|
BuildRequires: libffi-devel
|
||||||
@ -82,7 +77,32 @@ Preformatted documentation for the Glorious Glasgow Haskell Compilation System
|
|||||||
(GHC) and its libraries. It should be installed if you like to have local
|
(GHC) and its libraries. It should be installed if you like to have local
|
||||||
access to the documentation in HTML format.
|
access to the documentation in HTML format.
|
||||||
|
|
||||||
|
%package ghc-doc
|
||||||
|
Summary: Documentation for the ghc internals library
|
||||||
|
Group: Development/Languages
|
||||||
|
Requires(posttrans): %{name} = %{version}-%{release}
|
||||||
|
|
||||||
|
%description ghc-doc
|
||||||
|
Documentation for the ghc internals library.
|
||||||
|
|
||||||
|
%package ghc-devel
|
||||||
|
Summary: Development files for ghc internals
|
||||||
|
Group: Development/Libraries
|
||||||
%if %{with shared}
|
%if %{with shared}
|
||||||
|
Requires: %{name}-ghc = %{version}-%{release}
|
||||||
|
%endif
|
||||||
|
|
||||||
|
%description ghc-devel
|
||||||
|
Development files for the ghc internals library.
|
||||||
|
|
||||||
|
%if %{with shared}
|
||||||
|
%package ghc
|
||||||
|
Summary: GHC internals library
|
||||||
|
Group: Development/Libraries
|
||||||
|
|
||||||
|
%description ghc
|
||||||
|
Library to access internals of the Glasgow Haskell Compilation System.
|
||||||
|
|
||||||
%package libs
|
%package libs
|
||||||
Summary: Shared libraries for GHC
|
Summary: Shared libraries for GHC
|
||||||
Group: Development/Libraries
|
Group: Development/Libraries
|
||||||
@ -96,12 +116,21 @@ Shared libraries for Glorious Glasgow Haskell Compilation System (GHC).
|
|||||||
Summary: Profiling libraries for GHC
|
Summary: Profiling libraries for GHC
|
||||||
Group: Development/Libraries
|
Group: Development/Libraries
|
||||||
Requires: %{name} = %{version}-%{release}
|
Requires: %{name} = %{version}-%{release}
|
||||||
Obsoletes: ghc682-prof, ghc681-prof, ghc661-prof, ghc66-prof
|
Obsoletes: ghc682-prof, ghc681-prof
|
||||||
Obsoletes: ghc-haddock-prof < %{haddock_version}
|
Obsoletes: ghc-haddock-prof < %{haddock_version}
|
||||||
|
|
||||||
%description prof
|
%description prof
|
||||||
Profiling libraries for Glorious Glasgow Haskell Compilation System (GHC).
|
Profiling libraries for Glorious Glasgow Haskell Compilation System (GHC).
|
||||||
They should be installed when GHC's profiling subsystem is needed.
|
They should be installed when GHC's profiling subsystem is needed.
|
||||||
|
|
||||||
|
%package ghc-prof
|
||||||
|
Summary: Profiling libraries for the ghc internals library
|
||||||
|
Group: Development/Libraries
|
||||||
|
Requires: %{name}-ghc-devel = %{version}-%{release}
|
||||||
|
Requires: %{name}-prof = %{version}-%{release}
|
||||||
|
|
||||||
|
%description ghc-prof
|
||||||
|
Profiling libraries for the ghc internals library.
|
||||||
%endif
|
%endif
|
||||||
|
|
||||||
# the debuginfo subpackage is currently empty anyway, so don't generate it
|
# the debuginfo subpackage is currently empty anyway, so don't generate it
|
||||||
@ -111,28 +140,27 @@ They should be installed when GHC's profiling subsystem is needed.
|
|||||||
%setup -q -n %{name}-%{version} %{?with_extralibs:-b1}
|
%setup -q -n %{name}-%{version} %{?with_extralibs:-b1}
|
||||||
|
|
||||||
%build
|
%build
|
||||||
# hack for building a local test package quickly from a prebuilt tree
|
cat > mk/build.mk << EOF
|
||||||
%if %{package_debugging}
|
|
||||||
pushd ..
|
|
||||||
rm -rf %{name}-%{version}
|
|
||||||
cp -al %{name}-%{version}.built %{name}-%{version}
|
|
||||||
popd
|
|
||||||
exit 0
|
|
||||||
%endif
|
|
||||||
|
|
||||||
%if %{without prof}
|
%if %{without prof}
|
||||||
echo "GhcLibWays = v %{?with_shared:dyn}" >> mk/build.mk
|
GhcLibWays = v %{?with_shared:dyn}
|
||||||
%endif
|
%endif
|
||||||
|
%if %{without manual}
|
||||||
# so where is the switch?
|
HADDOCK_DOCS = NO
|
||||||
%if %{with manual}
|
BUILD_DOCBOOK_HTML = NO
|
||||||
#echo "XMLDocWays = html" >> mk/build.mk
|
%endif
|
||||||
|
%if %{with quick}
|
||||||
|
SRC_HC_OPTS = -H64m -O0 -fasm
|
||||||
|
GhcStage1HcOpts = -O -fasm
|
||||||
|
GhcStage2HcOpts = -O0 -fasm
|
||||||
|
GhcLibHcOpts = -O0 -fasm
|
||||||
|
SplitObjs = NO
|
||||||
%endif
|
%endif
|
||||||
|
|
||||||
%if %{without hscolour}
|
%if %{without hscolour}
|
||||||
echo "HSCOLOUR_SRCS = NO" >> mk/build.mk
|
HSCOLOUR_SRCS = NO
|
||||||
%endif
|
%endif
|
||||||
|
EOF
|
||||||
|
|
||||||
|
export CFLAGS="${CFLAGS:-%optflags}"
|
||||||
./configure --prefix=%{_prefix} --exec-prefix=%{_exec_prefix} \
|
./configure --prefix=%{_prefix} --exec-prefix=%{_exec_prefix} \
|
||||||
--bindir=%{_bindir} --sbindir=%{_sbindir} --sysconfdir=%{_sysconfdir} \
|
--bindir=%{_bindir} --sbindir=%{_sbindir} --sysconfdir=%{_sysconfdir} \
|
||||||
--datadir=%{_datadir} --includedir=%{_includedir} --libdir=%{_libdir} \
|
--datadir=%{_datadir} --includedir=%{_includedir} --libdir=%{_libdir} \
|
||||||
@ -144,16 +172,20 @@ make %{_smp_mflags}
|
|||||||
|
|
||||||
%install
|
%install
|
||||||
rm -rf $RPM_BUILD_ROOT
|
rm -rf $RPM_BUILD_ROOT
|
||||||
|
|
||||||
make DESTDIR=${RPM_BUILD_ROOT} install
|
make DESTDIR=${RPM_BUILD_ROOT} install
|
||||||
|
|
||||||
|
# hack around apparent html/ hardcoding
|
||||||
|
mv ${RPM_BUILD_ROOT}%{_docdir}/%{name}/html{,-tmp}
|
||||||
|
mv ${RPM_BUILD_ROOT}%{_docdir}/%{name}/html-tmp/* ${RPM_BUILD_ROOT}%{_docdir}/%{name}
|
||||||
|
rmdir ${RPM_BUILD_ROOT}%{_docdir}/%{name}/html-tmp
|
||||||
|
|
||||||
SRC_TOP=$PWD
|
SRC_TOP=$PWD
|
||||||
rm -f rpm-*.files
|
rm -f rpm-*.files
|
||||||
( cd $RPM_BUILD_ROOT
|
( cd $RPM_BUILD_ROOT
|
||||||
find .%{_libdir}/%{name}-%{version} -maxdepth 1 -type d ! -name 'include' ! -name 'package.conf.d' -fprintf $SRC_TOP/rpm-lib-dir.files "%%%%dir %%p\n"
|
find .%{_libdir}/%{name}-%{version} -maxdepth 1 -type d ! -name 'include' ! -name 'package.conf.d' ! -name 'ghc-%{version}' -fprintf $SRC_TOP/rpm-lib-dir.files "%%%%dir %%p\n"
|
||||||
find .%{_libdir}/%{name}-%{version} -type d -fprintf $SRC_TOP/rpm-dev-dir.files "%%%%dir %%p\n"
|
find .%{_libdir}/%{name}-%{version} -type d \( -path 'ghc-%{version}' -prune -o -fprintf $SRC_TOP/rpm-dev-dir.files "%%%%dir %%p\n" \)
|
||||||
find .%{_libdir}/%{name}-%{version} \( -name 'libHS*-ghc%{version}.so' -fprintf $SRC_TOP/rpm-lib.files "%%%%attr(755,root,root) %%p\n" \) -o \( \( -name '*.p_hi' -o -name '*_p.a' \) -fprint $SRC_TOP/rpm-prof.files \) -o \( \( -name '*.hi' -o -name '*.dyn_hi' -o -name 'libHS*.a' -o -name 'HS*.o' -o -name '*.h' -o -name '*.conf' -o -type f -not -name 'package.cache' \) -fprint $SRC_TOP/rpm-base.files \)
|
find .%{_libdir}/%{name}-%{version} \( -path 'ghc-%{version}' -prune \) -o \( -name 'libHS*-ghc%{version}.so' -fprintf $SRC_TOP/rpm-lib.files "%%%%attr(755,root,root) %%p\n" \) -o \( \( -name '*.p_hi' -o -name '*_p.a' \) -fprint $SRC_TOP/rpm-prof.files \) -o \( \( -name '*.hi' -o -name '*.dyn_hi' -o -name 'libHS*.a' -o -name 'HS*.o' -o -name '*.h' -o -name '*.conf' -o -type f -not -name 'package.cache' \) -fprint $SRC_TOP/rpm-base.files \)
|
||||||
find .%{_docdir}/%{name}/html/* -type d ! -name libraries ! -name src > $SRC_TOP/rpm-doc.files
|
find .%{_docdir}/%{name}/* -type d ! -name libraries ! -name 'ghc-%{version}' ! -name src > $SRC_TOP/rpm-doc.files
|
||||||
)
|
)
|
||||||
|
|
||||||
# make paths absolute (filter "./usr" to "/usr")
|
# make paths absolute (filter "./usr" to "/usr")
|
||||||
@ -162,6 +194,10 @@ sed -i -e "s|\.%{_prefix}|%{_prefix}|" rpm-*.files
|
|||||||
cat rpm-lib-dir.files rpm-lib.files > rpm-libs.files
|
cat rpm-lib-dir.files rpm-lib.files > rpm-libs.files
|
||||||
cat rpm-dev-dir.files rpm-base.files > rpm-ghc.files
|
cat rpm-dev-dir.files rpm-base.files > rpm-ghc.files
|
||||||
|
|
||||||
|
# subpackage ghc library
|
||||||
|
%define ghc_version %{version}
|
||||||
|
%ghc_gen_filelists ghc-ghc %{version}
|
||||||
|
|
||||||
# these are handled as alternatives
|
# these are handled as alternatives
|
||||||
for i in hsc2hs runhaskell; do
|
for i in hsc2hs runhaskell; do
|
||||||
if [ -x ${RPM_BUILD_ROOT}%{_bindir}/$i-ghc ]; then
|
if [ -x ${RPM_BUILD_ROOT}%{_bindir}/$i-ghc ]; then
|
||||||
@ -184,6 +220,12 @@ echo 'main = putStrLn "Foo"' > testghc/foo.hs
|
|||||||
inplace/bin/ghc-stage2 testghc/foo.hs -o testghc/foo -O2
|
inplace/bin/ghc-stage2 testghc/foo.hs -o testghc/foo -O2
|
||||||
[ "$(testghc/foo)" = "Foo" ]
|
[ "$(testghc/foo)" = "Foo" ]
|
||||||
rm testghc/*
|
rm testghc/*
|
||||||
|
%if %{with shared}
|
||||||
|
echo 'main = putStrLn "Foo"' > testghc/foo.hs
|
||||||
|
inplace/bin/ghc-stage2 testghc/foo.hs -o testghc/foo -dynamic
|
||||||
|
[ "$(testghc/foo)" = "Foo" ]
|
||||||
|
rm testghc/*
|
||||||
|
%endif
|
||||||
|
|
||||||
%clean
|
%clean
|
||||||
rm -rf $RPM_BUILD_ROOT
|
rm -rf $RPM_BUILD_ROOT
|
||||||
@ -217,7 +259,7 @@ ghc-pkg recache
|
|||||||
|
|
||||||
%posttrans doc
|
%posttrans doc
|
||||||
# (posttrans to make sure any old documentation has been removed first)
|
# (posttrans to make sure any old documentation has been removed first)
|
||||||
( cd %{_docdir}/ghc/html/libraries && ./gen_contents_index ) || :
|
( cd %{_docdir}/ghc/libraries && ./gen_contents_index ) || :
|
||||||
|
|
||||||
%files -f rpm-ghc.files
|
%files -f rpm-ghc.files
|
||||||
%defattr(-,root,root,-)
|
%defattr(-,root,root,-)
|
||||||
@ -230,31 +272,58 @@ ghc-pkg recache
|
|||||||
|
|
||||||
%files doc -f rpm-doc.files
|
%files doc -f rpm-doc.files
|
||||||
%defattr(-,root,root,-)
|
%defattr(-,root,root,-)
|
||||||
%dir %{_docdir}/%{name}/html/libraries
|
%dir %{_docdir}/%{name}/libraries
|
||||||
%{_docdir}/%{name}/html/libraries/frames.html
|
%{_docdir}/%{name}/libraries/frames.html
|
||||||
%{_docdir}/%{name}/html/libraries/gen_contents_index
|
%{_docdir}/%{name}/libraries/gen_contents_index
|
||||||
%{_docdir}/%{name}/html/libraries/hscolour.css
|
%{_docdir}/%{name}/libraries/hscolour.css
|
||||||
%{_docdir}/%{name}/html/libraries/prologue.txt
|
%{_docdir}/%{name}/libraries/prologue.txt
|
||||||
%{_docdir}/%{name}/html/index.html
|
%{_docdir}/%{name}/index.html
|
||||||
%ghost %{_docdir}/%{name}/html/libraries/doc-index*.html
|
%ghost %{_docdir}/%{name}/libraries/doc-index*.html
|
||||||
%ghost %{_docdir}/%{name}/html/libraries/haddock.css
|
%ghost %{_docdir}/%{name}/libraries/haddock.css
|
||||||
%ghost %{_docdir}/%{name}/html/libraries/haddock-util.js
|
%ghost %{_docdir}/%{name}/libraries/haddock-util.js
|
||||||
%ghost %{_docdir}/%{name}/html/libraries/haskell_icon.gif
|
%ghost %{_docdir}/%{name}/libraries/haskell_icon.gif
|
||||||
%ghost %{_docdir}/%{name}/html/libraries/index*.html
|
%ghost %{_docdir}/%{name}/libraries/index*.html
|
||||||
%ghost %{_docdir}/%{name}/html/libraries/minus.gif
|
%ghost %{_docdir}/%{name}/libraries/minus.gif
|
||||||
%ghost %{_docdir}/%{name}/html/libraries/plus.gif
|
%ghost %{_docdir}/%{name}/libraries/plus.gif
|
||||||
|
|
||||||
%if %{with shared}
|
%if %{with shared}
|
||||||
%files libs -f rpm-libs.files
|
%files libs -f rpm-libs.files
|
||||||
%defattr(-,root,root,-)
|
%defattr(-,root,root,-)
|
||||||
|
|
||||||
|
%files ghc -f ghc-ghc.files
|
||||||
|
%defattr(-,root,root,-)
|
||||||
%endif
|
%endif
|
||||||
|
|
||||||
|
%files ghc-devel -f ghc-ghc-devel.files
|
||||||
|
%defattr(-,root,root,-)
|
||||||
|
|
||||||
|
%files ghc-doc -f ghc-ghc-doc.files
|
||||||
|
%defattr(-,root,root,-)
|
||||||
|
|
||||||
%if %{with prof}
|
%if %{with prof}
|
||||||
%files prof -f rpm-prof.files
|
%files prof -f rpm-prof.files
|
||||||
%defattr(-,root,root,-)
|
%defattr(-,root,root,-)
|
||||||
|
|
||||||
|
%files ghc-prof -f ghc-ghc-prof.files
|
||||||
|
%defattr(-,root,root,-)
|
||||||
%endif
|
%endif
|
||||||
|
|
||||||
%changelog
|
%changelog
|
||||||
|
* Fri Dec 11 2009 Jens Petersen <petersen@redhat.com> - 6.12.1-0.1
|
||||||
|
- update to ghc-6.12.1-pre
|
||||||
|
- separate bcond options into enabled and disabled for clarity
|
||||||
|
- only enable shared for intel x86 archs (Lorenzo Villani)
|
||||||
|
- add quick build profile (Lorenzo Villani)
|
||||||
|
- remove package_debugging hack (use "make install-short")
|
||||||
|
- drop sed BR (Lorenzo Villani)
|
||||||
|
- put all build.mk config into one cat block (Lorenzo Villani)
|
||||||
|
- export CFLAGS to configure (Lorenzo Villani)
|
||||||
|
- add dynamic linking test to check section (thanks Lorenzo Villani)
|
||||||
|
- remove old ghc66 obsoletes
|
||||||
|
- subpackage huge ghc internals library (thanks Lorenzo Villani)
|
||||||
|
- BR ghc-rpm-macros >= 0.3.0
|
||||||
|
- move html docs to docdir/ghc from html subdir (Lorenzo Villani)
|
||||||
|
|
||||||
* Wed Nov 18 2009 Jens Petersen <petersen@redhat.com> - 6.12.0.20091121-1
|
* Wed Nov 18 2009 Jens Petersen <petersen@redhat.com> - 6.12.0.20091121-1
|
||||||
- update to 6.12.1 rc2
|
- update to 6.12.1 rc2
|
||||||
- build shared libs, yay! and package in standalone libs subpackage
|
- build shared libs, yay! and package in standalone libs subpackage
|
||||||
|
Loading…
Reference in New Issue
Block a user