rpms/ocaml-cil/devel cil-1.3.7-output-obj.patch, NONE, 1.1 .cvsignore, 1.2, 1.3 ocaml-cil.spec, 1.9, 1.10 sources, 1.2, 1.3 cil-1.3.6-output-obj.patch, 1.1, NONE
by Richard W.M. Jones
Author: rjones
Update of /cvs/pkgs/rpms/ocaml-cil/devel
In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv5527
Modified Files:
.cvsignore ocaml-cil.spec sources
Added Files:
cil-1.3.7-output-obj.patch
Removed Files:
cil-1.3.6-output-obj.patch
Log Message:
- New upstream version 1.3.7.
- Rebuild for OCaml 3.11.1.
cil-1.3.7-output-obj.patch:
--- NEW FILE cil-1.3.7-output-obj.patch ---
diff -ur cil-1.3.7.orig/Makefile.in cil-1.3.7/Makefile.in
--- cil-1.3.7.orig/Makefile.in 2009-04-24 19:50:33.000000000 +0100
+++ cil-1.3.7/Makefile.in 2009-05-26 15:46:02.932947721 +0100
@@ -287,7 +287,9 @@
ifeq ($(NATIVECAML),1)
$(OBJDIR)/libcil.o: $(OCAML_CIL_LIB_CMODULES:%=$(OBJDIR)/lib%.a) \
$(OCAML_CIL_LIB_MODULES:%=$(OBJDIR)/%.$(CMO))
- ocamlopt -output-obj -o $@ $(CILLY_LIBS:%=%.cmxa) $^
+ ocamlopt -output-obj -o tmpcil.o $(CILLY_LIBS:%=%.cmxa) $^
+ ar rcs $@ tmpcil.o
+ rm -f tmpcil.o
else
$(OBJDIR)/libcil.o:
@echo "Can only build $@ when NATIVECAML is 1."
Index: .cvsignore
===================================================================
RCS file: /cvs/pkgs/rpms/ocaml-cil/devel/.cvsignore,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -p -r1.2 -r1.3
--- .cvsignore 1 Mar 2008 12:31:25 -0000 1.2
+++ .cvsignore 26 May 2009 14:50:04 -0000 1.3
@@ -1 +1 @@
-cil-1.3.6.tar.gz
+cil-1.3.7.tar.gz
Index: ocaml-cil.spec
===================================================================
RCS file: /cvs/pkgs/rpms/ocaml-cil/devel/ocaml-cil.spec,v
retrieving revision 1.9
retrieving revision 1.10
diff -u -p -r1.9 -r1.10
--- ocaml-cil.spec 16 Apr 2009 09:06:03 -0000 1.9
+++ ocaml-cil.spec 26 May 2009 14:50:04 -0000 1.10
@@ -5,21 +5,21 @@
%define __strip /bin/true
Name: ocaml-cil
-Version: 1.3.6
-Release: 11%{?dist}
+Version: 1.3.7
+Release: 1%{?dist}
Summary: CIL - Infrastructure for C Program Analysis and Transformation
Group: Development/Libraries
License: BSD
URL: http://cil.sourceforge.net/
-Source0: http://hal.cs.berkeley.edu/cil/distrib/cil-1.3.6.tar.gz
+Source0: http://hal.cs.berkeley.edu/cil/distrib/cil-%{version}.tar.gz
BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
ExcludeArch: ppc64
ExcludeArch: ppc
ExcludeArch: sparc64
ExcludeArch: s390 s390x
-Patch0: cil-1.3.6-output-obj.patch
+Patch0: cil-1.3.7-output-obj.patch
BuildRequires: ocaml, ocaml-findlib-devel, ocaml-ocamldoc
@@ -90,7 +90,7 @@ for gcc.
%prep
-%setup -q -n cil
+%setup -q -n cil-%{version}
%patch0 -p1
./configure --libdir=%{_libdir}
@@ -117,7 +117,7 @@ cat > bin/CilConfig.pm <<EOF
\$::default_mode = "GNUCC";
EOF
-strip obj/$archos/libcil.a
+strip obj/$archos/libcil.o
#strip obj/$archos/cilly.byte.exe - NO! It removes the bytecode :-(
%if %opt
strip obj/$archos/cilly.asm.exe
@@ -195,6 +195,10 @@ rm -rf $RPM_BUILD_ROOT
%changelog
+* Tue May 26 2009 Richard W.M. Jones <rjones(a)redhat.com> - 1.3.7-1
+- New upstream version 1.3.7.
+- Rebuild for OCaml 3.11.1.
+
* Thu Apr 16 2009 S390x secondary arch maintainer <fedora-s390x(a)lists.fedoraproject.org>
- ExcludeArch sparc64, s390, s390x as we don't have OCaml on those archs
(added sparc64 per request from the sparc maintainer)
Index: sources
===================================================================
RCS file: /cvs/pkgs/rpms/ocaml-cil/devel/sources,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -p -r1.2 -r1.3
--- sources 1 Mar 2008 12:31:25 -0000 1.2
+++ sources 26 May 2009 14:50:04 -0000 1.3
@@ -1 +1 @@
-112dfbabdd0e1280800d62ba4449ab45 cil-1.3.6.tar.gz
+e0e3ce3b04c0d9cccf98381feb6d89de cil-1.3.7.tar.gz
--- cil-1.3.6-output-obj.patch DELETED ---
14 years, 6 months
rpms/ocaml/devel ocamlbuild_where.ml.diff, NONE, 1.1 ocaml.spec, 1.52, 1.53
by Richard W.M. Jones
Author: rjones
Update of /cvs/pkgs/rpms/ocaml/devel
In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv14300
Modified Files:
ocaml.spec
Added Files:
ocamlbuild_where.ml.diff
Log Message:
Backport ocamlbuild -where fix.
ocamlbuild_where.ml.diff:
--- NEW FILE ocamlbuild_where.ml.diff ---
--- ocaml/ocamlbuild/ocamlbuild_where.ml 2009/03/05 14:33:06 1.1.2.2
+++ ocaml/ocamlbuild/ocamlbuild_where.ml 2009/05/24 09:11:39 1.1.2.3
@@ -1,5 +1,7 @@
let bindir = ref Ocamlbuild_Myocamlbuild_config.bindir;;
let libdir = ref begin
- try Filename.concat (Sys.getenv "OCAMLLIB") "ocamlbuild"
- with Not_found -> Ocamlbuild_Myocamlbuild_config.libdir
+ Filename.concat
+ (try Sys.getenv "OCAMLLIB"
+ with Not_found -> Ocamlbuild_Myocamlbuild_config.libdir)
+ "ocamlbuild"
end;;
Index: ocaml.spec
===================================================================
RCS file: /cvs/pkgs/rpms/ocaml/devel/ocaml.spec,v
retrieving revision 1.52
retrieving revision 1.53
diff -u -p -r1.52 -r1.53
--- ocaml.spec 22 May 2009 15:25:54 -0000 1.52
+++ ocaml.spec 26 May 2009 13:09:01 -0000 1.53
@@ -2,7 +2,7 @@
Name: ocaml
Version: 3.11.1
-Release: 0.rc0.1%{?dist}
+Release: 0.rc0.2%{?dist}
Summary: Objective Caml compiler and programming environment
@@ -24,6 +24,9 @@ Patch1: ocaml-user-cflags.patch
# Support for PPC64 platform by David Woodhouse:
Patch3: ocaml-3.11.0-ppc64.patch
+# Backport ocamlbuild -where fix to 3.11.1+rc0.
+Patch4: ocamlbuild_where.ml.diff
+
BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
BuildRequires: ncurses-devel
@@ -195,6 +198,7 @@ man pages and info files.
%patch0 -p1 -b .rpath
%patch1 -p1 -b .cflags
%patch3 -p1 -b .ppc64
+%patch4 -p1 -b .ocamlbuild
cp %{SOURCE2} refman.pdf
@@ -435,6 +439,9 @@ fi
%changelog
+* Tue May 26 2009 Richard W.M. Jones <rjones(a)redhat.com> - 3.11.1-0.rc0.2
+- Backport ocamlbuild -where fix.
+
* Fri May 22 2009 Richard W.M. Jones <rjones(a)redhat.com> - 3.11.1-0.rc0.1
- 3.11.1 release candidate 0.
14 years, 6 months
rpms/ocaml-pgocaml/devel ocaml-pgocaml.spec,1.8,1.9
by Richard W.M. Jones
Author: rjones
Update of /cvs/pkgs/rpms/ocaml-pgocaml/devel
In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv22289
Modified Files:
ocaml-pgocaml.spec
Log Message:
Rebuild for OCaml 3.11.1
Index: ocaml-pgocaml.spec
===================================================================
RCS file: /cvs/pkgs/rpms/ocaml-pgocaml/devel/ocaml-pgocaml.spec,v
retrieving revision 1.8
retrieving revision 1.9
diff -u -p -r1.8 -r1.9
--- ocaml-pgocaml.spec 16 Apr 2009 09:06:14 -0000 1.8
+++ ocaml-pgocaml.spec 23 May 2009 13:59:03 -0000 1.9
@@ -3,7 +3,7 @@
Name: ocaml-pgocaml
Version: 1.1
-Release: 8%{?dist}
+Release: 9%{?dist}
Summary: OCaml library for type-safe access to PostgreSQL databases
Group: Development/Libraries
@@ -96,6 +96,9 @@ rm -rf $RPM_BUILD_ROOT
%changelog
+* Sat May 23 2009 Richard W.M. Jones <rjones(a)redhat.com> - 1.1-9
+- Rebuild for OCaml 3.11.1
+
* Thu Apr 16 2009 S390x secondary arch maintainer <fedora-s390x(a)lists.fedoraproject.org>
- ExcludeArch sparc64, s390, s390x as we don't have OCaml on those archs
(added sparc64 per request from the sparc maintainer)
14 years, 6 months
rpms/ocaml-camlp5/devel .cvsignore, 1.5, 1.6 ocaml-camlp5.spec, 1.9, 1.10 sources, 1.5, 1.6
by Richard W.M. Jones
Author: rjones
Update of /cvs/pkgs/rpms/ocaml-camlp5/devel
In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv6427
Modified Files:
.cvsignore ocaml-camlp5.spec sources
Log Message:
New upstream version 5.12, excepted to fix 3.11.1 build problems.
Index: .cvsignore
===================================================================
RCS file: /cvs/pkgs/rpms/ocaml-camlp5/devel/.cvsignore,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -p -r1.5 -r1.6
--- .cvsignore 23 May 2009 07:29:36 -0000 1.5
+++ .cvsignore 23 May 2009 11:44:55 -0000 1.6
@@ -1 +1 @@
-camlp5-5.11.tgz
+camlp5-5.12.tgz
Index: ocaml-camlp5.spec
===================================================================
RCS file: /cvs/pkgs/rpms/ocaml-camlp5/devel/ocaml-camlp5.spec,v
retrieving revision 1.9
retrieving revision 1.10
diff -u -p -r1.9 -r1.10
--- ocaml-camlp5.spec 23 May 2009 07:29:36 -0000 1.9
+++ ocaml-camlp5.spec 23 May 2009 11:44:56 -0000 1.10
@@ -2,7 +2,7 @@
%define debug_package %{nil}
Name: ocaml-camlp5
-Version: 5.11
+Version: 5.12
Release: 1%{?dist}
Summary: Classical version of camlp4 OCaml preprocessor
@@ -99,6 +99,9 @@ rm -rf $RPM_BUILD_ROOT
%changelog
+* Sat May 23 2009 Richard W.M. Jones <rjones(a)redhat.com> - 5.12-1
+- New upstream version 5.12, excepted to fix 3.11.1 build problems.
+
* Sat May 23 2009 Richard W.M. Jones <rjones(a)redhat.com> - 5.11-1
- Rebuild for OCaml 3.11.1
- New upstream version 5.11.
Index: sources
===================================================================
RCS file: /cvs/pkgs/rpms/ocaml-camlp5/devel/sources,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -p -r1.5 -r1.6
--- sources 23 May 2009 07:29:36 -0000 1.5
+++ sources 23 May 2009 11:44:56 -0000 1.6
@@ -1 +1 @@
-26d69abd669c5fda43dbf35074debc81 camlp5-5.11.tgz
+28a86d4f1da8983b7fc773262fa52f1f camlp5-5.12.tgz
14 years, 6 months
rpms/ocaml-pxp/devel .cvsignore, 1.3, 1.4 ocaml-pxp.spec, 1.9, 1.10 sources, 1.3, 1.4
by Richard W.M. Jones
Author: rjones
Update of /cvs/pkgs/rpms/ocaml-pxp/devel
In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv3380
Modified Files:
.cvsignore ocaml-pxp.spec sources
Log Message:
Rebuild for OCaml 3.11.1
Index: .cvsignore
===================================================================
RCS file: /cvs/pkgs/rpms/ocaml-pxp/devel/.cvsignore,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -p -r1.3 -r1.4
--- .cvsignore 23 Apr 2008 08:53:58 -0000 1.3
+++ .cvsignore 23 May 2009 11:33:43 -0000 1.4
@@ -1 +1 @@
-pxp-1.2.0test2.tar.gz
+pxp-1.2.1.tar.gz
Index: ocaml-pxp.spec
===================================================================
RCS file: /cvs/pkgs/rpms/ocaml-pxp/devel/ocaml-pxp.spec,v
retrieving revision 1.9
retrieving revision 1.10
diff -u -p -r1.9 -r1.10
--- ocaml-pxp.spec 16 Apr 2009 09:06:15 -0000 1.9
+++ ocaml-pxp.spec 23 May 2009 11:33:44 -0000 1.10
@@ -1,8 +1,8 @@
%define debug_package %{nil}
Name: ocaml-pxp
-Version: 1.2.0test2
-Release: 6%{?dist}
+Version: 1.2.1
+Release: 1%{?dist}
Summary: Validating XML parser
Group: Development/Libraries
@@ -106,6 +106,10 @@ rm -rf $RPM_BUILD_ROOT
%changelog
+* Sat May 23 2009 Richard W.M. Jones <rjones(a)redhat.com> - 1.2.1-1
+- New upstream version 1.2.1.
+- Rebuild for OCaml 3.11.1.
+
* Thu Apr 16 2009 S390x secondary arch maintainer <fedora-s390x(a)lists.fedoraproject.org>
- ExcludeArch sparc64, s390, s390x as we don't have OCaml on those archs
(added sparc64 per request from the sparc maintainer)
Index: sources
===================================================================
RCS file: /cvs/pkgs/rpms/ocaml-pxp/devel/sources,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -p -r1.3 -r1.4
--- sources 23 Apr 2008 08:53:58 -0000 1.3
+++ sources 23 May 2009 11:33:44 -0000 1.4
@@ -1 +1 @@
-6ad1bcf8b6c64fdf90422d9b5afc3763 pxp-1.2.0test2.tar.gz
+a22d9124516b8045d7e4b0978c6fd3f6 pxp-1.2.1.tar.gz
14 years, 6 months
rpms/ocaml-xmlrpc-light/devel ocaml-xmlrpc-light.spec,1.7,1.8
by Richard W.M. Jones
Author: rjones
Update of /cvs/pkgs/rpms/ocaml-xmlrpc-light/devel
In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv2806
Modified Files:
ocaml-xmlrpc-light.spec
Log Message:
Rebuild for OCaml 3.11.1
Index: ocaml-xmlrpc-light.spec
===================================================================
RCS file: /cvs/pkgs/rpms/ocaml-xmlrpc-light/devel/ocaml-xmlrpc-light.spec,v
retrieving revision 1.7
retrieving revision 1.8
diff -u -p -r1.7 -r1.8
--- ocaml-xmlrpc-light.spec 16 Apr 2009 09:06:18 -0000 1.7
+++ ocaml-xmlrpc-light.spec 23 May 2009 11:32:02 -0000 1.8
@@ -3,7 +3,7 @@
Name: ocaml-xmlrpc-light
Version: 0.6.1
-Release: 1%{?dist}
+Release: 2%{?dist}
Summary: OCaml library for writing XML-RPC clients and servers
Group: Development/Libraries
@@ -84,6 +84,9 @@ rm -rf $RPM_BUILD_ROOT
%changelog
+* Sat May 23 2009 Richard W.M. Jones <rjones(a)redhat.com> - 0.6.1-2
+- Rebuild for OCaml 3.11.1
+
* Thu Apr 16 2009 S390x secondary arch maintainer <fedora-s390x(a)lists.fedoraproject.org>
- ExcludeArch sparc64, s390, s390x as we don't have OCaml on those archs
(added sparc64 per request from the sparc maintainer)
14 years, 6 months
rpms/ocaml-preludeml/devel ocaml-preludeml.spec,1.3,1.4
by Richard W.M. Jones
Author: rjones
Update of /cvs/pkgs/rpms/ocaml-preludeml/devel
In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv2656
Modified Files:
ocaml-preludeml.spec
Log Message:
Rebuild for OCaml 3.11.1
Index: ocaml-preludeml.spec
===================================================================
RCS file: /cvs/pkgs/rpms/ocaml-preludeml/devel/ocaml-preludeml.spec,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -p -r1.3 -r1.4
--- ocaml-preludeml.spec 16 Apr 2009 09:06:15 -0000 1.3
+++ ocaml-preludeml.spec 23 May 2009 11:31:22 -0000 1.4
@@ -8,7 +8,7 @@
Name: ocaml-preludeml
Version: 0.1
-Release: 0.11.%{gitdate}%{?dist}
+Release: 0.12.%{gitdate}%{?dist}
Summary: OCaml utility functions
Group: Development/Libraries
@@ -122,6 +122,9 @@ rm -rf $RPM_BUILD_ROOT
%changelog
+* Sat May 23 2009 Richard W.M. Jones <rjones(a)redhat.com> - 0.1-0.12.20090113
+- Rebuild for OCaml 3.11.1
+
* Thu Apr 16 2009 S390x secondary arch maintainer <fedora-s390x(a)lists.fedoraproject.org>
- ExcludeArch sparc64, s390, s390x as we don't have OCaml on those archs
(added sparc64 per request from the sparc maintainer)
14 years, 6 months
rpms/ocaml-json-wheel/devel .cvsignore, 1.2, 1.3 ocaml-json-wheel.spec, 1.6, 1.7 sources, 1.2, 1.3
by Richard W.M. Jones
Author: rjones
Update of /cvs/pkgs/rpms/ocaml-json-wheel/devel
In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv2300
Modified Files:
.cvsignore ocaml-json-wheel.spec sources
Log Message:
Rebuild for OCaml 3.11.1
Index: .cvsignore
===================================================================
RCS file: /cvs/pkgs/rpms/ocaml-json-wheel/devel/.cvsignore,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -p -r1.2 -r1.3
--- .cvsignore 7 Mar 2008 19:24:30 -0000 1.2
+++ .cvsignore 23 May 2009 11:30:13 -0000 1.3
@@ -1 +1 @@
-json-wheel-1.0.4.tar.bz2
+json-wheel-1.0.6.tar.bz2
Index: ocaml-json-wheel.spec
===================================================================
RCS file: /cvs/pkgs/rpms/ocaml-json-wheel/devel/ocaml-json-wheel.spec,v
retrieving revision 1.6
retrieving revision 1.7
diff -u -p -r1.6 -r1.7
--- ocaml-json-wheel.spec 16 Apr 2009 09:06:08 -0000 1.6
+++ ocaml-json-wheel.spec 23 May 2009 11:30:13 -0000 1.7
@@ -2,8 +2,8 @@
%define debug_package %{nil}
Name: ocaml-json-wheel
-Version: 1.0.4
-Release: 8%{?dist}
+Version: 1.0.6
+Release: 1%{?dist}
Summary: OCaml library for parsing JSON
Group: Development/Libraries
@@ -99,6 +99,10 @@ rm -rf $RPM_BUILD_ROOT
%changelog
+* Sat May 23 2009 Richard W.M. Jones <rjones(a)redhat.com> - 1.0.6-1
+- New upstream version 1.0.6.
+- Rebuild for OCaml 3.11.1.
+
* Thu Apr 16 2009 S390x secondary arch maintainer <fedora-s390x(a)lists.fedoraproject.org>
- ExcludeArch sparc64, s390, s390x as we don't have OCaml on those archs
(added sparc64 per request from the sparc maintainer)
Index: sources
===================================================================
RCS file: /cvs/pkgs/rpms/ocaml-json-wheel/devel/sources,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -p -r1.2 -r1.3
--- sources 7 Mar 2008 19:24:30 -0000 1.2
+++ sources 23 May 2009 11:30:13 -0000 1.3
@@ -1 +1 @@
-667e42357cc7e1719292c6a3342a6489 json-wheel-1.0.4.tar.bz2
+8685ecee7a7416c77c14fbdf05c5a06e json-wheel-1.0.6.tar.bz2
14 years, 6 months
rpms/ocaml-cmigrep/devel ocaml-cmigrep.spec,1.11,1.12
by Richard W.M. Jones
Author: rjones
Update of /cvs/pkgs/rpms/ocaml-cmigrep/devel
In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv798
Modified Files:
ocaml-cmigrep.spec
Log Message:
Rebuild for OCaml 3.11.1+rc0
Index: ocaml-cmigrep.spec
===================================================================
RCS file: /cvs/pkgs/rpms/ocaml-cmigrep/devel/ocaml-cmigrep.spec,v
retrieving revision 1.11
retrieving revision 1.12
diff -u -p -r1.11 -r1.12
--- ocaml-cmigrep.spec 23 May 2009 11:16:11 -0000 1.11
+++ ocaml-cmigrep.spec 23 May 2009 11:24:22 -0000 1.12
@@ -8,7 +8,7 @@
Name: ocaml-cmigrep
Version: 1.5
-Release: 11%{?dist}
+Release: 12%{?dist}
Summary: Search OCaml compiled interface (cmi) files
Group: Development/Libraries
@@ -51,7 +51,7 @@ elisp that allows emacs to use cmigrep f
# +compiler-libs directory. It would be good to copy this,
# however in Debian the only packages which actually use
# compiler-libs are camlp5 & cmigrep.
-bzcat %{SOURCE1} | tar xf -
+zcat %{SOURCE1} | tar xf -
pushd ocaml-%{ocaml_major}.%{ocaml_minor}rc0
%patch1 -p1
%patch2 -p1
@@ -103,7 +103,7 @@ rm -rf $RPM_BUILD_ROOT
%changelog
-* Sat May 23 2009 Richard W.M. Jones <rjones(a)redhat.com> - 1.5-11
+* Sat May 23 2009 Richard W.M. Jones <rjones(a)redhat.com> - 1.5-12
- Rebuild for OCaml 3.11.1+rc0.
* Thu Apr 16 2009 S390x secondary arch maintainer <fedora-s390x(a)lists.fedoraproject.org>
14 years, 6 months
rpms/ocaml-gettext/devel ocaml-gettext.spec,1.10,1.11
by Richard W.M. Jones
Author: rjones
Update of /cvs/pkgs/rpms/ocaml-gettext/devel
In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv32365
Modified Files:
ocaml-gettext.spec
Log Message:
Rebuild for OCaml 3.11.1
Index: ocaml-gettext.spec
===================================================================
RCS file: /cvs/pkgs/rpms/ocaml-gettext/devel/ocaml-gettext.spec,v
retrieving revision 1.10
retrieving revision 1.11
diff -u -p -r1.10 -r1.11
--- ocaml-gettext.spec 16 Apr 2009 09:06:07 -0000 1.10
+++ ocaml-gettext.spec 23 May 2009 11:21:21 -0000 1.11
@@ -3,7 +3,7 @@
Name: ocaml-gettext
Version: 0.3.2
-Release: 7%{?dist}
+Release: 8%{?dist}
Summary: OCaml library for i18n
Group: Development/Libraries
@@ -221,6 +221,9 @@ rm -rf $RPM_BUILD_ROOT
%changelog
+* Sat May 23 2009 Richard W.M. Jones <rjones(a)redhat.com> - 0.3.2-8
+- Rebuild for OCaml 3.11.1
+
* Thu Apr 16 2009 S390x secondary arch maintainer <fedora-s390x(a)lists.fedoraproject.org>
- ExcludeArch sparc64, s390, s390x as we don't have OCaml on those archs
(added sparc64 per request from the sparc maintainer)
14 years, 6 months