public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] gentoo-x86 commit in dev-ml/findlib: findlib-1.3.3-r1.ebuild ChangeLog
@ 2012-11-01  0:14 Christoph Junghans (ottxor)
  0 siblings, 0 replies; 8+ messages in thread
From: Christoph Junghans (ottxor) @ 2012-11-01  0:14 UTC (permalink / raw
  To: gentoo-commits

ottxor      12/11/01 00:14:13

  Modified:             ChangeLog
  Added:                findlib-1.3.3-r1.ebuild
  Log:
  added prefix support (bug #440352)
  
  (Portage version: 2.2.0_alpha142/cvs/Linux i686, signed Manifest commit with key C2000586)

Revision  Changes    Path
1.95                 dev-ml/findlib/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ml/findlib/ChangeLog?rev=1.95&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ml/findlib/ChangeLog?rev=1.95&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ml/findlib/ChangeLog?r1=1.94&r2=1.95

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-ml/findlib/ChangeLog,v
retrieving revision 1.94
retrieving revision 1.95
diff -u -r1.94 -r1.95
--- ChangeLog	8 Oct 2012 12:18:54 -0000	1.94
+++ ChangeLog	1 Nov 2012 00:14:13 -0000	1.95
@@ -1,6 +1,11 @@
 # ChangeLog for dev-ml/findlib
 # Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-ml/findlib/ChangeLog,v 1.94 2012/10/08 12:18:54 aballier Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-ml/findlib/ChangeLog,v 1.95 2012/11/01 00:14:13 ottxor Exp $
+
+*findlib-1.3.3-r1 (01 Nov 2012)
+
+  01 Nov 2012; Christoph Junghans <ottxor@gentoo.org> +findlib-1.3.3-r1.ebuild:
+  added prefix support (bug #440352)
 
   08 Oct 2012; Alexis Ballier <aballier@gentoo.org> -findlib-1.2.7.ebuild,
   -findlib-1.3.1.ebuild:



1.1                  dev-ml/findlib/findlib-1.3.3-r1.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ml/findlib/findlib-1.3.3-r1.ebuild?rev=1.1&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ml/findlib/findlib-1.3.3-r1.ebuild?rev=1.1&content-type=text/plain

Index: findlib-1.3.3-r1.ebuild
===================================================================
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-ml/findlib/findlib-1.3.3-r1.ebuild,v 1.1 2012/11/01 00:14:13 ottxor Exp $

EAPI=4

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 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos"

DEPEND=">=dev-lang/ocaml-3.10[ocamlopt?,tk?]"
RDEPEND="${DEPEND}"

ocamlfind_destdir="${EPREFIX}/usr/$(get_libdir)/ocaml"
stublibs="${ocamlfind_destdir}/stublibs"

src_configure() {
	local myconf
	use tk && myconf="-with-toolbox"
	./configure -bindir "${EPREFIX}"/usr/bin -mandir "${EPREFIX}"/usr/share/man \
		-sitelib ${ocamlfind_destdir} \
		-config ${ocamlfind_destdir}/findlib/findlib.conf \
		${myconf} || die "configure failed"
}

src_compile() {
	emake all
	if use ocamlopt; then
		emake opt # 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() {
	emake prefix="${D}" install

	dodir "${stublibs#${EPREFIX}}"

	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: findlib-1.3.3-r1.ebuild ChangeLog
@ 2013-02-11 21:29 Agostino Sarubbo (ago)
  0 siblings, 0 replies; 8+ messages in thread
From: Agostino Sarubbo (ago) @ 2013-02-11 21:29 UTC (permalink / raw
  To: gentoo-commits

ago         13/02/11 21:29:00

  Modified:             findlib-1.3.3-r1.ebuild ChangeLog
  Log:
  Stable for amd64, wrt bug #456554
  
  (Portage version: 2.1.11.50/cvs/Linux x86_64, unsigned Manifest commit)

Revision  Changes    Path
1.3                  dev-ml/findlib/findlib-1.3.3-r1.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ml/findlib/findlib-1.3.3-r1.ebuild?rev=1.3&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ml/findlib/findlib-1.3.3-r1.ebuild?rev=1.3&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ml/findlib/findlib-1.3.3-r1.ebuild?r1=1.2&r2=1.3

Index: findlib-1.3.3-r1.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-ml/findlib/findlib-1.3.3-r1.ebuild,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- findlib-1.3.3-r1.ebuild	11 Feb 2013 03:02:02 -0000	1.2
+++ findlib-1.3.3-r1.ebuild	11 Feb 2013 21:29:00 -0000	1.3
@@ -1,6 +1,6 @@
 # Copyright 1999-2013 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-ml/findlib/findlib-1.3.3-r1.ebuild,v 1.2 2013/02/11 03:02:02 aballier Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-ml/findlib/findlib-1.3.3-r1.ebuild,v 1.3 2013/02/11 21:29:00 ago Exp $
 
 EAPI=5
 
@@ -16,7 +16,7 @@
 LICENSE="MIT"
 
 SLOT="0"
-KEYWORDS="~alpha ~amd64 ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos"
+KEYWORDS="~alpha amd64 ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos"
 
 DEPEND=">=dev-lang/ocaml-3.10:=[ocamlopt?,tk?]"
 RDEPEND="${DEPEND}"



1.97                 dev-ml/findlib/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ml/findlib/ChangeLog?rev=1.97&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ml/findlib/ChangeLog?rev=1.97&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ml/findlib/ChangeLog?r1=1.96&r2=1.97

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-ml/findlib/ChangeLog,v
retrieving revision 1.96
retrieving revision 1.97
diff -u -r1.96 -r1.97
--- ChangeLog	11 Feb 2013 03:02:02 -0000	1.96
+++ ChangeLog	11 Feb 2013 21:29:00 -0000	1.97
@@ -1,6 +1,9 @@
 # ChangeLog for dev-ml/findlib
 # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-ml/findlib/ChangeLog,v 1.96 2013/02/11 03:02:02 aballier Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-ml/findlib/ChangeLog,v 1.97 2013/02/11 21:29:00 ago Exp $
+
+  11 Feb 2013; Agostino Sarubbo <ago@gentoo.org> findlib-1.3.3-r1.ebuild:
+  Stable for amd64, wrt bug #456554
 
   11 Feb 2013; Alexis Ballier <aballier@gentoo.org> findlib-1.3.3-r1.ebuild:
   eapi5 and := deps on ocaml





^ permalink raw reply	[flat|nested] 8+ messages in thread

* [gentoo-commits] gentoo-x86 commit in dev-ml/findlib: findlib-1.3.3-r1.ebuild ChangeLog
@ 2013-02-11 21:30 Agostino Sarubbo (ago)
  0 siblings, 0 replies; 8+ messages in thread
From: Agostino Sarubbo (ago) @ 2013-02-11 21:30 UTC (permalink / raw
  To: gentoo-commits

ago         13/02/11 21:30:07

  Modified:             findlib-1.3.3-r1.ebuild ChangeLog
  Log:
  Stable for x86, wrt bug #456554
  
  (Portage version: 2.1.11.50/cvs/Linux x86_64, unsigned Manifest commit)

Revision  Changes    Path
1.4                  dev-ml/findlib/findlib-1.3.3-r1.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ml/findlib/findlib-1.3.3-r1.ebuild?rev=1.4&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ml/findlib/findlib-1.3.3-r1.ebuild?rev=1.4&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ml/findlib/findlib-1.3.3-r1.ebuild?r1=1.3&r2=1.4

Index: findlib-1.3.3-r1.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-ml/findlib/findlib-1.3.3-r1.ebuild,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- findlib-1.3.3-r1.ebuild	11 Feb 2013 21:29:00 -0000	1.3
+++ findlib-1.3.3-r1.ebuild	11 Feb 2013 21:30:07 -0000	1.4
@@ -1,6 +1,6 @@
 # Copyright 1999-2013 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-ml/findlib/findlib-1.3.3-r1.ebuild,v 1.3 2013/02/11 21:29:00 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-ml/findlib/findlib-1.3.3-r1.ebuild,v 1.4 2013/02/11 21:30:07 ago Exp $
 
 EAPI=5
 
@@ -16,7 +16,7 @@
 LICENSE="MIT"
 
 SLOT="0"
-KEYWORDS="~alpha amd64 ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos"
+KEYWORDS="~alpha amd64 ~hppa ~ia64 ~ppc ~ppc64 ~sparc x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos"
 
 DEPEND=">=dev-lang/ocaml-3.10:=[ocamlopt?,tk?]"
 RDEPEND="${DEPEND}"



1.98                 dev-ml/findlib/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ml/findlib/ChangeLog?rev=1.98&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ml/findlib/ChangeLog?rev=1.98&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ml/findlib/ChangeLog?r1=1.97&r2=1.98

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-ml/findlib/ChangeLog,v
retrieving revision 1.97
retrieving revision 1.98
diff -u -r1.97 -r1.98
--- ChangeLog	11 Feb 2013 21:29:00 -0000	1.97
+++ ChangeLog	11 Feb 2013 21:30:07 -0000	1.98
@@ -1,6 +1,9 @@
 # ChangeLog for dev-ml/findlib
 # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-ml/findlib/ChangeLog,v 1.97 2013/02/11 21:29:00 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-ml/findlib/ChangeLog,v 1.98 2013/02/11 21:30:07 ago Exp $
+
+  11 Feb 2013; Agostino Sarubbo <ago@gentoo.org> findlib-1.3.3-r1.ebuild:
+  Stable for x86, wrt bug #456554
 
   11 Feb 2013; Agostino Sarubbo <ago@gentoo.org> findlib-1.3.3-r1.ebuild:
   Stable for amd64, wrt bug #456554





^ permalink raw reply	[flat|nested] 8+ messages in thread

* [gentoo-commits] gentoo-x86 commit in dev-ml/findlib: findlib-1.3.3-r1.ebuild ChangeLog
@ 2013-02-12 16:52 Agostino Sarubbo (ago)
  0 siblings, 0 replies; 8+ messages in thread
From: Agostino Sarubbo (ago) @ 2013-02-12 16:52 UTC (permalink / raw
  To: gentoo-commits

ago         13/02/12 16:52:01

  Modified:             findlib-1.3.3-r1.ebuild ChangeLog
  Log:
  Stable for ppc64, wrt bug #456554
  
  (Portage version: 2.1.11.31/cvs/Linux ppc64, unsigned Manifest commit)

Revision  Changes    Path
1.5                  dev-ml/findlib/findlib-1.3.3-r1.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ml/findlib/findlib-1.3.3-r1.ebuild?rev=1.5&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ml/findlib/findlib-1.3.3-r1.ebuild?rev=1.5&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ml/findlib/findlib-1.3.3-r1.ebuild?r1=1.4&r2=1.5

Index: findlib-1.3.3-r1.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-ml/findlib/findlib-1.3.3-r1.ebuild,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -r1.4 -r1.5
--- findlib-1.3.3-r1.ebuild	11 Feb 2013 21:30:07 -0000	1.4
+++ findlib-1.3.3-r1.ebuild	12 Feb 2013 16:52:01 -0000	1.5
@@ -1,6 +1,6 @@
 # Copyright 1999-2013 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-ml/findlib/findlib-1.3.3-r1.ebuild,v 1.4 2013/02/11 21:30:07 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-ml/findlib/findlib-1.3.3-r1.ebuild,v 1.5 2013/02/12 16:52:01 ago Exp $
 
 EAPI=5
 
@@ -16,7 +16,7 @@
 LICENSE="MIT"
 
 SLOT="0"
-KEYWORDS="~alpha amd64 ~hppa ~ia64 ~ppc ~ppc64 ~sparc x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos"
+KEYWORDS="~alpha amd64 ~hppa ~ia64 ~ppc ppc64 ~sparc x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos"
 
 DEPEND=">=dev-lang/ocaml-3.10:=[ocamlopt?,tk?]"
 RDEPEND="${DEPEND}"



1.99                 dev-ml/findlib/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ml/findlib/ChangeLog?rev=1.99&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ml/findlib/ChangeLog?rev=1.99&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ml/findlib/ChangeLog?r1=1.98&r2=1.99

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-ml/findlib/ChangeLog,v
retrieving revision 1.98
retrieving revision 1.99
diff -u -r1.98 -r1.99
--- ChangeLog	11 Feb 2013 21:30:07 -0000	1.98
+++ ChangeLog	12 Feb 2013 16:52:01 -0000	1.99
@@ -1,6 +1,9 @@
 # ChangeLog for dev-ml/findlib
 # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-ml/findlib/ChangeLog,v 1.98 2013/02/11 21:30:07 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-ml/findlib/ChangeLog,v 1.99 2013/02/12 16:52:01 ago Exp $
+
+  12 Feb 2013; Agostino Sarubbo <ago@gentoo.org> findlib-1.3.3-r1.ebuild:
+  Stable for ppc64, wrt bug #456554
 
   11 Feb 2013; Agostino Sarubbo <ago@gentoo.org> findlib-1.3.3-r1.ebuild:
   Stable for x86, wrt bug #456554





^ permalink raw reply	[flat|nested] 8+ messages in thread

* [gentoo-commits] gentoo-x86 commit in dev-ml/findlib: findlib-1.3.3-r1.ebuild ChangeLog
@ 2013-02-12 16:57 Agostino Sarubbo (ago)
  0 siblings, 0 replies; 8+ messages in thread
From: Agostino Sarubbo (ago) @ 2013-02-12 16:57 UTC (permalink / raw
  To: gentoo-commits

ago         13/02/12 16:57:57

  Modified:             findlib-1.3.3-r1.ebuild ChangeLog
  Log:
  Stable for ppc, wrt bug #456554
  
  (Portage version: 2.1.11.31/cvs/Linux ppc64, unsigned Manifest commit)

Revision  Changes    Path
1.6                  dev-ml/findlib/findlib-1.3.3-r1.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ml/findlib/findlib-1.3.3-r1.ebuild?rev=1.6&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ml/findlib/findlib-1.3.3-r1.ebuild?rev=1.6&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ml/findlib/findlib-1.3.3-r1.ebuild?r1=1.5&r2=1.6

Index: findlib-1.3.3-r1.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-ml/findlib/findlib-1.3.3-r1.ebuild,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -r1.5 -r1.6
--- findlib-1.3.3-r1.ebuild	12 Feb 2013 16:52:01 -0000	1.5
+++ findlib-1.3.3-r1.ebuild	12 Feb 2013 16:57:57 -0000	1.6
@@ -1,6 +1,6 @@
 # Copyright 1999-2013 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-ml/findlib/findlib-1.3.3-r1.ebuild,v 1.5 2013/02/12 16:52:01 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-ml/findlib/findlib-1.3.3-r1.ebuild,v 1.6 2013/02/12 16:57:57 ago Exp $
 
 EAPI=5
 
@@ -16,7 +16,7 @@
 LICENSE="MIT"
 
 SLOT="0"
-KEYWORDS="~alpha amd64 ~hppa ~ia64 ~ppc ppc64 ~sparc x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos"
+KEYWORDS="~alpha amd64 ~hppa ~ia64 ppc ppc64 ~sparc x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos"
 
 DEPEND=">=dev-lang/ocaml-3.10:=[ocamlopt?,tk?]"
 RDEPEND="${DEPEND}"



1.100                dev-ml/findlib/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ml/findlib/ChangeLog?rev=1.100&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ml/findlib/ChangeLog?rev=1.100&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ml/findlib/ChangeLog?r1=1.99&r2=1.100

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-ml/findlib/ChangeLog,v
retrieving revision 1.99
retrieving revision 1.100
diff -u -r1.99 -r1.100
--- ChangeLog	12 Feb 2013 16:52:01 -0000	1.99
+++ ChangeLog	12 Feb 2013 16:57:57 -0000	1.100
@@ -1,6 +1,9 @@
 # ChangeLog for dev-ml/findlib
 # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-ml/findlib/ChangeLog,v 1.99 2013/02/12 16:52:01 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-ml/findlib/ChangeLog,v 1.100 2013/02/12 16:57:57 ago Exp $
+
+  12 Feb 2013; Agostino Sarubbo <ago@gentoo.org> findlib-1.3.3-r1.ebuild:
+  Stable for ppc, wrt bug #456554
 
   12 Feb 2013; Agostino Sarubbo <ago@gentoo.org> findlib-1.3.3-r1.ebuild:
   Stable for ppc64, wrt bug #456554





^ permalink raw reply	[flat|nested] 8+ messages in thread

* [gentoo-commits] gentoo-x86 commit in dev-ml/findlib: findlib-1.3.3-r1.ebuild ChangeLog
@ 2013-02-12 18:08 Agostino Sarubbo (ago)
  0 siblings, 0 replies; 8+ messages in thread
From: Agostino Sarubbo (ago) @ 2013-02-12 18:08 UTC (permalink / raw
  To: gentoo-commits

ago         13/02/12 18:08:39

  Modified:             findlib-1.3.3-r1.ebuild ChangeLog
  Log:
  Stable for ia64, wrt bug #456554
  
  (Portage version: 2.1.11.31/cvs/Linux ppc64, unsigned Manifest commit)

Revision  Changes    Path
1.7                  dev-ml/findlib/findlib-1.3.3-r1.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ml/findlib/findlib-1.3.3-r1.ebuild?rev=1.7&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ml/findlib/findlib-1.3.3-r1.ebuild?rev=1.7&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ml/findlib/findlib-1.3.3-r1.ebuild?r1=1.6&r2=1.7

Index: findlib-1.3.3-r1.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-ml/findlib/findlib-1.3.3-r1.ebuild,v
retrieving revision 1.6
retrieving revision 1.7
diff -u -r1.6 -r1.7
--- findlib-1.3.3-r1.ebuild	12 Feb 2013 16:57:57 -0000	1.6
+++ findlib-1.3.3-r1.ebuild	12 Feb 2013 18:08:39 -0000	1.7
@@ -1,6 +1,6 @@
 # Copyright 1999-2013 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-ml/findlib/findlib-1.3.3-r1.ebuild,v 1.6 2013/02/12 16:57:57 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-ml/findlib/findlib-1.3.3-r1.ebuild,v 1.7 2013/02/12 18:08:39 ago Exp $
 
 EAPI=5
 
@@ -16,7 +16,7 @@
 LICENSE="MIT"
 
 SLOT="0"
-KEYWORDS="~alpha amd64 ~hppa ~ia64 ppc ppc64 ~sparc x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos"
+KEYWORDS="~alpha amd64 ~hppa ia64 ppc ppc64 ~sparc x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos"
 
 DEPEND=">=dev-lang/ocaml-3.10:=[ocamlopt?,tk?]"
 RDEPEND="${DEPEND}"



1.101                dev-ml/findlib/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ml/findlib/ChangeLog?rev=1.101&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ml/findlib/ChangeLog?rev=1.101&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ml/findlib/ChangeLog?r1=1.100&r2=1.101

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-ml/findlib/ChangeLog,v
retrieving revision 1.100
retrieving revision 1.101
diff -u -r1.100 -r1.101
--- ChangeLog	12 Feb 2013 16:57:57 -0000	1.100
+++ ChangeLog	12 Feb 2013 18:08:39 -0000	1.101
@@ -1,6 +1,9 @@
 # ChangeLog for dev-ml/findlib
 # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-ml/findlib/ChangeLog,v 1.100 2013/02/12 16:57:57 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-ml/findlib/ChangeLog,v 1.101 2013/02/12 18:08:39 ago Exp $
+
+  12 Feb 2013; Agostino Sarubbo <ago@gentoo.org> findlib-1.3.3-r1.ebuild:
+  Stable for ia64, wrt bug #456554
 
   12 Feb 2013; Agostino Sarubbo <ago@gentoo.org> findlib-1.3.3-r1.ebuild:
   Stable for ppc, wrt bug #456554





^ permalink raw reply	[flat|nested] 8+ messages in thread

* [gentoo-commits] gentoo-x86 commit in dev-ml/findlib: findlib-1.3.3-r1.ebuild ChangeLog
@ 2013-02-12 19:25 Agostino Sarubbo (ago)
  0 siblings, 0 replies; 8+ messages in thread
From: Agostino Sarubbo (ago) @ 2013-02-12 19:25 UTC (permalink / raw
  To: gentoo-commits

ago         13/02/12 19:25:21

  Modified:             findlib-1.3.3-r1.ebuild ChangeLog
  Log:
  Stable for alpha, wrt bug #456554
  
  (Portage version: 2.1.11.31/cvs/Linux ppc64, unsigned Manifest commit)

Revision  Changes    Path
1.8                  dev-ml/findlib/findlib-1.3.3-r1.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ml/findlib/findlib-1.3.3-r1.ebuild?rev=1.8&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ml/findlib/findlib-1.3.3-r1.ebuild?rev=1.8&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ml/findlib/findlib-1.3.3-r1.ebuild?r1=1.7&r2=1.8

Index: findlib-1.3.3-r1.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-ml/findlib/findlib-1.3.3-r1.ebuild,v
retrieving revision 1.7
retrieving revision 1.8
diff -u -r1.7 -r1.8
--- findlib-1.3.3-r1.ebuild	12 Feb 2013 18:08:39 -0000	1.7
+++ findlib-1.3.3-r1.ebuild	12 Feb 2013 19:25:21 -0000	1.8
@@ -1,6 +1,6 @@
 # Copyright 1999-2013 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-ml/findlib/findlib-1.3.3-r1.ebuild,v 1.7 2013/02/12 18:08:39 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-ml/findlib/findlib-1.3.3-r1.ebuild,v 1.8 2013/02/12 19:25:21 ago Exp $
 
 EAPI=5
 
@@ -16,7 +16,7 @@
 LICENSE="MIT"
 
 SLOT="0"
-KEYWORDS="~alpha amd64 ~hppa ia64 ppc ppc64 ~sparc x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos"
+KEYWORDS="alpha amd64 ~hppa ia64 ppc ppc64 ~sparc x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos"
 
 DEPEND=">=dev-lang/ocaml-3.10:=[ocamlopt?,tk?]"
 RDEPEND="${DEPEND}"



1.102                dev-ml/findlib/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ml/findlib/ChangeLog?rev=1.102&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ml/findlib/ChangeLog?rev=1.102&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ml/findlib/ChangeLog?r1=1.101&r2=1.102

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-ml/findlib/ChangeLog,v
retrieving revision 1.101
retrieving revision 1.102
diff -u -r1.101 -r1.102
--- ChangeLog	12 Feb 2013 18:08:39 -0000	1.101
+++ ChangeLog	12 Feb 2013 19:25:21 -0000	1.102
@@ -1,6 +1,9 @@
 # ChangeLog for dev-ml/findlib
 # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-ml/findlib/ChangeLog,v 1.101 2013/02/12 18:08:39 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-ml/findlib/ChangeLog,v 1.102 2013/02/12 19:25:21 ago Exp $
+
+  12 Feb 2013; Agostino Sarubbo <ago@gentoo.org> findlib-1.3.3-r1.ebuild:
+  Stable for alpha, wrt bug #456554
 
   12 Feb 2013; Agostino Sarubbo <ago@gentoo.org> findlib-1.3.3-r1.ebuild:
   Stable for ia64, wrt bug #456554





^ permalink raw reply	[flat|nested] 8+ messages in thread

* [gentoo-commits] gentoo-x86 commit in dev-ml/findlib: findlib-1.3.3-r1.ebuild ChangeLog
@ 2013-02-12 20:22 Agostino Sarubbo (ago)
  0 siblings, 0 replies; 8+ messages in thread
From: Agostino Sarubbo (ago) @ 2013-02-12 20:22 UTC (permalink / raw
  To: gentoo-commits

ago         13/02/12 20:22:08

  Modified:             findlib-1.3.3-r1.ebuild ChangeLog
  Log:
  Stable for sparc, wrt bug #456554
  
  (Portage version: 2.1.11.31/cvs/Linux ppc64, unsigned Manifest commit)

Revision  Changes    Path
1.9                  dev-ml/findlib/findlib-1.3.3-r1.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ml/findlib/findlib-1.3.3-r1.ebuild?rev=1.9&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ml/findlib/findlib-1.3.3-r1.ebuild?rev=1.9&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ml/findlib/findlib-1.3.3-r1.ebuild?r1=1.8&r2=1.9

Index: findlib-1.3.3-r1.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-ml/findlib/findlib-1.3.3-r1.ebuild,v
retrieving revision 1.8
retrieving revision 1.9
diff -u -r1.8 -r1.9
--- findlib-1.3.3-r1.ebuild	12 Feb 2013 19:25:21 -0000	1.8
+++ findlib-1.3.3-r1.ebuild	12 Feb 2013 20:22:08 -0000	1.9
@@ -1,6 +1,6 @@
 # Copyright 1999-2013 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-ml/findlib/findlib-1.3.3-r1.ebuild,v 1.8 2013/02/12 19:25:21 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-ml/findlib/findlib-1.3.3-r1.ebuild,v 1.9 2013/02/12 20:22:08 ago Exp $
 
 EAPI=5
 
@@ -16,7 +16,7 @@
 LICENSE="MIT"
 
 SLOT="0"
-KEYWORDS="alpha amd64 ~hppa ia64 ppc ppc64 ~sparc x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos"
+KEYWORDS="alpha amd64 ~hppa ia64 ppc ppc64 sparc x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos"
 
 DEPEND=">=dev-lang/ocaml-3.10:=[ocamlopt?,tk?]"
 RDEPEND="${DEPEND}"



1.103                dev-ml/findlib/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ml/findlib/ChangeLog?rev=1.103&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ml/findlib/ChangeLog?rev=1.103&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ml/findlib/ChangeLog?r1=1.102&r2=1.103

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-ml/findlib/ChangeLog,v
retrieving revision 1.102
retrieving revision 1.103
diff -u -r1.102 -r1.103
--- ChangeLog	12 Feb 2013 19:25:21 -0000	1.102
+++ ChangeLog	12 Feb 2013 20:22:08 -0000	1.103
@@ -1,6 +1,9 @@
 # ChangeLog for dev-ml/findlib
 # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-ml/findlib/ChangeLog,v 1.102 2013/02/12 19:25:21 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-ml/findlib/ChangeLog,v 1.103 2013/02/12 20:22:08 ago Exp $
+
+  12 Feb 2013; Agostino Sarubbo <ago@gentoo.org> findlib-1.3.3-r1.ebuild:
+  Stable for sparc, wrt bug #456554
 
   12 Feb 2013; Agostino Sarubbo <ago@gentoo.org> findlib-1.3.3-r1.ebuild:
   Stable for alpha, wrt bug #456554





^ permalink raw reply	[flat|nested] 8+ messages in thread

end of thread, other threads:[~2013-02-12 20:22 UTC | newest]

Thread overview: 8+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2013-02-11 21:30 [gentoo-commits] gentoo-x86 commit in dev-ml/findlib: findlib-1.3.3-r1.ebuild ChangeLog Agostino Sarubbo (ago)
  -- strict thread matches above, loose matches on Subject: below --
2013-02-12 20:22 Agostino Sarubbo (ago)
2013-02-12 19:25 Agostino Sarubbo (ago)
2013-02-12 18:08 Agostino Sarubbo (ago)
2013-02-12 16:57 Agostino Sarubbo (ago)
2013-02-12 16:52 Agostino Sarubbo (ago)
2013-02-11 21:29 Agostino Sarubbo (ago)
2012-11-01  0:14 Christoph Junghans (ottxor)

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox