2007-07-07 12:32:26 +00:00
|
|
|
Name: ocaml-lablgtk
|
2020-06-29 21:25:09 +00:00
|
|
|
Version: 2.18.11
|
2021-01-26 21:58:53 +00:00
|
|
|
Release: 5%{?dist}
|
2005-04-06 22:12:20 +00:00
|
|
|
|
2005-03-03 22:41:31 +00:00
|
|
|
Summary: Objective Caml interface to gtk+
|
2004-11-08 04:40:06 +00:00
|
|
|
|
2008-08-11 20:51:30 +00:00
|
|
|
License: LGPLv2 with exceptions
|
2009-02-06 12:03:40 +00:00
|
|
|
|
2012-06-08 15:24:46 +00:00
|
|
|
URL: http://lablgtk.forge.ocamlcore.org/
|
2020-01-24 17:12:53 +00:00
|
|
|
Source: https://github.com/garrigue/lablgtk/archive/%{version}/lablgtk-%{version}.tar.gz
|
|
|
|
|
|
|
|
BuildRequires: help2man
|
2020-11-09 23:42:24 +00:00
|
|
|
BuildRequires: make
|
2012-04-28 16:57:14 +00:00
|
|
|
BuildRequires: ocaml >= 3.12.1-3
|
2012-10-17 17:35:44 +00:00
|
|
|
BuildRequires: ocaml-findlib
|
2007-07-07 12:32:26 +00:00
|
|
|
BuildRequires: ocaml-ocamldoc
|
2020-01-24 17:12:53 +00:00
|
|
|
BuildRequires: pkgconfig(gtk+-2.0)
|
|
|
|
BuildRequires: pkgconfig(gtksourceview-2.0)
|
|
|
|
BuildRequires: pkgconfig(gtkspell-2.0)
|
|
|
|
BuildRequires: pkgconfig(libglade-2.0)
|
|
|
|
BuildRequires: pkgconfig(libgnomecanvas-2.0)
|
|
|
|
BuildRequires: pkgconfig(libgnomeui-2.0)
|
|
|
|
BuildRequires: pkgconfig(librsvg-2.0)
|
|
|
|
BuildRequires: pkgconfig(ncurses)
|
|
|
|
BuildRequires: pkgconfig(xmu)
|
|
|
|
BuildRequires: pkgconfig(zlib)
|
2005-12-31 23:45:56 +00:00
|
|
|
|
2019-08-29 23:35:21 +00:00
|
|
|
%global __ocaml_requires_opts -i GtkSourceView2_types
|
|
|
|
|
2004-11-08 04:40:06 +00:00
|
|
|
|
|
|
|
%description
|
|
|
|
LablGTK is is an Objective Caml interface to gtk+.
|
|
|
|
|
|
|
|
It uses the rich type system of Objective Caml 3 to provide a strongly
|
|
|
|
typed, yet very comfortable, object-oriented interface to gtk+. This
|
|
|
|
is not that easy if you know the dynamic typing approach taken by
|
|
|
|
gtk+.
|
|
|
|
|
2006-05-10 17:53:15 +00:00
|
|
|
|
2007-07-07 12:32:26 +00:00
|
|
|
%package devel
|
|
|
|
Summary: Development files for %{name}
|
2020-01-24 17:12:53 +00:00
|
|
|
Requires: %{name}%{?_isa} = %{version}-%{release}
|
|
|
|
Requires: gtk2-devel%{?_isa}
|
2007-07-07 12:32:26 +00:00
|
|
|
|
|
|
|
%description devel
|
|
|
|
The %{name}-devel package contains libraries and signature files for
|
|
|
|
developing applications that use %{name}.
|
2005-12-31 23:45:56 +00:00
|
|
|
|
|
|
|
|
2004-11-08 04:40:06 +00:00
|
|
|
%prep
|
2020-01-24 17:12:53 +00:00
|
|
|
%autosetup -n lablgtk-%{version} -p1
|
2011-07-27 17:53:23 +00:00
|
|
|
|
2020-01-24 17:12:53 +00:00
|
|
|
# Remove spurious executable bits
|
|
|
|
chmod a-x README*
|
2004-11-08 04:40:06 +00:00
|
|
|
|
|
|
|
%build
|
2013-09-14 08:09:23 +00:00
|
|
|
# Parallel builds don't work.
|
|
|
|
unset MAKEFLAGS
|
2018-02-13 08:34:48 +00:00
|
|
|
%configure --enable-debug
|
2020-01-24 17:12:53 +00:00
|
|
|
sed -e "s|-O|$RPM_OPT_FLAGS|" \
|
|
|
|
-e "s|-shared|& -ccopt \"$RPM_LD_FLAGS\"|" \
|
|
|
|
-e "s|(CAMLMKLIB)|& -ldopt \"$RPM_LD_FLAGS\"|" \
|
|
|
|
-i src/Makefile
|
2020-06-29 21:25:09 +00:00
|
|
|
%ifarch %{ocaml_native_compiler}
|
2013-09-14 08:09:23 +00:00
|
|
|
make world CAMLOPT="ocamlopt.opt -g"
|
|
|
|
make opt CAMLOPT="ocamlopt.opt -g"
|
2015-07-22 13:48:31 +00:00
|
|
|
%else
|
|
|
|
make world CAMLC="ocamlc -g"
|
|
|
|
%endif
|
2005-12-31 23:45:56 +00:00
|
|
|
|
2004-11-08 04:40:06 +00:00
|
|
|
|
|
|
|
%install
|
2012-10-17 18:30:54 +00:00
|
|
|
export DESTDIR=$RPM_BUILD_ROOT
|
|
|
|
export OCAMLFIND_DESTDIR=$RPM_BUILD_ROOT%{_libdir}/ocaml
|
2007-07-07 12:32:26 +00:00
|
|
|
mkdir -p $RPM_BUILD_ROOT%{_bindir}
|
|
|
|
mkdir -p $RPM_BUILD_ROOT%{_libdir}
|
|
|
|
mkdir -p $RPM_BUILD_ROOT%{_libdir}/ocaml/lablgtk2
|
|
|
|
mkdir -p $RPM_BUILD_ROOT%{_libdir}/ocaml/stublibs
|
2005-09-10 19:27:23 +00:00
|
|
|
make install \
|
2012-10-17 18:30:54 +00:00
|
|
|
RANLIB=true \
|
2005-09-10 19:27:23 +00:00
|
|
|
BINDIR=$RPM_BUILD_ROOT%{_bindir} \
|
|
|
|
LIBDIR=$RPM_BUILD_ROOT%{_libdir} \
|
|
|
|
INSTALLDIR=$RPM_BUILD_ROOT%{_libdir}/ocaml/lablgtk2 \
|
|
|
|
DLLDIR=$RPM_BUILD_ROOT%{_libdir}/ocaml/stublibs
|
2020-01-24 17:12:53 +00:00
|
|
|
cp -p META $RPM_BUILD_ROOT%{_libdir}/ocaml/lablgtk2
|
2004-11-08 04:40:06 +00:00
|
|
|
|
2013-10-01 10:33:11 +00:00
|
|
|
# Remove ld.conf (part of main OCaml dist).
|
|
|
|
rm $RPM_BUILD_ROOT%{_libdir}/ocaml/ld.conf
|
|
|
|
|
2007-07-07 12:32:26 +00:00
|
|
|
# Remove unnecessary *.ml files (ones which have a *.mli).
|
|
|
|
pushd $RPM_BUILD_ROOT%{_libdir}/ocaml/lablgtk2
|
|
|
|
for f in *.ml; do \
|
|
|
|
b=`basename $f .ml`; \
|
|
|
|
if [ -f "$b.mli" ]; then \
|
|
|
|
rm $f; \
|
|
|
|
fi; \
|
|
|
|
done
|
|
|
|
popd
|
|
|
|
|
|
|
|
# Remove .cvsignore files from examples directory.
|
|
|
|
find examples -name .cvsignore -exec rm {} \;
|
|
|
|
|
2020-01-24 17:12:53 +00:00
|
|
|
# Generate man pages
|
|
|
|
export LD_LIBRARY_PATH=$PWD/src
|
|
|
|
mkdir -p $RPM_BUILD_ROOT%{_mandir}/man1
|
|
|
|
cp -p src/lablgladecc src/lablgladecc2
|
|
|
|
for bin in gdk_pixbuf_mlsource lablgladecc2 lablgtk2; do
|
|
|
|
help2man -N --version-string=%{version} src/$bin > \
|
|
|
|
$RPM_BUILD_ROOT%{_mandir}/man1/$bin.1
|
|
|
|
done
|
|
|
|
|
2006-05-10 17:53:15 +00:00
|
|
|
|
2004-11-08 04:40:06 +00:00
|
|
|
%files
|
2020-01-24 17:12:53 +00:00
|
|
|
%doc README CHANGES
|
|
|
|
%license COPYING LGPL
|
2007-07-07 12:32:26 +00:00
|
|
|
%dir %{_libdir}/ocaml/lablgtk2
|
|
|
|
%{_libdir}/ocaml/lablgtk2/*.cmi
|
|
|
|
%{_libdir}/ocaml/lablgtk2/*.cma
|
2020-06-29 21:25:09 +00:00
|
|
|
%ifarch %{ocaml_native_compiler}
|
2009-09-28 15:35:05 +00:00
|
|
|
%{_libdir}/ocaml/lablgtk2/*.cmxs
|
2015-07-22 13:48:31 +00:00
|
|
|
%endif
|
2012-10-17 18:30:54 +00:00
|
|
|
%{_libdir}/ocaml/stublibs/*.so*
|
2009-02-06 12:03:40 +00:00
|
|
|
%{_bindir}/gdk_pixbuf_mlsource
|
2007-07-07 12:32:26 +00:00
|
|
|
%{_bindir}/lablgladecc2
|
|
|
|
%{_bindir}/lablgtk2
|
2020-01-24 17:12:53 +00:00
|
|
|
%{_mandir}/man1/gdk_pixbuf_mlsource.1*
|
|
|
|
%{_mandir}/man1/lablgladecc2.1*
|
|
|
|
%{_mandir}/man1/lablgtk2.1*
|
2007-07-07 12:32:26 +00:00
|
|
|
|
|
|
|
|
|
|
|
%files devel
|
2020-01-24 17:12:53 +00:00
|
|
|
%doc CHANGES.API
|
2007-07-07 12:32:26 +00:00
|
|
|
%dir %{_libdir}/ocaml/lablgtk2
|
|
|
|
%{_libdir}/ocaml/lablgtk2/META
|
|
|
|
%{_libdir}/ocaml/lablgtk2/*.a
|
2020-06-29 21:25:09 +00:00
|
|
|
%ifarch %{ocaml_native_compiler}
|
2007-07-07 12:32:26 +00:00
|
|
|
%{_libdir}/ocaml/lablgtk2/*.cmxa
|
|
|
|
%{_libdir}/ocaml/lablgtk2/*.cmx
|
2015-07-22 13:48:31 +00:00
|
|
|
%endif
|
2007-07-07 12:32:26 +00:00
|
|
|
%{_libdir}/ocaml/lablgtk2/*.mli
|
|
|
|
%{_libdir}/ocaml/lablgtk2/*.ml
|
|
|
|
%{_libdir}/ocaml/lablgtk2/*.h
|
|
|
|
%{_libdir}/ocaml/lablgtk2/gtkInit.cmo
|
2020-06-29 21:25:09 +00:00
|
|
|
%ifarch %{ocaml_native_compiler}
|
2007-07-07 12:32:26 +00:00
|
|
|
%{_libdir}/ocaml/lablgtk2/gtkInit.o
|
2015-07-22 13:48:31 +00:00
|
|
|
%endif
|
2007-07-07 12:32:26 +00:00
|
|
|
%{_libdir}/ocaml/lablgtk2/gtkThInit.cmo
|
|
|
|
%{_libdir}/ocaml/lablgtk2/gtkThread.cmo
|
2020-06-29 21:25:09 +00:00
|
|
|
%ifarch %{ocaml_native_compiler}
|
2007-07-07 12:32:26 +00:00
|
|
|
%{_libdir}/ocaml/lablgtk2/gtkThread.o
|
2015-07-22 13:48:31 +00:00
|
|
|
%endif
|
2007-07-07 12:32:26 +00:00
|
|
|
%{_libdir}/ocaml/lablgtk2/propcc
|
|
|
|
%{_libdir}/ocaml/lablgtk2/varcc
|
2004-11-08 04:40:06 +00:00
|
|
|
|
2006-05-10 17:53:15 +00:00
|
|
|
|
2004-11-08 04:40:06 +00:00
|
|
|
%changelog
|
2021-01-26 21:58:53 +00:00
|
|
|
* Tue Jan 26 2021 Fedora Release Engineering <releng@fedoraproject.org> - 2.18.11-5
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_34_Mass_Rebuild
|
|
|
|
|
2020-09-01 19:06:35 +00:00
|
|
|
* Tue Sep 01 2020 Richard W.M. Jones <rjones@redhat.com> - 2.18.11-4
|
|
|
|
- OCaml 4.11.1 rebuild
|
|
|
|
|
2020-08-21 10:59:57 +00:00
|
|
|
* Fri Aug 21 2020 Richard W.M. Jones <rjones@redhat.com> - 2.18.11-3
|
|
|
|
- OCaml 4.11.0 rebuild
|
|
|
|
|
2020-07-28 12:10:49 +00:00
|
|
|
* Tue Jul 28 2020 Fedora Release Engineering <releng@fedoraproject.org> - 2.18.11-2
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild
|
|
|
|
|
2020-06-29 21:25:09 +00:00
|
|
|
* Mon Jun 29 2020 Jerry James <loganjerry@gmail.com> - 2.18.11-1
|
|
|
|
- New upstream version 2.18.11
|
|
|
|
- Drop upstreamed -fno-common patch
|
|
|
|
|
2020-05-04 22:06:48 +00:00
|
|
|
* Mon May 04 2020 Richard W.M. Jones <rjones@redhat.com> - 2.18.10-7
|
|
|
|
- OCaml 4.11.0+dev2-2020-04-22 rebuild
|
|
|
|
|
2020-04-21 18:33:30 +00:00
|
|
|
* Tue Apr 21 2020 Richard W.M. Jones <rjones@redhat.com> - 2.18.10-6
|
|
|
|
- OCaml 4.11.0 pre-release attempt 2
|
|
|
|
|
2020-04-17 20:22:44 +00:00
|
|
|
* Fri Apr 17 2020 Richard W.M. Jones <rjones@redhat.com> - 2.18.10-5
|
|
|
|
- OCaml 4.11.0 pre-release
|
|
|
|
|
2020-04-02 13:05:49 +00:00
|
|
|
* Thu Apr 02 2020 Richard W.M. Jones <rjones@redhat.com> - 2.18.10-4
|
|
|
|
- Update all OCaml dependencies for RPM 4.16.
|
|
|
|
|
2020-02-26 10:56:21 +00:00
|
|
|
* Wed Feb 26 2020 Richard W.M. Jones <rjones@redhat.com> - 2.18.10-3
|
|
|
|
- OCaml 4.10.0 final.
|
|
|
|
|
2020-01-29 19:36:51 +00:00
|
|
|
* Wed Jan 29 2020 Fedora Release Engineering <releng@fedoraproject.org> - 2.18.10-2
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_32_Mass_Rebuild
|
|
|
|
|
2020-01-24 17:12:53 +00:00
|
|
|
* Fri Jan 24 2020 Jerry James <loganjerry@gmail.com> - 2.18.10-1
|
|
|
|
- New upstream version 2.18.10
|
|
|
|
- Add -fno-common patch to fix build with gcc 10
|
|
|
|
- Link shared objects with RPM_OPT_FLAGS
|
|
|
|
- Use %%license macro
|
|
|
|
- Drop ancient Obsoletes/Provides; package was obsoleting itself
|
|
|
|
- Add man pages
|
|
|
|
|
2020-01-20 08:35:49 +00:00
|
|
|
* Mon Jan 20 2020 Richard W.M. Jones <rjones@redhat.com> - 2.18.9-1
|
|
|
|
- New upstream version 2.18.9.
|
|
|
|
- Remove patch which has equivalent fix upstream.
|
|
|
|
|
2020-01-19 11:51:03 +00:00
|
|
|
* Sun Jan 19 2020 Richard W.M. Jones <rjones@redhat.com> - 2.18.8-8
|
|
|
|
- OCaml 4.10.0+beta1 rebuild.
|
|
|
|
|
2020-01-09 15:50:49 +00:00
|
|
|
* Thu Jan 09 2020 Richard W.M. Jones <rjones@redhat.com> - 2.18.8-7
|
|
|
|
- OCaml 4.09.0 for riscv64
|
|
|
|
|
2019-12-05 21:29:58 +00:00
|
|
|
* Thu Dec 05 2019 Richard W.M. Jones <rjones@redhat.com> - 2.18.8-6
|
|
|
|
- OCaml 4.09.0 (final) rebuild.
|
|
|
|
|
2019-08-29 23:35:21 +00:00
|
|
|
* Thu Aug 29 2019 Jerry James <loganjerry@gmail.com> - 2.18.8-5
|
|
|
|
- Bring the gtksourceview2 dependency back.
|
|
|
|
|
2019-08-16 10:31:43 +00:00
|
|
|
* Fri Aug 16 2019 Richard W.M. Jones <rjones@redhat.com> - 2.18.8-4
|
|
|
|
- OCaml 4.08.1 (final) rebuild.
|
|
|
|
|
2019-08-10 09:36:14 +00:00
|
|
|
* Sat Aug 10 2019 Richard W.M. Jones <rjones@redhat.com> - 2.18.8-3
|
|
|
|
- Drop dependency on gtksourceview2.
|
|
|
|
|
2019-07-31 20:52:17 +00:00
|
|
|
* Wed Jul 31 2019 Richard W.M. Jones <rjones@redhat.com> - 2.18.8-2
|
|
|
|
- OCaml 4.08.1 (rc2) rebuild.
|
|
|
|
|
2019-07-27 08:59:00 +00:00
|
|
|
* Sat Jul 27 2019 Richard W.M. Jones <rjones@redhat.com> - 2.18.8-1
|
|
|
|
- New version 2.18.8.
|
|
|
|
- Remove BRs on camlp4 and lablgl.
|
|
|
|
- Drop HTML documentation.
|
|
|
|
|
2019-07-25 22:53:56 +00:00
|
|
|
* Thu Jul 25 2019 Fedora Release Engineering <releng@fedoraproject.org> - 2.18.6-10
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_31_Mass_Rebuild
|
|
|
|
|
2019-02-01 16:51:12 +00:00
|
|
|
* Fri Feb 01 2019 Fedora Release Engineering <releng@fedoraproject.org> - 2.18.6-9
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_30_Mass_Rebuild
|
|
|
|
|
2018-07-13 14:44:14 +00:00
|
|
|
* Fri Jul 13 2018 Fedora Release Engineering <releng@fedoraproject.org> - 2.18.6-8
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild
|
|
|
|
|
2018-07-11 12:32:51 +00:00
|
|
|
* Wed Jul 11 2018 Richard W.M. Jones <rjones@redhat.com> - 2.18.6-7
|
|
|
|
- OCaml 4.07.0 (final) rebuild.
|
|
|
|
|
2018-06-19 20:26:38 +00:00
|
|
|
* Tue Jun 19 2018 Richard W.M. Jones <rjones@redhat.com> - 2.18.6-6
|
|
|
|
- OCaml 4.07.0-rc1 rebuild.
|
|
|
|
|
2018-02-13 08:34:48 +00:00
|
|
|
* Tue Feb 13 2018 Richard W.M. Jones <rjones@redhat.com> - 2.18.6-5
|
|
|
|
- Remove support for GL.
|
|
|
|
|
2018-02-09 08:05:18 +00:00
|
|
|
* Fri Feb 09 2018 Igor Gnatenko <ignatenkobrain@fedoraproject.org> - 2.18.6-4
|
|
|
|
- Escape macros in %%changelog
|
|
|
|
|
2018-02-08 08:51:29 +00:00
|
|
|
* Thu Feb 08 2018 Fedora Release Engineering <releng@fedoraproject.org> - 2.18.6-3
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild
|
|
|
|
|
2017-11-07 22:30:53 +00:00
|
|
|
* Tue Nov 07 2017 Richard W.M. Jones <rjones@redhat.com> - 2.18.6-2
|
|
|
|
- OCaml 4.06.0 rebuild.
|
|
|
|
|
2017-11-07 19:15:42 +00:00
|
|
|
* Tue Nov 07 2017 Richard W.M. Jones <rjones@redhat.com> - 2.18.6-1
|
|
|
|
- New upstream version 2.18.6.
|
|
|
|
|
2017-08-07 17:14:30 +00:00
|
|
|
* Mon Aug 07 2017 Richard W.M. Jones <rjones@redhat.com> - 2.18.5-9
|
|
|
|
- OCaml 4.05.0 rebuild.
|
|
|
|
|
2017-08-03 04:16:30 +00:00
|
|
|
* Thu Aug 03 2017 Fedora Release Engineering <releng@fedoraproject.org> - 2.18.5-8
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Binutils_Mass_Rebuild
|
|
|
|
|
2017-07-27 01:28:42 +00:00
|
|
|
* Thu Jul 27 2017 Fedora Release Engineering <releng@fedoraproject.org> - 2.18.5-7
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild
|
|
|
|
|
2017-06-26 16:32:14 +00:00
|
|
|
* Mon Jun 26 2017 Richard W.M. Jones <rjones@redhat.com> - 2.18.5-6
|
|
|
|
- Bump release and rebuild.
|
|
|
|
|
2017-06-26 16:08:52 +00:00
|
|
|
* Mon Jun 26 2017 Richard W.M. Jones <rjones@redhat.com> - 2.18.5-5
|
|
|
|
- OCaml 4.04.2 rebuild.
|
|
|
|
|
2017-05-11 15:48:45 +00:00
|
|
|
* Thu May 11 2017 Richard W.M. Jones <rjones@redhat.com> - 2.18.5-4
|
|
|
|
- OCaml 4.04.1 rebuild.
|
|
|
|
|
2017-02-11 00:32:29 +00:00
|
|
|
* Sat Feb 11 2017 Fedora Release Engineering <releng@fedoraproject.org> - 2.18.5-3
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild
|
|
|
|
|
2016-11-09 17:59:20 +00:00
|
|
|
* Wed Nov 09 2016 Dan Horák <dan@danny.cz> - 2.18.5-2
|
|
|
|
- rebuild for s390x codegen bug
|
|
|
|
|
2016-11-04 16:17:13 +00:00
|
|
|
* Fri Nov 04 2016 Richard W.M. Jones <rjones@redhat.com> - 2.18.5-1
|
|
|
|
- New version 2.18.5.
|
|
|
|
|
2016-02-04 11:07:46 +00:00
|
|
|
* Thu Feb 04 2016 Fedora Release Engineering <releng@fedoraproject.org> - 2.18.3-8
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild
|
|
|
|
|
2015-07-28 13:15:41 +00:00
|
|
|
* Tue Jul 28 2015 Richard W.M. Jones <rjones@redhat.com> - 2.18.3-7
|
|
|
|
- OCaml 4.02.3 rebuild.
|
|
|
|
|
2015-07-22 13:48:31 +00:00
|
|
|
* Wed Jul 22 2015 Richard W.M. Jones <rjones@redhat.com> - 2.18.3-6
|
|
|
|
- Enable bytecode builds (patch supplied by Rafael Fonseca).
|
|
|
|
|
2015-07-07 15:45:06 +00:00
|
|
|
* Tue Jul 07 2015 Richard W.M. Jones <rjones@redhat.com> - 2.18.3-5
|
|
|
|
- Drop dependency on gtksourceview-devel. See:
|
|
|
|
https://lists.fedoraproject.org/pipermail/devel/2015-July/thread.html#212049
|
|
|
|
|
2015-06-24 15:05:06 +00:00
|
|
|
* Wed Jun 24 2015 Richard W.M. Jones <rjones@redhat.com> - 2.18.3-4
|
|
|
|
- ocaml-4.02.2 final rebuild.
|
|
|
|
|
2015-06-17 11:53:34 +00:00
|
|
|
* Wed Jun 17 2015 Richard W.M. Jones <rjones@redhat.com> - 2.18.3-3
|
|
|
|
- ocaml-4.02.2 rebuild.
|
|
|
|
|
2015-02-16 16:07:56 +00:00
|
|
|
* Mon Feb 16 2015 Richard W.M. Jones <rjones@redhat.com> - 2.18.3-2
|
|
|
|
- ocaml-4.02.1 rebuild.
|
|
|
|
|
2014-10-29 11:57:51 +00:00
|
|
|
* Wed Oct 29 2014 Richard W.M. Jones <rjones@redhat.com> - 2.18.3-1
|
|
|
|
- New upstream version 2.18.3, which corrects a bindings problem
|
|
|
|
with OCaml 4.02.
|
|
|
|
|
2014-08-30 15:28:47 +00:00
|
|
|
* Sat Aug 30 2014 Richard W.M. Jones <rjones@redhat.com> - 2.18.0-8
|
|
|
|
- ocaml-4.02.0 final rebuild.
|
|
|
|
|
2014-08-22 22:16:23 +00:00
|
|
|
* Fri Aug 22 2014 Richard W.M. Jones <rjones@redhat.com> - 2.18.0-7
|
|
|
|
- ocaml-4.02.0+rc1 rebuild.
|
|
|
|
|
2014-08-17 12:56:16 +00:00
|
|
|
* Sun Aug 17 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.18.0-6
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_22_Mass_Rebuild
|
|
|
|
|
2014-08-01 19:45:15 +00:00
|
|
|
* Fri Aug 01 2014 Richard W.M. Jones <rjones@redhat.com> - 2.18.0-5
|
|
|
|
- ocaml-4.02.0-0.8.git10e45753.fc22 rebuild.
|
|
|
|
|
2014-07-23 09:17:10 +00:00
|
|
|
* Tue Jul 22 2014 Richard W.M. Jones <rjones@redhat.com> - 2.18.0-4
|
|
|
|
- OCaml 4.02.0 beta rebuild.
|
|
|
|
|
2014-07-14 16:08:26 +00:00
|
|
|
* Mon Jul 14 2014 Orion Poplawski <orion@cora.nwra.com> - 2.18.0-3
|
|
|
|
- Rebuild for OCaml 4.02
|
|
|
|
|
2014-06-07 15:40:42 +00:00
|
|
|
* Sat Jun 07 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.18.0-2
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild
|
|
|
|
|
2013-10-01 10:33:11 +00:00
|
|
|
* Tue Oct 1 2013 Richard W.M. Jones <rjones@redhat.com> - 2.18.0-1
|
|
|
|
- New upstream version 2.18.0.
|
|
|
|
|
2013-09-14 08:09:23 +00:00
|
|
|
* Sat Sep 14 2013 Richard W.M. Jones <rjones@redhat.com> - 2.16.0-5
|
|
|
|
- Rebuild for OCaml 4.01.0.
|
|
|
|
- Enable debuginfo.
|
|
|
|
- Remove bogus (and not accepted upstream) patch.
|
|
|
|
|
2013-08-04 21:27:33 +00:00
|
|
|
* Sun Aug 4 2013 Richard W.M. Jones <rjones@redhat.com> - 2.16.0-4
|
|
|
|
- gnome-panel is dead, apparently.
|
|
|
|
|
2013-08-03 14:55:08 +00:00
|
|
|
* Sat Aug 03 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.16.0-3
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_20_Mass_Rebuild
|
|
|
|
|
2013-02-14 08:59:16 +00:00
|
|
|
* Thu Feb 14 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.16.0-2
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_19_Mass_Rebuild
|
|
|
|
|
2012-10-17 18:30:54 +00:00
|
|
|
* Wed Oct 17 2012 Richard W.M. Jones <rjones@redhat.com> - 2.16.0-2
|
|
|
|
- Clean up the spec file.
|
|
|
|
- Set OCAMLFIND_DESTDIR so the ocamlfind install works.
|
|
|
|
|
2012-10-17 16:56:47 +00:00
|
|
|
* Wed Oct 17 2012 Orion Poplawski <orion@cora.nwra.com> - 2.16.0-1
|
|
|
|
- Update to 2.16.0
|
|
|
|
- Rebase avoid-queue-empty-in-gtkThread patch
|
|
|
|
- Drop ocaml 4.00 patch fixed upstream, and drop autoconf rebuild
|
|
|
|
- Drop META version fix no longer needed
|
2012-10-17 17:35:44 +00:00
|
|
|
- Add BR ocaml-findlib
|
2012-10-17 16:56:47 +00:00
|
|
|
|
2012-07-20 06:00:51 +00:00
|
|
|
* Fri Jul 20 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.14.2-12
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild
|
|
|
|
|
2012-06-08 21:58:46 +00:00
|
|
|
* Fri Jun 8 2012 Richard W.M. Jones <rjones@redhat.com> - 2.14.2-11
|
|
|
|
- Patch for changes in ocamldoc in OCaml 4.00.0.
|
|
|
|
|
2012-06-08 15:24:46 +00:00
|
|
|
* Fri Jun 8 2012 Orion Poplawski <orion@cora.nwra.com> - 2.14.2-10
|
|
|
|
- Rebuild for OCaml 4.00.0.
|
|
|
|
- Updated URL.
|
|
|
|
|
2012-04-28 16:57:14 +00:00
|
|
|
* Sat Apr 28 2012 Richard W.M. Jones <rjones@redhat.com> - 2.14.2-9
|
|
|
|
- Bump and rebuild against new OCaml compiler in ARM.
|
|
|
|
|
2012-01-06 15:26:10 +00:00
|
|
|
* Fri Jan 06 2012 Richard W.M. Jones <rjones@redhat.com> - 2.14.2-8
|
|
|
|
- Rebuild for OCaml 3.12.1.
|
|
|
|
|
2011-11-07 14:12:41 +00:00
|
|
|
* Mon Nov 7 2011 Richard W.M. Jones <rjones@redhat.com> - 2.14.2-7
|
|
|
|
- Bump and rebuild for updated libpng 1.5.
|
|
|
|
|
2011-07-27 17:53:23 +00:00
|
|
|
* Wed Jul 27 2011 Richard W.M. Jones <rjones@redhat.com> - 2.14.2-6
|
|
|
|
- Add patch (sent upstream) to fix gtkThread async callbacks throwing
|
|
|
|
Queue.Empty.
|
|
|
|
|
2011-02-09 01:55:10 +00:00
|
|
|
* Tue Feb 08 2011 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.14.2-4
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild
|
|
|
|
|
2011-02-06 10:24:20 +00:00
|
|
|
* Fri Feb 4 2011 Richard W.M. Jones <rjones@redhat.com> - 2.14.2-3
|
|
|
|
- Rebuild against rpm-4.9.0-0.beta1.6.fc15. See discussion:
|
|
|
|
http://lists.fedoraproject.org/pipermail/devel/2011-February/148398.html
|
|
|
|
|
2011-02-04 13:32:59 +00:00
|
|
|
* Fri Feb 4 2011 Richard W.M. Jones <rjones@redhat.com> - 2.14.2-2
|
|
|
|
- Rebuild for libpanel-applet soname bump.
|
|
|
|
|
2011-01-05 14:09:30 +00:00
|
|
|
* Wed Jan 5 2011 Richard W.M. Jones <rjones@redhat.com> - 2.14.2-1
|
|
|
|
- New upstream version 2.14.2.
|
|
|
|
- Remove get/set patch, fixed upstream.
|
|
|
|
|
2010-08-24 13:05:49 +00:00
|
|
|
* Tue Aug 24 2010 Adam Tkac <atkac redhat com> - 2.14.0-6
|
|
|
|
- fix building against new glib (#626765)
|
|
|
|
|
2010-07-31 17:06:14 +00:00
|
|
|
* Tue Jul 27 2010 David A. Wheeler <dwheeler@dwheeler.com> - 2.14.0-5
|
|
|
|
- Add support for gtksourceview2 (in addition to gtksourceview 1.0).
|
|
|
|
|
2010-01-05 13:42:37 +00:00
|
|
|
* Tue Jan 5 2010 Richard W.M. Jones <rjones@redhat.com> - 2.14.0-4
|
|
|
|
- Use upstream RPM 4.8 dependency generator.
|
|
|
|
- -devel package should depend on gtk2-devel, otherwise lablgtk programs
|
|
|
|
cannot find libgtk-x11-2.0.so.0 when they are being built.
|
|
|
|
|
2009-12-30 13:50:20 +00:00
|
|
|
* Wed Dec 30 2009 Richard W.M. Jones <rjones@redhat.com> - 2.14.0-3
|
|
|
|
- Rebuild for OCaml 3.11.2.
|
|
|
|
|
2009-09-28 15:44:19 +00:00
|
|
|
* Mon Sep 28 2009 Richard W.M. Jones <rjones@redhat.com> - 2.14.0-2
|
|
|
|
- Ignore GtkSourceView2_types dependency (pure type-only *.cmi file).
|
|
|
|
|
2009-09-28 15:35:05 +00:00
|
|
|
* Mon Sep 28 2009 Richard W.M. Jones <rjones@redhat.com> - 2.14.0-1
|
|
|
|
- New upstream version 2.14.0.
|
|
|
|
- Patch to fix ml_panel.c is now upstream, so removed.
|
|
|
|
- New *.cmxs files (dynamically linked OCaml native code) added to
|
|
|
|
the base package.
|
|
|
|
|
2009-07-25 19:58:30 +00:00
|
|
|
* Sat Jul 25 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.12.0-4
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild
|
|
|
|
|
2009-05-23 07:31:30 +00:00
|
|
|
* Sat May 23 2009 Richard W.M. Jones <rjones@redhat.com> - 2.12.0-3
|
|
|
|
- Rebuild for OCaml 3.11.1
|
|
|
|
|
2009-04-16 09:06:09 +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:12:12 +00:00
|
|
|
* Wed Feb 25 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.12.0-2
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild
|
|
|
|
|
2009-02-06 12:03:40 +00:00
|
|
|
* Fri Feb 6 2009 Richard W.M. Jones <rjones@redhat.com> - 2.12.0-1
|
|
|
|
- New upstream version 2.12.0.
|
|
|
|
- Patch to include gnome-ui-init.h.
|
|
|
|
- gdk-pixbuf-mlsource was renamed gdk_pixbuf_mlsource (this will
|
|
|
|
probably break things).
|
|
|
|
|
2008-12-04 17:01:43 +00:00
|
|
|
* Wed Nov 26 2008 Richard W.M. Jones <rjones@redhat.com> - 2.10.1-7
|
|
|
|
- Rebuild for OCaml 3.11.0+rc1.
|
|
|
|
|
2008-11-24 11:36:16 +00:00
|
|
|
* Wed Nov 19 2008 Richard W.M. Jones <rjones@redhat.com> - 2.10.1-6
|
|
|
|
- Rebuild for OCaml 3.11.0
|
|
|
|
|
2008-09-22 06:24:56 +00:00
|
|
|
* Mon Sep 22 2008 Richard W.M. Jones <rjones@redhat.com> - 2.10.1-5
|
|
|
|
- Ignore bogus requires GtkSourceView_types.
|
|
|
|
|
2008-09-18 11:49:58 +00:00
|
|
|
* Thu Sep 18 2008 Richard W.M. Jones <rjones@redhat.com> - 2.10.1-4
|
|
|
|
- Add missing BR for gtksourceview-devel (rhbz#462651).
|
|
|
|
|
2008-08-11 20:51:30 +00:00
|
|
|
* Mon Aug 11 2008 Tom "spot" Callaway <tcallawa@redhat.com> - 2.10.1-3
|
|
|
|
- fix license tag
|
|
|
|
|
2008-04-23 16:16:52 +00:00
|
|
|
* Wed Apr 23 2008 Richard W.M. Jones <rjones@redhat.com> - 2.10.1-2
|
|
|
|
- Rebuild for OCaml 3.10.2
|
|
|
|
|
2008-04-23 08:48:51 +00:00
|
|
|
* Mon Apr 21 2008 Richard W.M. Jones <rjones@redhat.com> - 2.10.1-0
|
|
|
|
- New upstream release 2.10.1.
|
|
|
|
|
2008-03-01 08:59:28 +00:00
|
|
|
* Sat Mar 1 2008 Richard W.M. Jones <rjones@redhat.com> - 2.10.0-3
|
|
|
|
- Rebuild for ppc64.
|
|
|
|
|
2008-02-13 00:34:06 +00:00
|
|
|
* Tue Feb 12 2008 Richard W.M. Jones <rjones@redhat.com> - 2.10.0-2
|
|
|
|
- Rebuild for OCaml 3.10.1.
|
|
|
|
|
2007-11-07 17:34:04 +00:00
|
|
|
* Wed Nov 7 2007 Richard W.M. Jones <rjones@redhat.com> - 2.10.0-1
|
|
|
|
- New upstream release 2.10.0.
|
|
|
|
- Fix path to Camlp4Parsers in 'make doc' rule.
|
|
|
|
|
2007-09-07 11:31:42 +00:00
|
|
|
* Fri Sep 7 2007 Gerard Milmeister <gemi@bluewin.ch> - 2.6.0-10.20060908cvs
|
|
|
|
- rebuild
|
|
|
|
|
2007-08-30 09:49:34 +00:00
|
|
|
* Thu Aug 30 2007 Gerard Milmeister <gemi@bluewin.ch> - 2.6.0-9.20060908cvs
|
|
|
|
- rebuild
|
|
|
|
|
2007-07-07 12:32:26 +00:00
|
|
|
* Sat Jul 7 2007 Gerard Milmeister <gemi@bluewin.ch> - 2.6.0-8.20060908cvs
|
|
|
|
- update to cvs version
|
|
|
|
- renamed package from lablgtk to ocaml-lablgtk
|
|
|
|
|
2006-12-02 16:11:20 +00:00
|
|
|
* Sat Dec 2 2006 Gerard Milmeister <gemi@bluewin.ch> - 2.6.0-7
|
|
|
|
- Rebuild for ocaml 3.09.3
|
|
|
|
|
2006-08-29 09:59:00 +00:00
|
|
|
* Tue Aug 29 2006 Gerard Milmeister <gemi@bluewin.ch> - 2.6.0-6
|
|
|
|
- added BR: ncurses-devel
|
|
|
|
|
2006-08-29 08:57:30 +00:00
|
|
|
* Tue Aug 29 2006 Gerard Milmeister <gemi@bluewin.ch> - 2.6.0-5
|
|
|
|
- Rebuild for FE6
|
|
|
|
|
2006-05-10 17:53:15 +00:00
|
|
|
* Wed May 10 2006 Gerard Milmeister <gemi@bluewin.ch> - 2.6.0-4
|
|
|
|
- rebuilt for ocaml 3.09.2
|
|
|
|
- removed unnecessary ldconfig
|
|
|
|
|
2006-02-26 18:56:40 +00:00
|
|
|
* Sun Feb 26 2006 Gerard Milmeister <gemi@bluewin.ch> - 2.6.0-3
|
2006-02-26 18:54:20 +00:00
|
|
|
- Rebuild for Fedora Extras 5
|
|
|
|
|
2005-12-31 23:45:56 +00:00
|
|
|
* Sun Jan 1 2006 Gerard Milmeister <gemi@bluewin.ch> - 2.6.0-1
|
|
|
|
- new version 2.6.0
|
|
|
|
|
2005-09-10 19:27:23 +00:00
|
|
|
* Sat Sep 10 2005 Gerard Milmeister <gemi@bluewin.ch> - 2.4.0-6
|
|
|
|
- include META file
|
|
|
|
|
2005-05-26 18:38:34 +00:00
|
|
|
* Sun May 22 2005 Toshio Kuratomi <toshio-iki-lounge.com> - 2.4.0-5
|
|
|
|
- Removed gnome-1.x BuildRequires
|
|
|
|
- Removed BuildRequires not explicitly mentioned in the configure script
|
|
|
|
(These are dragged in through dependencies.)
|
|
|
|
- Fix a gcc4 error about lvalue casting.
|
|
|
|
|
2005-05-22 22:57:27 +00:00
|
|
|
* Sun May 22 2005 Jeremy Katz <katzj@redhat.com> - 2.4.0-4
|
|
|
|
- rebuild on all arches
|
|
|
|
|
2013-09-14 09:11:57 +00:00
|
|
|
* Fri Apr 8 2005 Michael Schwendt <mschwendt[AT]users.sf.net>
|
2005-04-06 22:12:20 +00:00
|
|
|
- rebuilt
|
|
|
|
|
2005-02-12 11:03:42 +00:00
|
|
|
* Sat Feb 12 2005 Gerard Milmeister <gemi@bluewin.ch> - 0:2.4.0-2
|
2018-02-09 08:05:18 +00:00
|
|
|
- Remove %%{_smp_mflags} as it breaks the build
|
2005-02-12 11:03:42 +00:00
|
|
|
|
2005-02-11 23:55:06 +00:00
|
|
|
* Sat Feb 12 2005 Gerard Milmeister <gemi@bluewin.ch> - 0:2.4.0-1
|
|
|
|
- New Version 2.4.0
|
|
|
|
|
2004-11-13 22:10:52 +00:00
|
|
|
* Sat Nov 13 2004 Michael Schwendt <mschwendt[AT]users.sf.net> - 0:2.2.0-5
|
|
|
|
- BR gnome-panel-devel instead of gnome-panel (since FC2!)
|
|
|
|
|
2004-11-08 04:40:06 +00:00
|
|
|
* Wed Apr 28 2004 Gerard Milmeister <gemi@bluewin.ch> - 0:2.2.0-0.fdr.4
|
|
|
|
- Compile with debug
|
|
|
|
|
|
|
|
* Tue Dec 2 2003 Gerard Milmeister <gemi@bluewin.ch> - 0:2.2.0-0.fdr.3
|
|
|
|
- Make GL support optional using --with gl switch
|
|
|
|
|
|
|
|
* Fri Nov 28 2003 Gerard Milmeister <gemi@bluewin.ch> - 0:2.2.0-0.fdr.2
|
|
|
|
- Added dependency on libcroco
|
|
|
|
- Honor RPM_OPT_FLAGS
|
|
|
|
|
|
|
|
* Fri Oct 31 2003 Gerard Milmeister <milmei@ifi.unizh.ch> - 0:2.2.0-0.fdr.1
|
|
|
|
- First Fedora release
|
|
|
|
|
|
|
|
* Mon Oct 13 2003 Axel Thimm <Axel.Thimm@physik.fu-berlin.de>
|
|
|
|
- Update to 2.2.0.
|
|
|
|
|
|
|
|
* Sun Aug 17 2003 Axel Thimm <Axel.Thimm@physik.fu-berlin.de>
|
|
|
|
- Provide ocaml-lablgtk (reported by bishop@platypus.bc.ca).
|
|
|
|
|
|
|
|
* Wed Apr 9 2003 Axel Thimm <Axel.Thimm@physik.fu-berlin.de>
|
|
|
|
- Rebuilt for Red Hat 9.
|
|
|
|
|
|
|
|
* Tue Nov 26 2002 Axel Thimm <Axel.Thimm@physik.fu-berlin.de>
|
|
|
|
- Initial build
|