2008-05-08 18:03:01 +00:00
|
|
|
%define opt %(test -x %{_bindir}/ocamlopt && echo 1 || echo 0)
|
|
|
|
%define debug_package %{nil}
|
|
|
|
|
|
|
|
Name: ocaml-augeas
|
|
|
|
Version: 0.4
|
2012-01-06 18:17:29 +00:00
|
|
|
Release: 10%{?dist}
|
2008-05-08 18:03:01 +00:00
|
|
|
Summary: OCaml bindings for Augeas configuration API
|
|
|
|
|
|
|
|
Group: Development/Libraries
|
|
|
|
License: LGPLv2+ with exceptions
|
|
|
|
URL: http://et.redhat.com/~rjones/augeas/files/
|
|
|
|
Source0: http://et.redhat.com/~rjones/augeas/files/%{name}-%{version}.tar.gz
|
|
|
|
BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
|
2009-04-16 09:06:00 +00:00
|
|
|
ExcludeArch: sparc64 s390 s390x
|
2008-05-08 18:03:01 +00:00
|
|
|
|
|
|
|
BuildRequires: ocaml >= 3.09.0
|
|
|
|
BuildRequires: ocaml-findlib-devel
|
|
|
|
BuildRequires: ocaml-ocamldoc
|
|
|
|
BuildRequires: augeas-devel >= 0.1.0
|
|
|
|
BuildRequires: chrpath
|
|
|
|
|
|
|
|
%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
|
|
|
|
Augeas is a unified system for editing arbitrary configuration
|
|
|
|
files. This provides complete OCaml bindings for Augeas.
|
|
|
|
|
|
|
|
|
|
|
|
%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
|
|
|
|
|
|
|
|
|
|
|
|
%build
|
|
|
|
%configure
|
|
|
|
make
|
|
|
|
make doc
|
|
|
|
|
|
|
|
|
|
|
|
%install
|
|
|
|
rm -rf $RPM_BUILD_ROOT
|
|
|
|
export DESTDIR=$RPM_BUILD_ROOT
|
|
|
|
export OCAMLFIND_DESTDIR=$RPM_BUILD_ROOT%{_libdir}/ocaml
|
|
|
|
mkdir -p $OCAMLFIND_DESTDIR $OCAMLFIND_DESTDIR/stublibs
|
|
|
|
|
|
|
|
# The upstream 'make install' rule is missing '*.so' and distributes
|
|
|
|
# '*.cmi' instead of just the augeas.cmi file. Temporary fix:
|
|
|
|
#make install
|
|
|
|
ocamlfind install augeas META *.mli *.cmx *.cma *.cmxa *.a augeas.cmi *.so
|
|
|
|
|
|
|
|
strip $OCAMLFIND_DESTDIR/stublibs/dll*.so
|
|
|
|
chrpath --delete $OCAMLFIND_DESTDIR/stublibs/dll*.so
|
|
|
|
|
|
|
|
|
|
|
|
%clean
|
|
|
|
rm -rf $RPM_BUILD_ROOT
|
|
|
|
|
|
|
|
|
|
|
|
%files
|
|
|
|
%defattr(-,root,root,-)
|
|
|
|
%doc COPYING.LIB
|
|
|
|
%{_libdir}/ocaml/augeas
|
|
|
|
%if %opt
|
|
|
|
%exclude %{_libdir}/ocaml/augeas/*.a
|
|
|
|
%exclude %{_libdir}/ocaml/augeas/*.cmxa
|
|
|
|
%exclude %{_libdir}/ocaml/augeas/*.cmx
|
|
|
|
%endif
|
|
|
|
%exclude %{_libdir}/ocaml/augeas/*.mli
|
|
|
|
%{_libdir}/ocaml/stublibs/*.so
|
|
|
|
%{_libdir}/ocaml/stublibs/*.so.owner
|
|
|
|
|
|
|
|
|
|
|
|
%files devel
|
|
|
|
%defattr(-,root,root,-)
|
|
|
|
%doc html
|
|
|
|
%if %opt
|
|
|
|
%{_libdir}/ocaml/augeas/*.a
|
|
|
|
%{_libdir}/ocaml/augeas/*.cmxa
|
|
|
|
%{_libdir}/ocaml/augeas/*.cmx
|
|
|
|
%endif
|
|
|
|
%{_libdir}/ocaml/augeas/*.mli
|
|
|
|
|
|
|
|
|
|
|
|
%changelog
|
2012-01-06 18:17:29 +00:00
|
|
|
* Fri Jan 06 2012 Richard W.M. Jones <rjones@redhat.com> - 0.4-10
|
|
|
|
- Rebuild for OCaml 3.12.1.
|
|
|
|
|
2011-02-09 01:35:49 +00:00
|
|
|
* Tue Feb 08 2011 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.4-9
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild
|
|
|
|
|
2011-01-06 16:17:39 +00:00
|
|
|
* Thu Jan 06 2011 Richard W.M. Jones <rjones@redhat.com> - 0.4-8
|
|
|
|
- Rebuild for OCaml 3.12 (http://fedoraproject.org/wiki/Features/OCaml3.12).
|
|
|
|
|
2009-12-30 13:47:35 +00:00
|
|
|
* Wed Dec 30 2009 Richard W.M. Jones <rjones@redhat.com> - 0.4-7
|
|
|
|
- Rebuild for OCaml 3.11.2.
|
|
|
|
|
2009-07-25 19:50:26 +00:00
|
|
|
* Sat Jul 25 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.4-6
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild
|
|
|
|
|
2009-05-23 08:57:01 +00:00
|
|
|
* Sat May 23 2009 Richard W.M. Jones <rjones@redhat.com> - 0.4-5
|
|
|
|
- Rebuild for OCaml 3.11.1
|
|
|
|
|
2009-04-16 09:06:00 +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:45:38 +00:00
|
|
|
* Wed Feb 25 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.4-4
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild
|
|
|
|
|
2008-12-04 18:53:19 +00:00
|
|
|
* Wed Nov 26 2008 Richard W.M. Jones <rjones@redhat.com> - 0.4-3
|
|
|
|
- Rebuild for OCaml 3.11.0+rc1.
|
|
|
|
|
2008-11-24 10:43:58 +00:00
|
|
|
* Wed Nov 19 2008 Richard W.M. Jones <rjones@redhat.com> - 0.4-2
|
|
|
|
- Rebuild for OCaml 3.11.0
|
|
|
|
|
2008-05-08 18:03:01 +00:00
|
|
|
* Wed May 7 2008 Richard W.M. Jones <rjones@redhat.com> - 0.4-1
|
|
|
|
- Initial RPM release.
|