2012-10-19 13:04:30 +00:00
|
|
|
%global opt %(test -x %{_bindir}/ocamlopt && echo 1 || echo 0)
|
|
|
|
%global debug_package %{nil}
|
2008-02-22 18:40:38 +00:00
|
|
|
|
|
|
|
Name: ocaml-fileutils
|
2012-10-19 13:04:30 +00:00
|
|
|
Version: 0.4.4
|
|
|
|
Release: 1%{?dist}
|
2008-02-22 18:40:38 +00:00
|
|
|
Summary: OCaml library for common file and filename operations
|
|
|
|
|
|
|
|
License: LGPLv2 with exceptions
|
2012-10-19 13:04:30 +00:00
|
|
|
URL: https://forge.ocamlcore.org/projects/ocaml-fileutils/
|
|
|
|
Source0: https://forge.ocamlcore.org/frs/download.php/892/ocaml-fileutils-0.4.4.tar.gz
|
2009-04-16 09:06:07 +00:00
|
|
|
ExcludeArch: sparc64 s390 s390x
|
2008-02-22 18:40:38 +00:00
|
|
|
|
|
|
|
BuildRequires: ocaml
|
|
|
|
BuildRequires: ocaml-findlib-devel
|
|
|
|
BuildRequires: ocaml-ocamldoc
|
|
|
|
BuildRequires: ocaml-camlp4-devel
|
2009-10-08 12:47:33 +00:00
|
|
|
BuildRequires: ocaml-ounit-devel
|
2008-02-22 18:40:38 +00:00
|
|
|
|
|
|
|
|
|
|
|
%description
|
|
|
|
This library is intended to provide a basic interface to the most
|
|
|
|
common file and filename operations. It provides several different
|
|
|
|
filename functions: reduce, make_absolute, make_relative... It also
|
|
|
|
enables you to manipulate real files: cp, mv, rm, touch...
|
|
|
|
|
|
|
|
It is separated into two modules: SysUtil and SysPath. The first one
|
|
|
|
manipulates real files, the second one is made for manipulating
|
|
|
|
abstract filenames.
|
|
|
|
|
|
|
|
|
|
|
|
%package devel
|
|
|
|
Summary: Development files for %{name}
|
|
|
|
Requires: %{name} = %{version}-%{release}
|
|
|
|
|
|
|
|
|
|
|
|
%description devel
|
|
|
|
The %{name}-devel package contains libraries and signature files for
|
|
|
|
developing applications that use %{name}.
|
|
|
|
|
|
|
|
|
|
|
|
%prep
|
|
|
|
%setup -q
|
2009-10-08 12:17:05 +00:00
|
|
|
%configure
|
2008-02-22 18:40:38 +00:00
|
|
|
|
|
|
|
|
|
|
|
%build
|
2009-10-08 12:17:05 +00:00
|
|
|
make
|
2008-02-22 18:40:38 +00:00
|
|
|
|
|
|
|
|
|
|
|
%install
|
2009-10-08 12:17:05 +00:00
|
|
|
export DESTDIR=$RPM_BUILD_ROOT
|
|
|
|
export OCAMLFIND_DESTDIR=$RPM_BUILD_ROOT%{_libdir}/ocaml
|
|
|
|
mkdir -p $OCAMLFIND_DESTDIR $OCAMLFIND_DESTDIR/stublibs
|
|
|
|
|
|
|
|
# Set htmldir to current directory, then copy the docs (in api/)
|
|
|
|
# as a %doc rule.
|
|
|
|
make htmldir=. install
|
|
|
|
|
|
|
|
|
|
|
|
%check
|
|
|
|
make test
|
2008-02-22 18:40:38 +00:00
|
|
|
|
|
|
|
|
|
|
|
%files
|
|
|
|
%doc COPYING
|
|
|
|
%{_libdir}/ocaml/fileutils
|
|
|
|
%if %opt
|
|
|
|
%exclude %{_libdir}/ocaml/fileutils/*.a
|
2009-10-08 12:17:05 +00:00
|
|
|
%exclude %{_libdir}/ocaml/fileutils/*.cmx
|
2008-02-22 18:40:38 +00:00
|
|
|
%exclude %{_libdir}/ocaml/fileutils/*.cmxa
|
|
|
|
%endif
|
2009-10-08 12:17:05 +00:00
|
|
|
%exclude %{_libdir}/ocaml/fileutils/*.ml
|
|
|
|
%exclude %{_libdir}/ocaml/fileutils/*.mli
|
2008-02-22 18:40:38 +00:00
|
|
|
|
|
|
|
|
|
|
|
%files devel
|
2009-10-08 12:17:05 +00:00
|
|
|
%doc COPYING AUTHOR CHANGELOG README TODO api
|
2008-02-22 18:40:38 +00:00
|
|
|
%if %opt
|
|
|
|
%{_libdir}/ocaml/fileutils/*.a
|
2009-10-08 12:17:05 +00:00
|
|
|
%{_libdir}/ocaml/fileutils/*.cmx
|
2008-02-22 18:40:38 +00:00
|
|
|
%{_libdir}/ocaml/fileutils/*.cmxa
|
|
|
|
%endif
|
2009-10-08 12:17:05 +00:00
|
|
|
%{_libdir}/ocaml/fileutils/*.ml
|
|
|
|
%{_libdir}/ocaml/fileutils/*.mli
|
2008-02-22 18:40:38 +00:00
|
|
|
|
|
|
|
|
|
|
|
%changelog
|
2012-10-19 13:04:30 +00:00
|
|
|
* Fri Oct 19 2012 Richard W.M. Jones <rjones@redhat.com> - 0.4.4-1
|
|
|
|
- New upstream version 0.4.4.
|
|
|
|
- Clean up the spec file.
|
|
|
|
- Fix homepage and download URLs.
|
|
|
|
|
2012-07-28 17:55:27 +00:00
|
|
|
* Sat Jul 28 2012 Richard W.M. Jones <rjones@redhat.com> - 0.4.0-10
|
|
|
|
- Bump and rebuild against new OCaml 4.00.0 official release.
|
|
|
|
|
2012-07-20 05:57:55 +00:00
|
|
|
* Fri Jul 20 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.4.0-9
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild
|
|
|
|
|
2012-06-09 16:34:31 +00:00
|
|
|
* Sat Jun 09 2012 Richard W.M. Jones <rjones@redhat.com> - 0.4.0-8
|
|
|
|
- Rebuild for OCaml 4.00.0.
|
|
|
|
|
2012-05-14 19:39:57 +00:00
|
|
|
* Mon May 14 2012 Richard W.M. Jones <rjones@redhat.com> - 0.4.0-7
|
|
|
|
- Bump release and rebuild for new OCaml on ARM.
|
|
|
|
|
2012-01-06 15:22:04 +00:00
|
|
|
* Fri Jan 06 2012 Richard W.M. Jones <rjones@redhat.com> - 0.4.0-6
|
|
|
|
- Rebuild for OCaml 3.12.1.
|
|
|
|
|
2011-02-09 01:50:48 +00:00
|
|
|
* Tue Feb 08 2011 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.4.0-5
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild
|
|
|
|
|
2011-01-05 15:43:06 +00:00
|
|
|
* Wed Jan 05 2011 Richard W.M. Jones <rjones@redhat.com> - 0.4.0-4
|
|
|
|
- Rebuild for OCaml 3.12 (http://fedoraproject.org/wiki/Features/OCaml3.12).
|
|
|
|
|
2009-12-30 13:54:42 +00:00
|
|
|
* Wed Dec 30 2009 Richard W.M. Jones <rjones@redhat.com> - 0.4.0-3
|
|
|
|
- Rebuild for OCaml 3.11.2.
|
|
|
|
|
2009-10-08 12:47:33 +00:00
|
|
|
* Thu Oct 8 2009 Richard W.M. Jones <rjones@redhat.com> - 0.4.0-2
|
2009-10-08 12:17:05 +00:00
|
|
|
- New upstream version 0.4.0.
|
|
|
|
- Upstream build system has been rationalized, so remove all the
|
|
|
|
hacks we were using.
|
|
|
|
- Upstream now contains tests, run them.
|
2009-10-08 12:47:33 +00:00
|
|
|
- Needs ounit in order to carry out the tests.
|
2009-10-08 12:17:05 +00:00
|
|
|
|
2009-07-25 19:56:44 +00:00
|
|
|
* Sat Jul 25 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.3.0-11
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild
|
|
|
|
|
2009-05-23 08:35:39 +00:00
|
|
|
* Sat May 23 2009 Richard W.M. Jones <rjones@redhat.com> - 0.3.0-10
|
|
|
|
- Rebuild for OCaml 3.11.1
|
|
|
|
|
2009-04-16 09:06:07 +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 07:04:39 +00:00
|
|
|
* Wed Feb 25 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.3.0-9
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild
|
|
|
|
|
2008-12-04 19:21:00 +00:00
|
|
|
* Wed Nov 26 2008 Richard W.M. Jones <rjones@redhat.com> - 0.3.0-8
|
|
|
|
- Rebuild for OCaml 3.11.0+rc1.
|
|
|
|
|
2008-11-24 11:18:47 +00:00
|
|
|
* Wed Nov 19 2008 Richard W.M. Jones <rjones@redhat.com> - 0.3.0-7
|
|
|
|
- Rebuild for OCaml 3.11.0
|
|
|
|
|
2008-04-23 11:11:01 +00:00
|
|
|
* Wed Apr 23 2008 Richard W.M. Jones <rjones@redhat.com> - 0.3.0-5
|
|
|
|
- Rebuild for OCaml 3.10.2
|
|
|
|
|
2008-03-01 08:41:14 +00:00
|
|
|
* Sat Mar 1 2008 Richard W.M. Jones <rjones@redhat.com> - 0.3.0-4
|
|
|
|
- Rebuild for ppc64.
|
|
|
|
|
2008-02-22 18:40:38 +00:00
|
|
|
* Thu Feb 21 2008 Richard W.M. Jones <rjones@redhat.com> - 0.3.0-3
|
|
|
|
- Fixed grammar in the description section.
|
|
|
|
- License is LGPLv2 with exceptions
|
|
|
|
- Include license file with both RPMs.
|
|
|
|
- Include other documentation only in the -devel RPM.
|
|
|
|
|
|
|
|
* Tue Feb 12 2008 Richard W.M. Jones <rjones@redhat.com> - 0.3.0-2
|
|
|
|
- Added BR ocaml-camlp4-devel.
|
|
|
|
- Build into tmp directory under the build root.
|
|
|
|
|
|
|
|
* Wed Aug 8 2007 Richard W.M. Jones <rjones@redhat.com> - 0.3.0-1
|
|
|
|
- Initial RPM release.
|