2012-07-15 07:28:54 +00:00
|
|
|
# https://fedoraproject.org/wiki/Packaging:Haskell
|
|
|
|
|
2013-06-14 09:46:35 +00:00
|
|
|
%global pkg_name Agda
|
2012-07-15 07:28:54 +00:00
|
|
|
|
2013-06-14 09:46:35 +00:00
|
|
|
Name: %{pkg_name}
|
2013-10-31 09:29:45 +00:00
|
|
|
Version: 2.3.2.2
|
2014-08-15 18:10:09 +00:00
|
|
|
Release: 5%{?dist}
|
2013-06-14 09:46:35 +00:00
|
|
|
Summary: A dependently typed functional programming language and proof assistant
|
2012-07-15 07:28:54 +00:00
|
|
|
|
2013-06-14 09:46:35 +00:00
|
|
|
License: MIT and BSD
|
|
|
|
URL: http://hackage.haskell.org/package/%{name}
|
|
|
|
Source0: http://hackage.haskell.org/packages/archive/%{name}/%{version}/%{name}-%{version}.tar.gz
|
|
|
|
Source1: agda-mode-init.el
|
2012-11-17 08:14:01 +00:00
|
|
|
|
2012-07-15 07:28:54 +00:00
|
|
|
BuildRequires: ghc-Cabal-devel
|
|
|
|
BuildRequires: ghc-rpm-macros
|
2013-06-14 09:46:35 +00:00
|
|
|
# Begin cabal-rpm deps:
|
2013-10-31 09:29:45 +00:00
|
|
|
BuildRequires: alex
|
|
|
|
BuildRequires: chrpath
|
2013-06-14 09:46:35 +00:00
|
|
|
BuildRequires: ghc-QuickCheck-devel
|
|
|
|
BuildRequires: ghc-array-devel
|
|
|
|
BuildRequires: ghc-binary-devel
|
|
|
|
BuildRequires: ghc-bytestring-devel
|
|
|
|
BuildRequires: ghc-containers-devel
|
|
|
|
BuildRequires: ghc-deepseq-devel
|
|
|
|
BuildRequires: ghc-directory-devel
|
|
|
|
BuildRequires: ghc-filepath-devel
|
|
|
|
BuildRequires: ghc-geniplate-devel
|
|
|
|
BuildRequires: ghc-hashable-devel
|
|
|
|
BuildRequires: ghc-hashtables-devel
|
|
|
|
BuildRequires: ghc-haskeline-devel
|
|
|
|
BuildRequires: ghc-haskell-src-exts-devel
|
|
|
|
BuildRequires: ghc-mtl-devel
|
|
|
|
BuildRequires: ghc-old-time-devel
|
|
|
|
BuildRequires: ghc-parallel-devel
|
|
|
|
BuildRequires: ghc-pretty-devel
|
|
|
|
BuildRequires: ghc-process-devel
|
|
|
|
BuildRequires: ghc-text-devel
|
|
|
|
BuildRequires: ghc-unordered-containers-devel
|
|
|
|
BuildRequires: ghc-xhtml-devel
|
|
|
|
BuildRequires: ghc-zlib-devel
|
|
|
|
BuildRequires: happy
|
|
|
|
# End cabal-rpm deps
|
2014-08-28 07:21:49 +00:00
|
|
|
BuildRequires: emacs(bin)
|
2014-01-22 01:38:31 +00:00
|
|
|
# geniplate uses template-haskell
|
|
|
|
ExclusiveArch: %{ghc_arches_with_ghci}
|
2014-04-22 01:40:31 +00:00
|
|
|
# bug 991929
|
2014-08-16 15:15:05 +00:00
|
|
|
ExcludeArch: %{arm}
|
|
|
|
|
2013-06-14 09:46:35 +00:00
|
|
|
Requires: ghc-%{name}-devel = %{version}-%{release}
|
|
|
|
Requires: emacs-agda = %{version}-%{release}
|
2012-07-15 07:28:54 +00:00
|
|
|
|
|
|
|
%description
|
2013-06-14 09:46:35 +00:00
|
|
|
Agda is a dependently typed functional programming language: it has
|
|
|
|
inductive families, which are similar to Haskell's GADTs, but they can
|
|
|
|
be indexed by values and not just types. It also has parameterized
|
|
|
|
modules, mixfix operators, Unicode characters, and an interactive
|
|
|
|
Emacs interface (the type checker can assist in the development of your code).
|
|
|
|
|
|
|
|
Agda is also a proof assistant: It is an interactive system for writing and
|
|
|
|
checking proofs. Agda is based on intuitionistic type theory,
|
|
|
|
a foundational system for constructive mathematics developed by
|
|
|
|
the Swedish logician Per Martin-Löf. It has many similarities with other
|
|
|
|
proof assistants based on dependent types, such as Coq, Epigram and NuPRL.
|
|
|
|
|
|
|
|
|
|
|
|
%package -n ghc-%{name}
|
|
|
|
Summary: Haskell %{name} library
|
|
|
|
|
|
|
|
%description -n ghc-%{name}
|
|
|
|
This package provides the Haskell %{name} shared library.
|
|
|
|
|
|
|
|
|
|
|
|
%package -n ghc-%{name}-devel
|
|
|
|
Summary: Haskell %{name} library development files
|
2013-10-31 09:29:45 +00:00
|
|
|
Provides: ghc-%{name}-static = %{version}-%{release}
|
2013-06-14 09:46:35 +00:00
|
|
|
Requires: ghc-compiler = %{ghc_version}
|
|
|
|
Requires(post): ghc-compiler = %{ghc_version}
|
|
|
|
Requires(postun): ghc-compiler = %{ghc_version}
|
2013-10-31 09:29:45 +00:00
|
|
|
Requires: ghc-%{name}%{?_isa} = %{version}-%{release}
|
2013-06-14 09:46:35 +00:00
|
|
|
Obsoletes: Agda < 2.3.1
|
|
|
|
|
|
|
|
%description -n ghc-%{name}-devel
|
|
|
|
This package provides the Haskell %{name} library development files.
|
|
|
|
|
|
|
|
|
|
|
|
%package -n emacs-agda
|
|
|
|
Summary: Emacs mode for the Agda language
|
|
|
|
Group: Applications/Editors
|
|
|
|
License: MIT
|
|
|
|
Requires: ghc-%{pkg_name}-devel = %{version}-%{release}
|
|
|
|
Requires: emacs(bin) >= %{_emacs_version}
|
|
|
|
|
|
|
|
%description -n emacs-agda
|
|
|
|
Agda is a dependently typed functional programming language: it has
|
|
|
|
inductive families, which are similar to Haskell's GADTs, but they can
|
|
|
|
be indexed by values and not just types. It also has parameterized
|
|
|
|
modules, mixfix operators, Unicode characters, and an interactive
|
|
|
|
Emacs interface (the type checker can assist in the development of your code).
|
|
|
|
|
|
|
|
Agda is also a proof assistant: It is an interactive system for writing and
|
|
|
|
checking proofs. Agda is based on intuitionistic type theory,
|
|
|
|
a foundational system for constructive mathematics developed by
|
|
|
|
the Swedish logician Per Martin-Löf. It has many similarities with other
|
|
|
|
proof assistants based on dependent types, such as Coq, Epigram and NuPRL.
|
2012-07-15 07:28:54 +00:00
|
|
|
|
2013-06-14 09:46:35 +00:00
|
|
|
This is the interactive Emacs mode for Agda.
|
|
|
|
|
|
|
|
|
|
|
|
%package -n emacs-agda-el
|
|
|
|
Summary: Elisp source files for Agda emacs mode
|
|
|
|
Group: Applications/Editors
|
|
|
|
License: MIT
|
|
|
|
Requires: emacs-agda = %{version}-%{release}
|
|
|
|
|
|
|
|
%description -n emacs-agda-el
|
|
|
|
Agda is a dependently typed functional programming language: it has
|
|
|
|
inductive families, which are similar to Haskell's GADTs, but they can
|
|
|
|
be indexed by values and not just types. It also has parameterized
|
|
|
|
modules, mixfix operators, Unicode characters, and an interactive
|
|
|
|
Emacs interface (the type checker can assist in the development of your code).
|
|
|
|
|
|
|
|
Agda is also a proof assistant: It is an interactive system for writing and
|
|
|
|
checking proofs. Agda is based on intuitionistic type theory,
|
|
|
|
a foundational system for constructive mathematics developed by
|
|
|
|
the Swedish logician Per Martin-Löf. It has many similarities with other
|
|
|
|
proof assistants based on dependent types, such as Coq, Epigram and NuPRL.
|
2012-07-15 07:30:33 +00:00
|
|
|
|
2012-07-15 07:28:54 +00:00
|
|
|
|
|
|
|
%prep
|
2013-06-14 09:46:35 +00:00
|
|
|
%setup -q
|
|
|
|
|
|
|
|
# tweak the Agda version in the emacs mode
|
|
|
|
if ! grep -q \"%{version}\" src/data/emacs-mode/agda2-mode.el; then
|
|
|
|
echo "agda2-version in src/data/emacs-mode/agda2-mode.el out of sync!"
|
|
|
|
exit 1
|
|
|
|
fi
|
2012-07-15 07:28:54 +00:00
|
|
|
|
|
|
|
|
|
|
|
%build
|
2013-08-29 02:02:57 +00:00
|
|
|
%define elisp_files eri.el agda-input.el annotation.el agda2-highlight.el agda2-abbrevs.el agda2-queue.el agda2-mode.el agda2.el
|
2013-06-14 09:46:35 +00:00
|
|
|
|
2013-08-29 02:02:57 +00:00
|
|
|
# check no missing new elisp files
|
|
|
|
cd src/data/emacs-mode
|
|
|
|
for i in *.el; do
|
|
|
|
if ! echo %{elisp_files} | grep -q $i; then
|
|
|
|
echo "$i missing from %%elisp_files - aborting!"
|
|
|
|
exit 1
|
|
|
|
fi
|
|
|
|
done
|
|
|
|
cd -
|
|
|
|
|
|
|
|
%ghc_lib_build
|
2013-06-14 09:46:35 +00:00
|
|
|
|
|
|
|
# el6 macro does not add "." to load-path
|
|
|
|
%if %{defined el6}
|
|
|
|
%define _emacs_bytecompile /usr/bin/emacs -batch --no-init-file --no-site-file --eval '(progn (setq load-path (cons "." load-path)))' -f batch-byte-compile
|
|
|
|
%endif
|
|
|
|
|
|
|
|
cd src/data/emacs-mode
|
|
|
|
for i in %elisp_files; do
|
|
|
|
%{_emacs_bytecompile} $i
|
|
|
|
done
|
|
|
|
cd -
|
2012-07-15 07:28:54 +00:00
|
|
|
|
|
|
|
|
|
|
|
%install
|
2013-06-14 09:46:35 +00:00
|
|
|
%ghc_lib_install
|
|
|
|
|
|
|
|
%ghc_fix_dynamic_rpath agda
|
|
|
|
|
|
|
|
mkdir -p %{buildroot}%{_emacs_sitelispdir}/agda
|
|
|
|
for i in src/data/emacs-mode/*; do
|
|
|
|
install -p -m 0644 $i %{buildroot}%{_emacs_sitelispdir}/agda
|
|
|
|
done
|
|
|
|
|
|
|
|
mkdir -p %{buildroot}%{_emacs_sitestartdir}
|
|
|
|
install -p -m 0644 %SOURCE1 %{buildroot}%{_emacs_sitestartdir}
|
|
|
|
|
|
|
|
rm %{buildroot}%{_bindir}/agda-mode
|
|
|
|
rm -r %{buildroot}%{_datadir}/%{pkg_name}-%{version}/EpicInclude
|
|
|
|
rm -r %{buildroot}%{_datadir}/%{pkg_name}-%{version}/emacs-mode
|
|
|
|
|
2014-04-22 01:40:31 +00:00
|
|
|
rm %{buildroot}%{_docdir}/%{name}*/LICENSE
|
2013-06-14 10:24:00 +00:00
|
|
|
|
2013-06-14 09:46:35 +00:00
|
|
|
|
|
|
|
%post -n ghc-%{name}-devel
|
|
|
|
%ghc_pkg_recache
|
|
|
|
|
|
|
|
|
|
|
|
%postun -n ghc-%{name}-devel
|
|
|
|
%ghc_pkg_recache
|
2012-07-15 07:28:54 +00:00
|
|
|
|
|
|
|
|
|
|
|
%files
|
2013-06-14 09:46:35 +00:00
|
|
|
|
|
|
|
|
2013-06-14 10:15:52 +00:00
|
|
|
%files -n ghc-%{name} -f ghc-%{name}.files
|
2012-07-15 07:28:54 +00:00
|
|
|
%doc LICENSE
|
2013-06-14 09:46:35 +00:00
|
|
|
%{_datadir}/%{name}-%{version}
|
|
|
|
|
|
|
|
|
2013-06-14 10:15:52 +00:00
|
|
|
%files -n ghc-%{name}-devel -f ghc-%{name}-devel.files
|
2013-06-14 09:46:35 +00:00
|
|
|
%doc doc/release-notes
|
|
|
|
%{_bindir}/agda
|
|
|
|
|
|
|
|
|
|
|
|
%files -n emacs-agda
|
|
|
|
%doc README
|
|
|
|
%dir %{_emacs_sitelispdir}/agda
|
|
|
|
%{_emacs_sitelispdir}/agda/*.elc
|
|
|
|
%{_emacs_sitestartdir}/*.el
|
|
|
|
|
|
|
|
|
|
|
|
%files -n emacs-agda-el
|
|
|
|
%{_emacs_sitelispdir}/agda/*.el
|
2012-07-15 07:28:54 +00:00
|
|
|
|
|
|
|
|
|
|
|
%changelog
|
2014-08-15 18:10:09 +00:00
|
|
|
* Fri Aug 15 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.3.2.2-5
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_22_Mass_Rebuild
|
|
|
|
|
2014-06-06 22:21:41 +00:00
|
|
|
* Fri Jun 06 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.3.2.2-4
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild
|
|
|
|
|
2014-04-22 01:40:31 +00:00
|
|
|
* Tue Apr 22 2014 Jens Petersen <petersen@redhat.com> - 2.3.2.2-3
|
|
|
|
- no _pkgdocdir in EL7
|
|
|
|
|
2014-01-22 01:38:31 +00:00
|
|
|
* Wed Jan 22 2014 Jens Petersen <petersen@redhat.com> - 2.3.2.2-2
|
|
|
|
- exclude secondary arch's without template-haskell (#1038068)
|
|
|
|
|
2013-10-31 09:29:45 +00:00
|
|
|
* Thu Oct 31 2013 Jens Petersen <petersen@redhat.com> - 2.3.2.2-1
|
|
|
|
- update to 2.3.2.2
|
|
|
|
|
2013-09-02 03:36:28 +00:00
|
|
|
* Mon Sep 2 2013 Jens Petersen <petersen@redhat.com> - 2.3.2.1-5
|
2013-09-02 03:39:26 +00:00
|
|
|
- drop defattr's
|
2013-09-02 03:36:28 +00:00
|
|
|
|
2013-08-29 05:04:39 +00:00
|
|
|
* Thu Aug 29 2013 Jens Petersen <petersen@redhat.com> - 2.3.2.1-4
|
|
|
|
- emacs agda-mode no longer depends on haskell-mode since 2.3.2
|
|
|
|
|
2013-08-29 02:02:57 +00:00
|
|
|
* Thu Aug 29 2013 Jens Petersen <petersen@redhat.com> - 2.3.2.1-3
|
|
|
|
- compile agda2-queue.el
|
|
|
|
- check for new elisp files
|
|
|
|
- exclude armv7hl since TemplateHaskell failing to compile (#991929)
|
|
|
|
|
2013-08-27 10:20:40 +00:00
|
|
|
* Tue Aug 27 2013 Jens Petersen <petersen@redhat.com>
|
|
|
|
- replace ghc_docdir by _pkgdocdir
|
|
|
|
|
2013-08-02 22:26:53 +00:00
|
|
|
* Fri Aug 02 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.3.2.1-2
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_20_Mass_Rebuild
|
|
|
|
|
2013-07-26 05:51:16 +00:00
|
|
|
* Fri Jul 26 2013 Jens Petersen <petersen@redhat.com>
|
|
|
|
- use ghc_docdir
|
|
|
|
|
2013-06-14 09:46:35 +00:00
|
|
|
* Tue Jun 11 2013 Jens Petersen <petersen@redhat.com> - 2.3.2.1-1
|
|
|
|
- rename src package from ghc-Agda to Agda
|
|
|
|
- update to 2.3.2.1
|
2013-08-29 05:04:39 +00:00
|
|
|
http://wiki.portal.chalmers.se/agda/pmwiki.php?n=Main.Version-2-3-2
|
|
|
|
http://wiki.portal.chalmers.se/agda/pmwiki.php?n=Main.Version-2-3-2-1
|
2013-06-14 09:46:35 +00:00
|
|
|
- update to new simplified Haskell Packaging Guidelines
|
|
|
|
- agda command-line tool in devel subpackage
|
2013-03-25 02:52:51 +00:00
|
|
|
|
2013-06-14 09:46:35 +00:00
|
|
|
* Fri Jun 07 2013 Jens Petersen <petersen@redhat.com>
|
|
|
|
- update to new simplified Haskell Packaging Guidelines
|
|
|
|
|
|
|
|
* Mon Mar 25 2013 Jens Petersen <petersen@redhat.com> - 2.3.0.1-12
|
2013-03-22 13:59:52 +00:00
|
|
|
- rebuild
|
|
|
|
|
2013-06-14 09:46:35 +00:00
|
|
|
* Tue Mar 19 2013 Jens Petersen <petersen@redhat.com> - 2.3.0.1-11
|
|
|
|
- allow haskeline-0.7
|
2013-02-13 14:45:29 +00:00
|
|
|
|
2013-06-14 09:46:35 +00:00
|
|
|
* Wed Feb 13 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.3.0.1-10
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_19_Mass_Rebuild
|
2012-12-25 05:44:18 +00:00
|
|
|
|
2013-06-14 09:46:35 +00:00
|
|
|
* Wed Dec 12 2012 Jens Petersen <petersen@redhat.com> - 2.3.0.1-9
|
|
|
|
- update QuickCheck-2.5 patch following upstream 2.3.2
|
|
|
|
- for epel6 redefine newer _emacs_bytecompile
|
|
|
|
- own datadir correctly
|
2012-12-06 09:57:07 +00:00
|
|
|
|
2013-06-14 09:46:35 +00:00
|
|
|
* Fri Nov 9 2012 Jens Petersen <petersen@redhat.com> - 2.3.0.1-8
|
|
|
|
- build with QuickCheck 2.5
|
2012-11-17 08:14:01 +00:00
|
|
|
|
2013-06-14 09:46:35 +00:00
|
|
|
* Thu Jul 19 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.3.0.1-7
|
2012-07-18 12:49:21 +00:00
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild
|
|
|
|
|
2013-06-14 09:46:35 +00:00
|
|
|
* Mon Jul 16 2012 Jens Petersen <petersen@redhat.com> - 2.3.0.1-6
|
|
|
|
- change prof BRs to devel
|
|
|
|
|
|
|
|
* Wed Jul 11 2012 Jens Petersen <petersen@redhat.com> - 2.3.0.1-5
|
|
|
|
- fix agda2-version in agda2-mode.el
|
|
|
|
|
|
|
|
* Thu Jun 21 2012 Jens Petersen <petersen@redhat.com> - 2.3.0.1-4
|
|
|
|
- upstream patch for building with haskell-src-exts-1.13
|
|
|
|
- use new cabal-tweak-dep-ver script to change mtl and haskell-src-exts bounds
|
|
|
|
|
|
|
|
* Mon Jun 11 2012 Jens Petersen <petersen@redhat.com> - 2.3.0.1-3
|
|
|
|
- allow building with mtl-2.1
|
|
|
|
|
|
|
|
* Thu May 31 2012 Jens Petersen <petersen@redhat.com> - 2.3.0.1-2
|
|
|
|
- library license is also BSD (#710031)
|
|
|
|
- move release notes to devel subpackage
|
|
|
|
|
|
|
|
* Tue Apr 10 2012 Jens Petersen <petersen@redhat.com> - 2.3.0.1-1
|
|
|
|
- update to 2.3.0.1 for ghc-7.4.1
|
|
|
|
|
|
|
|
* Tue Feb 14 2012 Jens Petersen <petersen@redhat.com> - 2.3.0-1
|
|
|
|
- update to 2.3.0
|
|
|
|
- update to cabal2spec-0.25
|
|
|
|
- new depends on hashtables
|
|
|
|
|
|
|
|
* Fri Jun 3 2011 Jens Petersen <petersen@redhat.com> - 2.2.10-2
|
|
|
|
- also BR alex, happy, and emacs-haskell-mode
|
2012-07-15 07:28:54 +00:00
|
|
|
|
2013-06-14 09:46:35 +00:00
|
|
|
* Thu Jun 2 2011 Jens Petersen <petersen@redhat.com> - 2.2.10-1
|
2012-07-15 07:28:54 +00:00
|
|
|
- MIT license
|
2013-06-14 09:46:35 +00:00
|
|
|
- add deps and description
|
|
|
|
- emacs mode subpackages
|
2012-07-15 07:28:54 +00:00
|
|
|
|
2013-06-14 09:46:35 +00:00
|
|
|
* Thu Jun 2 2011 Fedora Haskell SIG <haskell-devel@lists.fedoraproject.org> - 2.2.10-0
|
2012-07-15 07:28:54 +00:00
|
|
|
- initial packaging for Fedora automatically generated by cabal2spec-0.23
|