2013-09-14 13:28:34 +00:00
|
|
|
%global opt %(test -x %{_bindir}/ocamlopt && echo 1 || echo 0)
|
2008-03-05 22:10:19 +00:00
|
|
|
|
|
|
|
Name: ocaml-camlidl
|
|
|
|
Version: 1.05
|
2013-11-05 21:53:59 +00:00
|
|
|
Release: 22%{?dist}
|
2008-03-05 22:10:19 +00:00
|
|
|
Summary: Stub code generator and COM binding for Objective Caml
|
|
|
|
License: QPL and LGPLv2 with exceptions
|
2013-09-14 13:28:34 +00:00
|
|
|
|
2008-03-05 22:10:19 +00:00
|
|
|
URL: http://caml.inria.fr/pub/old_caml_site/camlidl/
|
|
|
|
Source0: http://caml.inria.fr/pub/old_caml_site/distrib/bazar-ocaml/camlidl-%{version}.tar.gz
|
|
|
|
Source1: http://caml.inria.fr/pub/old_caml_site/distrib/bazar-ocaml/camlidl-%{version}.doc.pdf
|
2013-11-05 21:53:59 +00:00
|
|
|
# META file from Debian (RHBZ#1026991).
|
|
|
|
Source2: META.camlidl.in
|
2013-09-14 13:28:34 +00:00
|
|
|
|
|
|
|
# Build the compiler into a native code program using ocamlopt.
|
|
|
|
Patch1: camlidl-1.05-use-ocamlopt-for-compiler.patch
|
|
|
|
|
2009-04-16 09:06:02 +00:00
|
|
|
ExcludeArch: sparc64 s390 s390x
|
2008-03-05 22:10:19 +00:00
|
|
|
|
|
|
|
BuildRequires: ocaml
|
|
|
|
BuildRequires: ocaml-ocamldoc
|
2013-09-14 14:11:22 +00:00
|
|
|
BuildRequires: perl
|
2008-03-05 22:10:19 +00:00
|
|
|
|
|
|
|
|
|
|
|
%description
|
|
|
|
CamlIDL is a stub code generator and COM binding for Objective Caml.
|
|
|
|
|
|
|
|
CamlIDL comprises two parts:
|
|
|
|
|
|
|
|
* A stub code generator that generates the C stub code required for
|
|
|
|
the Caml/C interface, based on an MIDL specification. (MIDL stands
|
|
|
|
for Microsoft's Interface Description Language; it looks like C
|
|
|
|
header files with some extra annotations, plus a notion of object
|
|
|
|
interfaces that look like C++ classes without inheritance.)
|
|
|
|
|
|
|
|
* A (currently small) library of functions and tools to import COM
|
|
|
|
components in Caml applications, and export Caml code as COM
|
|
|
|
components.
|
|
|
|
|
|
|
|
|
|
|
|
%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 camlidl-%{version}
|
2013-09-14 13:28:34 +00:00
|
|
|
|
|
|
|
%patch1 -p1
|
|
|
|
|
2008-03-05 22:10:19 +00:00
|
|
|
sed -e 's|^OCAMLLIB=.*|OCAMLLIB=%{_libdir}/ocaml|' \
|
|
|
|
-e 's|^BINDIR=.*|BINDIR=%{_bindir}|' \
|
2013-09-14 13:28:34 +00:00
|
|
|
%if %opt
|
|
|
|
-e 's|^OCAMLC=.*|OCAMLC=ocamlc.opt -g|' \
|
|
|
|
-e 's|^OCAMLOPT=.*|OCAMLOPT=ocamlopt.opt -g|' \
|
|
|
|
%endif
|
2008-03-05 22:10:19 +00:00
|
|
|
< config/Makefile.unix \
|
|
|
|
> config/Makefile
|
2013-09-14 13:28:34 +00:00
|
|
|
|
|
|
|
%if %opt
|
|
|
|
# compiler/ contains a module called 'Array' which conflicts with the
|
|
|
|
# OCaml stdlib module (although only when using ocamlopt for some
|
|
|
|
# reason).
|
|
|
|
mv compiler/array.ml compiler/idlarray.ml
|
|
|
|
mv compiler/array.mli compiler/idlarray.mli
|
2013-09-14 14:11:22 +00:00
|
|
|
|
|
|
|
perl -pi.bak -e 's/array/idlarray/g' \
|
|
|
|
compiler/Makefile compiler/.depend
|
|
|
|
perl -pi.bak -e 's/Array(?!\d)/Idlarray/g' \
|
|
|
|
compiler/*.ml
|
2013-09-14 13:28:34 +00:00
|
|
|
%endif
|
|
|
|
|
2008-03-05 22:10:19 +00:00
|
|
|
cp %{SOURCE1} .
|
|
|
|
|
|
|
|
|
|
|
|
%build
|
|
|
|
make all
|
|
|
|
|
|
|
|
|
|
|
|
%install
|
|
|
|
rm -rf $RPM_BUILD_ROOT
|
|
|
|
|
|
|
|
mkdir -p $RPM_BUILD_ROOT/%{_libdir}/ocaml
|
|
|
|
mkdir -p $RPM_BUILD_ROOT/%{_libdir}/ocaml/caml
|
|
|
|
mkdir -p $RPM_BUILD_ROOT/%{_libdir}/ocaml/stublibs
|
|
|
|
mkdir -p $RPM_BUILD_ROOT/%{_bindir}
|
|
|
|
|
2013-11-05 21:53:59 +00:00
|
|
|
# Install META file (RHBZ#1026991).
|
|
|
|
sed 's/@VERSION@/%{version}/' < %{SOURCE2} > $RPM_BUILD_ROOT/%{_libdir}/ocaml/META.camlidl
|
|
|
|
|
2008-03-05 22:10:19 +00:00
|
|
|
make OCAMLLIB=$RPM_BUILD_ROOT/%{_libdir}/ocaml \
|
|
|
|
BINDIR=$RPM_BUILD_ROOT/%{_bindir} \
|
|
|
|
install
|
|
|
|
|
|
|
|
|
|
|
|
%clean
|
|
|
|
rm -rf $RPM_BUILD_ROOT
|
|
|
|
|
|
|
|
|
|
|
|
%files
|
|
|
|
%defattr(-,root,root,-)
|
|
|
|
%doc LICENSE
|
|
|
|
%{_libdir}/ocaml/*.*
|
|
|
|
%if %opt
|
|
|
|
%exclude %{_libdir}/ocaml/*.a
|
|
|
|
%exclude %{_libdir}/ocaml/*.cmxa
|
|
|
|
%endif
|
|
|
|
%{_bindir}/camlidl
|
|
|
|
|
|
|
|
|
|
|
|
%files devel
|
|
|
|
%defattr(-,root,root,-)
|
2008-03-05 22:16:08 +00:00
|
|
|
%doc LICENSE README Changes camlidl-%{version}.doc.pdf tests
|
2008-03-05 22:10:19 +00:00
|
|
|
%if %opt
|
|
|
|
%{_libdir}/ocaml/*.a
|
|
|
|
%{_libdir}/ocaml/*.cmxa
|
|
|
|
%endif
|
|
|
|
%{_libdir}/ocaml/caml/*.h
|
|
|
|
|
|
|
|
|
|
|
|
%changelog
|
2013-11-05 21:53:59 +00:00
|
|
|
* Tue Nov 5 2013 Richard W.M. Jones <rjones@redhat.com> - 1.05-22
|
|
|
|
- Add META file (RHBZ#1026991).
|
|
|
|
|
2013-09-14 14:11:22 +00:00
|
|
|
* Sat Sep 14 2013 Richard W.M. Jones <rjones@redhat.com> - 1.05-21
|
2013-09-14 13:28:34 +00:00
|
|
|
- Rebuild for OCaml 4.01.0.
|
|
|
|
- Enable debuginfo.
|
|
|
|
- Modernize the spec file.
|
|
|
|
|
2013-08-03 14:48:31 +00:00
|
|
|
* Sat Aug 03 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.05-19
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_20_Mass_Rebuild
|
|
|
|
|
2013-02-14 08:55:23 +00:00
|
|
|
* Thu Feb 14 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.05-18
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_19_Mass_Rebuild
|
|
|
|
|
2012-10-17 15:43:14 +00:00
|
|
|
* Wed Oct 17 2012 Orion Poplawski <orion@cora.nwra.com> - 1.05-17
|
|
|
|
- Rebuild for OCaml 4.00.1.
|
|
|
|
|
2012-07-20 05:51:40 +00:00
|
|
|
* Fri Jul 20 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.05-16
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild
|
|
|
|
|
2012-06-08 15:12:39 +00:00
|
|
|
* Fri Jun 8 2012 Orion Poplawski <orion@cora.nwra.com> - 1.05-15
|
|
|
|
- Rebuild for OCaml 4.00.0.
|
|
|
|
|
2012-01-06 13:57:21 +00:00
|
|
|
* Fri Jan 6 2012 Richard W.M. Jones <rjones@redhat.com> - 1.05-14
|
|
|
|
- Rebuild for OCaml 3.12.1.
|
|
|
|
|
2011-02-09 01:39:37 +00:00
|
|
|
* Tue Feb 08 2011 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.05-13
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild
|
|
|
|
|
2011-01-05 16:00:23 +00:00
|
|
|
* Wed Jan 5 2011 Orion Poplawski <orion@cora.nwra.com> - 1.05-12
|
|
|
|
- Rebuild for OCaml 3.12
|
|
|
|
|
2009-12-30 13:48:03 +00:00
|
|
|
* Wed Dec 30 2009 Richard W.M. Jones <rjones@redhat.com> - 1.05-11
|
|
|
|
- Rebuild for OCaml 3.11.2.
|
|
|
|
|
2009-07-25 19:52:19 +00:00
|
|
|
* Sat Jul 25 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.05-10
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild
|
|
|
|
|
2009-05-23 07:31:35 +00:00
|
|
|
* Sat May 23 2009 Richard W.M. Jones <rjones@redhat.com> - 1.05-9
|
|
|
|
- Rebuild for OCaml 3.11.1
|
|
|
|
|
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:50:20 +00:00
|
|
|
* Wed Feb 25 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.05-8
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild
|
|
|
|
|
2008-12-04 15:45:08 +00:00
|
|
|
* Thu Dec 4 2008 Richard W.M. Jones <rjones@redhat.com> - 1.05-7
|
|
|
|
- Rebuild for OCaml 3.11.0 release.
|
|
|
|
|
2008-11-24 10:54:00 +00:00
|
|
|
* Wed Nov 19 2008 Richard W.M. Jones <rjones@redhat.com> - 1.05-6
|
|
|
|
- Rebuild for OCaml 3.11.0
|
|
|
|
|
2008-04-23 10:26:12 +00:00
|
|
|
* Wed Apr 23 2008 Richard W.M. Jones <rjones@redhat.com> - 1.05-5
|
|
|
|
- Rebuild for OCaml 3.10.2.
|
|
|
|
|
2008-03-05 22:16:08 +00:00
|
|
|
* Wed Mar 5 2008 Richard W.M. Jones <rjones@redhat.com> - 1.05-4
|
|
|
|
- Added tests subdirectory to the documentation.
|
|
|
|
|
2008-03-05 22:10:19 +00:00
|
|
|
* Wed Mar 5 2008 Richard W.M. Jones <rjones@redhat.com> - 1.05-3
|
|
|
|
- Removed -doc subpackage and placed documentation in -devel.
|
|
|
|
|
|
|
|
* Tue Mar 4 2008 Richard W.M. Jones <rjones@redhat.com> - 1.05-2
|
|
|
|
- Rebuild for ppc64.
|
|
|
|
|
|
|
|
* Wed Feb 20 2008 Richard W.M. Jones <rjones@redhat.com> - 1.05-1
|
|
|
|
- Initial RPM release.
|