* [gentoo-commits] gentoo-x86 commit in dev-lang/ocaml: ChangeLog ocaml-3.12.1.ebuild
@ 2011-07-04 22:11 Alexis Ballier (aballier)
0 siblings, 0 replies; 11+ messages in thread
From: Alexis Ballier (aballier) @ 2011-07-04 22:11 UTC (permalink / raw
To: gentoo-commits
aballier 11/07/04 22:11:34
Modified: ChangeLog
Added: ocaml-3.12.1.ebuild
Log:
bump to 3.12.1
(Portage version: 2.2.0_alpha43/cvs/Linux x86_64)
Revision Changes Path
1.192 dev-lang/ocaml/ChangeLog
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-lang/ocaml/ChangeLog?rev=1.192&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-lang/ocaml/ChangeLog?rev=1.192&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-lang/ocaml/ChangeLog?r1=1.191&r2=1.192
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-lang/ocaml/ChangeLog,v
retrieving revision 1.191
retrieving revision 1.192
diff -u -r1.191 -r1.192
--- ChangeLog 26 Jun 2011 18:09:41 -0000 1.191
+++ ChangeLog 4 Jul 2011 22:11:34 -0000 1.192
@@ -1,6 +1,11 @@
# ChangeLog for dev-lang/ocaml
# Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-lang/ocaml/ChangeLog,v 1.191 2011/06/26 18:09:41 aballier Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-lang/ocaml/ChangeLog,v 1.192 2011/07/04 22:11:34 aballier Exp $
+
+*ocaml-3.12.1 (04 Jul 2011)
+
+ 04 Jul 2011; Alexis Ballier <aballier@gentoo.org> +ocaml-3.12.1.ebuild:
+ bump to 3.12.1
*ocaml-3.12.1_rc1 (26 Jun 2011)
1.1 dev-lang/ocaml/ocaml-3.12.1.ebuild
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-lang/ocaml/ocaml-3.12.1.ebuild?rev=1.1&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-lang/ocaml/ocaml-3.12.1.ebuild?rev=1.1&content-type=text/plain
Index: ocaml-3.12.1.ebuild
===================================================================
# Copyright 1999-2011 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-lang/ocaml/ocaml-3.12.1.ebuild,v 1.1 2011/07/04 22:11:34 aballier Exp $
EAPI="1"
inherit flag-o-matic eutils multilib versionator toolchain-funcs
PATCHLEVEL="3"
MY_P="${P/_/+}"
DESCRIPTION="Fast modern type-inferring functional programming language descended from the ML family"
HOMEPAGE="http://www.ocaml.org/"
SRC_URI="ftp://ftp.inria.fr/INRIA/Projects/cristal/ocaml/ocaml-$(get_version_component_range 1-2)/${MY_P}.tar.bz2
mirror://gentoo/${PN}-patches-${PATCHLEVEL}.tar.bz2"
LICENSE="QPL-1.0 LGPL-2"
SLOT="0"
KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~x86-fbsd"
IUSE="emacs gdbm latex ncurses +ocamlopt tk X xemacs"
DEPEND="tk? ( >=dev-lang/tk-3.3.3 )
ncurses? ( sys-libs/ncurses )
X? ( x11-libs/libX11 x11-proto/xproto )
gdbm? ( sys-libs/gdbm )"
RDEPEND="${DEPEND}"
PDEPEND="emacs? ( app-emacs/ocaml-mode )
xemacs? ( app-xemacs/ocaml )"
S="${WORKDIR}/${MY_P}"
pkg_setup() {
# dev-lang/ocaml creates its own objects but calls gcc for linking, which will
# results in relocations if gcc wants to create a PIE executable
if gcc-specs-pie ; then
append-ldflags -nopie
ewarn "Ocaml generates its own native asm, you're using a PIE compiler"
ewarn "We have appended -nopie to ocaml build options"
ewarn "because linking an executable with pie while the objects are not pic will not work"
fi
}
src_unpack() {
unpack ${A}
cd "${S}"
EPATCH_SUFFIX="patch" epatch "${WORKDIR}/patches"
}
src_compile() {
export LC_ALL=C
local myconf=""
# Causes build failures because it builds some programs with -pg,
# bug #270920
filter-flags -fomit-frame-pointer
# Bug #285993
filter-mfpmath sse
# It doesn't compile on alpha without this LDFLAGS
use alpha && append-ldflags "-Wl,--no-relax"
# Fails to build on arm if >O0 is used
use arm && replace-flags "-O?" -O0
use tk || myconf="${myconf} -no-tk"
use ncurses || myconf="${myconf} -no-curses"
use X || myconf="${myconf} -no-graph"
use gdbm || myconf="${myconf} -no-dbm"
# ocaml uses a home-brewn configure script, preventing it to use econf.
RAW_LDFLAGS="$(raw-ldflags)" ./configure -prefix /usr \
--bindir /usr/bin \
--libdir /usr/$(get_libdir)/ocaml \
--mandir /usr/share/man \
-host "${CHOST}" \
-cc "$(tc-getCC)" \
-as "$(tc-getAS)" \
-aspp "$(tc-getCC) -c" \
-partialld "$(tc-getLD) -r" \
--with-pthread ${myconf} || die "configure failed!"
emake -j1 world || die "make world failed!"
# Native code generation can be disabled now
if use ocamlopt ; then
# bug #279968
emake -j1 opt || die "make opt failed!"
emake -j1 opt.opt || die "make opt.opt failed!"
fi
}
src_install() {
make BINDIR="${D}"/usr/bin \
LIBDIR="${D}"/usr/$(get_libdir)/ocaml \
MANDIR="${D}"/usr/share/man \
install || die "make install failed!"
# Install the compiler libs
dodir /usr/$(get_libdir)/ocaml/compiler-libs
insinto /usr/$(get_libdir)/ocaml/compiler-libs
doins {utils,typing,parsing}/*.{mli,cmi,cmo}
use ocamlopt && doins {utils,typing,parsing}/*.{cmx,o}
# Symlink the headers to the right place
dodir /usr/include
dosym /usr/$(get_libdir)/ocaml/caml /usr/include/
# Remove ${D} from ld.conf, as the buildsystem isn't $(DESTDIR) aware
dosed "s:${D}::g" /usr/$(get_libdir)/ocaml/ld.conf
dodoc Changes INSTALL README Upgrading
# Create and envd entry for latex input files (this definitely belongs into
# CONTENT and not in pkg_postinst.
if use latex ; then
echo "TEXINPUTS=/usr/$(get_libdir)/ocaml/ocamldoc:" > "${T}"/99ocamldoc
doenvd "${T}"/99ocamldoc
fi
# Install ocaml-rebuild portage set
insinto /usr/share/portage/config/sets
doins "${FILESDIR}/ocaml.conf" || die
}
pkg_postinst() {
echo
ewarn "OCaml is not binary compatible from version to version, so you"
ewarn "need to rebuild all packages depending on it, that are actually"
ewarn "installed on your system. To do so, you can run:"
ewarn "emerge @ocaml-rebuild"
echo
}
^ permalink raw reply [flat|nested] 11+ messages in thread
* [gentoo-commits] gentoo-x86 commit in dev-lang/ocaml: ChangeLog ocaml-3.12.1.ebuild
@ 2011-07-11 4:35 Matt Turner (mattst88)
0 siblings, 0 replies; 11+ messages in thread
From: Matt Turner (mattst88) @ 2011-07-11 4:35 UTC (permalink / raw
To: gentoo-commits
mattst88 11/07/11 04:35:38
Modified: ChangeLog ocaml-3.12.1.ebuild
Log:
Added ~mips, bug 319649
(Portage version: 2.1.10.3/cvs/Linux x86_64)
Revision Changes Path
1.194 dev-lang/ocaml/ChangeLog
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-lang/ocaml/ChangeLog?rev=1.194&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-lang/ocaml/ChangeLog?rev=1.194&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-lang/ocaml/ChangeLog?r1=1.193&r2=1.194
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-lang/ocaml/ChangeLog,v
retrieving revision 1.193
retrieving revision 1.194
diff -u -r1.193 -r1.194
--- ChangeLog 6 Jul 2011 16:40:45 -0000 1.193
+++ ChangeLog 11 Jul 2011 04:35:37 -0000 1.194
@@ -1,6 +1,9 @@
# ChangeLog for dev-lang/ocaml
# Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-lang/ocaml/ChangeLog,v 1.193 2011/07/06 16:40:45 aballier Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-lang/ocaml/ChangeLog,v 1.194 2011/07/11 04:35:37 mattst88 Exp $
+
+ 11 Jul 2011; Matt Turner <mattst88@gentoo.org> ocaml-3.12.1.ebuild:
+ Added ~mips, bug 319649
06 Jul 2011; Alexis Ballier <aballier@gentoo.org> -ocaml-3.12.0.ebuild,
-ocaml-3.12.0-r1.ebuild, -ocaml-3.12.1_rc1.ebuild:
1.2 dev-lang/ocaml/ocaml-3.12.1.ebuild
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-lang/ocaml/ocaml-3.12.1.ebuild?rev=1.2&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-lang/ocaml/ocaml-3.12.1.ebuild?rev=1.2&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-lang/ocaml/ocaml-3.12.1.ebuild?r1=1.1&r2=1.2
Index: ocaml-3.12.1.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-lang/ocaml/ocaml-3.12.1.ebuild,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- ocaml-3.12.1.ebuild 4 Jul 2011 22:11:34 -0000 1.1
+++ ocaml-3.12.1.ebuild 11 Jul 2011 04:35:37 -0000 1.2
@@ -1,6 +1,6 @@
# Copyright 1999-2011 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-lang/ocaml/ocaml-3.12.1.ebuild,v 1.1 2011/07/04 22:11:34 aballier Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-lang/ocaml/ocaml-3.12.1.ebuild,v 1.2 2011/07/11 04:35:37 mattst88 Exp $
EAPI="1"
@@ -15,7 +15,7 @@
LICENSE="QPL-1.0 LGPL-2"
SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~x86-fbsd"
+KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sparc ~x86 ~x86-fbsd"
IUSE="emacs gdbm latex ncurses +ocamlopt tk X xemacs"
DEPEND="tk? ( >=dev-lang/tk-3.3.3 )
^ permalink raw reply [flat|nested] 11+ messages in thread
* [gentoo-commits] gentoo-x86 commit in dev-lang/ocaml: ChangeLog ocaml-3.12.1.ebuild
@ 2011-09-06 15:38 Alexis Ballier (aballier)
0 siblings, 0 replies; 11+ messages in thread
From: Alexis Ballier (aballier) @ 2011-09-06 15:38 UTC (permalink / raw
To: gentoo-commits
aballier 11/09/06 15:38:09
Modified: ChangeLog ocaml-3.12.1.ebuild
Log:
suggest how to rebuild ocaml packages without the set
(Portage version: 2.2.0_alpha53/cvs/Linux x86_64)
Revision Changes Path
1.195 dev-lang/ocaml/ChangeLog
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-lang/ocaml/ChangeLog?rev=1.195&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-lang/ocaml/ChangeLog?rev=1.195&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-lang/ocaml/ChangeLog?r1=1.194&r2=1.195
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-lang/ocaml/ChangeLog,v
retrieving revision 1.194
retrieving revision 1.195
diff -u -r1.194 -r1.195
--- ChangeLog 11 Jul 2011 04:35:37 -0000 1.194
+++ ChangeLog 6 Sep 2011 15:38:09 -0000 1.195
@@ -1,6 +1,9 @@
# ChangeLog for dev-lang/ocaml
# Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-lang/ocaml/ChangeLog,v 1.194 2011/07/11 04:35:37 mattst88 Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-lang/ocaml/ChangeLog,v 1.195 2011/09/06 15:38:09 aballier Exp $
+
+ 06 Sep 2011; Alexis Ballier <aballier@gentoo.org> ocaml-3.12.1.ebuild:
+ suggest how to rebuild ocaml packages without the set
11 Jul 2011; Matt Turner <mattst88@gentoo.org> ocaml-3.12.1.ebuild:
Added ~mips, bug 319649
1.3 dev-lang/ocaml/ocaml-3.12.1.ebuild
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-lang/ocaml/ocaml-3.12.1.ebuild?rev=1.3&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-lang/ocaml/ocaml-3.12.1.ebuild?rev=1.3&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-lang/ocaml/ocaml-3.12.1.ebuild?r1=1.2&r2=1.3
Index: ocaml-3.12.1.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-lang/ocaml/ocaml-3.12.1.ebuild,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- ocaml-3.12.1.ebuild 11 Jul 2011 04:35:37 -0000 1.2
+++ ocaml-3.12.1.ebuild 6 Sep 2011 15:38:09 -0000 1.3
@@ -1,6 +1,6 @@
# Copyright 1999-2011 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-lang/ocaml/ocaml-3.12.1.ebuild,v 1.2 2011/07/11 04:35:37 mattst88 Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-lang/ocaml/ocaml-3.12.1.ebuild,v 1.3 2011/09/06 15:38:09 aballier Exp $
EAPI="1"
@@ -126,5 +126,6 @@
ewarn "need to rebuild all packages depending on it, that are actually"
ewarn "installed on your system. To do so, you can run:"
ewarn "emerge @ocaml-rebuild"
+ ewarn "Or, (almost) equivalently: emerge -1 /usr/$(get_libdir)/ocaml"
echo
}
^ permalink raw reply [flat|nested] 11+ messages in thread
* [gentoo-commits] gentoo-x86 commit in dev-lang/ocaml: ChangeLog ocaml-3.12.1.ebuild
@ 2011-09-18 15:47 Andreas Schuerch (nativemad)
0 siblings, 0 replies; 11+ messages in thread
From: Andreas Schuerch (nativemad) @ 2011-09-18 15:47 UTC (permalink / raw
To: gentoo-commits
nativemad 11/09/18 15:47:34
Modified: ChangeLog ocaml-3.12.1.ebuild
Log:
x86 stable, thanks JD, bug 361767
(Portage version: 2.1.10.11/cvs/Linux i686)
Revision Changes Path
1.196 dev-lang/ocaml/ChangeLog
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-lang/ocaml/ChangeLog?rev=1.196&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-lang/ocaml/ChangeLog?rev=1.196&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-lang/ocaml/ChangeLog?r1=1.195&r2=1.196
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-lang/ocaml/ChangeLog,v
retrieving revision 1.195
retrieving revision 1.196
diff -u -r1.195 -r1.196
--- ChangeLog 6 Sep 2011 15:38:09 -0000 1.195
+++ ChangeLog 18 Sep 2011 15:47:34 -0000 1.196
@@ -1,6 +1,9 @@
# ChangeLog for dev-lang/ocaml
# Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-lang/ocaml/ChangeLog,v 1.195 2011/09/06 15:38:09 aballier Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-lang/ocaml/ChangeLog,v 1.196 2011/09/18 15:47:34 nativemad Exp $
+
+ 18 Sep 2011; Andreas Schuerch <nativemad@gentoo.org> ocaml-3.12.1.ebuild:
+ x86 stable, thanks JD, bug 361767
06 Sep 2011; Alexis Ballier <aballier@gentoo.org> ocaml-3.12.1.ebuild:
suggest how to rebuild ocaml packages without the set
1.4 dev-lang/ocaml/ocaml-3.12.1.ebuild
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-lang/ocaml/ocaml-3.12.1.ebuild?rev=1.4&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-lang/ocaml/ocaml-3.12.1.ebuild?rev=1.4&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-lang/ocaml/ocaml-3.12.1.ebuild?r1=1.3&r2=1.4
Index: ocaml-3.12.1.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-lang/ocaml/ocaml-3.12.1.ebuild,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- ocaml-3.12.1.ebuild 6 Sep 2011 15:38:09 -0000 1.3
+++ ocaml-3.12.1.ebuild 18 Sep 2011 15:47:34 -0000 1.4
@@ -1,6 +1,6 @@
# Copyright 1999-2011 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-lang/ocaml/ocaml-3.12.1.ebuild,v 1.3 2011/09/06 15:38:09 aballier Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-lang/ocaml/ocaml-3.12.1.ebuild,v 1.4 2011/09/18 15:47:34 nativemad Exp $
EAPI="1"
@@ -15,7 +15,7 @@
LICENSE="QPL-1.0 LGPL-2"
SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sparc ~x86 ~x86-fbsd"
+KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sparc x86 ~x86-fbsd"
IUSE="emacs gdbm latex ncurses +ocamlopt tk X xemacs"
DEPEND="tk? ( >=dev-lang/tk-3.3.3 )
^ permalink raw reply [flat|nested] 11+ messages in thread
* [gentoo-commits] gentoo-x86 commit in dev-lang/ocaml: ChangeLog ocaml-3.12.1.ebuild
@ 2011-09-19 21:49 Markus Meier (maekke)
0 siblings, 0 replies; 11+ messages in thread
From: Markus Meier (maekke) @ 2011-09-19 21:49 UTC (permalink / raw
To: gentoo-commits
maekke 11/09/19 21:49:41
Modified: ChangeLog ocaml-3.12.1.ebuild
Log:
arm stable, bug #361767
(Portage version: 2.1.10.18/cvs/Linux x86_64)
Revision Changes Path
1.197 dev-lang/ocaml/ChangeLog
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-lang/ocaml/ChangeLog?rev=1.197&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-lang/ocaml/ChangeLog?rev=1.197&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-lang/ocaml/ChangeLog?r1=1.196&r2=1.197
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-lang/ocaml/ChangeLog,v
retrieving revision 1.196
retrieving revision 1.197
diff -u -r1.196 -r1.197
--- ChangeLog 18 Sep 2011 15:47:34 -0000 1.196
+++ ChangeLog 19 Sep 2011 21:49:41 -0000 1.197
@@ -1,6 +1,9 @@
# ChangeLog for dev-lang/ocaml
# Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-lang/ocaml/ChangeLog,v 1.196 2011/09/18 15:47:34 nativemad Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-lang/ocaml/ChangeLog,v 1.197 2011/09/19 21:49:41 maekke Exp $
+
+ 19 Sep 2011; Markus Meier <maekke@gentoo.org> ocaml-3.12.1.ebuild:
+ arm stable, bug #361767
18 Sep 2011; Andreas Schuerch <nativemad@gentoo.org> ocaml-3.12.1.ebuild:
x86 stable, thanks JD, bug 361767
1.5 dev-lang/ocaml/ocaml-3.12.1.ebuild
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-lang/ocaml/ocaml-3.12.1.ebuild?rev=1.5&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-lang/ocaml/ocaml-3.12.1.ebuild?rev=1.5&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-lang/ocaml/ocaml-3.12.1.ebuild?r1=1.4&r2=1.5
Index: ocaml-3.12.1.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-lang/ocaml/ocaml-3.12.1.ebuild,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -r1.4 -r1.5
--- ocaml-3.12.1.ebuild 18 Sep 2011 15:47:34 -0000 1.4
+++ ocaml-3.12.1.ebuild 19 Sep 2011 21:49:41 -0000 1.5
@@ -1,6 +1,6 @@
# Copyright 1999-2011 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-lang/ocaml/ocaml-3.12.1.ebuild,v 1.4 2011/09/18 15:47:34 nativemad Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-lang/ocaml/ocaml-3.12.1.ebuild,v 1.5 2011/09/19 21:49:41 maekke Exp $
EAPI="1"
@@ -15,7 +15,7 @@
LICENSE="QPL-1.0 LGPL-2"
SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sparc x86 ~x86-fbsd"
+KEYWORDS="~alpha ~amd64 arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sparc x86 ~x86-fbsd"
IUSE="emacs gdbm latex ncurses +ocamlopt tk X xemacs"
DEPEND="tk? ( >=dev-lang/tk-3.3.3 )
^ permalink raw reply [flat|nested] 11+ messages in thread
* [gentoo-commits] gentoo-x86 commit in dev-lang/ocaml: ChangeLog ocaml-3.12.1.ebuild
@ 2011-09-20 13:11 Tony Vroon (chainsaw)
0 siblings, 0 replies; 11+ messages in thread
From: Tony Vroon (chainsaw) @ 2011-09-20 13:11 UTC (permalink / raw
To: gentoo-commits
chainsaw 11/09/20 13:11:02
Modified: ChangeLog ocaml-3.12.1.ebuild
Log:
Marked stable on AMD64 based on arch testing by Ian "idella4" Delaney & Agostino "ago" Sarubbo in bug #361767.
(Portage version: 2.1.10.19/cvs/Linux x86_64)
Revision Changes Path
1.198 dev-lang/ocaml/ChangeLog
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-lang/ocaml/ChangeLog?rev=1.198&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-lang/ocaml/ChangeLog?rev=1.198&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-lang/ocaml/ChangeLog?r1=1.197&r2=1.198
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-lang/ocaml/ChangeLog,v
retrieving revision 1.197
retrieving revision 1.198
diff -u -r1.197 -r1.198
--- ChangeLog 19 Sep 2011 21:49:41 -0000 1.197
+++ ChangeLog 20 Sep 2011 13:11:02 -0000 1.198
@@ -1,6 +1,10 @@
# ChangeLog for dev-lang/ocaml
# Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-lang/ocaml/ChangeLog,v 1.197 2011/09/19 21:49:41 maekke Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-lang/ocaml/ChangeLog,v 1.198 2011/09/20 13:11:02 chainsaw Exp $
+
+ 20 Sep 2011; Tony Vroon <chainsaw@gentoo.org> ocaml-3.12.1.ebuild:
+ Marked stable on AMD64 based on arch testing by Ian "idella4" Delaney &
+ Agostino "ago" Sarubbo in bug #361767.
19 Sep 2011; Markus Meier <maekke@gentoo.org> ocaml-3.12.1.ebuild:
arm stable, bug #361767
1.6 dev-lang/ocaml/ocaml-3.12.1.ebuild
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-lang/ocaml/ocaml-3.12.1.ebuild?rev=1.6&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-lang/ocaml/ocaml-3.12.1.ebuild?rev=1.6&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-lang/ocaml/ocaml-3.12.1.ebuild?r1=1.5&r2=1.6
Index: ocaml-3.12.1.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-lang/ocaml/ocaml-3.12.1.ebuild,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -r1.5 -r1.6
--- ocaml-3.12.1.ebuild 19 Sep 2011 21:49:41 -0000 1.5
+++ ocaml-3.12.1.ebuild 20 Sep 2011 13:11:02 -0000 1.6
@@ -1,6 +1,6 @@
# Copyright 1999-2011 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-lang/ocaml/ocaml-3.12.1.ebuild,v 1.5 2011/09/19 21:49:41 maekke Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-lang/ocaml/ocaml-3.12.1.ebuild,v 1.6 2011/09/20 13:11:02 chainsaw Exp $
EAPI="1"
@@ -15,7 +15,7 @@
LICENSE="QPL-1.0 LGPL-2"
SLOT="0"
-KEYWORDS="~alpha ~amd64 arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sparc x86 ~x86-fbsd"
+KEYWORDS="~alpha amd64 arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sparc x86 ~x86-fbsd"
IUSE="emacs gdbm latex ncurses +ocamlopt tk X xemacs"
DEPEND="tk? ( >=dev-lang/tk-3.3.3 )
^ permalink raw reply [flat|nested] 11+ messages in thread
* [gentoo-commits] gentoo-x86 commit in dev-lang/ocaml: ChangeLog ocaml-3.12.1.ebuild
@ 2011-10-09 17:12 Raul Porcel (armin76)
0 siblings, 0 replies; 11+ messages in thread
From: Raul Porcel (armin76) @ 2011-10-09 17:12 UTC (permalink / raw
To: gentoo-commits
armin76 11/10/09 17:12:19
Modified: ChangeLog ocaml-3.12.1.ebuild
Log:
alpha/ia64/sparc stable wrt #361767
(Portage version: 2.1.10.11/cvs/Linux ia64)
Revision Changes Path
1.199 dev-lang/ocaml/ChangeLog
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-lang/ocaml/ChangeLog?rev=1.199&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-lang/ocaml/ChangeLog?rev=1.199&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-lang/ocaml/ChangeLog?r1=1.198&r2=1.199
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-lang/ocaml/ChangeLog,v
retrieving revision 1.198
retrieving revision 1.199
diff -u -r1.198 -r1.199
--- ChangeLog 20 Sep 2011 13:11:02 -0000 1.198
+++ ChangeLog 9 Oct 2011 17:12:19 -0000 1.199
@@ -1,6 +1,9 @@
# ChangeLog for dev-lang/ocaml
# Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-lang/ocaml/ChangeLog,v 1.198 2011/09/20 13:11:02 chainsaw Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-lang/ocaml/ChangeLog,v 1.199 2011/10/09 17:12:19 armin76 Exp $
+
+ 09 Oct 2011; Raúl Porcel <armin76@gentoo.org> ocaml-3.12.1.ebuild:
+ alpha/ia64/sparc stable wrt #361767
20 Sep 2011; Tony Vroon <chainsaw@gentoo.org> ocaml-3.12.1.ebuild:
Marked stable on AMD64 based on arch testing by Ian "idella4" Delaney &
1.7 dev-lang/ocaml/ocaml-3.12.1.ebuild
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-lang/ocaml/ocaml-3.12.1.ebuild?rev=1.7&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-lang/ocaml/ocaml-3.12.1.ebuild?rev=1.7&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-lang/ocaml/ocaml-3.12.1.ebuild?r1=1.6&r2=1.7
Index: ocaml-3.12.1.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-lang/ocaml/ocaml-3.12.1.ebuild,v
retrieving revision 1.6
retrieving revision 1.7
diff -u -r1.6 -r1.7
--- ocaml-3.12.1.ebuild 20 Sep 2011 13:11:02 -0000 1.6
+++ ocaml-3.12.1.ebuild 9 Oct 2011 17:12:19 -0000 1.7
@@ -1,6 +1,6 @@
# Copyright 1999-2011 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-lang/ocaml/ocaml-3.12.1.ebuild,v 1.6 2011/09/20 13:11:02 chainsaw Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-lang/ocaml/ocaml-3.12.1.ebuild,v 1.7 2011/10/09 17:12:19 armin76 Exp $
EAPI="1"
@@ -15,7 +15,7 @@
LICENSE="QPL-1.0 LGPL-2"
SLOT="0"
-KEYWORDS="~alpha amd64 arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sparc x86 ~x86-fbsd"
+KEYWORDS="alpha amd64 arm ~hppa ia64 ~mips ~ppc ~ppc64 sparc x86 ~x86-fbsd"
IUSE="emacs gdbm latex ncurses +ocamlopt tk X xemacs"
DEPEND="tk? ( >=dev-lang/tk-3.3.3 )
^ permalink raw reply [flat|nested] 11+ messages in thread
* [gentoo-commits] gentoo-x86 commit in dev-lang/ocaml: ChangeLog ocaml-3.12.1.ebuild
@ 2011-10-17 15:20 Jeroen Roovers (jer)
0 siblings, 0 replies; 11+ messages in thread
From: Jeroen Roovers (jer) @ 2011-10-17 15:20 UTC (permalink / raw
To: gentoo-commits
jer 11/10/17 15:20:33
Modified: ChangeLog ocaml-3.12.1.ebuild
Log:
Stable for HPPA (bug #361767).
(Portage version: 2.2.0_alpha67/cvs/Linux x86_64)
Revision Changes Path
1.200 dev-lang/ocaml/ChangeLog
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-lang/ocaml/ChangeLog?rev=1.200&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-lang/ocaml/ChangeLog?rev=1.200&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-lang/ocaml/ChangeLog?r1=1.199&r2=1.200
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-lang/ocaml/ChangeLog,v
retrieving revision 1.199
retrieving revision 1.200
diff -u -r1.199 -r1.200
--- ChangeLog 9 Oct 2011 17:12:19 -0000 1.199
+++ ChangeLog 17 Oct 2011 15:20:33 -0000 1.200
@@ -1,6 +1,9 @@
# ChangeLog for dev-lang/ocaml
# Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-lang/ocaml/ChangeLog,v 1.199 2011/10/09 17:12:19 armin76 Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-lang/ocaml/ChangeLog,v 1.200 2011/10/17 15:20:33 jer Exp $
+
+ 17 Oct 2011; Jeroen Roovers <jer@gentoo.org> ocaml-3.12.1.ebuild:
+ Stable for HPPA (bug #361767).
09 Oct 2011; Raúl Porcel <armin76@gentoo.org> ocaml-3.12.1.ebuild:
alpha/ia64/sparc stable wrt #361767
1.8 dev-lang/ocaml/ocaml-3.12.1.ebuild
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-lang/ocaml/ocaml-3.12.1.ebuild?rev=1.8&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-lang/ocaml/ocaml-3.12.1.ebuild?rev=1.8&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-lang/ocaml/ocaml-3.12.1.ebuild?r1=1.7&r2=1.8
Index: ocaml-3.12.1.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-lang/ocaml/ocaml-3.12.1.ebuild,v
retrieving revision 1.7
retrieving revision 1.8
diff -u -r1.7 -r1.8
--- ocaml-3.12.1.ebuild 9 Oct 2011 17:12:19 -0000 1.7
+++ ocaml-3.12.1.ebuild 17 Oct 2011 15:20:33 -0000 1.8
@@ -1,6 +1,6 @@
# Copyright 1999-2011 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-lang/ocaml/ocaml-3.12.1.ebuild,v 1.7 2011/10/09 17:12:19 armin76 Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-lang/ocaml/ocaml-3.12.1.ebuild,v 1.8 2011/10/17 15:20:33 jer Exp $
EAPI="1"
@@ -15,7 +15,7 @@
LICENSE="QPL-1.0 LGPL-2"
SLOT="0"
-KEYWORDS="alpha amd64 arm ~hppa ia64 ~mips ~ppc ~ppc64 sparc x86 ~x86-fbsd"
+KEYWORDS="alpha amd64 arm hppa ia64 ~mips ~ppc ~ppc64 sparc x86 ~x86-fbsd"
IUSE="emacs gdbm latex ncurses +ocamlopt tk X xemacs"
DEPEND="tk? ( >=dev-lang/tk-3.3.3 )
^ permalink raw reply [flat|nested] 11+ messages in thread
* [gentoo-commits] gentoo-x86 commit in dev-lang/ocaml: ChangeLog ocaml-3.12.1.ebuild
@ 2011-11-06 13:41 Brent Baude (ranger)
0 siblings, 0 replies; 11+ messages in thread
From: Brent Baude (ranger) @ 2011-11-06 13:41 UTC (permalink / raw
To: gentoo-commits
ranger 11/11/06 13:41:53
Modified: ChangeLog ocaml-3.12.1.ebuild
Log:
Marking ocaml-3.12.1 ppc for bug 361767
(Portage version: 2.1.10.11/cvs/Linux ppc64)
Revision Changes Path
1.201 dev-lang/ocaml/ChangeLog
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-lang/ocaml/ChangeLog?rev=1.201&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-lang/ocaml/ChangeLog?rev=1.201&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-lang/ocaml/ChangeLog?r1=1.200&r2=1.201
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-lang/ocaml/ChangeLog,v
retrieving revision 1.200
retrieving revision 1.201
diff -u -r1.200 -r1.201
--- ChangeLog 17 Oct 2011 15:20:33 -0000 1.200
+++ ChangeLog 6 Nov 2011 13:41:53 -0000 1.201
@@ -1,6 +1,9 @@
# ChangeLog for dev-lang/ocaml
# Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-lang/ocaml/ChangeLog,v 1.200 2011/10/17 15:20:33 jer Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-lang/ocaml/ChangeLog,v 1.201 2011/11/06 13:41:53 ranger Exp $
+
+ 06 Nov 2011; Brent Baude <ranger@gentoo.org> ocaml-3.12.1.ebuild:
+ Marking ocaml-3.12.1 ppc for bug 361767
17 Oct 2011; Jeroen Roovers <jer@gentoo.org> ocaml-3.12.1.ebuild:
Stable for HPPA (bug #361767).
1.9 dev-lang/ocaml/ocaml-3.12.1.ebuild
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-lang/ocaml/ocaml-3.12.1.ebuild?rev=1.9&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-lang/ocaml/ocaml-3.12.1.ebuild?rev=1.9&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-lang/ocaml/ocaml-3.12.1.ebuild?r1=1.8&r2=1.9
Index: ocaml-3.12.1.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-lang/ocaml/ocaml-3.12.1.ebuild,v
retrieving revision 1.8
retrieving revision 1.9
diff -u -r1.8 -r1.9
--- ocaml-3.12.1.ebuild 17 Oct 2011 15:20:33 -0000 1.8
+++ ocaml-3.12.1.ebuild 6 Nov 2011 13:41:53 -0000 1.9
@@ -1,6 +1,6 @@
# Copyright 1999-2011 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-lang/ocaml/ocaml-3.12.1.ebuild,v 1.8 2011/10/17 15:20:33 jer Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-lang/ocaml/ocaml-3.12.1.ebuild,v 1.9 2011/11/06 13:41:53 ranger Exp $
EAPI="1"
@@ -15,7 +15,7 @@
LICENSE="QPL-1.0 LGPL-2"
SLOT="0"
-KEYWORDS="alpha amd64 arm hppa ia64 ~mips ~ppc ~ppc64 sparc x86 ~x86-fbsd"
+KEYWORDS="alpha amd64 arm hppa ia64 ~mips ppc ~ppc64 sparc x86 ~x86-fbsd"
IUSE="emacs gdbm latex ncurses +ocamlopt tk X xemacs"
DEPEND="tk? ( >=dev-lang/tk-3.3.3 )
^ permalink raw reply [flat|nested] 11+ messages in thread
* [gentoo-commits] gentoo-x86 commit in dev-lang/ocaml: ChangeLog ocaml-3.12.1.ebuild
@ 2012-05-24 10:47 Alexis Ballier (aballier)
0 siblings, 0 replies; 11+ messages in thread
From: Alexis Ballier (aballier) @ 2012-05-24 10:47 UTC (permalink / raw
To: gentoo-commits
aballier 12/05/24 10:47:13
Modified: ChangeLog ocaml-3.12.1.ebuild
Log:
keyword ~amd64-fbsd
(Portage version: 2.2.0_alpha107/cvs/Linux x86_64)
Revision Changes Path
1.203 dev-lang/ocaml/ChangeLog
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-lang/ocaml/ChangeLog?rev=1.203&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-lang/ocaml/ChangeLog?rev=1.203&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-lang/ocaml/ChangeLog?r1=1.202&r2=1.203
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-lang/ocaml/ChangeLog,v
retrieving revision 1.202
retrieving revision 1.203
diff -u -r1.202 -r1.203
--- ChangeLog 15 May 2012 02:57:30 -0000 1.202
+++ ChangeLog 24 May 2012 10:47:13 -0000 1.203
@@ -1,6 +1,9 @@
# ChangeLog for dev-lang/ocaml
# Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-lang/ocaml/ChangeLog,v 1.202 2012/05/15 02:57:30 heroxbd Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-lang/ocaml/ChangeLog,v 1.203 2012/05/24 10:47:13 aballier Exp $
+
+ 24 May 2012; Alexis Ballier <aballier@gentoo.org> ocaml-3.12.1.ebuild:
+ keyword ~amd64-fbsd
15 May 2012; Benda Xu <heroxbd@gentoo.org> ocaml-3.12.1.ebuild:
on arm, use user -O flags instead of hard coding -O0, as per bug 340607.
1.11 dev-lang/ocaml/ocaml-3.12.1.ebuild
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-lang/ocaml/ocaml-3.12.1.ebuild?rev=1.11&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-lang/ocaml/ocaml-3.12.1.ebuild?rev=1.11&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-lang/ocaml/ocaml-3.12.1.ebuild?r1=1.10&r2=1.11
Index: ocaml-3.12.1.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-lang/ocaml/ocaml-3.12.1.ebuild,v
retrieving revision 1.10
retrieving revision 1.11
diff -u -r1.10 -r1.11
--- ocaml-3.12.1.ebuild 15 May 2012 02:57:30 -0000 1.10
+++ ocaml-3.12.1.ebuild 24 May 2012 10:47:13 -0000 1.11
@@ -1,6 +1,6 @@
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-lang/ocaml/ocaml-3.12.1.ebuild,v 1.10 2012/05/15 02:57:30 heroxbd Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-lang/ocaml/ocaml-3.12.1.ebuild,v 1.11 2012/05/24 10:47:13 aballier Exp $
EAPI="1"
@@ -15,7 +15,7 @@
LICENSE="QPL-1.0 LGPL-2"
SLOT="0"
-KEYWORDS="alpha amd64 arm hppa ia64 ~mips ppc ~ppc64 sparc x86 ~x86-fbsd"
+KEYWORDS="alpha amd64 arm hppa ia64 ~mips ppc ~ppc64 sparc x86 ~amd64-fbsd ~x86-fbsd"
IUSE="emacs gdbm latex ncurses +ocamlopt tk X xemacs"
DEPEND="tk? ( >=dev-lang/tk-3.3.3 )
^ permalink raw reply [flat|nested] 11+ messages in thread
* [gentoo-commits] gentoo-x86 commit in dev-lang/ocaml: ChangeLog ocaml-3.12.1.ebuild
@ 2015-05-25 4:40 Jeroen Roovers (jer)
0 siblings, 0 replies; 11+ messages in thread
From: Jeroen Roovers (jer) @ 2015-05-25 4:40 UTC (permalink / raw
To: gentoo-commits
jer 15/05/25 04:40:19
Modified: ChangeLog ocaml-3.12.1.ebuild
Log:
Stable for PPC64 (bug #361767).
(Portage version: 2.2.20/cvs/Linux x86_64, RepoMan options: --ignore-arches, signed Manifest commit with key A792A613)
Revision Changes Path
1.223 dev-lang/ocaml/ChangeLog
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-lang/ocaml/ChangeLog?rev=1.223&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-lang/ocaml/ChangeLog?rev=1.223&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-lang/ocaml/ChangeLog?r1=1.222&r2=1.223
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-lang/ocaml/ChangeLog,v
retrieving revision 1.222
retrieving revision 1.223
diff -u -r1.222 -r1.223
--- ChangeLog 1 Dec 2014 16:33:19 -0000 1.222
+++ ChangeLog 25 May 2015 04:40:19 -0000 1.223
@@ -1,6 +1,9 @@
# ChangeLog for dev-lang/ocaml
-# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-lang/ocaml/ChangeLog,v 1.222 2014/12/01 16:33:19 aballier Exp $
+# Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/dev-lang/ocaml/ChangeLog,v 1.223 2015/05/25 04:40:19 jer Exp $
+
+ 25 May 2015; Jeroen Roovers <jer@gentoo.org> ocaml-3.12.1.ebuild:
+ Stable for PPC64 (bug #361767).
01 Dec 2014; Alexis Ballier <aballier@gentoo.org> ocaml-4.02.1.ebuild:
specify host & target to help cross-compiling, unfortunately it is not
1.13 dev-lang/ocaml/ocaml-3.12.1.ebuild
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-lang/ocaml/ocaml-3.12.1.ebuild?rev=1.13&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-lang/ocaml/ocaml-3.12.1.ebuild?rev=1.13&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-lang/ocaml/ocaml-3.12.1.ebuild?r1=1.12&r2=1.13
Index: ocaml-3.12.1.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-lang/ocaml/ocaml-3.12.1.ebuild,v
retrieving revision 1.12
retrieving revision 1.13
diff -u -r1.12 -r1.13
--- ocaml-3.12.1.ebuild 18 Jan 2014 13:12:48 -0000 1.12
+++ ocaml-3.12.1.ebuild 25 May 2015 04:40:19 -0000 1.13
@@ -1,6 +1,6 @@
-# Copyright 1999-2014 Gentoo Foundation
+# Copyright 1999-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-lang/ocaml/ocaml-3.12.1.ebuild,v 1.12 2014/01/18 13:12:48 gienah Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-lang/ocaml/ocaml-3.12.1.ebuild,v 1.13 2015/05/25 04:40:19 jer Exp $
EAPI="1"
@@ -15,7 +15,7 @@
LICENSE="QPL-1.0 LGPL-2"
SLOT="0"
-KEYWORDS="alpha amd64 arm hppa ia64 ~mips ppc ~ppc64 sparc x86 ~amd64-fbsd ~x86-fbsd"
+KEYWORDS="alpha amd64 arm hppa ia64 ~mips ppc ppc64 sparc x86 ~amd64-fbsd ~x86-fbsd"
IUSE="emacs gdbm latex ncurses +ocamlopt tk X xemacs"
RDEPEND="tk? ( >=dev-lang/tk-3.3.3 )
^ permalink raw reply [flat|nested] 11+ messages in thread
end of thread, other threads:[~2015-05-25 4:40 UTC | newest]
Thread overview: 11+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2012-05-24 10:47 [gentoo-commits] gentoo-x86 commit in dev-lang/ocaml: ChangeLog ocaml-3.12.1.ebuild Alexis Ballier (aballier)
-- strict thread matches above, loose matches on Subject: below --
2015-05-25 4:40 Jeroen Roovers (jer)
2011-11-06 13:41 Brent Baude (ranger)
2011-10-17 15:20 Jeroen Roovers (jer)
2011-10-09 17:12 Raul Porcel (armin76)
2011-09-20 13:11 Tony Vroon (chainsaw)
2011-09-19 21:49 Markus Meier (maekke)
2011-09-18 15:47 Andreas Schuerch (nativemad)
2011-09-06 15:38 Alexis Ballier (aballier)
2011-07-11 4:35 Matt Turner (mattst88)
2011-07-04 22:11 Alexis Ballier (aballier)
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox