Rebuild for OCaml 4.00.1.

- Clean up the spec file.
This commit is contained in:
Richard W.M. Jones 2012-10-19 14:10:01 +01:00
parent a30b2335c5
commit 650746f81d
1 changed files with 7 additions and 17 deletions

View File

@ -1,16 +1,14 @@
%define opt %(test -x %{_bindir}/ocamlopt && echo 1 || echo 0)
%define debug_package %{nil}
%global opt %(test -x %{_bindir}/ocamlopt && echo 1 || echo 0)
%global debug_package %{nil}
Name: ocaml-ounit
Version: 1.1.2
Release: 3%{?dist}
Release: 4%{?dist}
Summary: Unit test framework for OCaml
Group: Development/Libraries
License: MIT
URL: http://ounit.forge.ocamlcore.org/
Source0: http://forge.ocamlcore.org/frs/download.php/886/ounit-%{version}.tar.gz
BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
ExcludeArch: sparc64 s390 s390x
BuildRequires: ocaml >= 3.10.0
@ -18,10 +16,6 @@ BuildRequires: ocaml-findlib-devel
BuildRequires: ocaml-ocamldoc
BuildRequires: ocaml-camlp4-devel
%define _use_internal_dependency_generator 0
%define __find_requires /usr/lib/rpm/ocaml-find-requires.sh
%define __find_provides /usr/lib/rpm/ocaml-find-provides.sh
%description
OUnit is a unit test framework for OCaml. It allows one to easily
@ -32,7 +26,6 @@ frameworks.
%package devel
Summary: Development files for %{name}
Group: Development/Libraries
Requires: %{name} = %{version}-%{release}
@ -56,7 +49,6 @@ make test
%install
rm -rf $RPM_BUILD_ROOT
export OCAMLFIND_DESTDIR=$RPM_BUILD_ROOT%{_libdir}/ocaml
mkdir -p $OCAMLFIND_DESTDIR $OCAMLFIND_DESTDIR/stublibs
make install
@ -65,12 +57,7 @@ make install
rm -rf $RPM_BUILD_ROOT/usr/local/share/doc
%clean
rm -rf $RPM_BUILD_ROOT
%files
%defattr(-,root,root,-)
%doc LICENSE.txt
%{_libdir}/ocaml/oUnit
%if %opt
@ -81,7 +68,6 @@ rm -rf $RPM_BUILD_ROOT
%files devel
%defattr(-,root,root,-)
%doc LICENSE.txt README.txt
%doc _build/src/api-ounit.docdir/*
%if %opt
@ -92,6 +78,10 @@ rm -rf $RPM_BUILD_ROOT
%changelog
* Fri Oct 19 2012 Richard W.M. Jones <rjones@redhat.com> - 1.1.2-4
- Rebuild for OCaml 4.00.1.
- Clean up the spec file.
* Sat Jul 28 2012 Richard W.M. Jones <rjones@redhat.com> - 1.1.2-3
- Bump and rebuild against new OCaml 4.00.0 official release.