2005-05-12 07:37:43 +00:00
|
|
|
# speed up test builds by not building profiled libraries
|
|
|
|
%define build_prof 1
|
2006-09-28 01:44:23 +00:00
|
|
|
%define build_doc 1
|
2005-05-12 07:37:43 +00:00
|
|
|
|
2008-09-26 07:14:14 +00:00
|
|
|
# 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.
|
|
|
|
%define package_debugging 0
|
|
|
|
|
2005-05-12 07:37:43 +00:00
|
|
|
Name: ghc
|
2008-11-05 04:32:03 +00:00
|
|
|
Version: 6.10.1
|
2008-11-25 02:52:10 +00:00
|
|
|
Release: 5%{?dist}
|
2005-05-12 07:37:43 +00:00
|
|
|
Summary: Glasgow Haskell Compilation system
|
2007-05-10 17:53:17 +00:00
|
|
|
# See https://bugzilla.redhat.com/bugzilla/show_bug.cgi?id=239713
|
2007-11-23 18:15:15 +00:00
|
|
|
ExcludeArch: alpha ppc64
|
2007-11-06 00:35:13 +00:00
|
|
|
License: BSD
|
2005-05-12 07:37:43 +00:00
|
|
|
Group: Development/Languages
|
2008-09-24 07:34:44 +00:00
|
|
|
Source0: http://www.haskell.org/ghc/dist/%{version}/ghc-%{version}-src.tar.bz2
|
|
|
|
Source1: http://www.haskell.org/ghc/dist/%{version}/ghc-%{version}-src-extralibs.tar.bz2
|
2008-09-17 06:00:51 +00:00
|
|
|
Source2: ghc-rpm-macros.ghc
|
2008-11-25 09:15:17 +00:00
|
|
|
Source3: cabal2spec
|
|
|
|
Source4: cabal-bin-template.spec.in
|
|
|
|
Source5: cabal-lib-template.spec.in
|
|
|
|
Source6: cabal-binlib-template.spec.in
|
2005-05-12 07:37:43 +00:00
|
|
|
URL: http://haskell.org/ghc/
|
2008-10-13 03:05:05 +00:00
|
|
|
Requires: gcc, gmp-devel, libedit-devel
|
2008-10-13 05:20:47 +00:00
|
|
|
Requires(post): policycoreutils
|
2005-05-12 07:37:43 +00:00
|
|
|
BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
|
2008-10-13 03:05:05 +00:00
|
|
|
Obsoletes: ghc682, ghc681, ghc661, ghc66, haddock <= 2.0.0.0
|
2008-10-13 05:20:47 +00:00
|
|
|
# introduced for f11 and to be removed for f13:
|
|
|
|
Provides: haddock = 2.2.2
|
2007-09-30 03:53:49 +00:00
|
|
|
BuildRequires: ghc, happy, sed
|
2008-10-13 03:05:05 +00:00
|
|
|
BuildRequires: gmp-devel, libedit-devel
|
2005-05-12 07:37:43 +00:00
|
|
|
%if %{build_doc}
|
2008-10-13 03:05:05 +00:00
|
|
|
BuildRequires: libxslt, docbook-style-xsl
|
2005-05-12 07:37:43 +00:00
|
|
|
%endif
|
2008-11-11 03:48:10 +00:00
|
|
|
Patch1: ghc-6.10.1-gen_contexts_index.patch
|
2005-05-12 07:37:43 +00:00
|
|
|
|
|
|
|
%description
|
|
|
|
GHC is a state-of-the-art programming suite for Haskell, a purely
|
|
|
|
functional programming language. It includes an optimising compiler
|
|
|
|
generating good code for a variety of platforms, together with an
|
|
|
|
interactive system for convenient, quick development. The
|
|
|
|
distribution includes space and time profiling facilities, a large
|
|
|
|
collection of libraries, and support for various language
|
|
|
|
extensions, including concurrency, exceptions, and a foreign language
|
|
|
|
interface.
|
|
|
|
|
|
|
|
%if %{build_prof}
|
2008-06-18 19:49:45 +00:00
|
|
|
%package prof
|
2005-05-12 07:37:43 +00:00
|
|
|
Summary: Profiling libraries for GHC
|
|
|
|
Group: Development/Libraries
|
2008-06-18 19:49:45 +00:00
|
|
|
Requires: %{name} = %{version}-%{release}
|
|
|
|
Obsoletes: ghc682-prof, ghc681-prof, ghc661-prof, ghc66-prof
|
2005-05-12 07:37:43 +00:00
|
|
|
|
2008-06-18 19:49:45 +00:00
|
|
|
%description prof
|
2005-05-12 07:37:43 +00:00
|
|
|
Profiling libraries for Glorious Glasgow Haskell Compilation System
|
|
|
|
(GHC). They should be installed when GHC's profiling subsystem is
|
|
|
|
needed.
|
|
|
|
%endif
|
|
|
|
|
|
|
|
%package doc
|
|
|
|
Summary: Documentation for GHC
|
|
|
|
Group: Development/Languages
|
2007-11-06 00:35:13 +00:00
|
|
|
Requires: %{name} = %{version}-%{release}
|
2008-10-23 03:00:41 +00:00
|
|
|
# for haddock
|
2008-11-25 02:52:10 +00:00
|
|
|
Requires(posttrans): %{name} = %{version}-%{release}
|
2005-05-12 07:37:43 +00:00
|
|
|
|
|
|
|
%description doc
|
|
|
|
Preformatted documentation for the Glorious Glasgow Haskell
|
|
|
|
Compilation System (GHC) and its libraries. It should be installed if
|
|
|
|
you like to have local access to the documentation in HTML format.
|
|
|
|
|
|
|
|
# the debuginfo subpackage is currently empty anyway, so don't generate it
|
|
|
|
%define debug_package %{nil}
|
|
|
|
|
|
|
|
%prep
|
2007-09-30 03:06:57 +00:00
|
|
|
%setup -q -n %{name}-%{version} -b1
|
2008-11-11 03:48:10 +00:00
|
|
|
%patch1 -p1 -b .orig
|
2008-06-18 16:44:34 +00:00
|
|
|
|
2005-05-12 07:37:43 +00:00
|
|
|
%build
|
2008-09-26 07:14:14 +00:00
|
|
|
# hack for building a local test package quickly from a prebuilt tree
|
|
|
|
%if %{package_debugging}
|
|
|
|
pushd ..
|
|
|
|
rm -rf %{name}-%{version}
|
|
|
|
cp -al %{name}-%{version}.built %{name}-%{version}
|
|
|
|
popd
|
|
|
|
exit 0
|
|
|
|
%endif
|
|
|
|
|
2005-05-12 07:37:43 +00:00
|
|
|
%if !%{build_prof}
|
|
|
|
echo "GhcLibWays=" >> mk/build.mk
|
|
|
|
echo "GhcRTSWays=thr debug" >> mk/build.mk
|
|
|
|
%endif
|
|
|
|
|
2008-09-24 07:34:44 +00:00
|
|
|
%if %{build_doc}
|
|
|
|
echo "XMLDocWays = html" >> mk/build.mk
|
|
|
|
echo "HADDOCK_DOCS = YES" >> mk/build.mk
|
|
|
|
%endif
|
|
|
|
|
2008-09-24 08:03:22 +00:00
|
|
|
./configure --prefix=%{_prefix} --exec-prefix=%{_exec_prefix} \
|
|
|
|
--bindir=%{_bindir} --sbindir=%{_sbindir} --sysconfdir=%{_sysconfdir} \
|
|
|
|
--datadir=%{_datadir} --includedir=%{_includedir} --libdir=%{_libdir} \
|
|
|
|
--libexecdir=%{_libexecdir} --localstatedir=%{_localstatedir} \
|
|
|
|
--sharedstatedir=%{_sharedstatedir} --mandir=%{_mandir}
|
2008-09-24 07:34:44 +00:00
|
|
|
|
|
|
|
make %{_smp_mflags}
|
|
|
|
make %{_smp_mflags} -C libraries
|
|
|
|
|
2005-05-12 07:37:43 +00:00
|
|
|
%if %{build_doc}
|
2008-01-07 22:57:23 +00:00
|
|
|
make %{_smp_mflags} html
|
2005-05-12 07:37:43 +00:00
|
|
|
%endif
|
|
|
|
|
|
|
|
%install
|
|
|
|
rm -rf $RPM_BUILD_ROOT
|
|
|
|
|
2008-09-24 07:34:44 +00:00
|
|
|
make DESTDIR=${RPM_BUILD_ROOT} install
|
2008-06-19 03:43:53 +00:00
|
|
|
|
2005-05-12 07:37:43 +00:00
|
|
|
%if %{build_doc}
|
2008-09-24 07:34:44 +00:00
|
|
|
make DESTDIR=${RPM_BUILD_ROOT} install-docs
|
2005-05-12 07:37:43 +00:00
|
|
|
%endif
|
|
|
|
|
2008-09-17 06:00:51 +00:00
|
|
|
# install rpm macros
|
2008-09-24 07:34:44 +00:00
|
|
|
mkdir -p ${RPM_BUILD_ROOT}/%{_sysconfdir}/rpm
|
2008-09-17 07:11:56 +00:00
|
|
|
cp -p %{SOURCE2} ${RPM_BUILD_ROOT}/%{_sysconfdir}/rpm/macros.ghc
|
2008-11-25 02:52:10 +00:00
|
|
|
|
|
|
|
# spec templating
|
|
|
|
# cabal2spec
|
2008-11-25 09:15:17 +00:00
|
|
|
install -m 0755 -p %{SOURCE3} ${RPM_BUILD_ROOT}/%{_bindir}
|
|
|
|
# templates for bin, lib and binlib cabal hackages
|
|
|
|
mkdir -p ${RPM_BUILD_ROOT}/%{_datadir}/ghc
|
|
|
|
cp -p %{SOURCE4} %{SOURCE5} %{SOURCE6} ${RPM_BUILD_ROOT}/%{_datadir}/ghc/
|
2008-11-25 02:52:10 +00:00
|
|
|
|
2005-05-12 07:37:43 +00:00
|
|
|
SRC_TOP=$PWD
|
|
|
|
rm -f rpm-*-filelist rpm-*.files
|
|
|
|
( cd $RPM_BUILD_ROOT
|
2008-10-23 03:00:41 +00:00
|
|
|
find .%{_libdir}/%{name}-%{version} \( -type d -fprintf $SRC_TOP/rpm-dir.files "%%%%dir %%p\n" \) -o \( -type f \( -name '*.p_hi' -o -name '*_p.a' \) -fprint $SRC_TOP/rpm-prof.files \) -o \( -not -name 'package.conf*' -fprint $SRC_TOP/rpm-lib.files \)
|
|
|
|
find .%{_docdir}/%{name}/* -type d ! -name libraries > $SRC_TOP/rpm-doc-dir.files
|
2005-05-12 07:37:43 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
# make paths absolute (filter "./usr" to "/usr")
|
|
|
|
sed -i -e "s|\.%{_prefix}|%{_prefix}|" rpm-*.files
|
|
|
|
|
|
|
|
cat rpm-dir.files rpm-lib.files > rpm-base-filelist
|
|
|
|
%if %{build_prof}
|
|
|
|
cat rpm-dir.files rpm-prof.files > rpm-prof-filelist
|
|
|
|
%endif
|
|
|
|
|
2008-09-24 07:34:44 +00:00
|
|
|
# these are handled as alternatives
|
2008-10-23 03:00:41 +00:00
|
|
|
for i in hsc2hs runhaskell; do
|
|
|
|
if [ -x ${RPM_BUILD_ROOT}%{_bindir}/$i-ghc ]; then
|
|
|
|
rm ${RPM_BUILD_ROOT}%{_bindir}/$i
|
|
|
|
else
|
|
|
|
mv ${RPM_BUILD_ROOT}%{_bindir}/$i{,-ghc}
|
|
|
|
fi
|
|
|
|
done
|
2006-09-25 10:05:59 +00:00
|
|
|
|
2005-05-12 07:37:43 +00:00
|
|
|
%clean
|
|
|
|
rm -rf $RPM_BUILD_ROOT
|
|
|
|
|
|
|
|
%post
|
2008-10-13 05:20:47 +00:00
|
|
|
semanage fcontext -a -t unconfined_execmem_exec_t %{_libdir}/ghc-%{version}/ghc >/dev/null 2>&1 || :
|
2008-10-23 03:00:41 +00:00
|
|
|
restorecon %{_libdir}/ghc-%{version}/ghc
|
2008-10-13 05:20:47 +00:00
|
|
|
|
2007-09-30 03:06:57 +00:00
|
|
|
# Alas, GHC, Hugs, and nhc all come with different set of tools in
|
|
|
|
# addition to a runFOO:
|
|
|
|
#
|
|
|
|
# * GHC: hsc2hs
|
|
|
|
# * Hugs: hsc2hs, cpphs
|
|
|
|
# * nhc: cpphs
|
|
|
|
#
|
|
|
|
# Therefore it is currently not possible to use --slave below to form
|
|
|
|
# link groups under a single name 'runhaskell'. Either these tools
|
|
|
|
# should be disentangled from the Haskell implementations, or all
|
|
|
|
# implementations should have the same set of tools. *sigh*
|
|
|
|
|
|
|
|
update-alternatives --install %{_bindir}/runhaskell runhaskell \
|
|
|
|
%{_bindir}/runghc 500
|
|
|
|
update-alternatives --install %{_bindir}/hsc2hs hsc2hs \
|
|
|
|
%{_bindir}/hsc2hs-ghc 500
|
2006-09-25 10:05:59 +00:00
|
|
|
|
2008-11-11 03:48:10 +00:00
|
|
|
# posttrans to make sure any old documentation has been removed first
|
|
|
|
%posttrans doc
|
2008-10-23 03:00:41 +00:00
|
|
|
( cd %{_docdir}/ghc/libraries && ./gen_contents_index ) || :
|
2008-10-14 18:55:27 +00:00
|
|
|
|
2007-09-30 03:06:57 +00:00
|
|
|
%preun
|
2008-11-11 03:48:10 +00:00
|
|
|
if [ "$1" = 0 ]; then
|
2007-09-30 03:06:57 +00:00
|
|
|
update-alternatives --remove runhaskell %{_bindir}/runghc
|
|
|
|
update-alternatives --remove hsc2hs %{_bindir}/hsc2hs-ghc
|
|
|
|
fi
|
|
|
|
|
2008-06-18 19:49:45 +00:00
|
|
|
%files -f rpm-base-filelist
|
2005-05-12 07:37:43 +00:00
|
|
|
%defattr(-,root,root,-)
|
2006-11-03 05:00:12 +00:00
|
|
|
%doc ANNOUNCE HACKING LICENSE README
|
2008-06-18 19:49:45 +00:00
|
|
|
%doc %{_mandir}/man1/ghc.*
|
|
|
|
%{_bindir}/*
|
2008-09-17 07:11:56 +00:00
|
|
|
%{_sysconfdir}/rpm/macros.ghc
|
2005-05-12 07:37:43 +00:00
|
|
|
%config(noreplace) %{_libdir}/ghc-%{version}/package.conf
|
2008-11-25 02:52:10 +00:00
|
|
|
%{_datadir}/ghc
|
2005-05-12 07:37:43 +00:00
|
|
|
|
|
|
|
%if %{build_prof}
|
2008-06-18 19:49:45 +00:00
|
|
|
%files prof -f rpm-prof-filelist
|
2005-05-12 07:37:43 +00:00
|
|
|
%defattr(-,root,root,-)
|
|
|
|
%endif
|
|
|
|
|
|
|
|
%if %{build_doc}
|
2008-10-23 03:00:41 +00:00
|
|
|
%files doc -f rpm-doc-dir.files
|
2005-05-12 07:37:43 +00:00
|
|
|
%defattr(-,root,root,-)
|
2008-10-23 03:00:41 +00:00
|
|
|
%dir %{_docdir}/%{name}
|
2008-10-23 06:40:25 +00:00
|
|
|
%{_docdir}/%{name}/LICENSE
|
2008-10-23 03:00:41 +00:00
|
|
|
%{_docdir}/%{name}/index.html
|
|
|
|
%{_docdir}/%{name}/libraries/gen_contents_index
|
2008-11-05 21:58:34 +00:00
|
|
|
%{_docdir}/%{name}/libraries/prologue.txt
|
2008-10-23 03:00:41 +00:00
|
|
|
%dir %{_docdir}/%{name}/libraries
|
2008-10-14 18:55:27 +00:00
|
|
|
%ghost %{_docdir}/%{name}/libraries/doc-index.html
|
|
|
|
%ghost %{_docdir}/%{name}/libraries/haddock.css
|
|
|
|
%ghost %{_docdir}/%{name}/libraries/haddock-util.js
|
|
|
|
%ghost %{_docdir}/%{name}/libraries/haskell_icon.gif
|
|
|
|
%ghost %{_docdir}/%{name}/libraries/index.html
|
|
|
|
%ghost %{_docdir}/%{name}/libraries/minus.gif
|
|
|
|
%ghost %{_docdir}/%{name}/libraries/plus.gif
|
2005-05-12 07:37:43 +00:00
|
|
|
%endif
|
|
|
|
|
|
|
|
%changelog
|
2008-11-25 02:52:10 +00:00
|
|
|
* Tue Nov 25 2008 Jens Petersen <petersen@redhat.com> - 6.10.1-5
|
2008-11-25 09:15:17 +00:00
|
|
|
- add cabal2spec and template files for easy cabal hackage packaging
|
2008-11-25 02:52:10 +00:00
|
|
|
- simplify script macros: make ghc_preinst_script and ghc_postun_script no-ops
|
|
|
|
and ghc_preun_script only unregister for uninstall
|
|
|
|
|
2008-11-11 03:48:10 +00:00
|
|
|
* Tue Nov 11 2008 Jens Petersen <petersen@redhat.com> - 6.10.1-4
|
|
|
|
- fix broken urls to haddock docs created by gen_contents_index script
|
|
|
|
- avoid haddock errors when upgrading by making doc post script posttrans
|
|
|
|
|
2008-11-05 21:58:34 +00:00
|
|
|
* Wed Nov 05 2008 Bryan O'Sullivan <bos@serpentine.com> - 6.10.1-3
|
|
|
|
- libraries/prologue.txt should not have been ghosted
|
|
|
|
|
2008-11-05 05:32:13 +00:00
|
|
|
* Tue Nov 04 2008 Bryan O'Sullivan <bos@serpentine.com> - 6.10.1-2
|
|
|
|
- Fix a minor packaging glitch
|
|
|
|
|
2008-11-05 04:32:03 +00:00
|
|
|
* Tue Nov 04 2008 Bryan O'Sullivan <bos@serpentine.com> - 6.10.1-1
|
|
|
|
- Update to 6.10.1 in observance of President Obama
|
|
|
|
|
2008-10-23 06:40:25 +00:00
|
|
|
* Thu Oct 23 2008 Jens Petersen <petersen@redhat.com> - 6.10.0.20081007-9
|
|
|
|
- remove redundant --haddockdir from cabal_configure
|
|
|
|
- actually ghc-pkg no longer seems to create package.conf.old backups
|
|
|
|
- include LICENSE in doc
|
|
|
|
|
2008-10-23 03:42:59 +00:00
|
|
|
* Thu Oct 23 2008 Jens Petersen <petersen@redhat.com> - 6.10.0.20081007-8
|
|
|
|
- need to create ghost package.conf.old for ghc-6.10
|
|
|
|
|
2008-10-23 03:00:41 +00:00
|
|
|
* Thu Oct 23 2008 Jens Petersen <petersen@redhat.com> - 6.10.0.20081007-7
|
|
|
|
- use gen_contents_index to re-index haddock
|
|
|
|
- add %%pkg_docdir to cabal_configure
|
|
|
|
- requires(post) ghc for haddock for doc
|
|
|
|
- improve doc file lists
|
|
|
|
- no longer need to create ghost package.conf.old
|
|
|
|
- remove or rename alternatives files more consistently
|
|
|
|
|
2008-10-15 03:42:23 +00:00
|
|
|
* Tue Oct 14 2008 Bryan O'Sullivan <bos@serpentine.com> - 6.10.0.20081007-6
|
|
|
|
- Update macros to install html and haddock bits in the right places
|
|
|
|
|
2008-10-14 21:32:36 +00:00
|
|
|
* Tue Oct 14 2008 Bryan O'Sullivan <bos@serpentine.com> - 6.10.0.20081007-5
|
|
|
|
- Don't use a macro to update the docs for the main doc package
|
|
|
|
|
|
|
|
* Tue Oct 14 2008 Bryan O'Sullivan <bos@serpentine.com> - 6.10.0.20081007-4
|
2008-10-14 18:55:27 +00:00
|
|
|
- Add ghc_haddock_reindex macro
|
|
|
|
- Generate haddock index after installing ghc-doc package
|
|
|
|
|
2008-10-13 05:20:47 +00:00
|
|
|
* Mon Oct 13 2008 Jens Petersen <petersen@redhat.com> - 6.10.0.20081007-3
|
|
|
|
- provide haddock = 2.2.2
|
|
|
|
- add selinux file context for unconfined_execmem following darcs package
|
|
|
|
- post requires policycoreutils
|
|
|
|
|
2008-10-13 03:05:05 +00:00
|
|
|
* Sun Oct 12 2008 Bryan O'Sullivan <bos@serpentine.com> - 6.10.0.20081007-2.fc10
|
|
|
|
- Use libedit in preference to readline, for BSD license consistency
|
|
|
|
- With haddock bundled now, obsolete standalone versions (but not haddock09)
|
|
|
|
- Drop obsolete freeglut-devel, openal-devel, and haddock09 dependencies
|
|
|
|
|
|
|
|
* Sun Oct 12 2008 Bryan O'Sullivan <bos@serpentine.com> - 6.10.0.20081007-1.fc10
|
|
|
|
- Update to 6.10.1 release candidate 1
|
|
|
|
|
|
|
|
* Wed Oct 1 2008 Bryan O'Sullivan <bos@serpentine.com> - 6.10.0.20080921-1.fc10
|
|
|
|
- Drop unneeded haddock patch
|
|
|
|
- Rename hsc2hs to hsc2hs-ghc so the alternatives symlink to it will work
|
2008-10-01 22:26:01 +00:00
|
|
|
|
2008-10-23 03:00:41 +00:00
|
|
|
* Wed Sep 24 2008 Jens Petersen <petersen@redhat.com> - 6.8.3-5
|
2008-09-24 07:36:11 +00:00
|
|
|
- bring back including haddock-generated lib docs, now under docdir/ghc
|
2008-09-24 07:34:44 +00:00
|
|
|
- fix macros.ghc filepath (#460304)
|
|
|
|
- spec file cleanups:
|
|
|
|
- fix the source urls back
|
|
|
|
- drop requires chkconfig
|
|
|
|
- do not override __spec_install_post
|
|
|
|
- setup docs building in build.mk
|
|
|
|
- no longer need to remove network/include/Typeable.h
|
|
|
|
- install binaries under libdir not libexec
|
2008-10-23 03:00:41 +00:00
|
|
|
- remove hsc2hs and runhaskell binaries since they are alternatives
|
2008-09-24 07:34:44 +00:00
|
|
|
|
2008-10-23 03:00:41 +00:00
|
|
|
* Wed Sep 17 2008 Jens Petersen <petersen@redhat.com> - 6.8.3-4
|
2008-09-17 06:00:51 +00:00
|
|
|
- add macros.ghc for new Haskell Packaging Guidelines (#460304)
|
|
|
|
|
2008-06-19 03:43:53 +00:00
|
|
|
* Wed Jun 18 2008 Bryan O'Sullivan <bos@serpentine.com> - 6.8.3-3
|
|
|
|
- Add symlinks from _libdir, where ghc looks, to _libexecdir
|
|
|
|
- Patch libraries/gen_contents_index to use haddock-0.9
|
|
|
|
|
2008-06-19 02:41:10 +00:00
|
|
|
* Wed Jun 18 2008 Bryan O'Sullivan <bos@serpentine.com> - 6.8.3-2
|
|
|
|
- Remove unnecessary dependency on alex
|
|
|
|
|
2008-06-18 19:49:45 +00:00
|
|
|
* Wed Jun 18 2008 Bryan O'Sullivan <bos@serpentine.com> - 6.8.3-1
|
|
|
|
- Upgrade to 6.8.3
|
|
|
|
- Drop the ghc682-style naming scheme, obsolete those packages
|
|
|
|
- Manually strip binaries
|
|
|
|
|
2008-04-08 06:46:15 +00:00
|
|
|
* Tue Apr 8 2008 Jens Petersen <petersen@redhat.com> - 6.8.2-10
|
|
|
|
- another rebuild attempt
|
2008-02-18 21:23:56 +00:00
|
|
|
|
2008-02-14 07:36:23 +00:00
|
|
|
* Thu Feb 14 2008 Jens Petersen <petersen@redhat.com> - 6.8.2-9
|
2008-02-14 08:31:32 +00:00
|
|
|
- remove unrecognized --docdir and --htmldir from configure
|
|
|
|
- drop old buildrequires on libX11-devel and libXt-devel
|
2008-02-14 07:36:23 +00:00
|
|
|
- rebuild with gcc43
|
|
|
|
|
2008-01-22 01:10:50 +00:00
|
|
|
* Sun Jan 06 2008 Bryan O'Sullivan <bos@serpentine.com> - 6.8.2-7
|
|
|
|
- More attempts to fix docdir
|
|
|
|
|
|
|
|
* Sun Jan 06 2008 Bryan O'Sullivan <bos@serpentine.com> - 6.8.2-6
|
|
|
|
- Fix docdir
|
2008-01-07 22:57:23 +00:00
|
|
|
|
2007-12-12 22:36:10 +00:00
|
|
|
* Tue Dec 12 2007 Bryan O'Sullivan <bos@serpentine.com> - 6.8.2-1
|
|
|
|
- Update to 6.8.2
|
|
|
|
|
2007-11-23 18:15:15 +00:00
|
|
|
* Fri Nov 23 2007 Bryan O'Sullivan <bos@serpentine.com> - 6.8.1-2
|
|
|
|
- Exclude alpha
|
|
|
|
|
2008-01-07 22:57:23 +00:00
|
|
|
* Thu Nov 8 2007 Bryan O'Sullivan <bos@serpentine.com> - 6.8.1-2
|
|
|
|
- Drop bit-rotted attempts at making package relocatable
|
|
|
|
|
2007-11-06 00:35:13 +00:00
|
|
|
* Sun Nov 4 2007 Michel Salim <michel.sylvan@gmail.com> - 6.8.1-1
|
|
|
|
- Update to 6.8.1
|
|
|
|
|
2007-09-30 03:53:49 +00:00
|
|
|
* Sat Sep 29 2007 Bryan O'Sullivan <bos@serpentine.com> - 6.8.0.20070928-2
|
|
|
|
- add happy to BuildRequires
|
|
|
|
|
2007-09-30 03:06:57 +00:00
|
|
|
* Sat Sep 29 2007 Bryan O'Sullivan <bos@serpentine.com> - 6.8.0.20070928-1
|
|
|
|
- prepare for GHC 6.8.1 by building a release candidate snapshot
|
|
|
|
|
2007-05-10 19:52:43 +00:00
|
|
|
* Thu May 10 2007 Bryan O'Sullivan <bos@serpentine.com> - 6.6.1-3
|
|
|
|
- install man page for ghc
|
|
|
|
|
2007-05-10 17:53:17 +00:00
|
|
|
* Thu May 10 2007 Bryan O'Sullivan <bos@serpentine.com> - 6.6.1-2
|
|
|
|
- exclude ppc64 for now, due to lack of time to bootstrap
|
|
|
|
|
2007-05-10 17:09:49 +00:00
|
|
|
* Wed May 9 2007 Bryan O'Sullivan <bos@serpentine.com> - 6.6.1-1
|
|
|
|
- update to 6.6.1 release
|
|
|
|
|
2007-01-21 22:42:51 +00:00
|
|
|
* Mon Jan 22 2007 Jens Petersen <petersen@redhat.com> - 6.6-2
|
|
|
|
- remove truncated duplicate Typeable.h header in network package
|
|
|
|
(Bryan O'Sullivan, #222865)
|
|
|
|
|
2006-11-03 05:00:12 +00:00
|
|
|
* Fri Nov 3 2006 Jens Petersen <petersen@redhat.com> - 6.6-1
|
|
|
|
- update to 6.6 release
|
|
|
|
- buildrequire haddock >= 0.8
|
|
|
|
- fix summary of ghcver package (Michel Salim, #209574)
|
|
|
|
|
2006-09-28 01:44:23 +00:00
|
|
|
* Thu Sep 28 2006 Jens Petersen <petersen@redhat.com> - 6.4.2-4
|
|
|
|
- turn on docs generation again
|
|
|
|
|
2006-09-25 10:05:59 +00:00
|
|
|
* Mon Sep 25 2006 Jens Petersen <petersen@redhat.com> - 6.4.2-3.fc6
|
|
|
|
- ghost package.conf.old (Gérard Milmeister)
|
|
|
|
- set unconfined_execmem_exec_t context on executables with ghc rts (#195821)
|
2006-09-25 13:28:47 +00:00
|
|
|
- turn off building docs until haddock is back
|
2006-09-25 10:05:59 +00:00
|
|
|
|
2006-04-29 07:33:52 +00:00
|
|
|
* Sat Apr 29 2006 Jens Petersen <petersen@redhat.com> - 6.4.2-2.fc6
|
|
|
|
- buildrequire libXt-devel so that the X11 package and deps get built
|
|
|
|
(Garrett Mitchener, #190201)
|
|
|
|
|
|
|
|
* Thu Apr 20 2006 Jens Petersen <petersen@redhat.com> - 6.4.2-1.fc6
|
2006-04-21 07:59:27 +00:00
|
|
|
- update to 6.4.2 release
|
|
|
|
|
|
|
|
* Thu Mar 2 2006 Jens Petersen <petersen@redhat.com> - 6.4.1-3.fc5
|
2006-03-02 08:40:15 +00:00
|
|
|
- buildrequire libX11-devel instead of xorg-x11-devel (Kevin Fenzi, #181024)
|
|
|
|
- make ghc-doc require ghc (Michel Salim, #180449)
|
|
|
|
|
2006-04-21 07:59:27 +00:00
|
|
|
* Tue Oct 11 2005 Jens Petersen <petersen@redhat.com> - 6.4.1-2.fc5
|
2005-10-03 02:46:03 +00:00
|
|
|
- turn on build_doc since haddock is now in Extras
|
2005-10-11 03:05:07 +00:00
|
|
|
- no longer specify ghc version to build with (Ville Skyttä, #170176)
|
2005-10-03 02:46:03 +00:00
|
|
|
|
2006-04-21 07:59:27 +00:00
|
|
|
* Tue Sep 20 2005 Jens Petersen <petersen@redhat.com> - 6.4.1-1.fc5
|
2005-09-20 23:37:16 +00:00
|
|
|
- 6.4.1 release
|
|
|
|
- the following patches are now upstream: ghc-6.4-powerpc.patch,
|
|
|
|
rts-GCCompact.h-x86_64.patch, ghc-6.4-dsforeign-x86_64-1097471.patch,
|
|
|
|
ghc-6.4-rts-adjustor-x86_64-1097471.patch
|
|
|
|
- builds with gcc4 so drop %%_with_gcc32
|
|
|
|
- x86_64 build restrictions (no ghci and split objects) no longer apply
|
|
|
|
|
2005-05-31 11:04:47 +00:00
|
|
|
* Tue May 31 2005 Jens Petersen <petersen@redhat.com>
|
|
|
|
- add %%dist to release
|
|
|
|
|
2005-05-12 07:37:43 +00:00
|
|
|
* Thu May 12 2005 Jens Petersen <petersen@redhat.com> - 6.4-8
|
|
|
|
- initial import into Fedora Extras
|
|
|
|
|
|
|
|
* Thu May 12 2005 Jens Petersen <petersen@haskell.org>
|
|
|
|
- add build_prof and build_doc switches for -doc and -prof subpackages
|
|
|
|
- add _with_gcc32 switch since ghc-6.4 doesn't build with gcc-4.0
|
|
|
|
|
|
|
|
* Wed May 11 2005 Jens Petersen <petersen@haskell.org> - 6.4-7
|
|
|
|
- make package relocatable (ghc#1084122)
|
|
|
|
- add post install scripts to replace prefix in driver scripts
|
|
|
|
- buildrequire libxslt and docbook-style-xsl instead of docbook-utils and flex
|
|
|
|
|
|
|
|
* Fri May 6 2005 Jens Petersen <petersen@haskell.org> - 6.4-6
|
|
|
|
- add ghc-6.4-dsforeign-x86_64-1097471.patch and
|
|
|
|
ghc-6.4-rts-adjustor-x86_64-1097471.patch from trunk to hopefully fix
|
|
|
|
ffi support on x86_64 (Simon Marlow, ghc#1097471)
|
|
|
|
- use XMLDocWays instead of SGMLDocWays to build documentation fully
|
|
|
|
|
|
|
|
* Mon May 2 2005 Jens Petersen <petersen@haskell.org> - 6.4-5
|
|
|
|
- add rts-GCCompact.h-x86_64.patch to fix GC issue on x86_64 (Simon Marlow)
|
|
|
|
|
|
|
|
* Thu Mar 17 2005 Jens Petersen <petersen@haskell.org> - 6.4-4
|
|
|
|
- add ghc-6.4-powerpc.patch (Ryan Lortie)
|
|
|
|
- disable building interpreter rather than install and delete on x86_64
|
|
|
|
|
|
|
|
* Wed Mar 16 2005 Jens Petersen <petersen@haskell.org> - 6.4-3
|
|
|
|
- make ghc require ghcver of same ver-rel
|
|
|
|
- on x86_64 remove ghci for now since it doesn't work and all .o files
|
|
|
|
|
|
|
|
* Tue Mar 15 2005 Jens Petersen <petersen@haskell.org> - 6.4-2
|
|
|
|
- ghc requires ghcver (Amanda Clare)
|
|
|
|
|
|
|
|
* Sat Mar 12 2005 Jens Petersen <petersen@haskell.org> - 6.4-1
|
|
|
|
- 6.4 release
|
|
|
|
- x86_64 build no longer unregisterised
|
|
|
|
- use sed instead of perl to tidy filelists
|
|
|
|
- buildrequire ghc64 instead of ghc-6.4
|
|
|
|
- no epoch for ghc64-prof's ghc64 requirement
|
|
|
|
- install docs directly in docdir
|
|
|
|
|
|
|
|
* Fri Jan 21 2005 Jens Petersen <petersen@haskell.org> - 6.2.2-2
|
|
|
|
- add x86_64 port
|
|
|
|
- build unregistered and without splitobjs
|
|
|
|
- specify libdir to configure and install
|
|
|
|
- rename ghc-prof to ghcXYZ-prof, which obsoletes ghc-prof
|
|
|
|
|
|
|
|
* Mon Dec 6 2004 Jens Petersen <petersen@haskell.org> - 6.2.2-1
|
|
|
|
- move ghc requires to ghcXYZ
|
|
|
|
|
|
|
|
* Wed Nov 24 2004 Jens Petersen <petersen@haskell.org> - 6.2.2-0.fdr.1
|
|
|
|
- ghc622
|
|
|
|
- provide ghc = %%version
|
|
|
|
- require gcc, gmp-devel and readline-devel
|
|
|
|
|
|
|
|
* Fri Oct 15 2004 Gerard Milmeister <gemi@bluewin.ch> - 6.2.2-0.fdr.1
|
|
|
|
- New Version 6.2.2
|
|
|
|
|
|
|
|
* Mon Mar 22 2004 Gerard Milmeister <gemi@bluewin.ch> - 6.2.1-0.fdr.1
|
|
|
|
- New Version 6.2.1
|
|
|
|
|
|
|
|
* Tue Dec 16 2003 Gerard Milmeister <gemi@bluewin.ch> - 6.2-0.fdr.1
|
|
|
|
- New Version 6.2
|
|
|
|
|
|
|
|
* Tue Dec 16 2003 Gerard Milmeister <gemi@bluewin.ch> - 6.0.1-0.fdr.3
|
|
|
|
- A few minor specfile tweaks
|
|
|
|
|
|
|
|
* Mon Dec 15 2003 Gerard Milmeister <gemi@bluewin.ch> - 6.0.1-0.fdr.2
|
|
|
|
- Different file list generation
|
|
|
|
|
|
|
|
* Mon Oct 20 2003 Gerard Milmeister <gemi@bluewin.ch> - 6.0.1-0.fdr.1
|
|
|
|
- First Fedora release
|
|
|
|
- Added generated html docs, so that haddock is not needed
|
|
|
|
|
|
|
|
* Wed Sep 26 2001 Manuel Chakravarty
|
|
|
|
- small changes for 5.04
|
|
|
|
|
|
|
|
* Wed Sep 26 2001 Manuel Chakravarty
|
|
|
|
- split documentation off into a separate package
|
|
|
|
- adapt to new docbook setup in RH7.1
|
|
|
|
|
|
|
|
* Mon Apr 16 2001 Manuel Chakravarty
|
|
|
|
- revised for 5.00
|
|
|
|
- also runs autoconf automagically if no ./configure found
|
|
|
|
|
|
|
|
* Thu Jun 22 2000 Sven Panne
|
|
|
|
- removed explicit usage of hslibs/docs, it belongs to ghc/docs/set
|
|
|
|
|
|
|
|
* Sun Apr 23 2000 Manuel Chakravarty
|
|
|
|
- revised for ghc 4.07; added suggestions from Pixel <pixel@mandrakesoft.com>
|
|
|
|
- added profiling package
|
|
|
|
|
|
|
|
* Tue Dec 7 1999 Manuel Chakravarty
|
|
|
|
- version for use from CVS
|
|
|
|
|
|
|
|
* Thu Sep 16 1999 Manuel Chakravarty
|
|
|
|
- modified for GHC 4.04, patchlevel 1 (no more 62 tuple stuff); minimises use
|
|
|
|
of patch files - instead emits a build.mk on-the-fly
|
|
|
|
|
|
|
|
* Sat Jul 31 1999 Manuel Chakravarty
|
|
|
|
- modified for GHC 4.04
|
|
|
|
|
|
|
|
* Wed Jun 30 1999 Manuel Chakravarty
|
|
|
|
- some more improvements from vbzoli
|
|
|
|
|
|
|
|
* Fri Feb 26 1999 Manuel Chakravarty
|
|
|
|
- modified for GHC 4.02
|
|
|
|
|
|
|
|
* Thu Dec 24 1998 Zoltan Vorosbaranyi
|
|
|
|
- added BuildRoot
|
|
|
|
- files located in /usr/local/bin, /usr/local/lib moved to /usr/bin, /usr/lib
|
|
|
|
|
|
|
|
* Tue Jul 28 1998 Manuel Chakravarty
|
|
|
|
- original version
|