2015-07-22 13:20:37 +00:00
|
|
|
%global opt %(test -x %{_bindir}/ocamlopt && echo 1 || echo 0)
|
|
|
|
|
2007-07-06 21:09:41 +00:00
|
|
|
Name: ocaml-lablgl
|
2014-06-18 14:46:24 +00:00
|
|
|
Epoch: 1
|
|
|
|
Version: 1.05
|
2018-07-11 11:45:07 +00:00
|
|
|
Release: 30%{?dist}
|
2005-04-01 17:05:32 +00:00
|
|
|
Summary: LablGL is an OpenGL interface for Objective Caml
|
2004-11-08 04:39:51 +00:00
|
|
|
License: BSD
|
2013-09-14 08:03:18 +00:00
|
|
|
|
2012-06-08 15:34:26 +00:00
|
|
|
URL: http://forge.ocamlcore.org/projects/lablgl/
|
2014-06-18 14:50:08 +00:00
|
|
|
Source0: https://forge.ocamlcore.org/frs/download.php/1254/lablgl-%{version}.tar.gz
|
2013-09-14 08:03:18 +00:00
|
|
|
|
2007-07-06 21:09:41 +00:00
|
|
|
|
2006-02-26 12:49:47 +00:00
|
|
|
BuildRequires: freeglut-devel
|
2012-04-28 16:57:13 +00:00
|
|
|
BuildRequires: ocaml >= 3.12.1-3
|
2007-07-06 21:09:41 +00:00
|
|
|
BuildRequires: tcl-devel
|
2006-02-26 12:49:47 +00:00
|
|
|
BuildRequires: tk-devel
|
|
|
|
BuildRequires: libX11-devel
|
|
|
|
BuildRequires: libXext-devel
|
|
|
|
BuildRequires: libXmu-devel
|
2006-02-26 13:11:06 +00:00
|
|
|
BuildRequires: libXxf86vm-devel
|
|
|
|
BuildRequires: mesa-libGL-devel
|
|
|
|
BuildRequires: mesa-libGLU-devel
|
2007-07-06 22:04:11 +00:00
|
|
|
BuildRequires: ocaml-labltk-devel
|
|
|
|
BuildRequires: ocaml-camlp4-devel
|
2007-07-06 21:09:41 +00:00
|
|
|
|
2004-11-08 04:39:51 +00:00
|
|
|
%description
|
|
|
|
LablGL is is an Objective Caml interface to OpenGL. Support is
|
|
|
|
included for use inside LablTk, and LablGTK also includes specific
|
|
|
|
support for LablGL. It can be used either with proprietary OpenGL
|
|
|
|
implementations (SGI, Digital Unix, Solaris...), with XFree86 GLX
|
|
|
|
extension, or with open-source Mesa.
|
|
|
|
|
2006-05-10 18:09:00 +00:00
|
|
|
|
2007-07-06 21:09:41 +00:00
|
|
|
%package devel
|
|
|
|
Summary: Development files for %{name}
|
2014-06-19 09:32:28 +00:00
|
|
|
Requires: %{name} = %{epoch}:%{version}-%{release}
|
2007-07-06 22:04:11 +00:00
|
|
|
Requires: ocaml-labltk-devel
|
2004-11-08 04:39:51 +00:00
|
|
|
|
2007-07-06 21:09:41 +00:00
|
|
|
%description devel
|
|
|
|
The %{name}-devel package contains libraries and signature files for
|
|
|
|
developing applications that use %{name}.
|
2006-05-10 18:09:00 +00:00
|
|
|
|
2007-07-06 21:09:41 +00:00
|
|
|
|
|
|
|
%prep
|
2014-06-18 14:46:24 +00:00
|
|
|
%setup -q -n lablgl-%{version}
|
2008-02-13 00:32:54 +00:00
|
|
|
|
2004-11-08 04:39:51 +00:00
|
|
|
cat > Makefile.config <<EOF
|
2015-07-22 13:20:37 +00:00
|
|
|
%if %{opt}
|
2004-11-08 04:39:51 +00:00
|
|
|
CAMLC = ocamlc.opt
|
2013-09-14 08:03:18 +00:00
|
|
|
CAMLOPT = ocamlopt.opt -g
|
2015-07-22 13:20:37 +00:00
|
|
|
%else
|
|
|
|
CAMLC = ocamlc
|
|
|
|
CAMLOPT = ocamlc -g
|
|
|
|
%endif
|
2005-02-13 09:17:45 +00:00
|
|
|
BINDIR = %{_bindir}
|
|
|
|
XINCLUDES = -I%{_prefix}/X11R6/include
|
2007-07-06 21:09:41 +00:00
|
|
|
XLIBS = -lXext -lXmu -lX11
|
2005-02-13 09:17:45 +00:00
|
|
|
TKINCLUDES = -I%{_includedir}
|
2004-11-08 04:39:51 +00:00
|
|
|
GLINCLUDES =
|
|
|
|
GLLIBS = -lGL -lGLU
|
2005-02-12 11:37:23 +00:00
|
|
|
GLUTLIBS = -lglut -lXxf86vm
|
2004-11-08 04:39:51 +00:00
|
|
|
RANLIB = :
|
|
|
|
LIBDIR = %{_libdir}/ocaml
|
|
|
|
DLLDIR = %{_libdir}/ocaml/stublibs
|
|
|
|
INSTALLDIR = %{_libdir}/ocaml/lablGL
|
|
|
|
TOGLDIR=Togl
|
|
|
|
COPTS = $RPM_OPT_FLAGS
|
|
|
|
EOF
|
2007-07-06 21:09:41 +00:00
|
|
|
|
|
|
|
|
|
|
|
%build
|
2013-09-14 08:03:18 +00:00
|
|
|
# Parallel builds don't work.
|
|
|
|
unset MAKEFLAGS
|
2015-07-22 13:20:37 +00:00
|
|
|
make all \
|
|
|
|
%if %{opt}
|
|
|
|
opt
|
|
|
|
%endif
|
2004-11-08 04:39:51 +00:00
|
|
|
|
2006-05-10 18:09:00 +00:00
|
|
|
|
2004-11-08 04:39:51 +00:00
|
|
|
%install
|
|
|
|
rm -rf $RPM_BUILD_ROOT
|
|
|
|
mkdir -p $RPM_BUILD_ROOT%{_bindir}
|
|
|
|
mkdir -p $RPM_BUILD_ROOT%{_libdir}/ocaml/lablGL
|
|
|
|
mkdir -p $RPM_BUILD_ROOT%{_libdir}/ocaml/stublibs
|
|
|
|
make INSTALLDIR=$RPM_BUILD_ROOT%{_libdir}/ocaml/lablGL \
|
2007-07-06 21:09:41 +00:00
|
|
|
DLLDIR=$RPM_BUILD_ROOT%{_libdir}/ocaml/stublibs \
|
|
|
|
BINDIR=$RPM_BUILD_ROOT%{_bindir} \
|
|
|
|
install
|
|
|
|
|
|
|
|
# Make and install a META file.
|
|
|
|
cat <<EOM >META
|
|
|
|
version="%{version}"
|
|
|
|
directory="+lablgl"
|
|
|
|
archive(byte) = "lablgl.cma"
|
|
|
|
archive(native) = "lablgl.cmxa"
|
|
|
|
|
|
|
|
package "togl" (
|
|
|
|
requires = "labltk lablgl"
|
|
|
|
archive(byte) = "togl.cma"
|
|
|
|
archive(native) = "togl.cmxa"
|
|
|
|
)
|
|
|
|
|
|
|
|
package "glut" (
|
|
|
|
requires = "lablgl"
|
|
|
|
archive(byte) = "lablglut.cma"
|
|
|
|
archive(native) = "lablglut.cmxa"
|
|
|
|
)
|
|
|
|
EOM
|
|
|
|
cp META $RPM_BUILD_ROOT%{_libdir}/ocaml/lablGL
|
|
|
|
|
|
|
|
# Remove unnecessary *.ml files (ones which have a *.mli).
|
|
|
|
pushd $RPM_BUILD_ROOT%{_libdir}/ocaml/lablGL
|
|
|
|
for f in *.ml; do \
|
|
|
|
b=`basename $f .ml`; \
|
|
|
|
if [ -f "$b.mli" ]; then \
|
|
|
|
rm $f; \
|
|
|
|
fi; \
|
|
|
|
done
|
|
|
|
popd
|
2004-11-08 04:39:51 +00:00
|
|
|
|
2006-05-10 18:09:00 +00:00
|
|
|
|
2004-11-08 04:39:51 +00:00
|
|
|
%files
|
2007-07-06 21:09:41 +00:00
|
|
|
%doc README
|
|
|
|
%dir %{_libdir}/ocaml/lablGL
|
|
|
|
%{_libdir}/ocaml/lablGL/*.cma
|
|
|
|
%{_libdir}/ocaml/lablGL/*.cmi
|
2004-11-08 04:39:51 +00:00
|
|
|
%{_libdir}/ocaml/stublibs/*.so
|
2007-07-06 21:09:41 +00:00
|
|
|
%{_bindir}/lablgl
|
|
|
|
%{_bindir}/lablglut
|
|
|
|
|
|
|
|
|
|
|
|
%files devel
|
|
|
|
%doc CHANGES COPYRIGHT README LablGlut/examples Togl/examples
|
|
|
|
%{_libdir}/ocaml/lablGL/META
|
|
|
|
%{_libdir}/ocaml/lablGL/*.a
|
2015-07-22 13:20:37 +00:00
|
|
|
%if %{opt}
|
2007-07-06 21:09:41 +00:00
|
|
|
%{_libdir}/ocaml/lablGL/*.cmxa
|
|
|
|
%{_libdir}/ocaml/lablGL/*.cmx
|
2015-07-22 13:20:37 +00:00
|
|
|
%endif
|
2007-07-06 21:09:41 +00:00
|
|
|
%{_libdir}/ocaml/lablGL/*.mli
|
|
|
|
%{_libdir}/ocaml/lablGL/build.ml
|
2004-11-08 04:39:51 +00:00
|
|
|
|
2006-05-10 18:09:00 +00:00
|
|
|
|
2004-11-08 04:39:51 +00:00
|
|
|
%changelog
|
2018-07-11 11:45:07 +00:00
|
|
|
* Wed Jul 11 2018 Richard W.M. Jones <rjones@redhat.com> - 1:1.05-30
|
|
|
|
- OCaml 4.07.0 (final) rebuild.
|
|
|
|
|
2018-06-19 19:26:29 +00:00
|
|
|
* Tue Jun 19 2018 Richard W.M. Jones <rjones@redhat.com> - 1:1.05-29
|
|
|
|
- OCaml 4.07.0-rc1 rebuild.
|
|
|
|
|
2018-02-09 08:05:18 +00:00
|
|
|
* Fri Feb 09 2018 Igor Gnatenko <ignatenkobrain@fedoraproject.org> - 1:1.05-28
|
|
|
|
- Escape macros in %%changelog
|
|
|
|
|
2018-02-08 08:51:19 +00:00
|
|
|
* Thu Feb 08 2018 Fedora Release Engineering <releng@fedoraproject.org> - 1:1.05-27
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild
|
|
|
|
|
2017-11-07 22:17:36 +00:00
|
|
|
* Tue Nov 07 2017 Richard W.M. Jones <rjones@redhat.com> - 1:1.05-26
|
|
|
|
- OCaml 4.06.0 rebuild.
|
|
|
|
|
2017-08-07 16:57:28 +00:00
|
|
|
* Mon Aug 07 2017 Richard W.M. Jones <rjones@redhat.com> - 1:1.05-25
|
|
|
|
- OCaml 4.05.0 rebuild.
|
|
|
|
|
2017-08-03 04:16:23 +00:00
|
|
|
* Thu Aug 03 2017 Fedora Release Engineering <releng@fedoraproject.org> - 1:1.05-24
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Binutils_Mass_Rebuild
|
|
|
|
|
2017-07-27 01:28:36 +00:00
|
|
|
* Thu Jul 27 2017 Fedora Release Engineering <releng@fedoraproject.org> - 1:1.05-23
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild
|
|
|
|
|
2017-06-26 15:50:54 +00:00
|
|
|
* Mon Jun 26 2017 Richard W.M. Jones <rjones@redhat.com> - 1:1.05-22
|
|
|
|
- OCaml 4.04.2 rebuild.
|
|
|
|
|
2017-05-11 15:31:19 +00:00
|
|
|
* Thu May 11 2017 Richard W.M. Jones <rjones@redhat.com> - 1:1.05-21
|
|
|
|
- OCaml 4.04.1 rebuild.
|
|
|
|
|
2017-02-11 00:32:22 +00:00
|
|
|
* Sat Feb 11 2017 Fedora Release Engineering <releng@fedoraproject.org> - 1:1.05-20
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild
|
|
|
|
|
2016-11-04 22:57:39 +00:00
|
|
|
* Fri Nov 04 2016 Richard W.M. Jones <rjones@redhat.com> - 1:1.05-19
|
|
|
|
- Rebuild for OCaml 4.04.0.
|
|
|
|
|
2016-02-04 11:07:39 +00:00
|
|
|
* Thu Feb 04 2016 Fedora Release Engineering <releng@fedoraproject.org> - 1:1.05-18
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild
|
|
|
|
|
2015-07-28 12:55:06 +00:00
|
|
|
* Tue Jul 28 2015 Richard W.M. Jones <rjones@redhat.com> - 1:1.05-17
|
|
|
|
- OCaml 4.02.3 rebuild.
|
|
|
|
|
2015-07-22 13:20:37 +00:00
|
|
|
* Wed Jul 22 2015 Richard W.M. Jones <rjones@redhat.com> - 1:1.05-16
|
|
|
|
- Fix bytecode builds (patch supplied by Rafael Fonseca).
|
|
|
|
|
2015-06-24 14:41:45 +00:00
|
|
|
* Wed Jun 24 2015 Richard W.M. Jones <rjones@redhat.com> - 1:1.05-15
|
|
|
|
- ocaml-4.02.2 final rebuild.
|
|
|
|
|
2015-06-17 11:16:05 +00:00
|
|
|
* Wed Jun 17 2015 Richard W.M. Jones <rjones@redhat.com> - 1:1.05-14
|
|
|
|
- ocaml-4.02.2 rebuild.
|
|
|
|
|
2015-02-16 15:42:25 +00:00
|
|
|
* Mon Feb 16 2015 Richard W.M. Jones <rjones@redhat.com> - 1:1.05-13
|
|
|
|
- Bump release and rebuild.
|
|
|
|
|
2015-02-16 15:31:40 +00:00
|
|
|
* Mon Feb 16 2015 Richard W.M. Jones <rjones@redhat.com> - 1:1.05-12
|
|
|
|
- ocaml-4.02.1 rebuild.
|
|
|
|
|
2014-08-30 15:08:46 +00:00
|
|
|
* Sat Aug 30 2014 Richard W.M. Jones <rjones@redhat.com> - 1:1.05-11
|
|
|
|
- Bump release and rebuild.
|
|
|
|
|
2014-08-30 15:02:19 +00:00
|
|
|
* Sat Aug 30 2014 Richard W.M. Jones <rjones@redhat.com> - 1:1.05-10
|
|
|
|
- ocaml-4.02.0 final rebuild.
|
|
|
|
|
2014-08-22 21:36:00 +00:00
|
|
|
* Fri Aug 22 2014 Richard W.M. Jones <rjones@redhat.com> - 1:1.05-9
|
|
|
|
- Bump release and rebuild.
|
|
|
|
|
2014-08-22 21:24:53 +00:00
|
|
|
* Fri Aug 22 2014 Richard W.M. Jones <rjones@redhat.com> - 1:1.05-8
|
|
|
|
- ocaml-4.02.0+rc1 rebuild.
|
|
|
|
|
2014-08-17 12:55:48 +00:00
|
|
|
* Sun Aug 17 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1:1.05-7
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_22_Mass_Rebuild
|
|
|
|
|
2014-08-01 18:57:15 +00:00
|
|
|
* Fri Aug 01 2014 Richard W.M. Jones <rjones@redhat.com> - 1:1.05-6
|
|
|
|
- Bump release and rebuild.
|
|
|
|
|
2014-08-01 18:28:58 +00:00
|
|
|
* Fri Aug 01 2014 Richard W.M. Jones <rjones@redhat.com> - 1:1.05-5
|
|
|
|
- ocaml-4.02.0-0.8.git10e45753.fc22 rebuild.
|
|
|
|
|
2014-07-22 21:39:04 +00:00
|
|
|
* Tue Jul 22 2014 Richard W.M. Jones <rjones@redhat.com> - 1:1.05-4
|
|
|
|
- OCaml 4.02.0 beta rebuild.
|
|
|
|
|
2014-06-19 09:33:39 +00:00
|
|
|
* Thu Jun 19 2014 Richard W.M. Jones <rjones@redhat.com> - 1.05-3
|
2014-06-19 09:32:28 +00:00
|
|
|
- Make -devel subpackage depend on the epoch + base version.
|
|
|
|
|
|
|
|
* Wed Jun 18 2014 Richard W.M. Jones <rjones@redhat.com> - 1.05-1
|
2014-06-18 14:46:24 +00:00
|
|
|
- New upstream version 1.05.
|
|
|
|
- Requires Epoch because upstream version went from 20120306->1.05.
|
|
|
|
- Fixes FTBFS (RHBZ#1106619).
|
|
|
|
- Use ExclusiveArch and add a comment about how we could fix this.
|
|
|
|
|
2014-06-07 15:40:11 +00:00
|
|
|
* Sat Jun 07 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 20120306-8
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild
|
|
|
|
|
2013-09-14 08:03:18 +00:00
|
|
|
* Sat Sep 14 2013 Richard W.M. Jones <rjones@redhat.com> - 20120306-7
|
|
|
|
- Rebuild for OCaml 4.01.0.
|
|
|
|
- Enable debuginfo.
|
|
|
|
- Modernize the spec file.
|
|
|
|
|
2013-08-03 14:54:49 +00:00
|
|
|
* Sat Aug 03 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 20120306-6
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_20_Mass_Rebuild
|
|
|
|
|
2013-02-14 08:59:03 +00:00
|
|
|
* Thu Feb 14 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 20120306-5
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_19_Mass_Rebuild
|
|
|
|
|
2012-10-17 16:43:43 +00:00
|
|
|
* Wed Oct 17 2012 Orion Poplawski <orion@cora.nwra.com> - 20120306-4
|
|
|
|
- Rebuild for OCaml 4.00.1.
|
|
|
|
|
2012-07-20 06:00:21 +00:00
|
|
|
* Fri Jul 20 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 20120306-3
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild
|
|
|
|
|
2012-06-10 21:14:44 +00:00
|
|
|
* Sun Jun 10 2012 Richard W.M. Jones <rjones@redhat.com> - 20120306-2
|
|
|
|
- Rebuild for OCaml 4.00.0.
|
|
|
|
|
2012-06-08 15:34:26 +00:00
|
|
|
* Fri Jun 8 2012 Orion Poplawski <orion@cora.nwra.com> - 20120306-1
|
|
|
|
- Update to version 20120306.
|
|
|
|
- Update URL.
|
|
|
|
- Build for OCaml 4.00.0.
|
|
|
|
|
2012-04-28 16:57:13 +00:00
|
|
|
* Sat Apr 28 2012 Richard W.M. Jones <rjones@redhat.com> - 1.04-7
|
|
|
|
- Bump and rebuild against new OCaml compiler in ARM.
|
|
|
|
|
2012-01-06 15:25:28 +00:00
|
|
|
* Fri Jan 06 2012 Richard W.M. Jones <rjones@redhat.com> - 1.04-6
|
|
|
|
- Rebuild for OCaml 3.12.1.
|
|
|
|
|
2011-02-09 01:54:41 +00:00
|
|
|
* Tue Feb 08 2011 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.04-5
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild
|
|
|
|
|
2011-01-05 14:03:16 +00:00
|
|
|
* Wed Jan 05 2011 Richard W.M. Jones <rjones@redhat.com> - 1.04-4
|
|
|
|
- Rebuild for OCaml 3.12 (http://fedoraproject.org/wiki/Features/OCaml3.12).
|
|
|
|
|
2009-12-30 13:50:13 +00:00
|
|
|
* Wed Dec 30 2009 Richard W.M. Jones <rjones@redhat.com> - 1.04-3
|
|
|
|
- Rebuild for OCaml 3.11.2.
|
|
|
|
|
2009-07-25 19:58:13 +00:00
|
|
|
* Sat Jul 25 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.04-2
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild
|
|
|
|
|
2009-05-22 21:49:08 +00:00
|
|
|
* Fri May 22 2009 Richard W.M. Jones <rjones@redhat.com> - 1.04-1
|
|
|
|
- Rebuild for OCaml 3.11.1.
|
|
|
|
- New upstream version 1.04.
|
|
|
|
- Patch for Tk 8.5 is now upstream.
|
|
|
|
|
2009-04-16 09:06:08 +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:11:16 +00:00
|
|
|
* Wed Feb 25 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.03-7
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild
|
|
|
|
|
2008-12-04 16:29:49 +00:00
|
|
|
* Wed Nov 26 2008 Richard W.M. Jones <rjones@redhat.com> - 1.03-6
|
|
|
|
- Rebuild for OCaml 3.11.0+rc1.
|
|
|
|
|
2008-11-24 11:35:23 +00:00
|
|
|
* Wed Nov 19 2008 Richard W.M. Jones <rjones@redhat.com> - 1.03-5
|
|
|
|
- Rebuild for OCaml 3.11.0
|
|
|
|
|
2008-05-14 21:07:27 +00:00
|
|
|
* Wed May 14 2008 Richard W.M. Jones <rjones@redhat.com> - 1.03-4
|
|
|
|
- Remove BRs for camlp4, labltk.
|
|
|
|
- Remove old Provides.
|
|
|
|
|
2008-04-23 10:26:11 +00:00
|
|
|
* Wed Apr 23 2008 Richard W.M. Jones <rjones@redhat.com> - 1.03-3
|
|
|
|
- Rebuild for OCaml 3.10.2.
|
|
|
|
|
2008-03-01 07:49:59 +00:00
|
|
|
* Sat Mar 1 2008 Richard W.M. Jones <rjones@redhat.com> - 1.03-2
|
|
|
|
- Rebuild for ppc64.
|
|
|
|
|
2008-02-13 00:32:54 +00:00
|
|
|
* Tue Feb 12 2008 Richard W.M. Jones <rjones@redhat.com> - 1.03-1
|
|
|
|
- New upstream version 1.03.
|
|
|
|
- Fix for Tk 8.5.
|
|
|
|
- Rebuild for OCaml 3.10.1.
|
|
|
|
|
2007-09-07 09:08:32 +00:00
|
|
|
* Fri Sep 7 2007 Gerard Milmeister <gemi@bluewin.ch> - 1.02-15
|
|
|
|
- Rebuild
|
|
|
|
|
2007-08-30 09:47:31 +00:00
|
|
|
* Thu Aug 30 2007 Gerard Milmeister <gemi@bluewin.ch> - 1.02-13
|
|
|
|
- Rebuild
|
|
|
|
|
2007-07-06 22:12:27 +00:00
|
|
|
* Sat Jul 7 2007 Gerard Milmeister <gemi@bluewin.ch> - 1.02-12
|
|
|
|
- exclude arch ppc64
|
|
|
|
|
2007-07-06 22:04:11 +00:00
|
|
|
* Sat Jul 7 2007 Gerard Milmeister <gemi@bluewin.ch> - 1.02-11
|
|
|
|
- added buildreq ocaml-camlp4-devel
|
|
|
|
|
2007-07-06 21:09:41 +00:00
|
|
|
* Fri Jul 6 2007 Gerard Milmeister <gemi@bluewin.ch> - 1.02-10
|
|
|
|
- renamed package from lablgl to ocaml-lablgl
|
|
|
|
|
2006-12-02 15:41:44 +00:00
|
|
|
* Sat Dec 2 2006 Gerard Milmeister <gemi@bluewin.ch> - 1.02-9
|
|
|
|
- Rebuild for ocaml 3.09.3
|
|
|
|
|
2006-08-28 17:03:26 +00:00
|
|
|
* Mon Aug 28 2006 Gerard Milmeister <gemi@bluewin.ch> - 1.02-8
|
|
|
|
- Rebuild for FE6
|
|
|
|
|
2006-05-10 18:09:00 +00:00
|
|
|
* Wed May 10 2006 Gerard Milmeister <gemi@bluewin.ch> - 1.02-7
|
|
|
|
- rebuilt for ocaml 3.09.2
|
|
|
|
|
2006-02-26 12:49:47 +00:00
|
|
|
* Sun Feb 26 2006 Gerard Milmeister <gemi@bluewin.ch> - 1.02-4
|
|
|
|
- Rebuild for ocaml 3.09.1
|
|
|
|
|
2006-02-25 16:58:54 +00:00
|
|
|
* Sat Feb 25 2006 Gerard Milmeister <gemi@bluewin.ch> - 1.02-3
|
|
|
|
- Rebuild for Fedora Extras 5
|
|
|
|
|
2005-11-01 15:39:20 +00:00
|
|
|
* Tue Nov 1 2005 Gerard Milmeister <gemi@bluewin.ch> - 1.02-2
|
|
|
|
- build opt libraries
|
|
|
|
|
|
|
|
* Tue Nov 1 2005 Gerard Milmeister <gemi@bluewin.ch> - 1.02-1
|
2005-11-01 00:42:51 +00:00
|
|
|
- New Version 1.02
|
|
|
|
|
2005-09-12 00:13:40 +00:00
|
|
|
* Sun Sep 11 2005 Gerard Milmeister <gemi@bluewin.ch> - 1.01-7
|
|
|
|
- Rebuild with new ocaml
|
|
|
|
|
2005-05-26 18:54:23 +00:00
|
|
|
* Thu May 26 2005 Toshio Kuratomi <toshio-tiki-lounge.com> - 1.01-6
|
|
|
|
- Bump and rebuild with new ocaml.
|
|
|
|
|
2005-05-22 23:04:42 +00:00
|
|
|
* Sun May 22 2005 Jeremy Katz <katzj@redhat.com> - 1.01-5
|
|
|
|
- rebuild on all arches
|
|
|
|
|
2013-09-14 08:03:18 +00:00
|
|
|
* Fri Apr 8 2005 Michael Schwendt <mschwendt[AT]users.sf.net>
|
2005-04-06 22:12:20 +00:00
|
|
|
- rebuilt
|
|
|
|
|
2005-04-01 17:05:32 +00:00
|
|
|
* Fri Apr 1 2005 Gerard Milmeister <gemi@bluewin.ch> - 1.01-3
|
|
|
|
- Rebuild for ocaml 3.08.3
|
|
|
|
|
2005-02-12 11:37:23 +00:00
|
|
|
* Sat Feb 12 2005 Gerard Milmeister <gemi@bluewin.ch> - 0:1.01-2
|
2018-02-09 08:05:18 +00:00
|
|
|
- Removed %%{_smp_mflags} as it breaks the build
|
2005-02-12 11:37:23 +00:00
|
|
|
|
|
|
|
* Thu Aug 19 2004 Gerard Milmeister <gemi@bluewin.ch> - 0:1.01-0.fdr.1
|
|
|
|
- New Version 1.01
|
|
|
|
|
2004-11-08 04:39:51 +00:00
|
|
|
* Mon Dec 1 2003 Gerard Milmeister <gemi@bluewin.ch> - 0:1.00-0.fdr.4
|
|
|
|
- Patch to used GL/freeglut.h instead of GL/glut.h
|
|
|
|
- Add BuildRequires for labltk
|
|
|
|
|
|
|
|
* Fri Nov 28 2003 Gerard Milmeister <gemi@bluewin.ch> - 0:1.00-0.fdr.3
|
|
|
|
- Add BuildRequires for camlp4
|