* [gentoo-commits] gentoo-x86 commit in dev-ruby/rake: rake-0.9.6.ebuild ChangeLog
@ 2013-06-23 7:59 Hans de Graaff (graaff)
0 siblings, 0 replies; 12+ messages in thread
From: Hans de Graaff (graaff) @ 2013-06-23 7:59 UTC (permalink / raw
To: gentoo-commits
graaff 13/06/23 07:59:50
Modified: ChangeLog
Added: rake-0.9.6.ebuild
Log:
Version bump. Skip failing tests on jruby because these are caused by our own packaging and already present in 0.9.2.2.
(Portage version: 2.1.12.2/cvs/Linux x86_64, signed Manifest commit with key 0x8883FA56A308A8D7!)
Revision Changes Path
1.138 dev-ruby/rake/ChangeLog
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/rake/ChangeLog?rev=1.138&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/rake/ChangeLog?rev=1.138&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/rake/ChangeLog?r1=1.137&r2=1.138
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-ruby/rake/ChangeLog,v
retrieving revision 1.137
retrieving revision 1.138
diff -u -r1.137 -r1.138
--- ChangeLog 28 Jan 2013 15:16:10 -0000 1.137
+++ ChangeLog 23 Jun 2013 07:59:50 -0000 1.138
@@ -1,6 +1,12 @@
# ChangeLog for dev-ruby/rake
# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-ruby/rake/ChangeLog,v 1.137 2013/01/28 15:16:10 aballier Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-ruby/rake/ChangeLog,v 1.138 2013/06/23 07:59:50 graaff Exp $
+
+*rake-0.9.6 (23 Jun 2013)
+
+ 23 Jun 2013; Hans de Graaff <graaff@gentoo.org> +rake-0.9.6.ebuild:
+ Version bump. Skip failing tests on jruby because these are caused by our own
+ packaging and already present in 0.9.2.2.
28 Jan 2013; Alexis Ballier <aballier@gentoo.org> rake-0.9.2.2.ebuild:
keyword ~amd64-fbsd
1.1 dev-ruby/rake/rake-0.9.6.ebuild
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/rake/rake-0.9.6.ebuild?rev=1.1&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/rake/rake-0.9.6.ebuild?rev=1.1&content-type=text/plain
Index: rake-0.9.6.ebuild
===================================================================
# Copyright 1999-2013 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-ruby/rake/rake-0.9.6.ebuild,v 1.1 2013/06/23 07:59:50 graaff Exp $
EAPI=4
USE_RUBY="ruby18 ruby19 jruby"
RUBY_FAKEGEM_TASK_DOC=""
RUBY_FAKEGEM_EXTRADOC="CHANGES README.rdoc TODO"
RUBY_FAKEGEM_TASK_TEST=""
inherit bash-completion-r1 ruby-fakegem
DESCRIPTION="Make-like scripting in Ruby"
HOMEPAGE="http://rake.rubyforge.org/"
LICENSE="MIT"
SLOT="0"
KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
IUSE="doc"
DEPEND="${DEPEND} app-arch/gzip"
RDEPEND="${RDEPEND}"
ruby_add_bdepend "doc? ( dev-ruby/rdoc )
test? ( dev-ruby/minitest )"
all_ruby_prepare() {
# Comment out unimportant test which failes on ruby18 at least.
sed -i -e '/def test_classic_namespace/,/^ end/ s:^:#:' test/test_rake_application_options.rb || die
# Avoid tests which can't work in bootstrapping because the test runs
# in a directory that can't access the file being loaded.
rm test/test_rake_clean.rb || die
sed -i -e '/test_run_code_rake/,/^ end/ s:^:#:' test/test_rake_test_task.rb || die
# Decompress the file. The compressed version has errors, ignore them.
zcat doc/rake.1.gz > doc/rake.1
}
each_ruby_prepare() {
case ${RUBY} in
*jruby)
# Remove failing tests. These are not failures in rake but
# in our packaging of jruby. They are already present in
# rake 0.9.2.2, so avoid them for now so that we can at
# least bump 0.9.6 which is needed for ruby20.
rm test/test_rake_{functional,rules}.rb || die
;;
esac
}
all_ruby_compile() {
if use doc; then
ruby -Ilib bin/rake rdoc || die "doc generation failed"
fi
}
each_ruby_test() {
${RUBY} -S testrb test/test_*.rb || die
}
all_ruby_install() {
ruby_fakegem_binwrapper rake
if use doc; then
pushd html
dohtml -r *
popd
fi
doman doc/rake.1
newbashcomp "${FILESDIR}"/rake.bash-completion ${PN}
}
^ permalink raw reply [flat|nested] 12+ messages in thread
* [gentoo-commits] gentoo-x86 commit in dev-ruby/rake: rake-0.9.6.ebuild ChangeLog
@ 2013-07-07 8:07 Hans de Graaff (graaff)
0 siblings, 0 replies; 12+ messages in thread
From: Hans de Graaff (graaff) @ 2013-07-07 8:07 UTC (permalink / raw
To: gentoo-commits
graaff 13/07/07 08:07:11
Modified: rake-0.9.6.ebuild ChangeLog
Log:
Add ruby20 support.
(Portage version: 2.1.12.2/cvs/Linux x86_64, signed Manifest commit with key 0x8883FA56A308A8D7!)
Revision Changes Path
1.2 dev-ruby/rake/rake-0.9.6.ebuild
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/rake/rake-0.9.6.ebuild?rev=1.2&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/rake/rake-0.9.6.ebuild?rev=1.2&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/rake/rake-0.9.6.ebuild?r1=1.1&r2=1.2
Index: rake-0.9.6.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-ruby/rake/rake-0.9.6.ebuild,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- rake-0.9.6.ebuild 23 Jun 2013 07:59:50 -0000 1.1
+++ rake-0.9.6.ebuild 7 Jul 2013 08:07:11 -0000 1.2
@@ -1,9 +1,9 @@
# Copyright 1999-2013 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-ruby/rake/rake-0.9.6.ebuild,v 1.1 2013/06/23 07:59:50 graaff Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-ruby/rake/rake-0.9.6.ebuild,v 1.2 2013/07/07 08:07:11 graaff Exp $
EAPI=4
-USE_RUBY="ruby18 ruby19 jruby"
+USE_RUBY="ruby18 ruby19 ruby20 jruby"
RUBY_FAKEGEM_TASK_DOC=""
RUBY_FAKEGEM_EXTRADOC="CHANGES README.rdoc TODO"
@@ -24,7 +24,7 @@
RDEPEND="${RDEPEND}"
ruby_add_bdepend "doc? ( dev-ruby/rdoc )
- test? ( dev-ruby/minitest )"
+ test? ( virtual/ruby-minitest )"
all_ruby_prepare() {
# Comment out unimportant test which failes on ruby18 at least.
1.139 dev-ruby/rake/ChangeLog
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/rake/ChangeLog?rev=1.139&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/rake/ChangeLog?rev=1.139&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/rake/ChangeLog?r1=1.138&r2=1.139
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-ruby/rake/ChangeLog,v
retrieving revision 1.138
retrieving revision 1.139
diff -u -r1.138 -r1.139
--- ChangeLog 23 Jun 2013 07:59:50 -0000 1.138
+++ ChangeLog 7 Jul 2013 08:07:11 -0000 1.139
@@ -1,6 +1,9 @@
# ChangeLog for dev-ruby/rake
# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-ruby/rake/ChangeLog,v 1.138 2013/06/23 07:59:50 graaff Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-ruby/rake/ChangeLog,v 1.139 2013/07/07 08:07:11 graaff Exp $
+
+ 07 Jul 2013; Hans de Graaff <graaff@gentoo.org> rake-0.9.6.ebuild:
+ Add ruby20 support.
*rake-0.9.6 (23 Jun 2013)
^ permalink raw reply [flat|nested] 12+ messages in thread
* [gentoo-commits] gentoo-x86 commit in dev-ruby/rake: rake-0.9.6.ebuild ChangeLog
@ 2013-09-01 14:44 Agostino Sarubbo (ago)
0 siblings, 0 replies; 12+ messages in thread
From: Agostino Sarubbo (ago) @ 2013-09-01 14:44 UTC (permalink / raw
To: gentoo-commits
ago 13/09/01 14:44:12
Modified: rake-0.9.6.ebuild ChangeLog
Log:
Stable for amd64, wrt bug #483254
(Portage version: 2.1.13.7/cvs/Linux x86_64, RepoMan options: --include-arches="amd64", signed Manifest commit with key 7194459F)
Revision Changes Path
1.3 dev-ruby/rake/rake-0.9.6.ebuild
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/rake/rake-0.9.6.ebuild?rev=1.3&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/rake/rake-0.9.6.ebuild?rev=1.3&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/rake/rake-0.9.6.ebuild?r1=1.2&r2=1.3
Index: rake-0.9.6.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-ruby/rake/rake-0.9.6.ebuild,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- rake-0.9.6.ebuild 7 Jul 2013 08:07:11 -0000 1.2
+++ rake-0.9.6.ebuild 1 Sep 2013 14:44:12 -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-ruby/rake/rake-0.9.6.ebuild,v 1.2 2013/07/07 08:07:11 graaff Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-ruby/rake/rake-0.9.6.ebuild,v 1.3 2013/09/01 14:44:12 ago Exp $
EAPI=4
USE_RUBY="ruby18 ruby19 ruby20 jruby"
@@ -17,7 +17,7 @@
LICENSE="MIT"
SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
+KEYWORDS="~alpha amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
IUSE="doc"
DEPEND="${DEPEND} app-arch/gzip"
1.140 dev-ruby/rake/ChangeLog
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/rake/ChangeLog?rev=1.140&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/rake/ChangeLog?rev=1.140&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/rake/ChangeLog?r1=1.139&r2=1.140
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-ruby/rake/ChangeLog,v
retrieving revision 1.139
retrieving revision 1.140
diff -u -r1.139 -r1.140
--- ChangeLog 7 Jul 2013 08:07:11 -0000 1.139
+++ ChangeLog 1 Sep 2013 14:44:12 -0000 1.140
@@ -1,6 +1,9 @@
# ChangeLog for dev-ruby/rake
# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-ruby/rake/ChangeLog,v 1.139 2013/07/07 08:07:11 graaff Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-ruby/rake/ChangeLog,v 1.140 2013/09/01 14:44:12 ago Exp $
+
+ 01 Sep 2013; Agostino Sarubbo <ago@gentoo.org> rake-0.9.6.ebuild:
+ Stable for amd64, wrt bug #483254
07 Jul 2013; Hans de Graaff <graaff@gentoo.org> rake-0.9.6.ebuild:
Add ruby20 support.
^ permalink raw reply [flat|nested] 12+ messages in thread
* [gentoo-commits] gentoo-x86 commit in dev-ruby/rake: rake-0.9.6.ebuild ChangeLog
@ 2013-09-01 14:45 Agostino Sarubbo (ago)
0 siblings, 0 replies; 12+ messages in thread
From: Agostino Sarubbo (ago) @ 2013-09-01 14:45 UTC (permalink / raw
To: gentoo-commits
ago 13/09/01 14:45:57
Modified: rake-0.9.6.ebuild ChangeLog
Log:
Stable for x86, wrt bug #483254
(Portage version: 2.1.13.7/cvs/Linux x86_64, RepoMan options: --include-arches="x86", signed Manifest commit with key 7194459F)
Revision Changes Path
1.4 dev-ruby/rake/rake-0.9.6.ebuild
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/rake/rake-0.9.6.ebuild?rev=1.4&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/rake/rake-0.9.6.ebuild?rev=1.4&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/rake/rake-0.9.6.ebuild?r1=1.3&r2=1.4
Index: rake-0.9.6.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-ruby/rake/rake-0.9.6.ebuild,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- rake-0.9.6.ebuild 1 Sep 2013 14:44:12 -0000 1.3
+++ rake-0.9.6.ebuild 1 Sep 2013 14:45:57 -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-ruby/rake/rake-0.9.6.ebuild,v 1.3 2013/09/01 14:44:12 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-ruby/rake/rake-0.9.6.ebuild,v 1.4 2013/09/01 14:45:57 ago Exp $
EAPI=4
USE_RUBY="ruby18 ruby19 ruby20 jruby"
@@ -17,7 +17,7 @@
LICENSE="MIT"
SLOT="0"
-KEYWORDS="~alpha amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
+KEYWORDS="~alpha amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
IUSE="doc"
DEPEND="${DEPEND} app-arch/gzip"
1.141 dev-ruby/rake/ChangeLog
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/rake/ChangeLog?rev=1.141&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/rake/ChangeLog?rev=1.141&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/rake/ChangeLog?r1=1.140&r2=1.141
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-ruby/rake/ChangeLog,v
retrieving revision 1.140
retrieving revision 1.141
diff -u -r1.140 -r1.141
--- ChangeLog 1 Sep 2013 14:44:12 -0000 1.140
+++ ChangeLog 1 Sep 2013 14:45:57 -0000 1.141
@@ -1,6 +1,9 @@
# ChangeLog for dev-ruby/rake
# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-ruby/rake/ChangeLog,v 1.140 2013/09/01 14:44:12 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-ruby/rake/ChangeLog,v 1.141 2013/09/01 14:45:57 ago Exp $
+
+ 01 Sep 2013; Agostino Sarubbo <ago@gentoo.org> rake-0.9.6.ebuild:
+ Stable for x86, wrt bug #483254
01 Sep 2013; Agostino Sarubbo <ago@gentoo.org> rake-0.9.6.ebuild:
Stable for amd64, wrt bug #483254
^ permalink raw reply [flat|nested] 12+ messages in thread
* [gentoo-commits] gentoo-x86 commit in dev-ruby/rake: rake-0.9.6.ebuild ChangeLog
@ 2013-09-05 15:46 Jeroen Roovers (jer)
0 siblings, 0 replies; 12+ messages in thread
From: Jeroen Roovers (jer) @ 2013-09-05 15:46 UTC (permalink / raw
To: gentoo-commits
jer 13/09/05 15:46:18
Modified: rake-0.9.6.ebuild ChangeLog
Log:
Stable for HPPA (bug #483254).
(Portage version: 2.2.1/cvs/Linux x86_64, RepoMan options: --ignore-arches, signed Manifest commit with key A792A613)
Revision Changes Path
1.5 dev-ruby/rake/rake-0.9.6.ebuild
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/rake/rake-0.9.6.ebuild?rev=1.5&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/rake/rake-0.9.6.ebuild?rev=1.5&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/rake/rake-0.9.6.ebuild?r1=1.4&r2=1.5
Index: rake-0.9.6.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-ruby/rake/rake-0.9.6.ebuild,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -r1.4 -r1.5
--- rake-0.9.6.ebuild 1 Sep 2013 14:45:57 -0000 1.4
+++ rake-0.9.6.ebuild 5 Sep 2013 15:46:18 -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-ruby/rake/rake-0.9.6.ebuild,v 1.4 2013/09/01 14:45:57 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-ruby/rake/rake-0.9.6.ebuild,v 1.5 2013/09/05 15:46:18 jer Exp $
EAPI=4
USE_RUBY="ruby18 ruby19 ruby20 jruby"
@@ -17,7 +17,7 @@
LICENSE="MIT"
SLOT="0"
-KEYWORDS="~alpha amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
+KEYWORDS="~alpha amd64 ~arm hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
IUSE="doc"
DEPEND="${DEPEND} app-arch/gzip"
1.142 dev-ruby/rake/ChangeLog
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/rake/ChangeLog?rev=1.142&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/rake/ChangeLog?rev=1.142&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/rake/ChangeLog?r1=1.141&r2=1.142
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-ruby/rake/ChangeLog,v
retrieving revision 1.141
retrieving revision 1.142
diff -u -r1.141 -r1.142
--- ChangeLog 1 Sep 2013 14:45:57 -0000 1.141
+++ ChangeLog 5 Sep 2013 15:46:18 -0000 1.142
@@ -1,6 +1,9 @@
# ChangeLog for dev-ruby/rake
# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-ruby/rake/ChangeLog,v 1.141 2013/09/01 14:45:57 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-ruby/rake/ChangeLog,v 1.142 2013/09/05 15:46:18 jer Exp $
+
+ 05 Sep 2013; Jeroen Roovers <jer@gentoo.org> rake-0.9.6.ebuild:
+ Stable for HPPA (bug #483254).
01 Sep 2013; Agostino Sarubbo <ago@gentoo.org> rake-0.9.6.ebuild:
Stable for x86, wrt bug #483254
^ permalink raw reply [flat|nested] 12+ messages in thread
* [gentoo-commits] gentoo-x86 commit in dev-ruby/rake: rake-0.9.6.ebuild ChangeLog
@ 2013-12-15 17:25 Agostino Sarubbo (ago)
0 siblings, 0 replies; 12+ messages in thread
From: Agostino Sarubbo (ago) @ 2013-12-15 17:25 UTC (permalink / raw
To: gentoo-commits
ago 13/12/15 17:25:41
Modified: rake-0.9.6.ebuild ChangeLog
Log:
Stable for ppc, wrt bug #483254
(Portage version: 2.2.1/cvs/Linux x86_64, RepoMan options: --include-arches="ppc", signed Manifest commit with key 7194459F)
Revision Changes Path
1.6 dev-ruby/rake/rake-0.9.6.ebuild
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/rake/rake-0.9.6.ebuild?rev=1.6&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/rake/rake-0.9.6.ebuild?rev=1.6&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/rake/rake-0.9.6.ebuild?r1=1.5&r2=1.6
Index: rake-0.9.6.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-ruby/rake/rake-0.9.6.ebuild,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -r1.5 -r1.6
--- rake-0.9.6.ebuild 5 Sep 2013 15:46:18 -0000 1.5
+++ rake-0.9.6.ebuild 15 Dec 2013 17:25:41 -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-ruby/rake/rake-0.9.6.ebuild,v 1.5 2013/09/05 15:46:18 jer Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-ruby/rake/rake-0.9.6.ebuild,v 1.6 2013/12/15 17:25:41 ago Exp $
EAPI=4
USE_RUBY="ruby18 ruby19 ruby20 jruby"
@@ -17,7 +17,7 @@
LICENSE="MIT"
SLOT="0"
-KEYWORDS="~alpha amd64 ~arm hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
+KEYWORDS="~alpha amd64 ~arm hppa ~ia64 ~mips ppc ~ppc64 ~s390 ~sh ~sparc x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
IUSE="doc"
DEPEND="${DEPEND} app-arch/gzip"
1.143 dev-ruby/rake/ChangeLog
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/rake/ChangeLog?rev=1.143&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/rake/ChangeLog?rev=1.143&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/rake/ChangeLog?r1=1.142&r2=1.143
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-ruby/rake/ChangeLog,v
retrieving revision 1.142
retrieving revision 1.143
diff -u -r1.142 -r1.143
--- ChangeLog 5 Sep 2013 15:46:18 -0000 1.142
+++ ChangeLog 15 Dec 2013 17:25:41 -0000 1.143
@@ -1,6 +1,9 @@
# ChangeLog for dev-ruby/rake
# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-ruby/rake/ChangeLog,v 1.142 2013/09/05 15:46:18 jer Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-ruby/rake/ChangeLog,v 1.143 2013/12/15 17:25:41 ago Exp $
+
+ 15 Dec 2013; Agostino Sarubbo <ago@gentoo.org> rake-0.9.6.ebuild:
+ Stable for ppc, wrt bug #483254
05 Sep 2013; Jeroen Roovers <jer@gentoo.org> rake-0.9.6.ebuild:
Stable for HPPA (bug #483254).
^ permalink raw reply [flat|nested] 12+ messages in thread
* [gentoo-commits] gentoo-x86 commit in dev-ruby/rake: rake-0.9.6.ebuild ChangeLog
@ 2013-12-15 17:26 Agostino Sarubbo (ago)
0 siblings, 0 replies; 12+ messages in thread
From: Agostino Sarubbo (ago) @ 2013-12-15 17:26 UTC (permalink / raw
To: gentoo-commits
ago 13/12/15 17:26:43
Modified: rake-0.9.6.ebuild ChangeLog
Log:
Stable for ppc64, wrt bug #483254
(Portage version: 2.2.1/cvs/Linux x86_64, RepoMan options: --include-arches="ppc64", signed Manifest commit with key 7194459F)
Revision Changes Path
1.7 dev-ruby/rake/rake-0.9.6.ebuild
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/rake/rake-0.9.6.ebuild?rev=1.7&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/rake/rake-0.9.6.ebuild?rev=1.7&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/rake/rake-0.9.6.ebuild?r1=1.6&r2=1.7
Index: rake-0.9.6.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-ruby/rake/rake-0.9.6.ebuild,v
retrieving revision 1.6
retrieving revision 1.7
diff -u -r1.6 -r1.7
--- rake-0.9.6.ebuild 15 Dec 2013 17:25:41 -0000 1.6
+++ rake-0.9.6.ebuild 15 Dec 2013 17:26:43 -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-ruby/rake/rake-0.9.6.ebuild,v 1.6 2013/12/15 17:25:41 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-ruby/rake/rake-0.9.6.ebuild,v 1.7 2013/12/15 17:26:43 ago Exp $
EAPI=4
USE_RUBY="ruby18 ruby19 ruby20 jruby"
@@ -17,7 +17,7 @@
LICENSE="MIT"
SLOT="0"
-KEYWORDS="~alpha amd64 ~arm hppa ~ia64 ~mips ppc ~ppc64 ~s390 ~sh ~sparc x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
+KEYWORDS="~alpha amd64 ~arm hppa ~ia64 ~mips ppc ppc64 ~s390 ~sh ~sparc x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
IUSE="doc"
DEPEND="${DEPEND} app-arch/gzip"
1.144 dev-ruby/rake/ChangeLog
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/rake/ChangeLog?rev=1.144&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/rake/ChangeLog?rev=1.144&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/rake/ChangeLog?r1=1.143&r2=1.144
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-ruby/rake/ChangeLog,v
retrieving revision 1.143
retrieving revision 1.144
diff -u -r1.143 -r1.144
--- ChangeLog 15 Dec 2013 17:25:41 -0000 1.143
+++ ChangeLog 15 Dec 2013 17:26:43 -0000 1.144
@@ -1,6 +1,9 @@
# ChangeLog for dev-ruby/rake
# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-ruby/rake/ChangeLog,v 1.143 2013/12/15 17:25:41 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-ruby/rake/ChangeLog,v 1.144 2013/12/15 17:26:43 ago Exp $
+
+ 15 Dec 2013; Agostino Sarubbo <ago@gentoo.org> rake-0.9.6.ebuild:
+ Stable for ppc64, wrt bug #483254
15 Dec 2013; Agostino Sarubbo <ago@gentoo.org> rake-0.9.6.ebuild:
Stable for ppc, wrt bug #483254
^ permalink raw reply [flat|nested] 12+ messages in thread
* [gentoo-commits] gentoo-x86 commit in dev-ruby/rake: rake-0.9.6.ebuild ChangeLog
@ 2013-12-20 15:53 Akinori Hattori (hattya)
0 siblings, 0 replies; 12+ messages in thread
From: Akinori Hattori (hattya) @ 2013-12-20 15:53 UTC (permalink / raw
To: gentoo-commits
hattya 13/12/20 15:53:33
Modified: rake-0.9.6.ebuild ChangeLog
Log:
ia64 stable wrt bug #483254
(Portage version: 2.2.7/cvs/Linux x86_64, signed Manifest commit with key EC917A6D)
Revision Changes Path
1.8 dev-ruby/rake/rake-0.9.6.ebuild
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/rake/rake-0.9.6.ebuild?rev=1.8&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/rake/rake-0.9.6.ebuild?rev=1.8&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/rake/rake-0.9.6.ebuild?r1=1.7&r2=1.8
Index: rake-0.9.6.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-ruby/rake/rake-0.9.6.ebuild,v
retrieving revision 1.7
retrieving revision 1.8
diff -u -r1.7 -r1.8
--- rake-0.9.6.ebuild 15 Dec 2013 17:26:43 -0000 1.7
+++ rake-0.9.6.ebuild 20 Dec 2013 15:53:33 -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-ruby/rake/rake-0.9.6.ebuild,v 1.7 2013/12/15 17:26:43 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-ruby/rake/rake-0.9.6.ebuild,v 1.8 2013/12/20 15:53:33 hattya Exp $
EAPI=4
USE_RUBY="ruby18 ruby19 ruby20 jruby"
@@ -17,7 +17,7 @@
LICENSE="MIT"
SLOT="0"
-KEYWORDS="~alpha amd64 ~arm hppa ~ia64 ~mips ppc ppc64 ~s390 ~sh ~sparc x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
+KEYWORDS="~alpha amd64 ~arm hppa ia64 ~mips ppc ppc64 ~s390 ~sh ~sparc x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
IUSE="doc"
DEPEND="${DEPEND} app-arch/gzip"
1.145 dev-ruby/rake/ChangeLog
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/rake/ChangeLog?rev=1.145&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/rake/ChangeLog?rev=1.145&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/rake/ChangeLog?r1=1.144&r2=1.145
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-ruby/rake/ChangeLog,v
retrieving revision 1.144
retrieving revision 1.145
diff -u -r1.144 -r1.145
--- ChangeLog 15 Dec 2013 17:26:43 -0000 1.144
+++ ChangeLog 20 Dec 2013 15:53:33 -0000 1.145
@@ -1,6 +1,9 @@
# ChangeLog for dev-ruby/rake
# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-ruby/rake/ChangeLog,v 1.144 2013/12/15 17:26:43 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-ruby/rake/ChangeLog,v 1.145 2013/12/20 15:53:33 hattya Exp $
+
+ 20 Dec 2013; Akinori Hattori <hattya@gentoo.org> rake-0.9.6.ebuild:
+ ia64 stable wrt bug #483254
15 Dec 2013; Agostino Sarubbo <ago@gentoo.org> rake-0.9.6.ebuild:
Stable for ppc64, wrt bug #483254
^ permalink raw reply [flat|nested] 12+ messages in thread
* [gentoo-commits] gentoo-x86 commit in dev-ruby/rake: rake-0.9.6.ebuild ChangeLog
@ 2013-12-29 17:21 Markus Meier (maekke)
0 siblings, 0 replies; 12+ messages in thread
From: Markus Meier (maekke) @ 2013-12-29 17:21 UTC (permalink / raw
To: gentoo-commits
maekke 13/12/29 17:21:45
Modified: rake-0.9.6.ebuild ChangeLog
Log:
arm stable, bug #483254
(Portage version: 2.2.7/cvs/Linux x86_64, RepoMan options: --include-arches="arm", signed Manifest commit with key 072AD062)
Revision Changes Path
1.9 dev-ruby/rake/rake-0.9.6.ebuild
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/rake/rake-0.9.6.ebuild?rev=1.9&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/rake/rake-0.9.6.ebuild?rev=1.9&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/rake/rake-0.9.6.ebuild?r1=1.8&r2=1.9
Index: rake-0.9.6.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-ruby/rake/rake-0.9.6.ebuild,v
retrieving revision 1.8
retrieving revision 1.9
diff -u -r1.8 -r1.9
--- rake-0.9.6.ebuild 20 Dec 2013 15:53:33 -0000 1.8
+++ rake-0.9.6.ebuild 29 Dec 2013 17:21:45 -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-ruby/rake/rake-0.9.6.ebuild,v 1.8 2013/12/20 15:53:33 hattya Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-ruby/rake/rake-0.9.6.ebuild,v 1.9 2013/12/29 17:21:45 maekke Exp $
EAPI=4
USE_RUBY="ruby18 ruby19 ruby20 jruby"
@@ -17,7 +17,7 @@
LICENSE="MIT"
SLOT="0"
-KEYWORDS="~alpha amd64 ~arm hppa ia64 ~mips ppc ppc64 ~s390 ~sh ~sparc x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
+KEYWORDS="~alpha amd64 arm hppa ia64 ~mips ppc ppc64 ~s390 ~sh ~sparc x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
IUSE="doc"
DEPEND="${DEPEND} app-arch/gzip"
1.147 dev-ruby/rake/ChangeLog
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/rake/ChangeLog?rev=1.147&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/rake/ChangeLog?rev=1.147&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/rake/ChangeLog?r1=1.146&r2=1.147
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-ruby/rake/ChangeLog,v
retrieving revision 1.146
retrieving revision 1.147
diff -u -r1.146 -r1.147
--- ChangeLog 26 Dec 2013 09:26:38 -0000 1.146
+++ ChangeLog 29 Dec 2013 17:21:45 -0000 1.147
@@ -1,6 +1,9 @@
# ChangeLog for dev-ruby/rake
# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-ruby/rake/ChangeLog,v 1.146 2013/12/26 09:26:38 graaff Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-ruby/rake/ChangeLog,v 1.147 2013/12/29 17:21:45 maekke Exp $
+
+ 29 Dec 2013; Markus Meier <maekke@gentoo.org> rake-0.9.6.ebuild:
+ arm stable, bug #483254
*rake-0.9.6-r1 (26 Dec 2013)
^ permalink raw reply [flat|nested] 12+ messages in thread
* [gentoo-commits] gentoo-x86 commit in dev-ruby/rake: rake-0.9.6.ebuild ChangeLog
@ 2014-01-26 13:05 Agostino Sarubbo (ago)
0 siblings, 0 replies; 12+ messages in thread
From: Agostino Sarubbo (ago) @ 2014-01-26 13:05 UTC (permalink / raw
To: gentoo-commits
ago 14/01/26 13:05:41
Modified: rake-0.9.6.ebuild ChangeLog
Log:
Stable for sparc, wrt bug #483254
(Portage version: 2.2.7/cvs/Linux x86_64, RepoMan options: --include-arches="sparc", signed Manifest commit with key 7194459F)
Revision Changes Path
1.10 dev-ruby/rake/rake-0.9.6.ebuild
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/rake/rake-0.9.6.ebuild?rev=1.10&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/rake/rake-0.9.6.ebuild?rev=1.10&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/rake/rake-0.9.6.ebuild?r1=1.9&r2=1.10
Index: rake-0.9.6.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-ruby/rake/rake-0.9.6.ebuild,v
retrieving revision 1.9
retrieving revision 1.10
diff -u -r1.9 -r1.10
--- rake-0.9.6.ebuild 29 Dec 2013 17:21:45 -0000 1.9
+++ rake-0.9.6.ebuild 26 Jan 2014 13:05:41 -0000 1.10
@@ -1,6 +1,6 @@
-# Copyright 1999-2013 Gentoo Foundation
+# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-ruby/rake/rake-0.9.6.ebuild,v 1.9 2013/12/29 17:21:45 maekke Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-ruby/rake/rake-0.9.6.ebuild,v 1.10 2014/01/26 13:05:41 ago Exp $
EAPI=4
USE_RUBY="ruby18 ruby19 ruby20 jruby"
@@ -17,7 +17,7 @@
LICENSE="MIT"
SLOT="0"
-KEYWORDS="~alpha amd64 arm hppa ia64 ~mips ppc ppc64 ~s390 ~sh ~sparc x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
+KEYWORDS="~alpha amd64 arm hppa ia64 ~mips ppc ppc64 ~s390 ~sh sparc x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
IUSE="doc"
DEPEND="${DEPEND} app-arch/gzip"
1.149 dev-ruby/rake/ChangeLog
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/rake/ChangeLog?rev=1.149&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/rake/ChangeLog?rev=1.149&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/rake/ChangeLog?r1=1.148&r2=1.149
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-ruby/rake/ChangeLog,v
retrieving revision 1.148
retrieving revision 1.149
diff -u -r1.148 -r1.149
--- ChangeLog 5 Jan 2014 10:55:30 -0000 1.148
+++ ChangeLog 26 Jan 2014 13:05:41 -0000 1.149
@@ -1,6 +1,9 @@
# ChangeLog for dev-ruby/rake
# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-ruby/rake/ChangeLog,v 1.148 2014/01/05 10:55:30 graaff Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-ruby/rake/ChangeLog,v 1.149 2014/01/26 13:05:41 ago Exp $
+
+ 26 Jan 2014; Agostino Sarubbo <ago@gentoo.org> rake-0.9.6.ebuild:
+ Stable for sparc, wrt bug #483254
05 Jan 2014; Hans de Graaff <graaff@gentoo.org> rake-0.8.7-r6.ebuild,
rake-0.9.2.2.ebuild:
^ permalink raw reply [flat|nested] 12+ messages in thread
* [gentoo-commits] gentoo-x86 commit in dev-ruby/rake: rake-0.9.6.ebuild ChangeLog
@ 2014-01-26 13:06 Agostino Sarubbo (ago)
0 siblings, 0 replies; 12+ messages in thread
From: Agostino Sarubbo (ago) @ 2014-01-26 13:06 UTC (permalink / raw
To: gentoo-commits
ago 14/01/26 13:06:26
Modified: rake-0.9.6.ebuild ChangeLog
Log:
Stable for alpha, wrt bug #483254
(Portage version: 2.2.7/cvs/Linux x86_64, RepoMan options: --include-arches="alpha", signed Manifest commit with key 7194459F)
Revision Changes Path
1.11 dev-ruby/rake/rake-0.9.6.ebuild
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/rake/rake-0.9.6.ebuild?rev=1.11&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/rake/rake-0.9.6.ebuild?rev=1.11&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/rake/rake-0.9.6.ebuild?r1=1.10&r2=1.11
Index: rake-0.9.6.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-ruby/rake/rake-0.9.6.ebuild,v
retrieving revision 1.10
retrieving revision 1.11
diff -u -r1.10 -r1.11
--- rake-0.9.6.ebuild 26 Jan 2014 13:05:41 -0000 1.10
+++ rake-0.9.6.ebuild 26 Jan 2014 13:06:26 -0000 1.11
@@ -1,6 +1,6 @@
# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-ruby/rake/rake-0.9.6.ebuild,v 1.10 2014/01/26 13:05:41 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-ruby/rake/rake-0.9.6.ebuild,v 1.11 2014/01/26 13:06:26 ago Exp $
EAPI=4
USE_RUBY="ruby18 ruby19 ruby20 jruby"
@@ -17,7 +17,7 @@
LICENSE="MIT"
SLOT="0"
-KEYWORDS="~alpha amd64 arm hppa ia64 ~mips ppc ppc64 ~s390 ~sh sparc x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
+KEYWORDS="alpha amd64 arm hppa ia64 ~mips ppc ppc64 ~s390 ~sh sparc x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
IUSE="doc"
DEPEND="${DEPEND} app-arch/gzip"
1.150 dev-ruby/rake/ChangeLog
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/rake/ChangeLog?rev=1.150&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/rake/ChangeLog?rev=1.150&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/rake/ChangeLog?r1=1.149&r2=1.150
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-ruby/rake/ChangeLog,v
retrieving revision 1.149
retrieving revision 1.150
diff -u -r1.149 -r1.150
--- ChangeLog 26 Jan 2014 13:05:41 -0000 1.149
+++ ChangeLog 26 Jan 2014 13:06:26 -0000 1.150
@@ -1,6 +1,9 @@
# ChangeLog for dev-ruby/rake
# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-ruby/rake/ChangeLog,v 1.149 2014/01/26 13:05:41 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-ruby/rake/ChangeLog,v 1.150 2014/01/26 13:06:26 ago Exp $
+
+ 26 Jan 2014; Agostino Sarubbo <ago@gentoo.org> rake-0.9.6.ebuild:
+ Stable for alpha, wrt bug #483254
26 Jan 2014; Agostino Sarubbo <ago@gentoo.org> rake-0.9.6.ebuild:
Stable for sparc, wrt bug #483254
^ permalink raw reply [flat|nested] 12+ messages in thread
* [gentoo-commits] gentoo-x86 commit in dev-ruby/rake: rake-0.9.6.ebuild ChangeLog
@ 2014-06-12 16:10 Manuel Rueger (mrueg)
0 siblings, 0 replies; 12+ messages in thread
From: Manuel Rueger (mrueg) @ 2014-06-12 16:10 UTC (permalink / raw
To: gentoo-commits
mrueg 14/06/12 16:10:58
Modified: rake-0.9.6.ebuild ChangeLog
Log:
Remove ruby18.
(Portage version: 2.2.10/cvs/Linux x86_64, signed Manifest commit with key )
Revision Changes Path
1.12 dev-ruby/rake/rake-0.9.6.ebuild
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/rake/rake-0.9.6.ebuild?rev=1.12&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/rake/rake-0.9.6.ebuild?rev=1.12&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/rake/rake-0.9.6.ebuild?r1=1.11&r2=1.12
Index: rake-0.9.6.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-ruby/rake/rake-0.9.6.ebuild,v
retrieving revision 1.11
retrieving revision 1.12
diff -u -r1.11 -r1.12
--- rake-0.9.6.ebuild 26 Jan 2014 13:06:26 -0000 1.11
+++ rake-0.9.6.ebuild 12 Jun 2014 16:10:58 -0000 1.12
@@ -1,9 +1,9 @@
# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-ruby/rake/rake-0.9.6.ebuild,v 1.11 2014/01/26 13:06:26 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-ruby/rake/rake-0.9.6.ebuild,v 1.12 2014/06/12 16:10:58 mrueg Exp $
EAPI=4
-USE_RUBY="ruby18 ruby19 ruby20 jruby"
+USE_RUBY="ruby19 ruby20 jruby"
RUBY_FAKEGEM_TASK_DOC=""
RUBY_FAKEGEM_EXTRADOC="CHANGES README.rdoc TODO"
1.156 dev-ruby/rake/ChangeLog
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/rake/ChangeLog?rev=1.156&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/rake/ChangeLog?rev=1.156&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/rake/ChangeLog?r1=1.155&r2=1.156
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-ruby/rake/ChangeLog,v
retrieving revision 1.155
retrieving revision 1.156
diff -u -r1.155 -r1.156
--- ChangeLog 18 May 2014 06:28:35 -0000 1.155
+++ ChangeLog 12 Jun 2014 16:10:58 -0000 1.156
@@ -1,6 +1,9 @@
# ChangeLog for dev-ruby/rake
# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-ruby/rake/ChangeLog,v 1.155 2014/05/18 06:28:35 graaff Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-ruby/rake/ChangeLog,v 1.156 2014/06/12 16:10:58 mrueg Exp $
+
+ 12 Jun 2014; Manuel Rüger <mrueg@gentoo.org> rake-0.9.6.ebuild:
+ Remove ruby18.
*rake-10.3.2 (18 May 2014)
^ permalink raw reply [flat|nested] 12+ messages in thread
end of thread, other threads:[~2014-06-12 16:11 UTC | newest]
Thread overview: 12+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2014-01-26 13:06 [gentoo-commits] gentoo-x86 commit in dev-ruby/rake: rake-0.9.6.ebuild ChangeLog Agostino Sarubbo (ago)
-- strict thread matches above, loose matches on Subject: below --
2014-06-12 16:10 Manuel Rueger (mrueg)
2014-01-26 13:05 Agostino Sarubbo (ago)
2013-12-29 17:21 Markus Meier (maekke)
2013-12-20 15:53 Akinori Hattori (hattya)
2013-12-15 17:26 Agostino Sarubbo (ago)
2013-12-15 17:25 Agostino Sarubbo (ago)
2013-09-05 15:46 Jeroen Roovers (jer)
2013-09-01 14:45 Agostino Sarubbo (ago)
2013-09-01 14:44 Agostino Sarubbo (ago)
2013-07-07 8:07 Hans de Graaff (graaff)
2013-06-23 7:59 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