public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] gentoo-x86 commit in dev-ruby/parsetree: ChangeLog parsetree-3.0.6.ebuild
@ 2010-12-27 21:15 Hans de Graaff (graaff)
  0 siblings, 0 replies; 8+ messages in thread
From: Hans de Graaff (graaff) @ 2010-12-27 21:15 UTC (permalink / raw
  To: gentoo-commits

graaff      10/12/27 21:15:51

  Modified:             ChangeLog
  Added:                parsetree-3.0.6.ebuild
  Log:
  Version bump. Also fix bug 329497.
  
  (Portage version: 2.1.9.25/cvs/Linux x86_64)

Revision  Changes    Path
1.35                 dev-ruby/parsetree/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/parsetree/ChangeLog?rev=1.35&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/parsetree/ChangeLog?rev=1.35&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/parsetree/ChangeLog?r1=1.34&r2=1.35

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-ruby/parsetree/ChangeLog,v
retrieving revision 1.34
retrieving revision 1.35
diff -u -r1.34 -r1.35
--- ChangeLog	27 Dec 2010 21:11:22 -0000	1.34
+++ ChangeLog	27 Dec 2010 21:15:51 -0000	1.35
@@ -1,11 +1,17 @@
 # ChangeLog for dev-ruby/parsetree
 # Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-ruby/parsetree/ChangeLog,v 1.34 2010/12/27 21:11:22 grobian Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-ruby/parsetree/ChangeLog,v 1.35 2010/12/27 21:15:51 graaff Exp $
 
   27 Dec 2010; Fabian Groffen <grobian@gentoo.org>
   parsetree-3.0.5-r2.ebuild:
   Marked ~x64-solaris
 
+*parsetree-3.0.6 (27 Dec 2010)
+
+  27 Dec 2010; Hans de Graaff <graaff@gentoo.org> +parsetree-3.0.6.ebuild,
+  +files/parsetree-3.0.6-timestamp.patch:
+  Version bump. Also fix bug 329497.
+
   03 Dec 2010; Fabian Groffen <grobian@gentoo.org>
   parsetree-3.0.5-r2.ebuild:
   Marked ~x64-macos



1.1                  dev-ruby/parsetree/parsetree-3.0.6.ebuild

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

Index: parsetree-3.0.6.ebuild
===================================================================
# Copyright 1999-2010 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-ruby/parsetree/parsetree-3.0.6.ebuild,v 1.1 2010/12/27 21:15:51 graaff Exp $

EAPI=2

USE_RUBY="ruby18 ree18"

RUBY_FAKEGEM_NAME="ParseTree"

RUBY_FAKEGEM_TASK_DOC="docs"
RUBY_FAKEGEM_DOCDIR="doc"
RUBY_FAKEGEM_EXTRADOC="README.txt History.txt"

inherit multilib ruby-fakegem

DESCRIPTION="ParseTree extracts the parse tree for a Class or method and returns it as a s-expression."
HOMEPAGE="http://www.zenspider.com/ZSS/Products/ParseTree/"

LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~amd64 ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~x64-solaris ~x86-solaris"
IUSE=""

ruby_add_rdepend '
	>=dev-ruby/ruby-inline-3.8.4-r1
	>=dev-ruby/sexp-processor-3.0.0'
ruby_add_bdepend "
	test? (
		dev-ruby/hoe
		dev-ruby/hoe-seattlerb
		dev-ruby/minitest
		dev-ruby/ruby2ruby
	)
	doc? (
		dev-ruby/hoe
		dev-ruby/hoe-seattlerb
	)"

all_ruby_prepare() {
	# Fix USE=doc by removing the path that triggers running the tests
	# and thus building the extensions in the wrong way.
	sed -i -e '/require_paths/d' Rakefile || die

}

each_ruby_prepare() {
	# RubyInline employs a very stupid caching strategy solely based on
	# the public signatures of methods. Never mind bugs within the C
	# code... We add a dynamic method name to the parsetree interface
	# just so that we can guarantee compilation. Fixes #329497.
	epatch "${FILESDIR}/${P}-timestamp.patch"
	sed -i -e "s/TIMESTAMP/$(date +%s)/" lib/parse_tree.rb || die
}

src_compile() {
	chmod 0755 "${HOME}" || die "Failed to fix permissions on home"
	ruby-ng_src_compile
}

each_ruby_compile() {
	# The ruby extension uses RubyInline to use C code within Ruby;
	# since it causes us no little pain, we'll do our best here to
	# prebuild the extensions.

	INLINEDIR="${PWD}" ${RUBY} -Ilib -rparse_tree -e '' || die "Unable to load ${PN}"

	mkdir lib/inline
	cp .ruby_inline/*$(get_modname) lib/inline/ || die
}

src_test() {
	chmod 0755 "${HOME}" || die "Failed to fix permissions on home"
	ruby-ng_src_test
}

pkg_postinst() {
	elog "${CATEGORY}/${PN} uses the RubyInline library to build its parser."
	elog "RubyInline builds loadable extensions at runtime in your home"
	elog "directory if they are not supplied by the gems."
	elog ""
	elog "We are currently providing you with pre-built extensions for"
	elog "the Ruby implementations you're using. Unfortunately these are"
	elog "different from version to version, so you might have to"
	elog "rebuild ${CATEGORY}/${PN} after each update to dev-lang/ruby or"
	elog "dev-lang/ruby-enterprise."
}






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

* [gentoo-commits] gentoo-x86 commit in dev-ruby/parsetree: ChangeLog parsetree-3.0.6.ebuild
@ 2011-02-21 19:20 Markos Chandras (hwoarang)
  0 siblings, 0 replies; 8+ messages in thread
From: Markos Chandras (hwoarang) @ 2011-02-21 19:20 UTC (permalink / raw
  To: gentoo-commits

hwoarang    11/02/21 19:20:54

  Modified:             ChangeLog parsetree-3.0.6.ebuild
  Log:
  Stable on amd64 wrt bug #355299
  
  (Portage version: 2.1.9.39/cvs/Linux x86_64)

Revision  Changes    Path
1.38                 dev-ruby/parsetree/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/parsetree/ChangeLog?rev=1.38&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/parsetree/ChangeLog?rev=1.38&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/parsetree/ChangeLog?r1=1.37&r2=1.38

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-ruby/parsetree/ChangeLog,v
retrieving revision 1.37
retrieving revision 1.38
diff -u -r1.37 -r1.38
--- ChangeLog	19 Feb 2011 08:30:10 -0000	1.37
+++ ChangeLog	21 Feb 2011 19:20:54 -0000	1.38
@@ -1,6 +1,9 @@
 # ChangeLog for dev-ruby/parsetree
 # Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-ruby/parsetree/ChangeLog,v 1.37 2011/02/19 08:30:10 graaff Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-ruby/parsetree/ChangeLog,v 1.38 2011/02/21 19:20:54 hwoarang Exp $
+
+  21 Feb 2011; Markos Chandras <hwoarang@gentoo.org> parsetree-3.0.6.ebuild:
+  Stable on amd64 wrt bug #355299
 
 *parsetree-3.0.7 (19 Feb 2011)
 



1.2                  dev-ruby/parsetree/parsetree-3.0.6.ebuild

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

Index: parsetree-3.0.6.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-ruby/parsetree/parsetree-3.0.6.ebuild,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- parsetree-3.0.6.ebuild	27 Dec 2010 21:15:51 -0000	1.1
+++ parsetree-3.0.6.ebuild	21 Feb 2011 19:20:54 -0000	1.2
@@ -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-ruby/parsetree/parsetree-3.0.6.ebuild,v 1.1 2010/12/27 21:15:51 graaff Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-ruby/parsetree/parsetree-3.0.6.ebuild,v 1.2 2011/02/21 19:20:54 hwoarang Exp $
 
 EAPI=2
 
@@ -19,7 +19,7 @@
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="~amd64 ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~x64-solaris ~x86-solaris"
+KEYWORDS="amd64 ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~x64-solaris ~x86-solaris"
 IUSE=""
 
 ruby_add_rdepend '






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

* [gentoo-commits] gentoo-x86 commit in dev-ruby/parsetree: ChangeLog parsetree-3.0.6.ebuild
@ 2011-03-08  8:58 Thomas Kahle (tomka)
  0 siblings, 0 replies; 8+ messages in thread
From: Thomas Kahle (tomka) @ 2011-03-08  8:58 UTC (permalink / raw
  To: gentoo-commits

tomka       11/03/08 08:58:12

  Modified:             ChangeLog parsetree-3.0.6.ebuild
  Log:
  x86 stable per bug 355299
  
  (Portage version: 2.1.9.42/cvs/Linux i686)

Revision  Changes    Path
1.39                 dev-ruby/parsetree/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/parsetree/ChangeLog?rev=1.39&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/parsetree/ChangeLog?rev=1.39&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/parsetree/ChangeLog?r1=1.38&r2=1.39

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-ruby/parsetree/ChangeLog,v
retrieving revision 1.38
retrieving revision 1.39
diff -u -r1.38 -r1.39
--- ChangeLog	21 Feb 2011 19:20:54 -0000	1.38
+++ ChangeLog	8 Mar 2011 08:58:12 -0000	1.39
@@ -1,6 +1,9 @@
 # ChangeLog for dev-ruby/parsetree
 # Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-ruby/parsetree/ChangeLog,v 1.38 2011/02/21 19:20:54 hwoarang Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-ruby/parsetree/ChangeLog,v 1.39 2011/03/08 08:58:12 tomka Exp $
+
+  08 Mar 2011; Thomas Kahle <tomka@gentoo.org> parsetree-3.0.6.ebuild:
+  x86 stable per bug 355299
 
   21 Feb 2011; Markos Chandras <hwoarang@gentoo.org> parsetree-3.0.6.ebuild:
   Stable on amd64 wrt bug #355299



1.3                  dev-ruby/parsetree/parsetree-3.0.6.ebuild

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

Index: parsetree-3.0.6.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-ruby/parsetree/parsetree-3.0.6.ebuild,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- parsetree-3.0.6.ebuild	21 Feb 2011 19:20:54 -0000	1.2
+++ parsetree-3.0.6.ebuild	8 Mar 2011 08:58:12 -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-ruby/parsetree/parsetree-3.0.6.ebuild,v 1.2 2011/02/21 19:20:54 hwoarang Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-ruby/parsetree/parsetree-3.0.6.ebuild,v 1.3 2011/03/08 08:58:12 tomka Exp $
 
 EAPI=2
 
@@ -19,7 +19,7 @@
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="amd64 ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~x64-solaris ~x86-solaris"
+KEYWORDS="amd64 ~hppa ~ia64 ~ppc ~ppc64 ~sparc x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~x64-solaris ~x86-solaris"
 IUSE=""
 
 ruby_add_rdepend '






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

* [gentoo-commits] gentoo-x86 commit in dev-ruby/parsetree: ChangeLog parsetree-3.0.6.ebuild
@ 2011-03-27 19:22 Brent Baude (ranger)
  0 siblings, 0 replies; 8+ messages in thread
From: Brent Baude (ranger) @ 2011-03-27 19:22 UTC (permalink / raw
  To: gentoo-commits

ranger      11/03/27 19:22:03

  Modified:             ChangeLog parsetree-3.0.6.ebuild
  Log:
  Marking parsetree-3.0.6 ~ppc for bug 355299
  
  (Portage version: 2.1.9.42/cvs/Linux ppc64)

Revision  Changes    Path
1.40                 dev-ruby/parsetree/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/parsetree/ChangeLog?rev=1.40&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/parsetree/ChangeLog?rev=1.40&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/parsetree/ChangeLog?r1=1.39&r2=1.40

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-ruby/parsetree/ChangeLog,v
retrieving revision 1.39
retrieving revision 1.40
diff -u -r1.39 -r1.40
--- ChangeLog	8 Mar 2011 08:58:12 -0000	1.39
+++ ChangeLog	27 Mar 2011 19:22:03 -0000	1.40
@@ -1,6 +1,9 @@
 # ChangeLog for dev-ruby/parsetree
 # Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-ruby/parsetree/ChangeLog,v 1.39 2011/03/08 08:58:12 tomka Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-ruby/parsetree/ChangeLog,v 1.40 2011/03/27 19:22:03 ranger Exp $
+
+  27 Mar 2011; Brent Baude <ranger@gentoo.org> parsetree-3.0.6.ebuild:
+  Marking parsetree-3.0.6 ppc stable for bug 355299
 
   08 Mar 2011; Thomas Kahle <tomka@gentoo.org> parsetree-3.0.6.ebuild:
   x86 stable per bug 355299



1.4                  dev-ruby/parsetree/parsetree-3.0.6.ebuild

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

Index: parsetree-3.0.6.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-ruby/parsetree/parsetree-3.0.6.ebuild,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- parsetree-3.0.6.ebuild	8 Mar 2011 08:58:12 -0000	1.3
+++ parsetree-3.0.6.ebuild	27 Mar 2011 19:22:03 -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-ruby/parsetree/parsetree-3.0.6.ebuild,v 1.3 2011/03/08 08:58:12 tomka Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-ruby/parsetree/parsetree-3.0.6.ebuild,v 1.4 2011/03/27 19:22:03 ranger Exp $
 
 EAPI=2
 
@@ -19,7 +19,7 @@
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="amd64 ~hppa ~ia64 ~ppc ~ppc64 ~sparc x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~x64-solaris ~x86-solaris"
+KEYWORDS="amd64 ~hppa ~ia64 ppc ~ppc64 ~sparc x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~x64-solaris ~x86-solaris"
 IUSE=""
 
 ruby_add_rdepend '






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

* [gentoo-commits] gentoo-x86 commit in dev-ruby/parsetree: ChangeLog parsetree-3.0.6.ebuild
@ 2011-04-01  7:17 Michael Weber (xmw)
  0 siblings, 0 replies; 8+ messages in thread
From: Michael Weber (xmw) @ 2011-04-01  7:17 UTC (permalink / raw
  To: gentoo-commits

xmw         11/04/01 07:17:01

  Modified:             ChangeLog parsetree-3.0.6.ebuild
  Log:
  sparc stable (bug 355299)
  
  (Portage version: 2.1.9.42/cvs/Linux x86_64)

Revision  Changes    Path
1.41                 dev-ruby/parsetree/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/parsetree/ChangeLog?rev=1.41&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/parsetree/ChangeLog?rev=1.41&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/parsetree/ChangeLog?r1=1.40&r2=1.41

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-ruby/parsetree/ChangeLog,v
retrieving revision 1.40
retrieving revision 1.41
diff -u -r1.40 -r1.41
--- ChangeLog	27 Mar 2011 19:22:03 -0000	1.40
+++ ChangeLog	1 Apr 2011 07:17:00 -0000	1.41
@@ -1,6 +1,9 @@
 # ChangeLog for dev-ruby/parsetree
 # Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-ruby/parsetree/ChangeLog,v 1.40 2011/03/27 19:22:03 ranger Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-ruby/parsetree/ChangeLog,v 1.41 2011/04/01 07:17:00 xmw Exp $
+
+  01 Apr 2011; Michael Weber <xmw@gentoo.org> parsetree-3.0.6.ebuild:
+  sparc stable (bug 355299)
 
   27 Mar 2011; Brent Baude <ranger@gentoo.org> parsetree-3.0.6.ebuild:
   Marking parsetree-3.0.6 ppc stable for bug 355299



1.5                  dev-ruby/parsetree/parsetree-3.0.6.ebuild

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

Index: parsetree-3.0.6.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-ruby/parsetree/parsetree-3.0.6.ebuild,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -r1.4 -r1.5
--- parsetree-3.0.6.ebuild	27 Mar 2011 19:22:03 -0000	1.4
+++ parsetree-3.0.6.ebuild	1 Apr 2011 07:17:00 -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-ruby/parsetree/parsetree-3.0.6.ebuild,v 1.4 2011/03/27 19:22:03 ranger Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-ruby/parsetree/parsetree-3.0.6.ebuild,v 1.5 2011/04/01 07:17:00 xmw Exp $
 
 EAPI=2
 
@@ -19,7 +19,7 @@
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="amd64 ~hppa ~ia64 ppc ~ppc64 ~sparc x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~x64-solaris ~x86-solaris"
+KEYWORDS="amd64 ~hppa ~ia64 ppc ~ppc64 sparc x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~x64-solaris ~x86-solaris"
 IUSE=""
 
 ruby_add_rdepend '






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

* [gentoo-commits] gentoo-x86 commit in dev-ruby/parsetree: ChangeLog parsetree-3.0.6.ebuild
@ 2011-04-16 17:20 Raul Porcel (armin76)
  0 siblings, 0 replies; 8+ messages in thread
From: Raul Porcel (armin76) @ 2011-04-16 17:20 UTC (permalink / raw
  To: gentoo-commits

armin76     11/04/16 17:20:59

  Modified:             ChangeLog parsetree-3.0.6.ebuild
  Log:
  ia64 stable wrt #355299
  
  (Portage version: 2.1.9.45/cvs/Linux ia64)

Revision  Changes    Path
1.42                 dev-ruby/parsetree/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/parsetree/ChangeLog?rev=1.42&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/parsetree/ChangeLog?rev=1.42&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/parsetree/ChangeLog?r1=1.41&r2=1.42

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-ruby/parsetree/ChangeLog,v
retrieving revision 1.41
retrieving revision 1.42
diff -u -r1.41 -r1.42
--- ChangeLog	1 Apr 2011 07:17:00 -0000	1.41
+++ ChangeLog	16 Apr 2011 17:20:59 -0000	1.42
@@ -1,6 +1,9 @@
 # ChangeLog for dev-ruby/parsetree
 # Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-ruby/parsetree/ChangeLog,v 1.41 2011/04/01 07:17:00 xmw Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-ruby/parsetree/ChangeLog,v 1.42 2011/04/16 17:20:59 armin76 Exp $
+
+  16 Apr 2011; Raúl Porcel <armin76@gentoo.org> parsetree-3.0.6.ebuild:
+  ia64 stable wrt #355299
 
   01 Apr 2011; Michael Weber <xmw@gentoo.org> parsetree-3.0.6.ebuild:
   sparc stable (bug 355299)



1.6                  dev-ruby/parsetree/parsetree-3.0.6.ebuild

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

Index: parsetree-3.0.6.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-ruby/parsetree/parsetree-3.0.6.ebuild,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -r1.5 -r1.6
--- parsetree-3.0.6.ebuild	1 Apr 2011 07:17:00 -0000	1.5
+++ parsetree-3.0.6.ebuild	16 Apr 2011 17:20:59 -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-ruby/parsetree/parsetree-3.0.6.ebuild,v 1.5 2011/04/01 07:17:00 xmw Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-ruby/parsetree/parsetree-3.0.6.ebuild,v 1.6 2011/04/16 17:20:59 armin76 Exp $
 
 EAPI=2
 
@@ -19,7 +19,7 @@
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="amd64 ~hppa ~ia64 ppc ~ppc64 sparc x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~x64-solaris ~x86-solaris"
+KEYWORDS="amd64 ~hppa ia64 ppc ~ppc64 sparc x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~x64-solaris ~x86-solaris"
 IUSE=""
 
 ruby_add_rdepend '






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

* [gentoo-commits] gentoo-x86 commit in dev-ruby/parsetree: ChangeLog parsetree-3.0.6.ebuild
@ 2011-07-10 23:03 Mark Loeser (halcy0n)
  0 siblings, 0 replies; 8+ messages in thread
From: Mark Loeser (halcy0n) @ 2011-07-10 23:03 UTC (permalink / raw
  To: gentoo-commits

halcy0n     11/07/10 23:03:04

  Modified:             ChangeLog parsetree-3.0.6.ebuild
  Log:
  Stable for ppc64; bug #355299
  
  (Portage version: 2.1.10.3/cvs/Linux ppc64)

Revision  Changes    Path
1.43                 dev-ruby/parsetree/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/parsetree/ChangeLog?rev=1.43&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/parsetree/ChangeLog?rev=1.43&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/parsetree/ChangeLog?r1=1.42&r2=1.43

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-ruby/parsetree/ChangeLog,v
retrieving revision 1.42
retrieving revision 1.43
diff -u -r1.42 -r1.43
--- ChangeLog	16 Apr 2011 17:20:59 -0000	1.42
+++ ChangeLog	10 Jul 2011 23:03:03 -0000	1.43
@@ -1,6 +1,9 @@
 # ChangeLog for dev-ruby/parsetree
 # Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-ruby/parsetree/ChangeLog,v 1.42 2011/04/16 17:20:59 armin76 Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-ruby/parsetree/ChangeLog,v 1.43 2011/07/10 23:03:03 halcy0n Exp $
+
+  10 Jul 2011; Mark Loeser <halcy0n@gentoo.org> parsetree-3.0.6.ebuild:
+  Stable for ppc64; bug #355299
 
   16 Apr 2011; Raúl Porcel <armin76@gentoo.org> parsetree-3.0.6.ebuild:
   ia64 stable wrt #355299



1.7                  dev-ruby/parsetree/parsetree-3.0.6.ebuild

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

Index: parsetree-3.0.6.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-ruby/parsetree/parsetree-3.0.6.ebuild,v
retrieving revision 1.6
retrieving revision 1.7
diff -u -r1.6 -r1.7
--- parsetree-3.0.6.ebuild	16 Apr 2011 17:20:59 -0000	1.6
+++ parsetree-3.0.6.ebuild	10 Jul 2011 23:03:03 -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-ruby/parsetree/parsetree-3.0.6.ebuild,v 1.6 2011/04/16 17:20:59 armin76 Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-ruby/parsetree/parsetree-3.0.6.ebuild,v 1.7 2011/07/10 23:03:03 halcy0n Exp $
 
 EAPI=2
 
@@ -19,7 +19,7 @@
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="amd64 ~hppa ia64 ppc ~ppc64 sparc x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~x64-solaris ~x86-solaris"
+KEYWORDS="amd64 ~hppa ia64 ppc ppc64 sparc x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~x64-solaris ~x86-solaris"
 IUSE=""
 
 ruby_add_rdepend '






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

* [gentoo-commits] gentoo-x86 commit in dev-ruby/parsetree: ChangeLog parsetree-3.0.6.ebuild
@ 2013-09-23 19:28 Manuel Rueger (mrueg)
  0 siblings, 0 replies; 8+ messages in thread
From: Manuel Rueger (mrueg) @ 2013-09-23 19:28 UTC (permalink / raw
  To: gentoo-commits

mrueg       13/09/23 19:28:45

  Modified:             ChangeLog
  Removed:              parsetree-3.0.6.ebuild
  Log:
  Cleanup old. Fixes bug #484228.
  
  (Portage version: 2.2.6/cvs/Linux x86_64, signed Manifest commit with key )

Revision  Changes    Path
1.64                 dev-ruby/parsetree/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/parsetree/ChangeLog?rev=1.64&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/parsetree/ChangeLog?rev=1.64&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/parsetree/ChangeLog?r1=1.63&r2=1.64

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-ruby/parsetree/ChangeLog,v
retrieving revision 1.63
retrieving revision 1.64
diff -u -r1.63 -r1.64
--- ChangeLog	23 Sep 2013 19:14:42 -0000	1.63
+++ ChangeLog	23 Sep 2013 19:28:44 -0000	1.64
@@ -1,6 +1,9 @@
 # ChangeLog for dev-ruby/parsetree
 # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-ruby/parsetree/ChangeLog,v 1.63 2013/09/23 19:14:42 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-ruby/parsetree/ChangeLog,v 1.64 2013/09/23 19:28:44 mrueg Exp $
+
+  23 Sep 2013; Manuel Rüger <mrueg@gentoo.org> -parsetree-3.0.6.ebuild:
+  Cleanup old. Fixes bug #484228.
 
   23 Sep 2013; Agostino Sarubbo <ago@gentoo.org> parsetree-3.0.9-r1.ebuild:
   Stable for sparc, wrt bug #484232





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

end of thread, other threads:[~2013-09-23 19:28 UTC | newest]

Thread overview: 8+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2011-04-16 17:20 [gentoo-commits] gentoo-x86 commit in dev-ruby/parsetree: ChangeLog parsetree-3.0.6.ebuild Raul Porcel (armin76)
  -- strict thread matches above, loose matches on Subject: below --
2013-09-23 19:28 Manuel Rueger (mrueg)
2011-07-10 23:03 Mark Loeser (halcy0n)
2011-04-01  7:17 Michael Weber (xmw)
2011-03-27 19:22 Brent Baude (ranger)
2011-03-08  8:58 Thomas Kahle (tomka)
2011-02-21 19:20 Markos Chandras (hwoarang)
2010-12-27 21:15 Hans de Graaff (graaff)

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