setup ghc-deps.sh here now since no longer in %ghc_package_devel

This commit is contained in:
Jens Petersen 2011-09-14 16:12:47 +09:00
parent c761d8e338
commit f0b82bb38a

View File

@ -1,26 +1,37 @@
# Shared haskell libraries are supported for x86* archs # Shared haskell libraries are supported for x86* archs
# (disabled for other archs in ghc-rpm-macros) # (disabled for other archs in ghc-rpm-macros)
# to bootstrap a new version of ghc, uncomment the following: # To bootstrap a new version of ghc, uncomment the following:
#%%global ghc_bootstrapping 1 #%%global ghc_bootstrapping 1
#%%{?ghc_bootstrap} #%%{?ghc_bootstrap}
#%%global without_hscolour 1 #%%global without_hscolour 1
# To do a test build instead with shared libs, uncomment the following:
#%%global ghc_bootstrapping 1
#%%{?ghc_test}
#%%global without_hscolour 1
# archs that use system libffi # archs that use system libffi
%global libffi_archs %{ix86} x86_64 %global libffi_archs %{ix86} x86_64
# ghc does not output dwarf format so debuginfo is not useful # ghc does not output dwarf format so debuginfo is not useful
%global debug_package %{nil} %global debug_package %{nil}
%if %{defined ghc_bootstrapping}
%global _use_internal_dependency_generator 0
%global __find_provides %{_rpmconfigdir}/ghc-deps.sh --provides %{buildroot}%{ghclibdir}
%global __find_requires %{_rpmconfigdir}/ghc-deps.sh --requires %{buildroot}%{ghclibdir}
%endif
Name: ghc Name: ghc
# haskell-platform-2011.2.0.1 # part of haskell-platform
# NB make sure to rebuild ghc after a version bump to avoid ABI change problems # NB make sure to rebuild ghc after a version bump to avoid ABI change problems
Version: 7.0.4 Version: 7.0.4
# Since library subpackages are versioned: # Since library subpackages are versioned:
# - release can only be reset if all library versions get bumped simultaneously # - release can only be reset if all library versions get bumped simultaneously
# (eg for a major release) # (eg for a major release)
# - minor release numbers should be incremented monotonically # - minor release numbers should be incremented monotonically
Release: 26%{?dist} Release: 27%{?dist}
Summary: Glasgow Haskell Compiler Summary: Glasgow Haskell Compiler
# fedora ghc has been bootstrapped on the following archs: # fedora ghc has been bootstrapped on the following archs:
#ExclusiveArch: %{ix86} x86_64 ppc alpha sparcv9 ppc64 #ExclusiveArch: %{ix86} x86_64 ppc alpha sparcv9 ppc64
@ -172,8 +183,6 @@ rm -r ghc-tarballs/libffi
%build %build
#%%ghc_check_bootstrap
# http://hackage.haskell.org/trac/ghc/wiki/Platforms # http://hackage.haskell.org/trac/ghc/wiki/Platforms
# cf https://github.com/gentoo-haskell/gentoo-haskell/tree/master/dev-lang/ghc # cf https://github.com/gentoo-haskell/gentoo-haskell/tree/master/dev-lang/ghc
cat > mk/build.mk << EOF cat > mk/build.mk << EOF
@ -211,8 +220,7 @@ export CFLAGS="${CFLAGS:-%optflags}"
--datadir=%{_datadir} --includedir=%{_includedir} --libdir=%{_libdir} \ --datadir=%{_datadir} --includedir=%{_includedir} --libdir=%{_libdir} \
--libexecdir=%{_libexecdir} --localstatedir=%{_localstatedir} \ --libexecdir=%{_libexecdir} --localstatedir=%{_localstatedir} \
--sharedstatedir=%{_sharedstatedir} --mandir=%{_mandir} \ --sharedstatedir=%{_sharedstatedir} --mandir=%{_mandir} \
--with-gcc=%{_bindir}/gcc \ --with-gcc=%{_bindir}/gcc
%{!?ghc_without_shared:--enable-shared}
# >4 cpus tends to break build # >4 cpus tends to break build
[ -z "$RPM_BUILD_NCPUS" ] && RPM_BUILD_NCPUS=$(%{_bindir}/getconf _NPROCESSORS_ONLN) [ -z "$RPM_BUILD_NCPUS" ] && RPM_BUILD_NCPUS=$(%{_bindir}/getconf _NPROCESSORS_ONLN)
@ -377,6 +385,10 @@ fi
%defattr(-,root,root,-) %defattr(-,root,root,-)
%changelog %changelog
* Wed Sep 14 2011 Jens Petersen <petersen@redhat.com> - 7.0.4-27
- setup dependency generation with ghc-deps.sh since it was moved to
ghc_lib_install in ghc-rpm-macros
* Fri Jun 17 2011 Jens Petersen <petersen@redhat.com> - 7.0.4-26 * Fri Jun 17 2011 Jens Petersen <petersen@redhat.com> - 7.0.4-26
- BR same ghc version unless ghc_bootstrapping defined - BR same ghc version unless ghc_bootstrapping defined
- add libffi_archs - add libffi_archs
@ -386,6 +398,7 @@ fi
* Thu Jun 16 2011 Jens Petersen <petersen@redhat.com> - 7.0.4-25 * Thu Jun 16 2011 Jens Petersen <petersen@redhat.com> - 7.0.4-25
- update to 7.0.4 bugfix release - update to 7.0.4 bugfix release
http://haskell.org/ghc/docs/7.0.4/html/users_guide/release-7-0-4.html
- strip static again (upstream #5004 fixed) - strip static again (upstream #5004 fixed)
- Cabal updated to 1.10.2.0 - Cabal updated to 1.10.2.0
- re-enable testsuite - re-enable testsuite