2010-01-05 18:15:56 +00:00
|
|
|
%global opt %(test -x %{_bindir}/ocamlopt && echo 1 || echo 0)
|
|
|
|
%global debug_package %{nil}
|
2008-03-01 18:59:37 +00:00
|
|
|
|
|
|
|
Name: ocaml-camlp5
|
2011-10-27 20:29:35 +00:00
|
|
|
Version: 6.02.3
|
2012-01-06 14:55:17 +00:00
|
|
|
Release: 2%{?dist}
|
2008-03-01 18:59:37 +00:00
|
|
|
Summary: Classical version of camlp4 OCaml preprocessor
|
|
|
|
|
|
|
|
Group: Development/Libraries
|
|
|
|
License: BSD
|
|
|
|
URL: http://pauillac.inria.fr/~ddr/camlp5/
|
2011-10-27 20:29:35 +00:00
|
|
|
ExclusiveArch: %{ocaml_arches}
|
2008-03-01 18:59:37 +00:00
|
|
|
|
2010-01-05 18:15:56 +00:00
|
|
|
Source0: http://pauillac.inria.fr/~ddr/camlp5/distrib/src/camlp5-%{version}.tgz
|
|
|
|
Source1: camlp5-META
|
|
|
|
|
2011-01-06 17:37:04 +00:00
|
|
|
BuildRequires: ocaml >= 3.12.0
|
2010-01-05 18:15:56 +00:00
|
|
|
BuildRequires: ocaml-ocamldoc
|
2008-03-01 18:59:37 +00:00
|
|
|
|
2010-01-06 14:43:13 +00:00
|
|
|
%global __ocaml_requires_opts -i Asttypes -i Parsetree -i Pa_extend
|
2010-01-13 17:29:30 +00:00
|
|
|
%global __ocaml_provides_opts -i Dynlink -i Dynlinkaux -i Pa_extend
|
2008-03-01 18:59:37 +00:00
|
|
|
|
|
|
|
%description
|
|
|
|
Camlp5 is a preprocessor-pretty-printer of OCaml.
|
|
|
|
|
|
|
|
It is the continuation of the classical camlp4 with new features.
|
|
|
|
|
|
|
|
OCaml 3.10 and above have an official camlp4 which is incompatible
|
|
|
|
with classical (<= 3.09) versions. You can find that in the
|
|
|
|
ocaml-camlp4 package.
|
|
|
|
|
|
|
|
|
|
|
|
%package devel
|
|
|
|
Summary: Development files for %{name}
|
|
|
|
Group: Development/Libraries
|
|
|
|
Requires: %{name} = %{version}-%{release}
|
|
|
|
|
|
|
|
|
|
|
|
%description devel
|
|
|
|
The %{name}-devel package contains libraries and signature files for
|
|
|
|
developing applications that use %{name}.
|
|
|
|
|
|
|
|
|
|
|
|
%prep
|
|
|
|
%setup -q -n camlp5-%{version}
|
2010-01-05 18:15:56 +00:00
|
|
|
|
2008-03-01 18:59:37 +00:00
|
|
|
|
|
|
|
%build
|
2010-01-05 18:15:56 +00:00
|
|
|
./configure
|
2008-03-01 18:59:37 +00:00
|
|
|
make all
|
|
|
|
%if %opt
|
|
|
|
make opt
|
|
|
|
strip meta/camlp5r.opt etc/camlp5o.opt
|
|
|
|
%endif
|
|
|
|
|
|
|
|
|
|
|
|
%install
|
|
|
|
mkdir -p $RPM_BUILD_ROOT%{_libdir}/ocaml
|
|
|
|
mkdir -p $RPM_BUILD_ROOT%{_bindir}
|
|
|
|
mkdir -p $RPM_BUILD_ROOT%{_mandir}
|
|
|
|
make install \
|
|
|
|
LIBDIR=$RPM_BUILD_ROOT%{_libdir}/ocaml \
|
|
|
|
OLIBDIR=$RPM_BUILD_ROOT%{_libdir}/ocaml \
|
|
|
|
BINDIR=$RPM_BUILD_ROOT%{_bindir} \
|
|
|
|
MANDIR=$RPM_BUILD_ROOT%{_mandir}
|
2011-10-27 20:29:35 +00:00
|
|
|
cp -p %{SOURCE1} $RPM_BUILD_ROOT%{_libdir}/ocaml/camlp5/META
|
2008-03-01 18:59:37 +00:00
|
|
|
|
|
|
|
|
|
|
|
%files
|
|
|
|
%doc README LICENSE
|
|
|
|
%{_libdir}/ocaml/camlp5
|
|
|
|
%if %opt
|
|
|
|
%exclude %{_libdir}/ocaml/camlp5/*.a
|
|
|
|
%exclude %{_libdir}/ocaml/camlp5/*.cmxa
|
|
|
|
%exclude %{_libdir}/ocaml/camlp5/*.cmx
|
|
|
|
%endif
|
|
|
|
%exclude %{_libdir}/ocaml/camlp5/*.mli
|
|
|
|
|
|
|
|
|
|
|
|
%files devel
|
|
|
|
%doc README LICENSE CHANGES ICHANGES DEVEL UPGRADING
|
|
|
|
%if %opt
|
|
|
|
%{_libdir}/ocaml/camlp5/*.a
|
|
|
|
%{_libdir}/ocaml/camlp5/*.cmxa
|
|
|
|
%{_libdir}/ocaml/camlp5/*.cmx
|
|
|
|
%endif
|
|
|
|
%{_libdir}/ocaml/camlp5/*.mli
|
|
|
|
%{_bindir}/camlp5*
|
|
|
|
%{_bindir}/mkcamlp5*
|
|
|
|
%{_bindir}/ocpp5
|
|
|
|
%{_mandir}/man1/*.1*
|
|
|
|
|
|
|
|
|
|
|
|
%changelog
|
2012-01-06 14:55:17 +00:00
|
|
|
* Fri Jan 06 2012 Richard W.M. Jones <rjones@redhat.com> - 6.02.3-2
|
|
|
|
- Rebuild for OCaml 3.12.1.
|
|
|
|
|
2011-10-27 20:29:35 +00:00
|
|
|
* Thu Oct 27 2011 Jerry James <loganjerry@gmail.com> - 6.02.3-1
|
|
|
|
- New upstream version 6.02.3 (bz 691913).
|
|
|
|
- Switch from ExcludeArch to ExclusiveArch %%{ocaml_arches}.
|
|
|
|
- Drop unnecessary spec file elements (BuildRoot, etc.).
|
|
|
|
- Preserve timestamp on META.
|
|
|
|
|
2011-02-09 01:40:18 +00:00
|
|
|
* Tue Feb 08 2011 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 6.02.1-2
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild
|
|
|
|
|
2011-01-06 17:37:04 +00:00
|
|
|
* Thu Jan 6 2011 Richard W.M. Jones <rjones@redhat.com> - 6.02.1-1
|
|
|
|
- New upstream version 6.02.1.
|
|
|
|
- Remove upstream patches (both upstream).
|
|
|
|
- Rebuild for OCaml 3.12.0.
|
|
|
|
|
2010-01-13 17:29:30 +00:00
|
|
|
* Wed Jan 13 2010 Richard W.M. Jones <rjones@redhat.com> - 5.12-6
|
|
|
|
- Ignore bogus provides Dynlink and Dynlinkaux.
|
|
|
|
|
2010-01-06 14:43:13 +00:00
|
|
|
* Wed Jan 6 2010 Richard W.M. Jones <rjones@redhat.com> - 5.12-5
|
|
|
|
- Ignore ocaml(Pa_extend) bogus generated requires and provides.
|
|
|
|
|
2010-01-05 18:15:56 +00:00
|
|
|
* Tue Jan 5 2010 Richard W.M. Jones <rjones@redhat.com> - 5.12-4
|
|
|
|
- Include Debian patch to fix support for OCaml 3.11.2.
|
|
|
|
- Include Debian patch to fix typos in man page.
|
|
|
|
- Replace %%define with %%global.
|
|
|
|
- Use upstream RPM 4.8 OCaml dependency generator.
|
|
|
|
- Put ./configure in %%build section.
|
|
|
|
|
2009-12-30 13:48:18 +00:00
|
|
|
* Wed Dec 30 2009 Richard W.M. Jones <rjones@redhat.com> - 5.12-3
|
|
|
|
- Rebuild for OCaml 3.11.2.
|
|
|
|
|
2009-07-25 19:52:51 +00:00
|
|
|
* Sat Jul 25 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 5.12-2
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild
|
|
|
|
|
2009-05-23 11:44:56 +00:00
|
|
|
* Sat May 23 2009 Richard W.M. Jones <rjones@redhat.com> - 5.12-1
|
|
|
|
- New upstream version 5.12, excepted to fix 3.11.1 build problems.
|
|
|
|
|
2009-05-23 07:29:36 +00:00
|
|
|
* Sat May 23 2009 Richard W.M. Jones <rjones@redhat.com> - 5.11-1
|
|
|
|
- Rebuild for OCaml 3.11.1
|
|
|
|
- New upstream version 5.11.
|
|
|
|
- Remove META file listed twice in %%files.
|
|
|
|
|
2009-04-16 09:06:02 +00:00
|
|
|
* Thu Apr 16 2009 S390x secondary arch maintainer <fedora-s390x@lists.fedoraproject.org>
|
|
|
|
- ExcludeArch sparc64, s390, s390x as we don't have OCaml on those archs
|
|
|
|
(added sparc64 per request from the sparc maintainer)
|
|
|
|
|
2009-02-26 06:52:26 +00:00
|
|
|
* Wed Feb 25 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 5.10-3
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild
|
|
|
|
|
2008-12-04 16:47:49 +00:00
|
|
|
* Wed Nov 26 2008 Richard W.M. Jones <rjones@redhat.com> - 5.10-2
|
|
|
|
- Rebuild for OCaml 3.11.0+rc1.
|
|
|
|
|
2008-11-20 16:20:18 +00:00
|
|
|
* Thu Nov 20 2008 Richard W.M. Jones <rjones@redhat.com> - 5.10-1
|
|
|
|
- New upstream version 5.10.
|
|
|
|
|
|
|
|
* Wed Nov 19 2008 Richard W.M. Jones <rjones@redhat.com> - 5.09-2
|
|
|
|
- Rebuild for OCaml 3.11.0
|
|
|
|
|
2008-08-31 09:39:06 +00:00
|
|
|
* Sun Aug 31 2008 Richard W.M. Jones <rjones@redhat.com> - 5.09-1
|
|
|
|
- New upstream version 5.09.
|
|
|
|
|
2008-04-23 10:26:05 +00:00
|
|
|
* Wed Apr 23 2008 Richard W.M. Jones <rjones@redhat.com> - 5.08-3
|
|
|
|
- Rebuild for OCaml 3.10.2.
|
|
|
|
|
2008-03-01 19:03:19 +00:00
|
|
|
* Sat Mar 1 2008 Richard W.M. Jones <rjones@redhat.com> - 5.08-2
|
|
|
|
- Build on ppc64.
|
|
|
|
|
2008-03-01 18:59:37 +00:00
|
|
|
* Thu Feb 21 2008 Richard W.M. Jones <rjones@redhat.com> - 5.08-1
|
|
|
|
- New upstream version 5.08.
|
|
|
|
- BR ocaml >= 3.10.1.
|
|
|
|
|
|
|
|
* Tue Feb 12 2008 Richard W.M. Jones <rjones@redhat.com> - 5.04-2
|
|
|
|
- Strip the *.opt binaries.
|
|
|
|
|
|
|
|
* Thu Dec 13 2007 Stijn Hoop <stijn@win.tue.nl> - 5.04-1
|
|
|
|
- Update to 5.04
|
|
|
|
|
|
|
|
* Wed Aug 8 2007 Richard W.M. Jones <rjones@redhat.com> - 4.07-2
|
|
|
|
- Add a META file.
|
|
|
|
|
|
|
|
* Wed Aug 8 2007 Richard W.M. Jones <rjones@redhat.com> - 4.07-1
|
|
|
|
- Initial RPM release.
|