* [gentoo-commits] gentoo-x86 commit in dev-ml/findlib: ChangeLog findlib-1.2.6.ebuild
@ 2010-11-07 16:33 Alexis Ballier (aballier)
0 siblings, 0 replies; 8+ messages in thread
From: Alexis Ballier (aballier) @ 2010-11-07 16:33 UTC (permalink / raw
To: gentoo-commits
aballier 10/11/07 16:33:18
Modified: ChangeLog
Added: findlib-1.2.6.ebuild
Log:
version bump
(Portage version: 2.2.0_alpha4/cvs/Linux x86_64)
Revision Changes Path
1.64 dev-ml/findlib/ChangeLog
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ml/findlib/ChangeLog?rev=1.64&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ml/findlib/ChangeLog?rev=1.64&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ml/findlib/ChangeLog?r1=1.63&r2=1.64
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-ml/findlib/ChangeLog,v
retrieving revision 1.63
retrieving revision 1.64
diff -u -r1.63 -r1.64
--- ChangeLog 5 Nov 2010 18:23:30 -0000 1.63
+++ ChangeLog 7 Nov 2010 16:33:18 -0000 1.64
@@ -1,6 +1,11 @@
# ChangeLog for dev-ml/findlib
# Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-ml/findlib/ChangeLog,v 1.63 2010/11/05 18:23:30 hwoarang Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-ml/findlib/ChangeLog,v 1.64 2010/11/07 16:33:18 aballier Exp $
+
+*findlib-1.2.6 (07 Nov 2010)
+
+ 07 Nov 2010; Alexis Ballier <aballier@gentoo.org> +findlib-1.2.6.ebuild:
+ version bump
05 Nov 2010; Markos Chandras <hwoarang@gentoo.org> findlib-1.2.5.ebuild:
Stable on amd64 wrt bug #343751
1.1 dev-ml/findlib/findlib-1.2.6.ebuild
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ml/findlib/findlib-1.2.6.ebuild?rev=1.1&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ml/findlib/findlib-1.2.6.ebuild?rev=1.1&content-type=text/plain
Index: findlib-1.2.6.ebuild
===================================================================
# Copyright 1999-2010 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-ml/findlib/findlib-1.2.6.ebuild,v 1.1 2010/11/07 16:33:18 aballier Exp $
EAPI=2
inherit multilib
RESTRICT="installsources"
DESCRIPTION="OCaml tool to find/use non-standard packages."
HOMEPAGE="http://projects.camlcity.org/projects/findlib.html"
SRC_URI="http://download.camlcity.org/download/${P}.tar.gz"
IUSE="doc +ocamlopt tk"
LICENSE="MIT"
SLOT="0"
KEYWORDS="~alpha ~amd64 ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~x86-fbsd"
DEPEND=">=dev-lang/ocaml-3.10[ocamlopt?,tk?]"
RDEPEND="${DEPEND}"
ocamlfind_destdir="/usr/$(get_libdir)/ocaml"
stublibs="${ocamlfind_destdir}/stublibs"
src_configure() {
local myconf
use tk && myconf="-with-toolbox"
./configure -bindir /usr/bin -mandir /usr/share/man \
-sitelib ${ocamlfind_destdir} \
-config ${ocamlfind_destdir}/findlib/findlib.conf \
${myconf} || die "configure failed"
}
src_compile() {
emake all || die
if use ocamlopt; then
emake opt || die # optimized code
else
# If using bytecode we dont want to strip the binary as it would remove the
# bytecode and only leave ocamlrun...
export STRIP_MASK="*/bin/*"
fi
}
src_install() {
dodir `ocamlc -where`
emake prefix="${D}" install || die
dodir "${stublibs}"
cd "${S}/doc"
dodoc QUICKSTART README DOCINFO
use doc && dohtml -r ref-html guide-html
}
check_stublibs() {
local ocaml_stdlib=`ocamlc -where`
local ldconf="${ocaml_stdlib}/ld.conf"
if [ ! -e ${ldconf} ]
then
echo "${ocaml_stdlib}" > ${ldconf}
echo "${ocaml_stdlib}/stublibs" >> ${ldconf}
fi
if [ -z `grep -e ${stublibs} ${ldconf}` ]
then
echo ${stublibs} >> ${ldconf}
fi
}
pkg_postinst() {
check_stublibs
}
^ permalink raw reply [flat|nested] 8+ messages in thread
* [gentoo-commits] gentoo-x86 commit in dev-ml/findlib: ChangeLog findlib-1.2.6.ebuild
@ 2010-12-29 13:55 Thomas Kahle (tomka)
0 siblings, 0 replies; 8+ messages in thread
From: Thomas Kahle (tomka) @ 2010-12-29 13:55 UTC (permalink / raw
To: gentoo-commits
tomka 10/12/29 13:55:22
Modified: ChangeLog findlib-1.2.6.ebuild
Log:
x86 stable per bug 349633
(Portage version: 2.1.9.26/cvs/Linux i686)
Revision Changes Path
1.67 dev-ml/findlib/ChangeLog
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ml/findlib/ChangeLog?rev=1.67&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ml/findlib/ChangeLog?rev=1.67&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ml/findlib/ChangeLog?r1=1.66&r2=1.67
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-ml/findlib/ChangeLog,v
retrieving revision 1.66
retrieving revision 1.67
diff -u -r1.66 -r1.67
--- ChangeLog 4 Dec 2010 17:44:32 -0000 1.66
+++ ChangeLog 29 Dec 2010 13:55:22 -0000 1.67
@@ -1,6 +1,9 @@
# ChangeLog for dev-ml/findlib
# Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-ml/findlib/ChangeLog,v 1.66 2010/12/04 17:44:32 armin76 Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-ml/findlib/ChangeLog,v 1.67 2010/12/29 13:55:22 tomka Exp $
+
+ 29 Dec 2010; Thomas Kahle <tomka@gentoo.org> findlib-1.2.6.ebuild:
+ x86 stable per bug 349633
04 Dec 2010; Raúl Porcel <armin76@gentoo.org> findlib-1.2.5.ebuild:
alpha/ia64/sparc stable wrt #343751
1.2 dev-ml/findlib/findlib-1.2.6.ebuild
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ml/findlib/findlib-1.2.6.ebuild?rev=1.2&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ml/findlib/findlib-1.2.6.ebuild?rev=1.2&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ml/findlib/findlib-1.2.6.ebuild?r1=1.1&r2=1.2
Index: findlib-1.2.6.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-ml/findlib/findlib-1.2.6.ebuild,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- findlib-1.2.6.ebuild 7 Nov 2010 16:33:18 -0000 1.1
+++ findlib-1.2.6.ebuild 29 Dec 2010 13:55:22 -0000 1.2
@@ -1,6 +1,6 @@
# Copyright 1999-2010 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-ml/findlib/findlib-1.2.6.ebuild,v 1.1 2010/11/07 16:33:18 aballier Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-ml/findlib/findlib-1.2.6.ebuild,v 1.2 2010/12/29 13:55:22 tomka Exp $
EAPI=2
@@ -16,7 +16,7 @@
LICENSE="MIT"
SLOT="0"
-KEYWORDS="~alpha ~amd64 ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~x86-fbsd"
+KEYWORDS="~alpha ~amd64 ~hppa ~ia64 ~ppc ~ppc64 ~sparc x86 ~x86-fbsd"
DEPEND=">=dev-lang/ocaml-3.10[ocamlopt?,tk?]"
RDEPEND="${DEPEND}"
^ permalink raw reply [flat|nested] 8+ messages in thread
* [gentoo-commits] gentoo-x86 commit in dev-ml/findlib: ChangeLog findlib-1.2.6.ebuild
@ 2011-01-05 14:05 Markos Chandras (hwoarang)
0 siblings, 0 replies; 8+ messages in thread
From: Markos Chandras (hwoarang) @ 2011-01-05 14:05 UTC (permalink / raw
To: gentoo-commits
hwoarang 11/01/05 14:05:54
Modified: ChangeLog findlib-1.2.6.ebuild
Log:
Stable on amd64 wrt bug #349633
(Portage version: 2.1.9.28/cvs/Linux x86_64)
Revision Changes Path
1.68 dev-ml/findlib/ChangeLog
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ml/findlib/ChangeLog?rev=1.68&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ml/findlib/ChangeLog?rev=1.68&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ml/findlib/ChangeLog?r1=1.67&r2=1.68
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-ml/findlib/ChangeLog,v
retrieving revision 1.67
retrieving revision 1.68
diff -u -r1.67 -r1.68
--- ChangeLog 29 Dec 2010 13:55:22 -0000 1.67
+++ ChangeLog 5 Jan 2011 14:05:54 -0000 1.68
@@ -1,6 +1,9 @@
# ChangeLog for dev-ml/findlib
-# Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-ml/findlib/ChangeLog,v 1.67 2010/12/29 13:55:22 tomka Exp $
+# Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/dev-ml/findlib/ChangeLog,v 1.68 2011/01/05 14:05:54 hwoarang Exp $
+
+ 05 Jan 2011; Markos Chandras <hwoarang@gentoo.org> findlib-1.2.6.ebuild:
+ Stable on amd64 wrt bug #349633
29 Dec 2010; Thomas Kahle <tomka@gentoo.org> findlib-1.2.6.ebuild:
x86 stable per bug 349633
1.3 dev-ml/findlib/findlib-1.2.6.ebuild
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ml/findlib/findlib-1.2.6.ebuild?rev=1.3&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ml/findlib/findlib-1.2.6.ebuild?rev=1.3&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ml/findlib/findlib-1.2.6.ebuild?r1=1.2&r2=1.3
Index: findlib-1.2.6.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-ml/findlib/findlib-1.2.6.ebuild,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- findlib-1.2.6.ebuild 29 Dec 2010 13:55:22 -0000 1.2
+++ findlib-1.2.6.ebuild 5 Jan 2011 14:05:54 -0000 1.3
@@ -1,6 +1,6 @@
-# Copyright 1999-2010 Gentoo Foundation
+# Copyright 1999-2011 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-ml/findlib/findlib-1.2.6.ebuild,v 1.2 2010/12/29 13:55:22 tomka Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-ml/findlib/findlib-1.2.6.ebuild,v 1.3 2011/01/05 14:05:54 hwoarang Exp $
EAPI=2
@@ -16,7 +16,7 @@
LICENSE="MIT"
SLOT="0"
-KEYWORDS="~alpha ~amd64 ~hppa ~ia64 ~ppc ~ppc64 ~sparc x86 ~x86-fbsd"
+KEYWORDS="~alpha amd64 ~hppa ~ia64 ~ppc ~ppc64 ~sparc x86 ~x86-fbsd"
DEPEND=">=dev-lang/ocaml-3.10[ocamlopt?,tk?]"
RDEPEND="${DEPEND}"
^ permalink raw reply [flat|nested] 8+ messages in thread
* [gentoo-commits] gentoo-x86 commit in dev-ml/findlib: ChangeLog findlib-1.2.6.ebuild
@ 2011-01-09 17:53 Raul Porcel (armin76)
0 siblings, 0 replies; 8+ messages in thread
From: Raul Porcel (armin76) @ 2011-01-09 17:53 UTC (permalink / raw
To: gentoo-commits
armin76 11/01/09 17:53:49
Modified: ChangeLog findlib-1.2.6.ebuild
Log:
alpha/ia64/sparc stable wrt #349633
(Portage version: 2.1.9.25/cvs/Linux ia64)
Revision Changes Path
1.69 dev-ml/findlib/ChangeLog
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ml/findlib/ChangeLog?rev=1.69&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ml/findlib/ChangeLog?rev=1.69&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ml/findlib/ChangeLog?r1=1.68&r2=1.69
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-ml/findlib/ChangeLog,v
retrieving revision 1.68
retrieving revision 1.69
diff -u -r1.68 -r1.69
--- ChangeLog 5 Jan 2011 14:05:54 -0000 1.68
+++ ChangeLog 9 Jan 2011 17:53:48 -0000 1.69
@@ -1,6 +1,9 @@
# ChangeLog for dev-ml/findlib
# Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-ml/findlib/ChangeLog,v 1.68 2011/01/05 14:05:54 hwoarang Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-ml/findlib/ChangeLog,v 1.69 2011/01/09 17:53:48 armin76 Exp $
+
+ 09 Jan 2011; Raúl Porcel <armin76@gentoo.org> findlib-1.2.6.ebuild:
+ alpha/ia64/sparc stable wrt #349633
05 Jan 2011; Markos Chandras <hwoarang@gentoo.org> findlib-1.2.6.ebuild:
Stable on amd64 wrt bug #349633
1.4 dev-ml/findlib/findlib-1.2.6.ebuild
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ml/findlib/findlib-1.2.6.ebuild?rev=1.4&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ml/findlib/findlib-1.2.6.ebuild?rev=1.4&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ml/findlib/findlib-1.2.6.ebuild?r1=1.3&r2=1.4
Index: findlib-1.2.6.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-ml/findlib/findlib-1.2.6.ebuild,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- findlib-1.2.6.ebuild 5 Jan 2011 14:05:54 -0000 1.3
+++ findlib-1.2.6.ebuild 9 Jan 2011 17:53:48 -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-ml/findlib/findlib-1.2.6.ebuild,v 1.3 2011/01/05 14:05:54 hwoarang Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-ml/findlib/findlib-1.2.6.ebuild,v 1.4 2011/01/09 17:53:48 armin76 Exp $
EAPI=2
@@ -16,7 +16,7 @@
LICENSE="MIT"
SLOT="0"
-KEYWORDS="~alpha amd64 ~hppa ~ia64 ~ppc ~ppc64 ~sparc x86 ~x86-fbsd"
+KEYWORDS="alpha amd64 ~hppa ia64 ~ppc ~ppc64 sparc x86 ~x86-fbsd"
DEPEND=">=dev-lang/ocaml-3.10[ocamlopt?,tk?]"
RDEPEND="${DEPEND}"
^ permalink raw reply [flat|nested] 8+ messages in thread
* [gentoo-commits] gentoo-x86 commit in dev-ml/findlib: ChangeLog findlib-1.2.6.ebuild
@ 2011-01-13 22:22 Brent Baude (ranger)
0 siblings, 0 replies; 8+ messages in thread
From: Brent Baude (ranger) @ 2011-01-13 22:22 UTC (permalink / raw
To: gentoo-commits
ranger 11/01/13 22:22:27
Modified: ChangeLog findlib-1.2.6.ebuild
Log:
stable ppc, bug 349633
(Portage version: 2.1.9.25/cvs/Linux ppc64)
Revision Changes Path
1.70 dev-ml/findlib/ChangeLog
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ml/findlib/ChangeLog?rev=1.70&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ml/findlib/ChangeLog?rev=1.70&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ml/findlib/ChangeLog?r1=1.69&r2=1.70
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-ml/findlib/ChangeLog,v
retrieving revision 1.69
retrieving revision 1.70
diff -u -r1.69 -r1.70
--- ChangeLog 9 Jan 2011 17:53:48 -0000 1.69
+++ ChangeLog 13 Jan 2011 22:22:27 -0000 1.70
@@ -1,6 +1,9 @@
# ChangeLog for dev-ml/findlib
# Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-ml/findlib/ChangeLog,v 1.69 2011/01/09 17:53:48 armin76 Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-ml/findlib/ChangeLog,v 1.70 2011/01/13 22:22:27 ranger Exp $
+
+ 13 Jan 2011; Brent Baude <ranger@gentoo.org> findlib-1.2.6.ebuild:
+ stable ppc, bug 349633
09 Jan 2011; Raúl Porcel <armin76@gentoo.org> findlib-1.2.6.ebuild:
alpha/ia64/sparc stable wrt #349633
1.5 dev-ml/findlib/findlib-1.2.6.ebuild
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ml/findlib/findlib-1.2.6.ebuild?rev=1.5&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ml/findlib/findlib-1.2.6.ebuild?rev=1.5&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ml/findlib/findlib-1.2.6.ebuild?r1=1.4&r2=1.5
Index: findlib-1.2.6.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-ml/findlib/findlib-1.2.6.ebuild,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -r1.4 -r1.5
--- findlib-1.2.6.ebuild 9 Jan 2011 17:53:48 -0000 1.4
+++ findlib-1.2.6.ebuild 13 Jan 2011 22:22:27 -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-ml/findlib/findlib-1.2.6.ebuild,v 1.4 2011/01/09 17:53:48 armin76 Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-ml/findlib/findlib-1.2.6.ebuild,v 1.5 2011/01/13 22:22:27 ranger Exp $
EAPI=2
@@ -16,7 +16,7 @@
LICENSE="MIT"
SLOT="0"
-KEYWORDS="alpha amd64 ~hppa ia64 ~ppc ~ppc64 sparc x86 ~x86-fbsd"
+KEYWORDS="alpha amd64 ~hppa ia64 ppc ~ppc64 sparc x86 ~x86-fbsd"
DEPEND=">=dev-lang/ocaml-3.10[ocamlopt?,tk?]"
RDEPEND="${DEPEND}"
^ permalink raw reply [flat|nested] 8+ messages in thread
* [gentoo-commits] gentoo-x86 commit in dev-ml/findlib: ChangeLog findlib-1.2.6.ebuild
@ 2011-01-21 14:39 Jeroen Roovers (jer)
0 siblings, 0 replies; 8+ messages in thread
From: Jeroen Roovers (jer) @ 2011-01-21 14:39 UTC (permalink / raw
To: gentoo-commits
jer 11/01/21 14:39:12
Modified: ChangeLog findlib-1.2.6.ebuild
Log:
Stable for HPPA (bug #349633).
(Portage version: 2.2.0_alpha18/cvs/Linux i686)
Revision Changes Path
1.71 dev-ml/findlib/ChangeLog
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ml/findlib/ChangeLog?rev=1.71&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ml/findlib/ChangeLog?rev=1.71&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ml/findlib/ChangeLog?r1=1.70&r2=1.71
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-ml/findlib/ChangeLog,v
retrieving revision 1.70
retrieving revision 1.71
diff -u -r1.70 -r1.71
--- ChangeLog 13 Jan 2011 22:22:27 -0000 1.70
+++ ChangeLog 21 Jan 2011 14:39:12 -0000 1.71
@@ -1,6 +1,9 @@
# ChangeLog for dev-ml/findlib
# Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-ml/findlib/ChangeLog,v 1.70 2011/01/13 22:22:27 ranger Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-ml/findlib/ChangeLog,v 1.71 2011/01/21 14:39:12 jer Exp $
+
+ 21 Jan 2011; Jeroen Roovers <jer@gentoo.org> findlib-1.2.6.ebuild:
+ Stable for HPPA (bug #349633).
13 Jan 2011; Brent Baude <ranger@gentoo.org> findlib-1.2.6.ebuild:
stable ppc, bug 349633
1.6 dev-ml/findlib/findlib-1.2.6.ebuild
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ml/findlib/findlib-1.2.6.ebuild?rev=1.6&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ml/findlib/findlib-1.2.6.ebuild?rev=1.6&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ml/findlib/findlib-1.2.6.ebuild?r1=1.5&r2=1.6
Index: findlib-1.2.6.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-ml/findlib/findlib-1.2.6.ebuild,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -r1.5 -r1.6
--- findlib-1.2.6.ebuild 13 Jan 2011 22:22:27 -0000 1.5
+++ findlib-1.2.6.ebuild 21 Jan 2011 14:39:12 -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-ml/findlib/findlib-1.2.6.ebuild,v 1.5 2011/01/13 22:22:27 ranger Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-ml/findlib/findlib-1.2.6.ebuild,v 1.6 2011/01/21 14:39:12 jer Exp $
EAPI=2
@@ -16,7 +16,7 @@
LICENSE="MIT"
SLOT="0"
-KEYWORDS="alpha amd64 ~hppa ia64 ppc ~ppc64 sparc x86 ~x86-fbsd"
+KEYWORDS="alpha amd64 hppa ia64 ppc ~ppc64 sparc x86 ~x86-fbsd"
DEPEND=">=dev-lang/ocaml-3.10[ocamlopt?,tk?]"
RDEPEND="${DEPEND}"
^ permalink raw reply [flat|nested] 8+ messages in thread
* [gentoo-commits] gentoo-x86 commit in dev-ml/findlib: ChangeLog findlib-1.2.6.ebuild
@ 2011-01-22 23:01 Kacper Kowalik (xarthisius)
0 siblings, 0 replies; 8+ messages in thread
From: Kacper Kowalik (xarthisius) @ 2011-01-22 23:01 UTC (permalink / raw
To: gentoo-commits
xarthisius 11/01/22 23:01:40
Modified: ChangeLog findlib-1.2.6.ebuild
Log:
ppc64 stable wrt #349633
(Portage version: 2.1.9.25/cvs/Linux ppc64)
Revision Changes Path
1.72 dev-ml/findlib/ChangeLog
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ml/findlib/ChangeLog?rev=1.72&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ml/findlib/ChangeLog?rev=1.72&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ml/findlib/ChangeLog?r1=1.71&r2=1.72
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-ml/findlib/ChangeLog,v
retrieving revision 1.71
retrieving revision 1.72
diff -u -r1.71 -r1.72
--- ChangeLog 21 Jan 2011 14:39:12 -0000 1.71
+++ ChangeLog 22 Jan 2011 23:01:40 -0000 1.72
@@ -1,6 +1,9 @@
# ChangeLog for dev-ml/findlib
# Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-ml/findlib/ChangeLog,v 1.71 2011/01/21 14:39:12 jer Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-ml/findlib/ChangeLog,v 1.72 2011/01/22 23:01:40 xarthisius Exp $
+
+ 22 Jan 2011; Kacper Kowalik <xarthisius@gentoo.org> findlib-1.2.6.ebuild:
+ ppc64 stable wrt #349633
21 Jan 2011; Jeroen Roovers <jer@gentoo.org> findlib-1.2.6.ebuild:
Stable for HPPA (bug #349633).
1.7 dev-ml/findlib/findlib-1.2.6.ebuild
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ml/findlib/findlib-1.2.6.ebuild?rev=1.7&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ml/findlib/findlib-1.2.6.ebuild?rev=1.7&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ml/findlib/findlib-1.2.6.ebuild?r1=1.6&r2=1.7
Index: findlib-1.2.6.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-ml/findlib/findlib-1.2.6.ebuild,v
retrieving revision 1.6
retrieving revision 1.7
diff -u -r1.6 -r1.7
--- findlib-1.2.6.ebuild 21 Jan 2011 14:39:12 -0000 1.6
+++ findlib-1.2.6.ebuild 22 Jan 2011 23:01:40 -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-ml/findlib/findlib-1.2.6.ebuild,v 1.6 2011/01/21 14:39:12 jer Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-ml/findlib/findlib-1.2.6.ebuild,v 1.7 2011/01/22 23:01:40 xarthisius Exp $
EAPI=2
@@ -16,7 +16,7 @@
LICENSE="MIT"
SLOT="0"
-KEYWORDS="alpha amd64 hppa ia64 ppc ~ppc64 sparc x86 ~x86-fbsd"
+KEYWORDS="alpha amd64 hppa ia64 ppc ppc64 sparc x86 ~x86-fbsd"
DEPEND=">=dev-lang/ocaml-3.10[ocamlopt?,tk?]"
RDEPEND="${DEPEND}"
^ permalink raw reply [flat|nested] 8+ messages in thread
* [gentoo-commits] gentoo-x86 commit in dev-ml/findlib: ChangeLog findlib-1.2.6.ebuild
@ 2011-10-11 19:36 Alexis Ballier (aballier)
0 siblings, 0 replies; 8+ messages in thread
From: Alexis Ballier (aballier) @ 2011-10-11 19:36 UTC (permalink / raw
To: gentoo-commits
aballier 11/10/11 19:36:03
Modified: ChangeLog
Removed: findlib-1.2.6.ebuild
Log:
remove old
(Portage version: 2.2.0_alpha66/cvs/Linux x86_64)
Revision Changes Path
1.80 dev-ml/findlib/ChangeLog
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ml/findlib/ChangeLog?rev=1.80&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ml/findlib/ChangeLog?rev=1.80&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ml/findlib/ChangeLog?r1=1.79&r2=1.80
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-ml/findlib/ChangeLog,v
retrieving revision 1.79
retrieving revision 1.80
diff -u -r1.79 -r1.80
--- ChangeLog 11 Oct 2011 18:49:32 -0000 1.79
+++ ChangeLog 11 Oct 2011 19:36:03 -0000 1.80
@@ -1,6 +1,9 @@
# ChangeLog for dev-ml/findlib
# Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-ml/findlib/ChangeLog,v 1.79 2011/10/11 18:49:32 jer Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-ml/findlib/ChangeLog,v 1.80 2011/10/11 19:36:03 aballier Exp $
+
+ 11 Oct 2011; Alexis Ballier <aballier@gentoo.org> -findlib-1.2.6.ebuild:
+ remove old
11 Oct 2011; Jeroen Roovers <jer@gentoo.org> findlib-1.2.7.ebuild:
Stable for HPPA (bug #374967).
^ permalink raw reply [flat|nested] 8+ messages in thread
end of thread, other threads:[~2011-10-11 19:36 UTC | newest]
Thread overview: 8+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2011-01-21 14:39 [gentoo-commits] gentoo-x86 commit in dev-ml/findlib: ChangeLog findlib-1.2.6.ebuild Jeroen Roovers (jer)
-- strict thread matches above, loose matches on Subject: below --
2011-10-11 19:36 Alexis Ballier (aballier)
2011-01-22 23:01 Kacper Kowalik (xarthisius)
2011-01-13 22:22 Brent Baude (ranger)
2011-01-09 17:53 Raul Porcel (armin76)
2011-01-05 14:05 Markos Chandras (hwoarang)
2010-12-29 13:55 Thomas Kahle (tomka)
2010-11-07 16:33 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