public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] gentoo-x86 commit in dev-lang/orc: ChangeLog orc-0.4.11.ebuild
@ 2010-10-15 10:05 Arun Raghavan (ford_prefect)
  0 siblings, 0 replies; 5+ messages in thread
From: Arun Raghavan (ford_prefect) @ 2010-10-15 10:05 UTC (permalink / raw
  To: gentoo-commits

ford_prefect    10/10/15 10:05:50

  Modified:             ChangeLog
  Added:                orc-0.4.11.ebuild
  Log:
  Bump to 0.4.11. Bunch of bug fixes. Still has some problems on armv6, etc.
  
  (Portage version: 2.2_rc91/cvs/Linux x86_64)

Revision  Changes    Path
1.9                  dev-lang/orc/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-lang/orc/ChangeLog,v
retrieving revision 1.8
retrieving revision 1.9
diff -u -r1.8 -r1.9
--- ChangeLog	8 Oct 2010 09:31:01 -0000	1.8
+++ ChangeLog	15 Oct 2010 10:05:50 -0000	1.9
@@ -1,6 +1,11 @@
 # ChangeLog for dev-lang/orc
 # Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-lang/orc/ChangeLog,v 1.8 2010/10/08 09:31:01 ford_prefect Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-lang/orc/ChangeLog,v 1.9 2010/10/15 10:05:50 ford_prefect Exp $
+
+*orc-0.4.11 (15 Oct 2010)
+
+  15 Oct 2010; Arun Raghavan <ford_prefect@gentoo.org> +orc-0.4.11.ebuild:
+  Bump to 0.4.11. Bunch of bug fixes. Still has some problems on armv6, etc.
 
 *orc-0.4.10 (08 Oct 2010)
 



1.1                  dev-lang/orc/orc-0.4.11.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-lang/orc/orc-0.4.11.ebuild?rev=1.1&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-lang/orc/orc-0.4.11.ebuild?rev=1.1&content-type=text/plain

Index: orc-0.4.11.ebuild
===================================================================
# Copyright 1999-2010 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-lang/orc/orc-0.4.11.ebuild,v 1.1 2010/10/15 10:05:50 ford_prefect Exp $

EAPI=3
inherit autotools

DESCRIPTION="The Oil Runtime Compiler"
HOMEPAGE="http://code.entropywave.com/projects/orc/"
SRC_URI="http://code.entropywave.com/download/orc/${P}.tar.gz"

LICENSE="BSD BSD-2"
SLOT="0"
KEYWORDS="~amd64 ~x86 ~amd64-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
IUSE="static-libs examples"

src_prepare() {
	if ! use examples; then
		sed -i -e '/SUBDIRS/s:examples::' Makefile.am || die
		AT_M4DIR="m4" eautoreconf
	fi
}

src_configure() {
	econf \
		$(use_enable static-libs static) \
		--disable-dependency-tracking \
		--with-html-dir="${EPREFIX}"/usr/share/doc/${PF}/html
}

src_install() {
	emake DESTDIR="${D}" install || die
	dodoc README TODO

	find "${ED}" -name '*.la' -delete
}






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

* [gentoo-commits] gentoo-x86 commit in dev-lang/orc: ChangeLog orc-0.4.11.ebuild
@ 2010-10-26 20:19 Fabian Groffen (grobian)
  0 siblings, 0 replies; 5+ messages in thread
From: Fabian Groffen (grobian) @ 2010-10-26 20:19 UTC (permalink / raw
  To: gentoo-commits

grobian     10/10/26 20:19:04

  Modified:             ChangeLog orc-0.4.11.ebuild
  Log:
  Fix compilation on PPC/Darwin by dropping any optimisation level
  
  (Portage version: 2.2.01.17086-prefix/cvs/Darwin powerpc)

Revision  Changes    Path
1.11                 dev-lang/orc/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-lang/orc/ChangeLog?rev=1.11&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-lang/orc/ChangeLog?rev=1.11&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-lang/orc/ChangeLog?r1=1.10&r2=1.11

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-lang/orc/ChangeLog,v
retrieving revision 1.10
retrieving revision 1.11
diff -u -r1.10 -r1.11
--- ChangeLog	15 Oct 2010 10:09:33 -0000	1.10
+++ ChangeLog	26 Oct 2010 20:19:04 -0000	1.11
@@ -1,6 +1,9 @@
 # ChangeLog for dev-lang/orc
 # Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-lang/orc/ChangeLog,v 1.10 2010/10/15 10:09:33 ford_prefect Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-lang/orc/ChangeLog,v 1.11 2010/10/26 20:19:04 grobian Exp $
+
+  26 Oct 2010; Fabian Groffen <grobian@gentoo.org> orc-0.4.11.ebuild:
+  Fix compilation on PPC/Darwin by dropping any optimisation level
 
   15 Oct 2010; Arun Raghavan <ford_prefect@gentoo.org> -orc-0.4.7.ebuild:
   Prune older version.



1.2                  dev-lang/orc/orc-0.4.11.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-lang/orc/orc-0.4.11.ebuild?rev=1.2&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-lang/orc/orc-0.4.11.ebuild?rev=1.2&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-lang/orc/orc-0.4.11.ebuild?r1=1.1&r2=1.2

Index: orc-0.4.11.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-lang/orc/orc-0.4.11.ebuild,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- orc-0.4.11.ebuild	15 Oct 2010 10:05:50 -0000	1.1
+++ orc-0.4.11.ebuild	26 Oct 2010 20:19:04 -0000	1.2
@@ -1,9 +1,9 @@
 # Copyright 1999-2010 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-lang/orc/orc-0.4.11.ebuild,v 1.1 2010/10/15 10:05:50 ford_prefect Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-lang/orc/orc-0.4.11.ebuild,v 1.2 2010/10/26 20:19:04 grobian Exp $
 
 EAPI=3
-inherit autotools
+inherit autotools flag-o-matic
 
 DESCRIPTION="The Oil Runtime Compiler"
 HOMEPAGE="http://code.entropywave.com/projects/orc/"
@@ -22,6 +22,9 @@
 }
 
 src_configure() {
+	# any optimisation on PPC/Darwin yields in a complaint from the assembler
+	# Parameter error: r0 not allowed for parameter %lu (code as 0 not r0)
+	[[ ${CHOST} == powerpc*-*-darwin* ]] && filter-flags -O*
 	econf \
 		$(use_enable static-libs static) \
 		--disable-dependency-tracking \






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

* [gentoo-commits] gentoo-x86 commit in dev-lang/orc: ChangeLog orc-0.4.11.ebuild
@ 2010-10-30 15:54 Fabian Groffen (grobian)
  0 siblings, 0 replies; 5+ messages in thread
From: Fabian Groffen (grobian) @ 2010-10-30 15:54 UTC (permalink / raw
  To: gentoo-commits

grobian     10/10/30 15:54:09

  Modified:             ChangeLog orc-0.4.11.ebuild
  Log:
  Also drop any optimisation flags on Intel/Darwin, because of a similar problem as with PPC
  
  (Portage version: 2.2.01.17133-prefix/cvs/Darwin powerpc)

Revision  Changes    Path
1.12                 dev-lang/orc/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-lang/orc/ChangeLog?rev=1.12&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-lang/orc/ChangeLog?rev=1.12&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-lang/orc/ChangeLog?r1=1.11&r2=1.12

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-lang/orc/ChangeLog,v
retrieving revision 1.11
retrieving revision 1.12
diff -u -r1.11 -r1.12
--- ChangeLog	26 Oct 2010 20:19:04 -0000	1.11
+++ ChangeLog	30 Oct 2010 15:54:09 -0000	1.12
@@ -1,6 +1,10 @@
 # ChangeLog for dev-lang/orc
 # Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-lang/orc/ChangeLog,v 1.11 2010/10/26 20:19:04 grobian Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-lang/orc/ChangeLog,v 1.12 2010/10/30 15:54:09 grobian Exp $
+
+  30 Oct 2010; Fabian Groffen <grobian@gentoo.org> orc-0.4.11.ebuild:
+  Also drop any optimisation flags on Intel/Darwin, because of a similar
+  problem as with PPC
 
   26 Oct 2010; Fabian Groffen <grobian@gentoo.org> orc-0.4.11.ebuild:
   Fix compilation on PPC/Darwin by dropping any optimisation level



1.3                  dev-lang/orc/orc-0.4.11.ebuild

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

Index: orc-0.4.11.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-lang/orc/orc-0.4.11.ebuild,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- orc-0.4.11.ebuild	26 Oct 2010 20:19:04 -0000	1.2
+++ orc-0.4.11.ebuild	30 Oct 2010 15:54:09 -0000	1.3
@@ -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-lang/orc/orc-0.4.11.ebuild,v 1.2 2010/10/26 20:19:04 grobian Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-lang/orc/orc-0.4.11.ebuild,v 1.3 2010/10/30 15:54:09 grobian Exp $
 
 EAPI=3
 inherit autotools flag-o-matic
@@ -24,7 +24,9 @@
 src_configure() {
 	# any optimisation on PPC/Darwin yields in a complaint from the assembler
 	# Parameter error: r0 not allowed for parameter %lu (code as 0 not r0)
-	[[ ${CHOST} == powerpc*-*-darwin* ]] && filter-flags -O*
+	# the same for Intel/Darwin, although the error message there is different
+	# but along the same lines
+	[[ ${CHOST} == *-darwin* ]] && filter-flags -O*
 	econf \
 		$(use_enable static-libs static) \
 		--disable-dependency-tracking \






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

* [gentoo-commits] gentoo-x86 commit in dev-lang/orc: ChangeLog orc-0.4.11.ebuild
@ 2011-01-31 17:05 Markos Chandras (hwoarang)
  0 siblings, 0 replies; 5+ messages in thread
From: Markos Chandras (hwoarang) @ 2011-01-31 17:05 UTC (permalink / raw
  To: gentoo-commits

hwoarang    11/01/31 17:05:31

  Modified:             ChangeLog orc-0.4.11.ebuild
  Log:
  Stable on amd64 wrt bug #353321
  
  (Portage version: 2.1.9.35/cvs/Linux x86_64)

Revision  Changes    Path
1.13                 dev-lang/orc/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-lang/orc/ChangeLog?rev=1.13&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-lang/orc/ChangeLog?rev=1.13&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-lang/orc/ChangeLog?r1=1.12&r2=1.13

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-lang/orc/ChangeLog,v
retrieving revision 1.12
retrieving revision 1.13
diff -u -r1.12 -r1.13
--- ChangeLog	30 Oct 2010 15:54:09 -0000	1.12
+++ ChangeLog	31 Jan 2011 17:05:31 -0000	1.13
@@ -1,6 +1,9 @@
 # ChangeLog for dev-lang/orc
-# Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-lang/orc/ChangeLog,v 1.12 2010/10/30 15:54:09 grobian Exp $
+# Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/dev-lang/orc/ChangeLog,v 1.13 2011/01/31 17:05:31 hwoarang Exp $
+
+  31 Jan 2011; Markos Chandras <hwoarang@gentoo.org> orc-0.4.11.ebuild:
+  Stable on amd64 wrt bug #353321
 
   30 Oct 2010; Fabian Groffen <grobian@gentoo.org> orc-0.4.11.ebuild:
   Also drop any optimisation flags on Intel/Darwin, because of a similar



1.4                  dev-lang/orc/orc-0.4.11.ebuild

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

Index: orc-0.4.11.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-lang/orc/orc-0.4.11.ebuild,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- orc-0.4.11.ebuild	30 Oct 2010 15:54:09 -0000	1.3
+++ orc-0.4.11.ebuild	31 Jan 2011 17:05:31 -0000	1.4
@@ -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-lang/orc/orc-0.4.11.ebuild,v 1.3 2010/10/30 15:54:09 grobian Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-lang/orc/orc-0.4.11.ebuild,v 1.4 2011/01/31 17:05:31 hwoarang Exp $
 
 EAPI=3
 inherit autotools flag-o-matic
@@ -11,7 +11,7 @@
 
 LICENSE="BSD BSD-2"
 SLOT="0"
-KEYWORDS="~amd64 ~x86 ~amd64-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
+KEYWORDS="amd64 ~x86 ~amd64-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
 IUSE="static-libs examples"
 
 src_prepare() {






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

* [gentoo-commits] gentoo-x86 commit in dev-lang/orc: ChangeLog orc-0.4.11.ebuild
@ 2011-02-05 16:29 PaweA Hajdan (phajdan.jr)
  0 siblings, 0 replies; 5+ messages in thread
From: PaweA Hajdan (phajdan.jr) @ 2011-02-05 16:29 UTC (permalink / raw
  To: gentoo-commits

phajdan.jr    11/02/05 16:29:43

  Modified:             ChangeLog orc-0.4.11.ebuild
  Log:
  x86 stable wrt bug #353321
  
  (Portage version: 2.1.9.25/cvs/Linux i686)

Revision  Changes    Path
1.14                 dev-lang/orc/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-lang/orc/ChangeLog?rev=1.14&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-lang/orc/ChangeLog?rev=1.14&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-lang/orc/ChangeLog?r1=1.13&r2=1.14

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-lang/orc/ChangeLog,v
retrieving revision 1.13
retrieving revision 1.14
diff -u -r1.13 -r1.14
--- ChangeLog	31 Jan 2011 17:05:31 -0000	1.13
+++ ChangeLog	5 Feb 2011 16:29:43 -0000	1.14
@@ -1,6 +1,9 @@
 # ChangeLog for dev-lang/orc
 # Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-lang/orc/ChangeLog,v 1.13 2011/01/31 17:05:31 hwoarang Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-lang/orc/ChangeLog,v 1.14 2011/02/05 16:29:43 phajdan.jr Exp $
+
+  05 Feb 2011; Pawel Hajdan jr <phajdan.jr@gentoo.org> orc-0.4.11.ebuild:
+  x86 stable wrt bug #353321
 
   31 Jan 2011; Markos Chandras <hwoarang@gentoo.org> orc-0.4.11.ebuild:
   Stable on amd64 wrt bug #353321



1.5                  dev-lang/orc/orc-0.4.11.ebuild

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

Index: orc-0.4.11.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-lang/orc/orc-0.4.11.ebuild,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -r1.4 -r1.5
--- orc-0.4.11.ebuild	31 Jan 2011 17:05:31 -0000	1.4
+++ orc-0.4.11.ebuild	5 Feb 2011 16:29:43 -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/orc/orc-0.4.11.ebuild,v 1.4 2011/01/31 17:05:31 hwoarang Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-lang/orc/orc-0.4.11.ebuild,v 1.5 2011/02/05 16:29:43 phajdan.jr Exp $
 
 EAPI=3
 inherit autotools flag-o-matic
@@ -11,7 +11,7 @@
 
 LICENSE="BSD BSD-2"
 SLOT="0"
-KEYWORDS="amd64 ~x86 ~amd64-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
+KEYWORDS="amd64 x86 ~amd64-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
 IUSE="static-libs examples"
 
 src_prepare() {






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

end of thread, other threads:[~2011-02-05 16:29 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2010-10-26 20:19 [gentoo-commits] gentoo-x86 commit in dev-lang/orc: ChangeLog orc-0.4.11.ebuild Fabian Groffen (grobian)
  -- strict thread matches above, loose matches on Subject: below --
2011-02-05 16:29 PaweA Hajdan (phajdan.jr)
2011-01-31 17:05 Markos Chandras (hwoarang)
2010-10-30 15:54 Fabian Groffen (grobian)
2010-10-15 10:05 Arun Raghavan (ford_prefect)

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