import ocaml-calendar-2.04-17.el8
This commit is contained in:
commit
da00cff611
1
.gitignore
vendored
Normal file
1
.gitignore
vendored
Normal file
@ -0,0 +1 @@
|
||||
SOURCES/calendar-2.04.tar.gz
|
1
.ocaml-calendar.metadata
Normal file
1
.ocaml-calendar.metadata
Normal file
@ -0,0 +1 @@
|
||||
20193984bd685170d546102dd57eb1fce34058d9 SOURCES/calendar-2.04.tar.gz
|
11
SOURCES/calendar-2.03.2-enable-debug.patch
Normal file
11
SOURCES/calendar-2.03.2-enable-debug.patch
Normal file
@ -0,0 +1,11 @@
|
||||
--- calendar-2.03.2/Makefile.in.old 2013-09-14 16:15:43.760253519 +0100
|
||||
+++ calendar-2.03.2/Makefile.in 2013-09-14 16:16:03.233279962 +0100
|
||||
@@ -86,7 +86,7 @@
|
||||
|
||||
CAMLIBS = $(addprefix -I , $(DIRS))
|
||||
|
||||
-CAMLFLAGS= $(CAMLIBS)
|
||||
+CAMLFLAGS= -g $(CAMLIBS)
|
||||
BYTEFLAGS= $(CAMLFLAGS)
|
||||
LINK_OPTFLAGS = $(CAMLFLAGS) -noassert
|
||||
OPTFLAGS = $(LINK_OPTFLAGS) -for-pack CalendarLib
|
278
SPECS/ocaml-calendar.spec
Normal file
278
SPECS/ocaml-calendar.spec
Normal file
@ -0,0 +1,278 @@
|
||||
%ifnarch %{ocaml_native_compiler}
|
||||
%global debug_package %{nil}
|
||||
%endif
|
||||
|
||||
Name: ocaml-calendar
|
||||
Version: 2.04
|
||||
Release: 17%{?dist}
|
||||
Summary: Objective Caml library for managing dates and times
|
||||
License: LGPLv2
|
||||
|
||||
URL: http://calendar.forge.ocamlcore.org/
|
||||
Source0: https://forge.ocamlcore.org/frs/download.php/1481/calendar-2.04.tar.gz
|
||||
|
||||
Patch1: calendar-2.03.2-enable-debug.patch
|
||||
|
||||
BuildRequires: ocaml >= 4.00.1
|
||||
BuildRequires: ocaml-findlib-devel >= 1.3.3-3
|
||||
BuildRequires: ocaml-ocamldoc
|
||||
BuildRequires: gawk
|
||||
|
||||
# Ignore all generated modules *except* CalendarLib, since everything
|
||||
# now appears in that namespace.
|
||||
%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
|
||||
|
||||
|
||||
%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}
|
||||
%patch1 -p1
|
||||
|
||||
|
||||
%build
|
||||
./configure --libdir=%{_libdir}
|
||||
make
|
||||
make doc
|
||||
|
||||
mv TODO TODO.old
|
||||
iconv -f iso-8859-1 -t utf-8 < TODO.old > TODO
|
||||
|
||||
|
||||
%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
|
||||
%ifarch %{ocaml_native_compiler}
|
||||
%exclude %{_libdir}/ocaml/calendar/*.cmx
|
||||
%endif
|
||||
%exclude %{_libdir}/ocaml/calendar/*.mli
|
||||
|
||||
|
||||
%files devel
|
||||
%doc CHANGES README TODO LGPL COPYING calendarFAQ-2.6.txt doc/*
|
||||
%ifarch %{ocaml_native_compiler}
|
||||
%{_libdir}/ocaml/calendar/*.cmx
|
||||
%endif
|
||||
%{_libdir}/ocaml/calendar/*.mli
|
||||
|
||||
|
||||
%changelog
|
||||
* Fri Jul 13 2018 Fedora Release Engineering <releng@fedoraproject.org> - 2.04-17
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild
|
||||
|
||||
* Wed Jul 11 2018 Richard W.M. Jones <rjones@redhat.com> - 2.04-16
|
||||
- OCaml 4.07.0 (final) rebuild.
|
||||
|
||||
* Tue Jun 19 2018 Richard W.M. Jones <rjones@redhat.com> - 2.04-15
|
||||
- OCaml 4.07.0-rc1 rebuild.
|
||||
|
||||
* Thu Feb 08 2018 Fedora Release Engineering <releng@fedoraproject.org> - 2.04-14
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild
|
||||
|
||||
* Tue Nov 07 2017 Richard W.M. Jones <rjones@redhat.com> - 2.04-13
|
||||
- OCaml 4.06.0 rebuild.
|
||||
|
||||
* Mon Aug 07 2017 Richard W.M. Jones <rjones@redhat.com> - 2.04-12
|
||||
- OCaml 4.05.0 rebuild.
|
||||
|
||||
* Thu Aug 03 2017 Fedora Release Engineering <releng@fedoraproject.org> - 2.04-11
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Binutils_Mass_Rebuild
|
||||
|
||||
* Thu Jul 27 2017 Fedora Release Engineering <releng@fedoraproject.org> - 2.04-10
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild
|
||||
|
||||
* Mon Jun 26 2017 Richard W.M. Jones <rjones@redhat.com> - 2.04-9
|
||||
- OCaml 4.04.2 rebuild.
|
||||
|
||||
* Thu May 11 2017 Richard W.M. Jones <rjones@redhat.com> - 2.04-8
|
||||
- Rebuild for OCaml 4.04.1.
|
||||
|
||||
* Sat Feb 11 2017 Fedora Release Engineering <releng@fedoraproject.org> - 2.04-7
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild
|
||||
|
||||
* Wed Nov 09 2016 Dan Horák <dan@danny.cz> - 2.04-6
|
||||
- rebuild for s390x codegen bug
|
||||
|
||||
* Fri Nov 04 2016 Richard W.M. Jones <rjones@redhat.com> - 2.04-5
|
||||
- Rebuild for OCaml 4.04.0.
|
||||
|
||||
* Wed Oct 19 2016 Dan Horák <dan[at]danny.cz> - 2.04-4
|
||||
- disable debuginfo subpackage on interpreted builds
|
||||
|
||||
* Thu Feb 04 2016 Fedora Release Engineering <releng@fedoraproject.org> - 2.04-3
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild
|
||||
|
||||
* Tue Jul 28 2015 Richard W.M. Jones <rjones@redhat.com> - 2.04-2
|
||||
- OCaml 4.02.3 rebuild.
|
||||
|
||||
* Tue Jul 21 2015 Richard W.M. Jones <rjones@redhat.com> - 2.04-1
|
||||
- New upstream version 2.04.
|
||||
- Enable bytecode compilation.
|
||||
|
||||
* Wed Jun 24 2015 Richard W.M. Jones <rjones@redhat.com> - 2.03.2-14
|
||||
- Bump release and rebuild.
|
||||
|
||||
* Wed Jun 17 2015 Richard W.M. Jones <rjones@redhat.com> - 2.03.2-13
|
||||
- ocaml-4.02.2 rebuild.
|
||||
|
||||
* Mon Feb 16 2015 Richard W.M. Jones <rjones@redhat.com> - 2.03.2-12
|
||||
- ocaml-4.02.1 rebuild.
|
||||
|
||||
* Sat Aug 30 2014 Richard W.M. Jones <rjones@redhat.com> - 2.03.2-11
|
||||
- ocaml-4.02.0 final rebuild.
|
||||
|
||||
* Sat Aug 23 2014 Richard W.M. Jones <rjones@redhat.com> - 2.03.2-10
|
||||
- Rebuild for ocaml-4.02.0+rc1.
|
||||
|
||||
* 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
|
||||
|
||||
* Fri Aug 01 2014 Richard W.M. Jones <rjones@redhat.com> - 2.03.2-8
|
||||
- ocaml-4.02.0-0.8.git10e45753.fc22 build.
|
||||
|
||||
* Thu Jul 17 2014 Richard W.M. Jones <rjones@redhat.com> - 2.03.2-7
|
||||
- Rebuild for OCaml 4.02.0 beta.
|
||||
|
||||
* 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
|
||||
|
||||
* Sat Sep 14 2013 Richard W.M. Jones <rjones@redhat.com> - 2.03.2-5
|
||||
- Rebuild for OCaml 4.01.0.
|
||||
- Enable debuginfo.
|
||||
|
||||
* 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
|
||||
|
||||
* 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
|
||||
|
||||
* 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.
|
||||
|
||||
* 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.
|
||||
|
||||
* 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
|
||||
|
||||
* Sat Jun 09 2012 Richard W.M. Jones <rjones@redhat.com> - 2.03.1-4
|
||||
- Rebuild for OCaml 4.00.0.
|
||||
|
||||
* Sat Apr 28 2012 Richard W.M. Jones <rjones@redhat.com> - 2.03.1-2
|
||||
- Bump and rebuild against new OCaml compiler in ARM.
|
||||
|
||||
* Fri Jan 6 2012 Richard W.M. Jones <rjones@redhat.com> - 2.03.1-1
|
||||
- New upstream version 2.03.1.
|
||||
|
||||
* 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
|
||||
|
||||
* 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.
|
||||
|
||||
* 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.
|
||||
|
||||
* Wed Dec 30 2009 Richard W.M. Jones <rjones@redhat.com> - 2.01.1-3
|
||||
- Rebuild for OCaml 3.11.2.
|
||||
|
||||
* Thu Oct 8 2009 Richard W.M. Jones <rjones@redhat.com> - 2.01.1-2
|
||||
- New upstream release 2.01.1.
|
||||
- Patch META file so it doesn't include the library twice.
|
||||
|
||||
* 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
|
||||
|
||||
* Sat May 23 2009 Richard W.M. Jones <rjones@redhat.com> - 2.0.4-6
|
||||
- Calendar has a new upstream URL.
|
||||
|
||||
* Sat May 23 2009 Richard W.M. Jones <rjones@redhat.com> - 2.0.4-5
|
||||
- Rebuild for OCaml 3.11.1
|
||||
|
||||
* 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)
|
||||
|
||||
* 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
|
||||
|
||||
* Wed Nov 26 2008 Richard W.M. Jones <rjones@redhat.com> - 2.0.4-3
|
||||
- Rebuild for OCaml 3.11.0+rc1.
|
||||
|
||||
* Wed Nov 19 2008 Richard W.M. Jones <rjones@redhat.com> - 2.0.4-2
|
||||
- Rebuild for OCaml 3.11.0
|
||||
|
||||
* 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.
|
||||
|
||||
* Wed Apr 23 2008 Richard W.M. Jones <rjones@redhat.com> - 2.0.2-2
|
||||
- Rebuild for OCaml 3.10.2
|
||||
|
||||
* Fri Mar 28 2008 Richard W.M. Jones <rjones@redhat.com> - 2.0.2-1
|
||||
- New upstream version 2.0.2 (rhbz #439124)
|
||||
|
||||
* Sat Mar 1 2008 Richard W.M. Jones <rjones@redhat.com> - 2.0-2
|
||||
- Rebuild for ppc64.
|
||||
|
||||
* 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.
|
||||
|
||||
* 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.
|
||||
|
||||
* Thu Aug 30 2007 Richard W.M. Jones <rjones@redhat.com> - 1.10-7
|
||||
- Force rebuild because of changed BRs in base OCaml.
|
||||
|
||||
* 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.
|
||||
|
Loading…
Reference in New Issue
Block a user