2016-10-19 16:56:11 +00:00
|
|
|
%ifnarch %{ocaml_native_compiler}
|
|
|
|
%global debug_package %{nil}
|
|
|
|
%endif
|
|
|
|
|
2007-08-09 15:48:54 +00:00
|
|
|
Name: ocaml-calendar
|
2015-07-21 14:02:49 +00:00
|
|
|
Version: 2.04
|
2016-10-19 16:56:11 +00:00
|
|
|
Release: 4%{?dist}
|
2007-08-09 15:48:54 +00:00
|
|
|
Summary: Objective Caml library for managing dates and times
|
|
|
|
License: LGPLv2
|
2013-09-14 15:14:44 +00:00
|
|
|
|
2009-05-23 09:10:27 +00:00
|
|
|
URL: http://calendar.forge.ocamlcore.org/
|
2015-07-21 14:02:49 +00:00
|
|
|
Source0: https://forge.ocamlcore.org/frs/download.php/1481/calendar-2.04.tar.gz
|
2013-09-14 15:14:44 +00:00
|
|
|
|
|
|
|
Patch1: calendar-2.03.2-enable-debug.patch
|
|
|
|
|
2012-11-27 19:28:47 +00:00
|
|
|
BuildRequires: ocaml >= 4.00.1
|
|
|
|
BuildRequires: ocaml-findlib-devel >= 1.3.3-3
|
|
|
|
BuildRequires: ocaml-ocamldoc
|
2007-08-30 09:27:46 +00:00
|
|
|
BuildRequires: gawk
|
2007-08-09 15:48:54 +00:00
|
|
|
|
2008-02-13 00:23:50 +00:00
|
|
|
# Ignore all generated modules *except* CalendarLib, since everything
|
|
|
|
# now appears in that namespace.
|
2010-01-12 15:01:44 +00:00
|
|
|
%global __ocaml_requires_opts -i Calendar_builder -i Calendar_sig -i Date -i Date_sig -i Fcalendar -i Ftime -i Period -i Printer -i Time -i Time_sig -i Time_Zone -i Utils -i Version
|
|
|
|
%global __ocaml_provides_opts -i Calendar_builder -i Calendar_sig -i Date -i Date_sig -i Fcalendar -i Ftime -i Period -i Printer -i Time -i Time_sig -i Time_Zone -i Utils -i Version
|
|
|
|
|
2007-08-09 15:48:54 +00:00
|
|
|
|
|
|
|
%description
|
|
|
|
Objective Caml library for managing dates and times.
|
|
|
|
|
|
|
|
|
|
|
|
%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 -n calendar-%{version}
|
2013-09-14 15:14:44 +00:00
|
|
|
%patch1 -p1
|
2007-08-09 15:48:54 +00:00
|
|
|
|
|
|
|
|
|
|
|
%build
|
|
|
|
./configure --libdir=%{_libdir}
|
|
|
|
make
|
|
|
|
make doc
|
|
|
|
|
2008-07-10 09:01:56 +00:00
|
|
|
mv TODO TODO.old
|
|
|
|
iconv -f iso-8859-1 -t utf-8 < TODO.old > TODO
|
|
|
|
|
2007-08-09 15:48:54 +00:00
|
|
|
|
|
|
|
%install
|
|
|
|
export DESTDIR=$RPM_BUILD_ROOT
|
|
|
|
export OCAMLFIND_DESTDIR=$RPM_BUILD_ROOT%{_libdir}/ocaml
|
|
|
|
mkdir -p $OCAMLFIND_DESTDIR $OCAMLFIND_DESTDIR/stublibs
|
|
|
|
make install
|
|
|
|
|
|
|
|
|
|
|
|
%files
|
|
|
|
%doc CHANGES README TODO LGPL COPYING
|
|
|
|
%{_libdir}/ocaml/calendar
|
2014-07-17 14:46:54 +00:00
|
|
|
%ifarch %{ocaml_native_compiler}
|
2008-07-10 09:01:56 +00:00
|
|
|
%exclude %{_libdir}/ocaml/calendar/*.cmx
|
|
|
|
%endif
|
2007-08-09 15:48:54 +00:00
|
|
|
%exclude %{_libdir}/ocaml/calendar/*.mli
|
|
|
|
|
|
|
|
|
|
|
|
%files devel
|
|
|
|
%doc CHANGES README TODO LGPL COPYING calendarFAQ-2.6.txt doc/*
|
2014-07-17 14:46:54 +00:00
|
|
|
%ifarch %{ocaml_native_compiler}
|
2008-07-10 09:01:56 +00:00
|
|
|
%{_libdir}/ocaml/calendar/*.cmx
|
|
|
|
%endif
|
2007-08-09 15:48:54 +00:00
|
|
|
%{_libdir}/ocaml/calendar/*.mli
|
|
|
|
|
|
|
|
|
|
|
|
%changelog
|
2016-10-19 16:56:11 +00:00
|
|
|
* Wed Oct 19 2016 Dan Horák <dan[at]danny.cz> - 2.04-4
|
|
|
|
- disable debuginfo subpackage on interpreted builds
|
|
|
|
|
2016-02-04 11:04:53 +00:00
|
|
|
* Thu Feb 04 2016 Fedora Release Engineering <releng@fedoraproject.org> - 2.04-3
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild
|
|
|
|
|
2015-07-28 15:32:37 +00:00
|
|
|
* Tue Jul 28 2015 Richard W.M. Jones <rjones@redhat.com> - 2.04-2
|
|
|
|
- OCaml 4.02.3 rebuild.
|
|
|
|
|
2015-07-21 14:02:49 +00:00
|
|
|
* Tue Jul 21 2015 Richard W.M. Jones <rjones@redhat.com> - 2.04-1
|
|
|
|
- New upstream version 2.04.
|
|
|
|
- Enable bytecode compilation.
|
|
|
|
|
2015-06-24 13:17:19 +00:00
|
|
|
* Wed Jun 24 2015 Richard W.M. Jones <rjones@redhat.com> - 2.03.2-14
|
|
|
|
- Bump release and rebuild.
|
|
|
|
|
2015-06-17 15:26:37 +00:00
|
|
|
* Wed Jun 17 2015 Richard W.M. Jones <rjones@redhat.com> - 2.03.2-13
|
|
|
|
- ocaml-4.02.2 rebuild.
|
|
|
|
|
2015-02-16 16:54:10 +00:00
|
|
|
* Mon Feb 16 2015 Richard W.M. Jones <rjones@redhat.com> - 2.03.2-12
|
|
|
|
- ocaml-4.02.1 rebuild.
|
|
|
|
|
2014-08-30 17:54:44 +00:00
|
|
|
* Sat Aug 30 2014 Richard W.M. Jones <rjones@redhat.com> - 2.03.2-11
|
|
|
|
- ocaml-4.02.0 final rebuild.
|
|
|
|
|
2014-08-23 14:44:26 +00:00
|
|
|
* Sat Aug 23 2014 Richard W.M. Jones <rjones@redhat.com> - 2.03.2-10
|
|
|
|
- Rebuild for ocaml-4.02.0+rc1.
|
|
|
|
|
2014-08-17 12:44:54 +00:00
|
|
|
* Sun Aug 17 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.03.2-9
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_22_Mass_Rebuild
|
|
|
|
|
2014-08-01 17:16:16 +00:00
|
|
|
* Fri Aug 01 2014 Richard W.M. Jones <rjones@redhat.com> - 2.03.2-8
|
|
|
|
- ocaml-4.02.0-0.8.git10e45753.fc22 build.
|
|
|
|
|
2014-07-17 14:46:54 +00:00
|
|
|
* Thu Jul 17 2014 Richard W.M. Jones <rjones@redhat.com> - 2.03.2-7
|
|
|
|
- Rebuild for OCaml 4.02.0 beta.
|
|
|
|
|
2014-06-07 15:31:43 +00:00
|
|
|
* Sat Jun 07 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.03.2-6
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild
|
|
|
|
|
2013-09-14 15:14:44 +00:00
|
|
|
* Sat Sep 14 2013 Richard W.M. Jones <rjones@redhat.com> - 2.03.2-5
|
|
|
|
- Rebuild for OCaml 4.01.0.
|
|
|
|
- Enable debuginfo.
|
|
|
|
|
2013-08-03 14:48:13 +00:00
|
|
|
* Sat Aug 03 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.03.2-4
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_20_Mass_Rebuild
|
|
|
|
|
2013-02-14 08:55:12 +00:00
|
|
|
* Thu Feb 14 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.03.2-3
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_19_Mass_Rebuild
|
|
|
|
|
2012-11-27 19:28:47 +00:00
|
|
|
* Tue Nov 27 2012 Richard W.M. Jones <rjones@redhat.com> - 2.03.2-2
|
|
|
|
- BR >= OCaml 4.00.1 so we can't be built against the wrong OCaml.
|
|
|
|
|
2012-10-29 14:24:22 +00:00
|
|
|
* Mon Oct 29 2012 Richard W.M. Jones <rjones@redhat.com> - 2.03.2-1
|
|
|
|
- New upstream version 2.03.2.
|
|
|
|
- Rebuild for OCaml 4.00.1.
|
|
|
|
- Remove upstream patch.
|
|
|
|
|
2012-07-20 05:51:16 +00:00
|
|
|
* Fri Jul 20 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.03.1-5
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild
|
|
|
|
|
2012-06-09 22:45:13 +00:00
|
|
|
* Sat Jun 09 2012 Richard W.M. Jones <rjones@redhat.com> - 2.03.1-4
|
|
|
|
- Rebuild for OCaml 4.00.0.
|
|
|
|
|
2012-04-28 16:56:58 +00:00
|
|
|
* Sat Apr 28 2012 Richard W.M. Jones <rjones@redhat.com> - 2.03.1-2
|
|
|
|
- Bump and rebuild against new OCaml compiler in ARM.
|
|
|
|
|
2012-01-06 13:46:29 +00:00
|
|
|
* Fri Jan 6 2012 Richard W.M. Jones <rjones@redhat.com> - 2.03.1-1
|
|
|
|
- New upstream version 2.03.1.
|
|
|
|
|
2011-02-09 01:39:10 +00:00
|
|
|
* Tue Feb 08 2011 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.03-2
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild
|
|
|
|
|
2011-01-06 08:50:37 +00:00
|
|
|
* Thu Jan 6 2011 Richard W.M. Jones <rjones@redhat.com> - 2.03-1
|
|
|
|
- New upstream version 2.03.
|
|
|
|
- Rebuild for OCaml 3.12.0.
|
|
|
|
- Remove META file patch, now upstream.
|
|
|
|
|
2010-01-12 15:01:44 +00:00
|
|
|
* Tue Jan 12 2010 Richard W.M. Jones <rjones@redhat.com> - 2.01.1-5
|
|
|
|
- Replace %%define with %%global.
|
|
|
|
- Use upstream RPM 4.8 OCaml dependency generator.
|
|
|
|
- Suppress bogus requires as well as provides.
|
|
|
|
|
2009-12-30 13:47:56 +00:00
|
|
|
* Wed Dec 30 2009 Richard W.M. Jones <rjones@redhat.com> - 2.01.1-3
|
|
|
|
- Rebuild for OCaml 3.11.2.
|
|
|
|
|
2009-10-08 13:31:16 +00:00
|
|
|
* Thu Oct 8 2009 Richard W.M. Jones <rjones@redhat.com> - 2.01.1-2
|
2009-10-08 11:58:23 +00:00
|
|
|
- New upstream release 2.01.1.
|
2009-10-08 13:31:16 +00:00
|
|
|
- Patch META file so it doesn't include the library twice.
|
2009-10-08 11:58:23 +00:00
|
|
|
|
2009-07-25 19:52:04 +00:00
|
|
|
* Sat Jul 25 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.0.4-7
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild
|
|
|
|
|
2009-05-23 09:10:27 +00:00
|
|
|
* Sat May 23 2009 Richard W.M. Jones <rjones@redhat.com> - 2.0.4-6
|
|
|
|
- Calendar has a new upstream URL.
|
|
|
|
|
2009-05-23 08:49:47 +00:00
|
|
|
* Sat May 23 2009 Richard W.M. Jones <rjones@redhat.com> - 2.0.4-5
|
|
|
|
- Rebuild for OCaml 3.11.1
|
|
|
|
|
2009-04-16 09:06:01 +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:49:20 +00:00
|
|
|
* Wed Feb 25 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.0.4-4
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild
|
|
|
|
|
2008-12-04 18:57:20 +00:00
|
|
|
* Wed Nov 26 2008 Richard W.M. Jones <rjones@redhat.com> - 2.0.4-3
|
|
|
|
- Rebuild for OCaml 3.11.0+rc1.
|
|
|
|
|
2008-11-24 10:50:24 +00:00
|
|
|
* Wed Nov 19 2008 Richard W.M. Jones <rjones@redhat.com> - 2.0.4-2
|
|
|
|
- Rebuild for OCaml 3.11.0
|
|
|
|
|
2008-07-10 09:01:56 +00:00
|
|
|
* Thu Jul 10 2008 Richard W.M. Jones <rjones@redhat.com> - 2.0.4-1
|
|
|
|
- New upstream version 2.0.4 (rhbz #454789).
|
|
|
|
- Fix non-UTF-8 characters in TODO.
|
|
|
|
- *.cmx file moved to -devel subpackage as per packaging guidelines.
|
|
|
|
|
2008-04-23 11:10:34 +00:00
|
|
|
* Wed Apr 23 2008 Richard W.M. Jones <rjones@redhat.com> - 2.0.2-2
|
|
|
|
- Rebuild for OCaml 3.10.2
|
|
|
|
|
2008-03-28 15:34:39 +00:00
|
|
|
* Fri Mar 28 2008 Richard W.M. Jones <rjones@redhat.com> - 2.0.2-1
|
|
|
|
- New upstream version 2.0.2 (rhbz #439124)
|
|
|
|
|
2008-03-01 08:56:44 +00:00
|
|
|
* Sat Mar 1 2008 Richard W.M. Jones <rjones@redhat.com> - 2.0-2
|
|
|
|
- Rebuild for ppc64.
|
|
|
|
|
2008-02-13 00:23:50 +00:00
|
|
|
* Tue Feb 12 2008 Richard W.M. Jones <rjones@redhat.com> - 2.0-1
|
|
|
|
- New upstream version 2.0.
|
|
|
|
- Rebuild for OCaml 3.10.1.
|
|
|
|
|
2007-09-06 15:41:18 +00:00
|
|
|
* Thu Sep 6 2007 Richard W.M. Jones <rjones@redhat.com> - 1.10-9
|
|
|
|
- Force rebuild because of updated requires/provides scripts in OCaml.
|
|
|
|
|
|
|
|
* Mon Sep 3 2007 Richard W.M. Jones <rjones@redhat.com> - 1.10-8
|
|
|
|
- Force rebuild because of base OCaml.
|
|
|
|
|
2007-08-30 09:27:46 +00:00
|
|
|
* Thu Aug 30 2007 Richard W.M. Jones <rjones@redhat.com> - 1.10-7
|
|
|
|
- Force rebuild because of changed BRs in base OCaml.
|
|
|
|
|
2007-08-09 15:48:54 +00:00
|
|
|
* Tue Aug 7 2007 Richard W.M. Jones <rjones@redhat.com> - 1.10-6
|
|
|
|
- ExcludeArch ppc64
|
|
|
|
- Clarify license is LGPLv2
|
|
|
|
- Add LGPL, COPYING, calendarFAQ-2.6.txt and doc/ subdirectory to docs.
|
|
|
|
- BR +ocaml-ocamldoc
|
|
|
|
|
|
|
|
* Mon Jun 11 2007 Richard W.M. Jones <rjones@redhat.com> - 1.10-5
|
|
|
|
- Updated to latest packaging guidelines.
|
|
|
|
|
|
|
|
* Sat Jun 2 2007 Richard W.M. Jones <rjones@redhat.com> - 1.10-4
|
|
|
|
- Handle bytecode-only architectures.
|
|
|
|
|
|
|
|
* Tue May 29 2007 Richard W.M. Jones <rjones@redhat.com> - 1.10-3
|
|
|
|
- Remove Debian DISTDIR patch.
|
|
|
|
|
|
|
|
* Fri May 25 2007 Richard W.M. Jones <rjones@redhat.com> - 1.10-2
|
|
|
|
- Added find-requires and find-provides.
|
|
|
|
|
|
|
|
* Fri May 18 2007 Richard W.M. Jones <rjones@redhat.com> - 1.10-1
|
|
|
|
- Initial RPM release.
|
|
|
|
|