2013-09-14 08:27:35 +00:00
|
|
|
%global opt %(test -x %{_bindir}/ocamlopt && echo 1 || echo 0)
|
2008-09-02 09:01:38 +00:00
|
|
|
|
2013-09-19 16:20:52 +00:00
|
|
|
# Prevent RPM from stripping the binaries & debuginfo.
|
2013-09-19 16:17:20 +00:00
|
|
|
#
|
|
|
|
# NB: Only required because this package uses the obsolete -custom
|
|
|
|
# parameter and builds a bytecode 'ocamlrpcgen'. I tried to fix the
|
|
|
|
# build to make a native code 'ocamlrpcgen' but the build system got
|
|
|
|
# the better of me.
|
2013-09-19 16:20:52 +00:00
|
|
|
%global debug_package %{nil}
|
|
|
|
%global __strip /bin/true
|
2013-09-19 16:17:20 +00:00
|
|
|
|
2007-12-06 17:08:25 +00:00
|
|
|
Name: ocaml-ocamlnet
|
2016-11-05 08:42:43 +00:00
|
|
|
Version: 4.1.2
|
2017-08-03 04:17:58 +00:00
|
|
|
Release: 9%{?dist}
|
2007-12-06 17:08:25 +00:00
|
|
|
Summary: Network protocols for OCaml
|
|
|
|
License: BSD
|
2013-09-14 08:27:35 +00:00
|
|
|
|
2008-04-23 08:50:55 +00:00
|
|
|
URL: http://projects.camlcity.org/projects/ocamlnet.html
|
|
|
|
Source0: http://download.camlcity.org/download/ocamlnet-%{version}.tar.gz
|
2007-12-06 17:08:25 +00:00
|
|
|
|
|
|
|
|
2012-04-28 16:57:09 +00:00
|
|
|
BuildRequires: ocaml >= 3.12.1-3
|
2007-12-06 17:08:25 +00:00
|
|
|
BuildRequires: ocaml-ocamldoc
|
|
|
|
BuildRequires: ocaml-camlp4-devel
|
|
|
|
BuildRequires: ocaml-findlib-devel
|
|
|
|
BuildRequires: ocaml-lablgtk-devel
|
2011-01-05 17:09:33 +00:00
|
|
|
BuildRequires: ocaml-labltk-devel
|
2015-02-18 11:13:39 +00:00
|
|
|
BuildRequires: ocaml-pcre-devel
|
|
|
|
BuildRequires: ocaml-zip-devel
|
|
|
|
BuildRequires: gnutls-devel
|
|
|
|
BuildRequires: krb5-devel
|
2013-09-14 10:08:10 +00:00
|
|
|
BuildRequires: ncurses-devel
|
2014-07-23 12:01:12 +00:00
|
|
|
BuildRequires: tcl-devel
|
2007-12-06 17:08:25 +00:00
|
|
|
|
2010-01-05 13:20:35 +00:00
|
|
|
%global __ocaml_requires_opts -i Asttypes -i Outcometree -i Parsetree
|
2007-12-06 17:08:25 +00:00
|
|
|
|
2012-06-09 14:27:09 +00:00
|
|
|
|
2007-12-06 17:08:25 +00:00
|
|
|
%description
|
|
|
|
Ocamlnet is an ongoing effort to collect modules, classes and
|
|
|
|
functions that are useful to implement network protocols. Since
|
|
|
|
version 2.2, Ocamlnet incorporates the Equeue, RPC, and Netclient
|
|
|
|
libraries, so it now really a big player.
|
|
|
|
|
|
|
|
In detail, the following features are available:
|
|
|
|
|
|
|
|
* netstring is about processing strings that occur in network
|
|
|
|
context. Features: MIME encoding/decoding, Date/time parsing,
|
|
|
|
Character encoding conversion, HTML parsing and printing, URL
|
|
|
|
parsing and printing, OO-representation of channels, and a lot
|
|
|
|
more.
|
|
|
|
|
2011-09-19 16:10:23 +00:00
|
|
|
* netcgi2 focuses on portable web applications.
|
2007-12-06 17:08:25 +00:00
|
|
|
|
|
|
|
* rpc implements ONCRPC (alias SunRPC), the remote procedure call
|
|
|
|
technology behind NFS and other Unix services.
|
|
|
|
|
|
|
|
* netplex is a generic server framework. It can be used to build
|
|
|
|
stand-alone server programs from individual components like those
|
|
|
|
from netcgi2, nethttpd, and rpc.
|
|
|
|
|
|
|
|
* netclient implements clients for HTTP (version 1.1, of course), FTP
|
|
|
|
(currently partially), and Telnet.
|
|
|
|
|
|
|
|
* equeue is an event queue used for many protocol implementations. It
|
|
|
|
makes it possible to run several clients and/or servers in parallel
|
|
|
|
without having to use multi-threading or multi-processing.
|
|
|
|
|
|
|
|
* shell is about calling external commands like a Unix shell does.
|
|
|
|
|
|
|
|
* netshm provides shared memory for IPC purposes.
|
|
|
|
|
2013-09-14 08:27:35 +00:00
|
|
|
* netsys contains bindings for system functions missing in core OCaml.
|
2007-12-06 17:08:25 +00:00
|
|
|
|
2015-02-18 11:13:39 +00:00
|
|
|
* netsmtp and netpop are client implementations of the SMTP and POP3
|
|
|
|
protocols.
|
|
|
|
|
|
|
|
* Bindings for GnuTLS and GSSAPI (TLS/HTTPS support).
|
2007-12-06 17:08:25 +00:00
|
|
|
|
|
|
|
%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}.
|
|
|
|
|
|
|
|
|
|
|
|
%package nethttpd
|
|
|
|
Summary: Ocamlnet HTTP daemon
|
|
|
|
License: GPLv2+
|
|
|
|
Requires: %{name} = %{version}-%{release}
|
|
|
|
|
|
|
|
|
|
|
|
%description nethttpd
|
|
|
|
Nethttpd is a web server component (HTTP server implementation). It
|
|
|
|
can be used for web applications without using an extra web server, or
|
|
|
|
for serving web services.
|
|
|
|
|
|
|
|
|
|
|
|
%package nethttpd-devel
|
|
|
|
Summary: Development files for %{name}-nethttpd
|
|
|
|
License: GPLv2+
|
|
|
|
Requires: %{name}-nethttpd = %{version}-%{release}
|
|
|
|
|
|
|
|
|
|
|
|
%description nethttpd-devel
|
|
|
|
The %{name}-nethttpd-devel package contains libraries and signature
|
|
|
|
files for developing applications that use %{name}-nethttpd.
|
|
|
|
|
|
|
|
|
|
|
|
%prep
|
|
|
|
%setup -q -n ocamlnet-%{version}
|
|
|
|
|
2012-06-09 14:27:09 +00:00
|
|
|
|
|
|
|
%build
|
2014-07-23 11:37:27 +00:00
|
|
|
# Parallel builds don't work:
|
|
|
|
unset MAKEFLAGS
|
|
|
|
|
2015-02-18 11:13:39 +00:00
|
|
|
./configure \
|
2007-12-06 17:08:25 +00:00
|
|
|
-bindir %{_bindir} \
|
|
|
|
-datadir %{_datadir}/%{name} \
|
|
|
|
-disable-apache \
|
2015-02-18 11:13:39 +00:00
|
|
|
-enable-pcre \
|
|
|
|
-enable-gtk2 \
|
|
|
|
-enable-gnutls \
|
|
|
|
-enable-gssapi \
|
|
|
|
-enable-nethttpd \
|
|
|
|
-enable-tcl \
|
|
|
|
-enable-zip
|
2007-12-06 17:08:25 +00:00
|
|
|
|
|
|
|
make all
|
2015-06-17 13:57:25 +00:00
|
|
|
|
2007-12-06 17:08:25 +00:00
|
|
|
%if %opt
|
|
|
|
make opt
|
|
|
|
%endif
|
|
|
|
|
|
|
|
%install
|
|
|
|
export DESTDIR=$RPM_BUILD_ROOT
|
|
|
|
export OCAMLFIND_DESTDIR=$RPM_BUILD_ROOT%{_libdir}/ocaml
|
|
|
|
mkdir -p $OCAMLFIND_DESTDIR
|
|
|
|
mkdir -p $OCAMLFIND_DESTDIR/stublibs
|
|
|
|
make install
|
|
|
|
|
|
|
|
# rpc-generator/dummy.mli is empty and according to Gerd Stolpmann can
|
|
|
|
# be deleted safely. This avoids an rpmlint warning.
|
|
|
|
rm -f $RPM_BUILD_ROOT%{_libdir}/ocaml/rpc-generator/dummy.mli
|
|
|
|
|
2013-09-19 16:17:20 +00:00
|
|
|
# NB. Do NOT strip the binaries and prevent prelink from stripping them too.
|
|
|
|
# See comment at top of spec file.
|
|
|
|
mkdir -p $RPM_BUILD_ROOT/etc/prelink.conf.d
|
|
|
|
echo -e '-b /usr/bin/netplex-admin\n-b /usr/bin/ocamlrpcgen' \
|
|
|
|
> $RPM_BUILD_ROOT/etc/prelink.conf.d/ocaml-ocamlnet.conf
|
2007-12-06 17:08:25 +00:00
|
|
|
|
|
|
|
%files
|
|
|
|
%doc ChangeLog RELNOTES
|
|
|
|
%{_libdir}/ocaml/equeue
|
|
|
|
%{_libdir}/ocaml/equeue-gtk2
|
|
|
|
%{_libdir}/ocaml/equeue-tcl
|
2011-09-19 16:10:23 +00:00
|
|
|
%{_libdir}/ocaml/netcamlbox
|
2007-12-06 17:08:25 +00:00
|
|
|
%{_libdir}/ocaml/netcgi2
|
|
|
|
%{_libdir}/ocaml/netcgi2-plex
|
|
|
|
%{_libdir}/ocaml/netclient
|
2015-02-18 11:13:39 +00:00
|
|
|
%{_libdir}/ocaml/netgss-system
|
2011-09-19 16:10:23 +00:00
|
|
|
%{_libdir}/ocaml/netmulticore
|
2007-12-06 17:08:25 +00:00
|
|
|
%{_libdir}/ocaml/netplex
|
|
|
|
%{_libdir}/ocaml/netshm
|
|
|
|
%{_libdir}/ocaml/netstring
|
2015-02-18 11:13:39 +00:00
|
|
|
%{_libdir}/ocaml/netstring-pcre
|
2007-12-06 17:08:25 +00:00
|
|
|
%{_libdir}/ocaml/netsys
|
2015-02-18 11:13:39 +00:00
|
|
|
%{_libdir}/ocaml/nettls-gnutls
|
2015-02-16 17:16:45 +00:00
|
|
|
%{_libdir}/ocaml/netunidata
|
2015-02-18 11:13:39 +00:00
|
|
|
%{_libdir}/ocaml/netzip
|
2007-12-06 17:08:25 +00:00
|
|
|
%{_libdir}/ocaml/rpc
|
|
|
|
%{_libdir}/ocaml/rpc-auth-local
|
|
|
|
%{_libdir}/ocaml/rpc-generator
|
|
|
|
%{_libdir}/ocaml/shell
|
|
|
|
%if %opt
|
|
|
|
%exclude %{_libdir}/ocaml/*/*.a
|
|
|
|
%exclude %{_libdir}/ocaml/*/*.cmxa
|
|
|
|
%exclude %{_libdir}/ocaml/*/*.cmx
|
|
|
|
%exclude %{_libdir}/ocaml/*/*.o
|
|
|
|
%endif
|
|
|
|
%exclude %{_libdir}/ocaml/*/*.mli
|
|
|
|
%{_libdir}/ocaml/stublibs/*.so
|
|
|
|
%{_libdir}/ocaml/stublibs/*.so.owner
|
|
|
|
%{_datadir}/%{name}/
|
2008-09-02 09:01:38 +00:00
|
|
|
%{_bindir}/netplex-admin
|
|
|
|
%{_bindir}/ocamlrpcgen
|
2013-09-19 16:17:20 +00:00
|
|
|
%config(noreplace) /etc/prelink.conf.d/ocaml-ocamlnet.conf
|
2007-12-06 17:08:25 +00:00
|
|
|
|
|
|
|
|
|
|
|
%files devel
|
|
|
|
%doc ChangeLog RELNOTES
|
|
|
|
%if %opt
|
|
|
|
%{_libdir}/ocaml/*/*.a
|
|
|
|
%{_libdir}/ocaml/*/*.cmxa
|
|
|
|
%{_libdir}/ocaml/*/*.cmx
|
|
|
|
%{_libdir}/ocaml/*/*.o
|
|
|
|
%endif
|
|
|
|
%{_libdir}/ocaml/*/*.mli
|
|
|
|
|
|
|
|
|
|
|
|
%files nethttpd
|
|
|
|
%doc ChangeLog RELNOTES
|
|
|
|
%{_libdir}/ocaml/nethttpd
|
|
|
|
%if %opt
|
|
|
|
%exclude %{_libdir}/ocaml/*/*.a
|
|
|
|
%exclude %{_libdir}/ocaml/*/*.cmxa
|
|
|
|
%endif
|
|
|
|
%exclude %{_libdir}/ocaml/*/*.mli
|
|
|
|
|
|
|
|
|
|
|
|
%files nethttpd-devel
|
|
|
|
%doc ChangeLog RELNOTES
|
|
|
|
%if %opt
|
|
|
|
%{_libdir}/ocaml/*/*.a
|
|
|
|
%{_libdir}/ocaml/*/*.cmxa
|
|
|
|
%endif
|
|
|
|
%{_libdir}/ocaml/*/*.mli
|
|
|
|
|
|
|
|
|
|
|
|
%changelog
|
2017-08-03 04:17:58 +00:00
|
|
|
* Thu Aug 03 2017 Fedora Release Engineering <releng@fedoraproject.org> - 4.1.2-9
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Binutils_Mass_Rebuild
|
|
|
|
|
2017-07-27 01:29:57 +00:00
|
|
|
* Thu Jul 27 2017 Fedora Release Engineering <releng@fedoraproject.org> - 4.1.2-8
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild
|
|
|
|
|
2017-06-26 20:39:09 +00:00
|
|
|
* Mon Jun 26 2017 Richard W.M. Jones <rjones@redhat.com> - 4.1.2-7
|
|
|
|
- Bump release and rebuild.
|
|
|
|
|
2017-06-26 17:26:25 +00:00
|
|
|
* Mon Jun 26 2017 Richard W.M. Jones <rjones@redhat.com> - 4.1.2-6
|
|
|
|
- OCaml 4.04.2 rebuild.
|
|
|
|
|
2017-05-12 07:22:49 +00:00
|
|
|
* Fri May 12 2017 Richard W.M. Jones <rjones@redhat.com> - 4.1.2-5
|
|
|
|
- Bump release and rebuild.
|
|
|
|
|
2017-05-11 20:21:20 +00:00
|
|
|
* Thu May 11 2017 Richard W.M. Jones <rjones@redhat.com> - 4.1.2-4
|
|
|
|
- Bump release and rebuild.
|
|
|
|
|
2017-05-11 17:48:23 +00:00
|
|
|
* Thu May 11 2017 Richard W.M. Jones <rjones@redhat.com> - 4.1.2-3
|
|
|
|
- OCaml 4.04.1 rebuild.
|
|
|
|
|
2017-02-11 00:33:57 +00:00
|
|
|
* Sat Feb 11 2017 Fedora Release Engineering <releng@fedoraproject.org> - 4.1.2-2
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild
|
|
|
|
|
2016-11-05 08:42:43 +00:00
|
|
|
* Sat Nov 05 2016 Richard W.M. Jones <rjones@redhat.com> - 4.1.2-1
|
|
|
|
- New upstream version 4.1.2.
|
|
|
|
|
2016-02-04 11:09:00 +00:00
|
|
|
* Thu Feb 04 2016 Fedora Release Engineering <releng@fedoraproject.org> - 4.0.4-4
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild
|
|
|
|
|
2015-07-28 14:13:36 +00:00
|
|
|
* Tue Jul 28 2015 Richard W.M. Jones <rjones@redhat.com> - 4.0.4-3
|
|
|
|
- OCaml 4.02.3 rebuild.
|
|
|
|
|
2015-07-27 09:25:54 +00:00
|
|
|
* Mon Jul 27 2015 Richard W.M. Jones <rjones@redhat.com> - 4.0.4-2
|
|
|
|
- Remove ExcludeArch since bytecode build should now work.
|
|
|
|
|
2015-07-22 14:20:40 +00:00
|
|
|
* Wed Jul 22 2015 Richard W.M. Jones <rjones@redhat.com> - 4.0.4-1
|
|
|
|
- New upstream version 4.0.4.
|
|
|
|
- Remove ugly hack for gnutls, since it is fixed properly upstream.
|
|
|
|
|
2015-06-24 15:57:18 +00:00
|
|
|
* Wed Jun 24 2015 Richard W.M. Jones <rjones@redhat.com> - 4.0.3-4
|
|
|
|
- ocaml-4.02.2 final rebuild.
|
|
|
|
|
2015-06-17 13:35:51 +00:00
|
|
|
* Wed Jun 17 2015 Richard W.M. Jones <rjones@redhat.com> - 4.0.3-3
|
|
|
|
- Bump release and rebuild.
|
2015-06-17 13:57:25 +00:00
|
|
|
- Add a hack to make it compile with latest gnutls 3.4.2.
|
2015-06-17 13:35:51 +00:00
|
|
|
|
2015-06-17 13:12:01 +00:00
|
|
|
* Wed Jun 17 2015 Richard W.M. Jones <rjones@redhat.com> - 4.0.3-2
|
|
|
|
- ocaml-4.02.2 rebuild.
|
|
|
|
|
2015-05-15 07:45:20 +00:00
|
|
|
* Fri May 15 2015 Richard W.M. Jones <rjones@redhat.com> - 4.0.3-1
|
|
|
|
- Upgrade to 4.0.3, which also fixes gnutls 3.4 compilation problems.
|
|
|
|
|
2015-05-13 20:15:54 +00:00
|
|
|
* Wed May 13 2015 Richard W.M. Jones <rjones@redhat.com> - 4.0.1-4
|
|
|
|
- Bump and rebuild again for gnutls/nettle soname change.
|
|
|
|
|
2015-05-04 12:48:54 +00:00
|
|
|
* Mon May 04 2015 Kalev Lember <kalevlember@gmail.com> - 4.0.1-3
|
|
|
|
- Rebuilt for nettle soname bump
|
|
|
|
|
2015-02-18 11:13:39 +00:00
|
|
|
* Wed Feb 18 2015 Richard W.M. Jones <rjones@redhat.com> - 4.0.1-2
|
|
|
|
- Enable more features, readding features disabled in the previous commit.
|
|
|
|
- Enable PCRE.
|
|
|
|
- Enable GnuTLS.
|
|
|
|
- Enable GSSAPI.
|
|
|
|
- Re-enable Nethttpd.
|
|
|
|
- Re-add documentation for Netsmtp and Netpop (modules renamed).
|
|
|
|
- Enable camlzip.
|
|
|
|
|
2015-02-16 17:16:45 +00:00
|
|
|
* Mon Feb 16 2015 Richard W.M. Jones <rjones@redhat.com> - 4.0.1-1
|
|
|
|
- New upstream version 4.0.1.
|
2015-02-16 17:13:05 +00:00
|
|
|
- ocaml-4.02.1 rebuild.
|
2015-02-16 17:16:45 +00:00
|
|
|
- Disable SSL (removed from upstream, apparently?)
|
|
|
|
- Remove POP and SMTP (removed from upstream?)
|
|
|
|
- Add netunidata.
|
|
|
|
- Remove patches which are no longer needed / upstream.
|
2015-02-16 17:13:05 +00:00
|
|
|
|
2014-11-03 12:50:11 +00:00
|
|
|
* Mon Nov 03 2014 Richard W.M. Jones <rjones@redhat.com> - 3.7.4-10
|
|
|
|
- Bump and rebuild.
|
|
|
|
|
2014-08-30 17:14:54 +00:00
|
|
|
* Sat Aug 30 2014 Richard W.M. Jones <rjones@redhat.com> - 3.7.4-9
|
2014-08-30 16:35:17 +00:00
|
|
|
- ocaml-4.02.0 final rebuild.
|
2014-08-30 17:14:54 +00:00
|
|
|
- Fix for int(32|64) -> int(32|64)_t in latest OCaml upstream.
|
2014-08-30 16:35:17 +00:00
|
|
|
|
2014-11-03 12:50:11 +00:00
|
|
|
* Sun Aug 24 2014 Richard W.M. Jones <rjones@redhat.com> - 3.7.4-7
|
2014-08-24 08:43:48 +00:00
|
|
|
- Fix for broken configure tests.
|
|
|
|
|
2014-08-23 12:04:24 +00:00
|
|
|
* Sat Aug 23 2014 Richard W.M. Jones <rjones@redhat.com> - 3.7.4-6
|
|
|
|
- Bump release and rebuild.
|
|
|
|
|
2014-08-23 12:02:09 +00:00
|
|
|
* Sat Aug 23 2014 Richard W.M. Jones <rjones@redhat.com> - 3.7.4-5
|
|
|
|
- ocaml-4.02.0+rc1 rebuild.
|
|
|
|
|
2014-08-17 13:01:08 +00:00
|
|
|
* Sun Aug 17 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 3.7.4-4
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_22_Mass_Rebuild
|
|
|
|
|
2014-08-01 21:41:42 +00:00
|
|
|
* Fri Aug 01 2014 Richard W.M. Jones <rjones@redhat.com> - 3.7.4-3
|
|
|
|
- ocaml-4.02.0-0.8.git10e45753.fc22 rebuild.
|
|
|
|
|
2014-07-23 12:01:12 +00:00
|
|
|
* Wed Jul 23 2014 Richard W.M. Jones <rjones@redhat.com> - 3.7.4-2
|
2014-07-23 11:37:27 +00:00
|
|
|
- New upstream version 3.7.4.
|
|
|
|
- OCaml 4.02.0 beta rebuild.
|
|
|
|
- Some spec file modernization.
|
2014-07-23 12:01:12 +00:00
|
|
|
- Add BR tcl-devel.
|
2014-07-23 11:37:27 +00:00
|
|
|
|
2014-06-07 15:44:06 +00:00
|
|
|
* Sat Jun 07 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 3.7.3-5
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild
|
|
|
|
|
2013-10-02 13:15:29 +00:00
|
|
|
* Wed Oct 02 2013 Richard W.M. Jones <rjones@redhat.com> - 3.7.3-4
|
|
|
|
- Rebuild for ocaml-lablgtk 2.18.
|
|
|
|
|
2013-09-19 16:20:52 +00:00
|
|
|
* Thu Sep 19 2013 Richard W.M. Jones <rjones@redhat.com> - 3.7.3-3
|
2013-09-19 16:17:20 +00:00
|
|
|
- Unfortunately we have to re-add the anti-stripping code back. See
|
|
|
|
comment at top of spec file.
|
2013-09-19 16:20:52 +00:00
|
|
|
- Disable debuginfo for the same reason.
|
2013-09-19 16:17:20 +00:00
|
|
|
|
2013-09-14 08:27:35 +00:00
|
|
|
* Sat Sep 14 2013 Richard W.M. Jones <rjones@redhat.com> - 3.7.3-1
|
|
|
|
- New upstream version 3.7.3.
|
|
|
|
- Rebuild for OCaml 4.01.0.
|
|
|
|
- Enable debuginfo.
|
|
|
|
- Do not strip binaries, remove anti-prelink protection.
|
2013-09-14 10:08:10 +00:00
|
|
|
- Missing BR ncurses-devel.
|
2013-09-14 08:27:35 +00:00
|
|
|
|
2013-08-03 14:58:16 +00:00
|
|
|
* Sat Aug 03 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 3.5.1-6
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_20_Mass_Rebuild
|
|
|
|
|
2013-02-14 09:01:12 +00:00
|
|
|
* Thu Feb 14 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 3.5.1-5
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_19_Mass_Rebuild
|
|
|
|
|
2012-12-14 09:56:38 +00:00
|
|
|
* Fri Dec 14 2012 Richard W.M. Jones <rjones@redhat.com> - 3.5.1-4
|
|
|
|
- Rebuild for OCaml 4.00.1.
|
|
|
|
|
2012-07-28 11:30:21 +00:00
|
|
|
* Sat Jul 28 2012 Richard W.M. Jones <rjones@redhat.com> - 3.5.1-3
|
|
|
|
- Rebuild for OCaml 4.00.0 official.
|
|
|
|
|
2012-07-20 06:05:34 +00:00
|
|
|
* Fri Jul 20 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 3.5.1-2
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild
|
|
|
|
|
2012-06-09 14:27:09 +00:00
|
|
|
* Sat Jun 09 2012 Richard W.M. Jones <rjones@redhat.com> - 3.5.1-1
|
|
|
|
- New upstream version 3.5.1.
|
|
|
|
- Rebuild for OCaml 4.00.0, plus small patch.
|
|
|
|
- Move configure into build (not prep).
|
|
|
|
|
2012-04-28 16:57:09 +00:00
|
|
|
* Sat Apr 28 2012 Richard W.M. Jones <rjones@redhat.com> - 3.4.1-3
|
|
|
|
- Bump and rebuild against new OCaml compiler in ARM.
|
|
|
|
|
2012-02-10 12:00:32 +00:00
|
|
|
* Fri Feb 10 2012 Petr Pisar <ppisar@redhat.com> - 3.4.1-2
|
|
|
|
- Rebuild against PCRE 8.30
|
|
|
|
|
2012-01-06 15:38:41 +00:00
|
|
|
* Fri Jan 6 2012 Richard W.M. Jones <rjones@redhat.com> - 3.4.1-1
|
|
|
|
- New upstream version 3.4.1.
|
|
|
|
- Rebuild for OCaml 3.12.1.
|
|
|
|
|
2011-09-19 16:10:23 +00:00
|
|
|
* Mon Sep 19 2011 Richard W.M. Jones <rjones@redhat.com> - 3.4-1
|
|
|
|
- Move to new upstream 3.4 version. Note this is not compatible with
|
|
|
|
ocamlnet 2.x.
|
|
|
|
|
2011-02-09 01:59:59 +00:00
|
|
|
* Tue Feb 08 2011 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.2.9-24
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild
|
|
|
|
|
2011-02-06 10:24:49 +00:00
|
|
|
* Sun Feb 6 2011 Richard W.M. Jones <rjones@redhat.com> - 2.2.9-23
|
|
|
|
- Rebuild against rpm-4.9.0-0.beta1.6.fc15. See discussion:
|
|
|
|
http://lists.fedoraproject.org/pipermail/devel/2011-February/148398.html
|
|
|
|
|
2011-02-05 15:08:08 +00:00
|
|
|
* Sat Feb 5 2011 Richard W.M. Jones <rjones@redhat.com> - 2.2.9-22
|
|
|
|
- Bump and rebuild because of broken deps on ocaml-lablgtk.
|
|
|
|
|
2011-01-05 17:09:33 +00:00
|
|
|
* Wed Jan 05 2011 Richard W.M. Jones <rjones@redhat.com> - 2.2.9-21
|
2011-01-05 16:57:41 +00:00
|
|
|
- Rebuild for OCaml 3.12 (http://fedoraproject.org/wiki/Features/OCaml3.12).
|
2011-01-05 17:09:33 +00:00
|
|
|
- Missing BR ocaml-labltk-devel.
|
2011-01-05 16:57:41 +00:00
|
|
|
|
2010-01-05 13:44:37 +00:00
|
|
|
* Tue Jan 5 2010 Richard W.M. Jones <rjones@redhat.com> - 2.2.9-19
|
|
|
|
- {gtk2,openssl,pcre,tcl}-devel BRs have now been pushed down to the
|
|
|
|
corresponding ocaml-X-devel packages, so we don't need those here
|
|
|
|
any more.
|
|
|
|
|
2010-01-05 13:32:43 +00:00
|
|
|
* Tue Jan 5 2010 Richard W.M. Jones <rjones@redhat.com> - 2.2.9-18
|
2010-01-05 13:20:35 +00:00
|
|
|
- Use new dependency generator in upstream RPM 4.8.
|
2010-01-05 13:32:43 +00:00
|
|
|
- Add BR gtk2-devel.
|
2010-01-05 13:20:35 +00:00
|
|
|
|
2009-12-30 13:51:23 +00:00
|
|
|
* Wed Dec 30 2009 Richard W.M. Jones <rjones@redhat.com> - 2.2.9-16
|
|
|
|
- Rebuild for OCaml 3.11.2.
|
|
|
|
|
2009-09-29 15:15:02 +00:00
|
|
|
* Tue Sep 29 2009 Richard W.M. Jones <rjones@redhat.com> - 2.2.9-15
|
|
|
|
- Force rebuild against newer lablgtk.
|
|
|
|
|
2009-07-25 20:01:04 +00:00
|
|
|
* Sat Jul 25 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.2.9-14
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild
|
|
|
|
|
2009-05-23 11:07:23 +00:00
|
|
|
* Sat May 23 2009 Richard W.M. Jones <rjones@redhat.com> - 2.2.9-13
|
|
|
|
- Rebuild for OCaml 3.11.1
|
|
|
|
|
2009-04-16 09:06:11 +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:20:21 +00:00
|
|
|
* Wed Feb 25 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.2.9-12
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild
|
|
|
|
|
2009-02-07 09:24:16 +00:00
|
|
|
* Sat Feb 7 2009 Richard W.M. Jones <rjones@redhat.com> - 2.2.9-11
|
|
|
|
- Rebuild against updated lablgtk.
|
|
|
|
|
2009-01-21 20:58:08 +00:00
|
|
|
* Wed Jan 21 2009 Richard W.M. Jones <rjones@redhat.com> - 2.2.9-10
|
|
|
|
- Fix prelink configuration file.
|
|
|
|
|
2008-12-04 19:30:19 +00:00
|
|
|
* Wed Nov 26 2008 Richard W.M. Jones <rjones@redhat.com> - 2.2.9-9
|
|
|
|
- Rebuild for OCaml 3.11.0+rc1.
|
|
|
|
|
2008-11-24 11:42:50 +00:00
|
|
|
* Wed Nov 19 2008 Richard W.M. Jones <rjones@redhat.com> - 2.2.9-8
|
|
|
|
- Rebuild for OCaml 3.11.0
|
|
|
|
|
2008-09-02 09:01:38 +00:00
|
|
|
* Tue Sep 2 2008 Richard W.M. Jones <rjones@redhat.com> - 2.2.9-7
|
|
|
|
- Prevent RPM & prelink from stripping bytecode.
|
|
|
|
|
2008-04-23 16:16:57 +00:00
|
|
|
* Wed Apr 23 2008 Richard W.M. Jones <rjones@redhat.com> - 2.2.9-6
|
|
|
|
- Rebuild for OCaml 3.10.2
|
|
|
|
|
2008-04-23 08:50:55 +00:00
|
|
|
* Mon Apr 21 2008 Richard W.M. Jones <rjones@redhat.com> - 2.2.9-5
|
|
|
|
- New upstream URL.
|
|
|
|
|
2008-03-03 21:50:00 +00:00
|
|
|
* Mon Mar 3 2008 Richard W.M. Jones <rjones@redhat.com> - 2.2.9-4
|
|
|
|
- Do not strip binaries (bz 435559).
|
|
|
|
|
2008-03-01 10:13:06 +00:00
|
|
|
* Sat Mar 1 2008 Richard W.M. Jones <rjones@redhat.com> - 2.2.9-3
|
|
|
|
- Rebuild for ppc64.
|
|
|
|
|
2008-02-13 01:21:46 +00:00
|
|
|
* Tue Feb 12 2008 Richard W.M. Jones <rjones@redhat.com> - 2.2.9-2
|
|
|
|
- Rebuild for OCaml 3.10.1.
|
|
|
|
|
2007-12-06 17:08:25 +00:00
|
|
|
* Wed Nov 7 2007 Richard W.M. Jones <rjones@redhat.com> - 2.2.9-1
|
|
|
|
- New upstream release 2.2.9.
|
|
|
|
- A more bletcherous, but more working, patch to fix the camlp4
|
|
|
|
missing path bug. Hopefully this is very temporary.
|
|
|
|
- Fixes for mock build under F8:
|
|
|
|
+ BR tcl-devel
|
|
|
|
|
|
|
|
* Thu Sep 13 2007 Richard W.M. Jones <rjones@redhat.com> - 2.2.8.1-1
|
|
|
|
- New upstream version 2.2.8.1.
|
|
|
|
- License of the base package is in fact BSD. Clarified also that
|
|
|
|
the license of nethttpd is GPLv2+.
|
|
|
|
- Removed the camlp4 paths patch as it doesn't seem to be necessary.
|
|
|
|
- Add BRs for camlp4, ocaml-pcre-devel, ocaml-lablgtk-devel,
|
|
|
|
openssl-devel
|
|
|
|
- Removed explicit requires, they're not needed.
|
|
|
|
- Strip binaries and libraries.
|
|
|
|
- Ignore Parsetree module in deps.
|
|
|
|
|
|
|
|
* Thu Aug 2 2007 Richard W.M. Jones <rjones@redhat.com> - 2.2.7-6
|
|
|
|
- ExcludeArch ppc64
|
|
|
|
- BR ocaml-pcre-devel
|
|
|
|
- Fix for camlp4 missing path
|
|
|
|
|
|
|
|
* Mon Jun 11 2007 Richard W.M. Jones <rjones@redhat.com> - 2.2.7-5
|
|
|
|
- Updated to latest packaging guidelines.
|
|
|
|
|
|
|
|
* Tue May 29 2007 Richard W.M. Jones <rjones@redhat.com> - 2.2.7-4
|
|
|
|
- Added support for ocaml-lablgtk2
|
|
|
|
|
|
|
|
* Tue May 29 2007 Richard W.M. Jones <rjones@redhat.com> - 2.2.7-3
|
|
|
|
- Remove empty file rpc-generator/dummy.mli.
|
|
|
|
|
|
|
|
* Sat May 26 2007 Richard W.M. Jones <rjones@redhat.com> - 2.2.7-2
|
|
|
|
- Added support for SSL.
|
|
|
|
|
|
|
|
* Sat May 26 2007 Richard W.M. Jones <rjones@redhat.com> - 2.2.7-1
|
|
|
|
- Initial RPM.
|