* [gentoo-commits] repo/gentoo:master commit in: dev-ruby/bluecloth/
@ 2015-10-11 10:18 Hans de Graaff
0 siblings, 0 replies; 13+ messages in thread
From: Hans de Graaff @ 2015-10-11 10:18 UTC (permalink / raw
To: gentoo-commits
commit: c23e3f10c56bb7ed14266b181e5224aff84c6ef5
Author: Hans de Graaff <graaff <AT> gentoo <DOT> org>
AuthorDate: Sun Oct 11 10:17:57 2015 +0000
Commit: Hans de Graaff <graaff <AT> gentoo <DOT> org>
CommitDate: Sun Oct 11 10:17:57 2015 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c23e3f10
dev-ruby/bluecloth: add missing test dependency, fixing bug 561862
Add missing test dependency on dev-ruby/rspec:2
Thanks to Toralf Förster for reporting.
Package-Manager: portage-2.2.20.1
dev-ruby/bluecloth/bluecloth-2.2.0-r1.ebuild | 1 +
1 file changed, 1 insertion(+)
diff --git a/dev-ruby/bluecloth/bluecloth-2.2.0-r1.ebuild b/dev-ruby/bluecloth/bluecloth-2.2.0-r1.ebuild
index 5e25756..c9c1391 100644
--- a/dev-ruby/bluecloth/bluecloth-2.2.0-r1.ebuild
+++ b/dev-ruby/bluecloth/bluecloth-2.2.0-r1.ebuild
@@ -27,6 +27,7 @@ ruby_add_bdepend "
dev-ruby/hoe
dev-ruby/rake-compiler
test? (
+ dev-ruby/rspec:2
dev-ruby/diff-lcs
dev-ruby/tidy-ext
)"
^ permalink raw reply related [flat|nested] 13+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-ruby/bluecloth/
@ 2016-03-07 20:21 Hans de Graaff
0 siblings, 0 replies; 13+ messages in thread
From: Hans de Graaff @ 2016-03-07 20:21 UTC (permalink / raw
To: gentoo-commits
commit: 0fcf41e2f1afcc57c110401ae58aa690ab7d1f76
Author: Hans de Graaff <graaff <AT> gentoo <DOT> org>
AuthorDate: Mon Mar 7 20:15:21 2016 +0000
Commit: Hans de Graaff <graaff <AT> gentoo <DOT> org>
CommitDate: Mon Mar 7 20:20:04 2016 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0fcf41e2
dev-ruby/bluecloth: rewrite build system
In particular, avoid rake-compiler dependency since this
leads to difficult-to-resolve circular build issues between
rspec 2 and rspec 3, and there is no real need for rake-compiler
in the first place.
Package-Manager: portage-2.2.26
dev-ruby/bluecloth/bluecloth-2.2.0-r3.ebuild | 58 ++++++++++++++++++++++++++++
1 file changed, 58 insertions(+)
diff --git a/dev-ruby/bluecloth/bluecloth-2.2.0-r3.ebuild b/dev-ruby/bluecloth/bluecloth-2.2.0-r3.ebuild
new file mode 100644
index 0000000..2093761
--- /dev/null
+++ b/dev-ruby/bluecloth/bluecloth-2.2.0-r3.ebuild
@@ -0,0 +1,58 @@
+# Copyright 1999-2016 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=5
+
+USE_RUBY="ruby20 ruby21 ruby22"
+
+RUBY_FAKEGEM_RECIPE_DOC="rdoc"
+RUBY_FAKEGEM_EXTRADOC="History.rdoc README.rdoc"
+
+RUBY_FAKEGEM_RECIPE_TEST="rspec"
+
+inherit multilib ruby-fakegem eutils
+
+DESCRIPTION="A Ruby implementation of Markdown"
+HOMEPAGE="http://www.deveiate.org/projects/BlueCloth"
+
+LICENSE="BSD"
+SLOT="0"
+KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos ~x86-solaris"
+IUSE="test"
+
+DEPEND+=" doc? ( dev-lang/perl )"
+
+ruby_add_bdepend "
+ dev-ruby/hoe
+ test? (
+ dev-ruby/diff-lcs
+ dev-ruby/tidy-ext
+ )"
+
+all_ruby_prepare() {
+ # for Ruby 1.9.2 and 2.2.x compatibility
+ sed -i -e '1i $: << "."' \
+ -e 's/Config/RbConfig/' Rakefile || die
+}
+
+each_ruby_configure() {
+ ${RUBY} -Cext extconf.rb || die
+}
+
+all_ruby_compile() {
+ pod2man --center --release --name bluecloth --utf8 bluecloth.1.pod bluecloth.1 || die
+
+ all_fakegem_compile
+}
+
+each_ruby_compile() {
+ emake -Cext
+ cp ext/bluecloth_ext$(get_modname) lib/ || die
+}
+
+all_ruby_install() {
+ doman man/man1/bluecloth.1
+
+ all_fakegem_install
+}
^ permalink raw reply related [flat|nested] 13+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-ruby/bluecloth/
@ 2016-03-17 0:23 Manuel Rüger
0 siblings, 0 replies; 13+ messages in thread
From: Manuel Rüger @ 2016-03-17 0:23 UTC (permalink / raw
To: gentoo-commits
commit: bdd749aedd72df2b0c878db83c03cd3ec3318126
Author: Manuel Rüger <mrueg <AT> gentoo <DOT> org>
AuthorDate: Thu Mar 17 00:23:24 2016 +0000
Commit: Manuel Rüger <mrueg <AT> gentoo <DOT> org>
CommitDate: Thu Mar 17 00:23:24 2016 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=bdd749ae
dev-ruby/bluecloth: Remove ruby19
Package-Manager: portage-2.2.28
dev-ruby/bluecloth/bluecloth-2.2.0-r1.ebuild | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/dev-ruby/bluecloth/bluecloth-2.2.0-r1.ebuild b/dev-ruby/bluecloth/bluecloth-2.2.0-r1.ebuild
index c9c1391..38f7fb2 100644
--- a/dev-ruby/bluecloth/bluecloth-2.2.0-r1.ebuild
+++ b/dev-ruby/bluecloth/bluecloth-2.2.0-r1.ebuild
@@ -1,9 +1,9 @@
-# Copyright 1999-2014 Gentoo Foundation
+# Copyright 1999-2016 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Id$
EAPI=5
-USE_RUBY="ruby19 ruby20"
+USE_RUBY="ruby20"
RUBY_FAKEGEM_TASK_DOC="docs"
RUBY_FAKEGEM_EXTRADOC="History.rdoc README.rdoc"
^ permalink raw reply related [flat|nested] 13+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-ruby/bluecloth/
@ 2016-03-17 0:23 Manuel Rüger
0 siblings, 0 replies; 13+ messages in thread
From: Manuel Rüger @ 2016-03-17 0:23 UTC (permalink / raw
To: gentoo-commits
commit: 80bc265979b2d49036a54def1b2784257df28b52
Author: Manuel Rüger <mrueg <AT> gentoo <DOT> org>
AuthorDate: Thu Mar 17 00:22:45 2016 +0000
Commit: Manuel Rüger <mrueg <AT> gentoo <DOT> org>
CommitDate: Thu Mar 17 00:22:45 2016 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=80bc2659
dev-ruby/bluecloth: Remove old
Package-Manager: portage-2.2.28
dev-ruby/bluecloth/bluecloth-2.2.0-r2.ebuild | 54 ----------------------------
1 file changed, 54 deletions(-)
diff --git a/dev-ruby/bluecloth/bluecloth-2.2.0-r2.ebuild b/dev-ruby/bluecloth/bluecloth-2.2.0-r2.ebuild
deleted file mode 100644
index 0d4cb70..0000000
--- a/dev-ruby/bluecloth/bluecloth-2.2.0-r2.ebuild
+++ /dev/null
@@ -1,54 +0,0 @@
-# Copyright 1999-2015 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-EAPI=5
-
-USE_RUBY="ruby19 ruby20 ruby21 ruby22"
-
-RUBY_FAKEGEM_RECIPE_DOC="rdoc"
-RUBY_FAKEGEM_EXTRADOC="History.rdoc README.rdoc"
-
-RUBY_FAKEGEM_RECIPE_TEST="rspec"
-
-inherit ruby-fakegem eutils
-
-DESCRIPTION="A Ruby implementation of Markdown"
-HOMEPAGE="http://www.deveiate.org/projects/BlueCloth"
-
-LICENSE="BSD"
-SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos ~x86-solaris"
-IUSE="test"
-
-DEPEND+=" doc? ( dev-lang/perl )"
-
-ruby_add_bdepend "
- dev-ruby/rake-compiler
- dev-ruby/hoe
- test? (
- dev-ruby/diff-lcs
- dev-ruby/tidy-ext
- )"
-
-all_ruby_prepare() {
- # for Ruby 1.9.2 and 2.2.x compatibility
- sed -i -e '1i $: << "."' \
- -e 's/Config/RbConfig/' Rakefile || die
-}
-
-all_ruby_compile() {
- rake man/man1/bluecloth.1 || die
-
- all_fakegem_compile
-}
-
-each_ruby_compile() {
- ${RUBY} -S rake compile || die "extension build failed"
-}
-
-all_ruby_install() {
- doman man/man1/bluecloth.1
-
- all_fakegem_install
-}
^ permalink raw reply related [flat|nested] 13+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-ruby/bluecloth/
@ 2016-05-13 5:18 Hans de Graaff
0 siblings, 0 replies; 13+ messages in thread
From: Hans de Graaff @ 2016-05-13 5:18 UTC (permalink / raw
To: gentoo-commits
commit: 1f6f689065480480af4b27b752a9f965b85fcc8f
Author: Hans de Graaff <graaff <AT> gentoo <DOT> org>
AuthorDate: Fri May 13 05:09:40 2016 +0000
Commit: Hans de Graaff <graaff <AT> gentoo <DOT> org>
CommitDate: Fri May 13 05:18:26 2016 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1f6f6890
dev-ruby/bluecloth: add ruby23
Package-Manager: portage-2.2.28
dev-ruby/bluecloth/bluecloth-2.2.0-r3.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/dev-ruby/bluecloth/bluecloth-2.2.0-r3.ebuild b/dev-ruby/bluecloth/bluecloth-2.2.0-r3.ebuild
index 2093761..e7a2443 100644
--- a/dev-ruby/bluecloth/bluecloth-2.2.0-r3.ebuild
+++ b/dev-ruby/bluecloth/bluecloth-2.2.0-r3.ebuild
@@ -4,7 +4,7 @@
EAPI=5
-USE_RUBY="ruby20 ruby21 ruby22"
+USE_RUBY="ruby20 ruby21 ruby22 ruby23"
RUBY_FAKEGEM_RECIPE_DOC="rdoc"
RUBY_FAKEGEM_EXTRADOC="History.rdoc README.rdoc"
^ permalink raw reply related [flat|nested] 13+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-ruby/bluecloth/
@ 2016-07-18 21:13 Hans de Graaff
0 siblings, 0 replies; 13+ messages in thread
From: Hans de Graaff @ 2016-07-18 21:13 UTC (permalink / raw
To: gentoo-commits
commit: 3593bc35d384b32084f3e9176f88bfd0896cc5e0
Author: Hans de Graaff <graaff <AT> gentoo <DOT> org>
AuthorDate: Mon Jul 18 21:02:17 2016 +0000
Commit: Hans de Graaff <graaff <AT> gentoo <DOT> org>
CommitDate: Mon Jul 18 21:13:09 2016 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3593bc35
dev-ruby/bluecloth: mark ruby21 revision stable
Package-Manager: portage-2.2.28
dev-ruby/bluecloth/bluecloth-2.2.0-r3.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/dev-ruby/bluecloth/bluecloth-2.2.0-r3.ebuild b/dev-ruby/bluecloth/bluecloth-2.2.0-r3.ebuild
index e7a2443..30fd403 100644
--- a/dev-ruby/bluecloth/bluecloth-2.2.0-r3.ebuild
+++ b/dev-ruby/bluecloth/bluecloth-2.2.0-r3.ebuild
@@ -18,7 +18,7 @@ HOMEPAGE="http://www.deveiate.org/projects/BlueCloth"
LICENSE="BSD"
SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos ~x86-solaris"
+KEYWORDS="alpha amd64 arm hppa ia64 ppc ppc64 sparc x86 ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos ~x86-solaris"
IUSE="test"
DEPEND+=" doc? ( dev-lang/perl )"
^ permalink raw reply related [flat|nested] 13+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-ruby/bluecloth/
@ 2016-07-22 19:04 Hans de Graaff
0 siblings, 0 replies; 13+ messages in thread
From: Hans de Graaff @ 2016-07-22 19:04 UTC (permalink / raw
To: gentoo-commits
commit: e6b9b17f3f8e04f46bb42d9a79cbe42e471b680e
Author: Hans de Graaff <graaff <AT> gentoo <DOT> org>
AuthorDate: Fri Jul 22 17:57:11 2016 +0000
Commit: Hans de Graaff <graaff <AT> gentoo <DOT> org>
CommitDate: Fri Jul 22 19:03:47 2016 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e6b9b17f
dev-ruby/bluecloth: cleanup
Package-Manager: portage-2.2.28
dev-ruby/bluecloth/bluecloth-2.2.0-r1.ebuild | 54 ----------------------------
1 file changed, 54 deletions(-)
diff --git a/dev-ruby/bluecloth/bluecloth-2.2.0-r1.ebuild b/dev-ruby/bluecloth/bluecloth-2.2.0-r1.ebuild
deleted file mode 100644
index 38f7fb2..0000000
--- a/dev-ruby/bluecloth/bluecloth-2.2.0-r1.ebuild
+++ /dev/null
@@ -1,54 +0,0 @@
-# Copyright 1999-2016 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-EAPI=5
-USE_RUBY="ruby20"
-
-RUBY_FAKEGEM_TASK_DOC="docs"
-RUBY_FAKEGEM_EXTRADOC="History.rdoc README.rdoc"
-RUBY_FAKEGEM_DOCDIR="doc"
-
-RUBY_FAKEGEM_TASK_TEST="spec"
-
-inherit ruby-fakegem eutils
-
-DESCRIPTION="A Ruby implementation of Markdown"
-HOMEPAGE="http://www.deveiate.org/projects/BlueCloth"
-
-LICENSE="BSD"
-SLOT="0"
-KEYWORDS="alpha amd64 arm hppa ia64 ppc ppc64 sparc x86 ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos ~x86-solaris"
-IUSE="test"
-
-DEPEND+=" doc? ( dev-lang/perl )"
-
-ruby_add_bdepend "
- dev-ruby/hoe
- dev-ruby/rake-compiler
- test? (
- dev-ruby/rspec:2
- dev-ruby/diff-lcs
- dev-ruby/tidy-ext
- )"
-
-all_ruby_prepare() {
- # for Ruby 1.9.2 compatibility
- sed -i -e '1i $: << "."' Rakefile || die
-}
-
-all_ruby_compile() {
- rake man/man1/bluecloth.1 || die
-
- all_fakegem_compile
-}
-
-each_ruby_compile() {
- ${RUBY} -S rake compile || die "extension build failed"
-}
-
-all_ruby_install() {
- doman man/man1/bluecloth.1
-
- all_fakegem_install
-}
^ permalink raw reply related [flat|nested] 13+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-ruby/bluecloth/
@ 2017-06-23 3:38 Hans de Graaff
0 siblings, 0 replies; 13+ messages in thread
From: Hans de Graaff @ 2017-06-23 3:38 UTC (permalink / raw
To: gentoo-commits
commit: 817aebfd63328672e93d8fd1aefca5327128b066
Author: Hans de Graaff <graaff <AT> gentoo <DOT> org>
AuthorDate: Fri Jun 23 03:20:29 2017 +0000
Commit: Hans de Graaff <graaff <AT> gentoo <DOT> org>
CommitDate: Fri Jun 23 03:20:29 2017 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=817aebfd
dev-ruby/bluecloth: add ruby24
Package-Manager: Portage-2.3.6, Repoman-2.3.1
dev-ruby/bluecloth/bluecloth-2.2.0-r3.ebuild | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/dev-ruby/bluecloth/bluecloth-2.2.0-r3.ebuild b/dev-ruby/bluecloth/bluecloth-2.2.0-r3.ebuild
index 167abde83bb..aa4e333b4a2 100644
--- a/dev-ruby/bluecloth/bluecloth-2.2.0-r3.ebuild
+++ b/dev-ruby/bluecloth/bluecloth-2.2.0-r3.ebuild
@@ -1,9 +1,9 @@
-# Copyright 1999-2016 Gentoo Foundation
+# Copyright 1999-2017 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
EAPI=5
-USE_RUBY="ruby20 ruby21 ruby22 ruby23"
+USE_RUBY="ruby21 ruby22 ruby23 ruby24"
RUBY_FAKEGEM_RECIPE_DOC="rdoc"
RUBY_FAKEGEM_EXTRADOC="History.rdoc README.rdoc"
^ permalink raw reply related [flat|nested] 13+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-ruby/bluecloth/
@ 2017-06-30 11:17 Alexis Ballier
0 siblings, 0 replies; 13+ messages in thread
From: Alexis Ballier @ 2017-06-30 11:17 UTC (permalink / raw
To: gentoo-commits
commit: 223ae9b64e89b08c49996b61f54bae36dfbcbaef
Author: Alexis Ballier <aballier <AT> gentoo <DOT> org>
AuthorDate: Fri Jun 30 08:45:54 2017 +0000
Commit: Alexis Ballier <aballier <AT> gentoo <DOT> org>
CommitDate: Fri Jun 30 11:16:03 2017 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=223ae9b6
dev-ruby/bluecloth: keyword ~arm64
Package-Manager: Portage-2.3.6, Repoman-2.3.2
dev-ruby/bluecloth/bluecloth-2.2.0-r3.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/dev-ruby/bluecloth/bluecloth-2.2.0-r3.ebuild b/dev-ruby/bluecloth/bluecloth-2.2.0-r3.ebuild
index aa4e333b4a2..32e49f21ca1 100644
--- a/dev-ruby/bluecloth/bluecloth-2.2.0-r3.ebuild
+++ b/dev-ruby/bluecloth/bluecloth-2.2.0-r3.ebuild
@@ -17,7 +17,7 @@ HOMEPAGE="http://www.deveiate.org/projects/BlueCloth"
LICENSE="BSD"
SLOT="0"
-KEYWORDS="alpha amd64 arm hppa ia64 ppc ppc64 sparc x86 ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos ~x86-solaris"
+KEYWORDS="alpha amd64 arm ~arm64 hppa ia64 ppc ppc64 sparc x86 ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos ~x86-solaris"
IUSE="test"
DEPEND+=" doc? ( dev-lang/perl )"
^ permalink raw reply related [flat|nested] 13+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-ruby/bluecloth/
@ 2018-01-21 6:49 Hans de Graaff
0 siblings, 0 replies; 13+ messages in thread
From: Hans de Graaff @ 2018-01-21 6:49 UTC (permalink / raw
To: gentoo-commits
commit: 1e9c839b70cfed99ad9af8a107e411eea4ecab30
Author: Hans de Graaff <graaff <AT> gentoo <DOT> org>
AuthorDate: Sat Jan 20 07:17:15 2018 +0000
Commit: Hans de Graaff <graaff <AT> gentoo <DOT> org>
CommitDate: Sun Jan 21 06:47:17 2018 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1e9c839b
dev-ruby/bluecloth: drop to ~hppa, bug 634508
Package-Manager: Portage-2.3.19, Repoman-2.3.6
dev-ruby/bluecloth/bluecloth-2.2.0-r3.ebuild | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/dev-ruby/bluecloth/bluecloth-2.2.0-r3.ebuild b/dev-ruby/bluecloth/bluecloth-2.2.0-r3.ebuild
index ab8bdd46a33..bc1fecaad38 100644
--- a/dev-ruby/bluecloth/bluecloth-2.2.0-r3.ebuild
+++ b/dev-ruby/bluecloth/bluecloth-2.2.0-r3.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2017 Gentoo Foundation
+# Copyright 1999-2018 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
EAPI=5
@@ -17,7 +17,7 @@ HOMEPAGE="http://www.deveiate.org/projects/BlueCloth"
LICENSE="BSD"
SLOT="0"
-KEYWORDS="alpha amd64 arm ~arm64 hppa ia64 ppc ppc64 ~sparc x86 ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos ~x86-solaris"
+KEYWORDS="alpha amd64 arm ~arm64 ~hppa ia64 ppc ppc64 ~sparc x86 ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos ~x86-solaris"
IUSE="test"
DEPEND+=" doc? ( dev-lang/perl )"
^ permalink raw reply related [flat|nested] 13+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-ruby/bluecloth/
@ 2018-04-10 20:21 Hans de Graaff
0 siblings, 0 replies; 13+ messages in thread
From: Hans de Graaff @ 2018-04-10 20:21 UTC (permalink / raw
To: gentoo-commits
commit: 5960880f5b03cd5128cbb9ae66cf981d3329a6a8
Author: Hans de Graaff <graaff <AT> gentoo <DOT> org>
AuthorDate: Tue Apr 10 20:20:22 2018 +0000
Commit: Hans de Graaff <graaff <AT> gentoo <DOT> org>
CommitDate: Tue Apr 10 20:21:03 2018 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5960880f
dev-ruby/bluecloth: add ruby25
Package-Manager: Portage-2.3.24, Repoman-2.3.6
dev-ruby/bluecloth/bluecloth-2.2.0-r3.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/dev-ruby/bluecloth/bluecloth-2.2.0-r3.ebuild b/dev-ruby/bluecloth/bluecloth-2.2.0-r3.ebuild
index bc1fecaad38..210f75c76e4 100644
--- a/dev-ruby/bluecloth/bluecloth-2.2.0-r3.ebuild
+++ b/dev-ruby/bluecloth/bluecloth-2.2.0-r3.ebuild
@@ -3,7 +3,7 @@
EAPI=5
-USE_RUBY="ruby21 ruby22 ruby23 ruby24"
+USE_RUBY="ruby22 ruby23 ruby24 ruby25"
RUBY_FAKEGEM_RECIPE_DOC="rdoc"
RUBY_FAKEGEM_EXTRADOC="History.rdoc README.rdoc"
^ permalink raw reply related [flat|nested] 13+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-ruby/bluecloth/
@ 2019-01-16 7:24 Hans de Graaff
0 siblings, 0 replies; 13+ messages in thread
From: Hans de Graaff @ 2019-01-16 7:24 UTC (permalink / raw
To: gentoo-commits
commit: 9a5f7d0e93b60cc50a55253b9fd426430c388064
Author: Hans de Graaff <graaff <AT> gentoo <DOT> org>
AuthorDate: Wed Jan 16 07:14:34 2019 +0000
Commit: Hans de Graaff <graaff <AT> gentoo <DOT> org>
CommitDate: Wed Jan 16 07:24:34 2019 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9a5f7d0e
dev-ruby/bluecloth: remove unused dev-ruby/hoe dep
Signed-off-by: Hans de Graaff <graaff <AT> gentoo.org>
Package-Manager: Portage-2.3.51, Repoman-2.3.11
dev-ruby/bluecloth/bluecloth-2.2.0-r3.ebuild | 3 +--
1 file changed, 1 insertion(+), 2 deletions(-)
diff --git a/dev-ruby/bluecloth/bluecloth-2.2.0-r3.ebuild b/dev-ruby/bluecloth/bluecloth-2.2.0-r3.ebuild
index 210f75c76e4..8d0b57d3d8d 100644
--- a/dev-ruby/bluecloth/bluecloth-2.2.0-r3.ebuild
+++ b/dev-ruby/bluecloth/bluecloth-2.2.0-r3.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2018 Gentoo Foundation
+# Copyright 1999-2019 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=5
@@ -23,7 +23,6 @@ IUSE="test"
DEPEND+=" doc? ( dev-lang/perl )"
ruby_add_bdepend "
- dev-ruby/hoe
test? (
dev-ruby/diff-lcs
dev-ruby/tidy-ext
^ permalink raw reply related [flat|nested] 13+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-ruby/bluecloth/
@ 2019-05-15 5:33 Hans de Graaff
0 siblings, 0 replies; 13+ messages in thread
From: Hans de Graaff @ 2019-05-15 5:33 UTC (permalink / raw
To: gentoo-commits
commit: dfd89ae77c6b790b0895dcf3b342684bca981b0c
Author: Hans de Graaff <graaff <AT> gentoo <DOT> org>
AuthorDate: Wed May 15 05:19:25 2019 +0000
Commit: Hans de Graaff <graaff <AT> gentoo <DOT> org>
CommitDate: Wed May 15 05:19:25 2019 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=dfd89ae7
dev-ruby/bluecloth: add ruby26
Signed-off-by: Hans de Graaff <graaff <AT> gentoo.org>
Package-Manager: Portage-2.3.62, Repoman-2.3.11
dev-ruby/bluecloth/bluecloth-2.2.0-r3.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/dev-ruby/bluecloth/bluecloth-2.2.0-r3.ebuild b/dev-ruby/bluecloth/bluecloth-2.2.0-r3.ebuild
index 8d0b57d3d8d..40e0c450abc 100644
--- a/dev-ruby/bluecloth/bluecloth-2.2.0-r3.ebuild
+++ b/dev-ruby/bluecloth/bluecloth-2.2.0-r3.ebuild
@@ -3,7 +3,7 @@
EAPI=5
-USE_RUBY="ruby22 ruby23 ruby24 ruby25"
+USE_RUBY="ruby24 ruby25 ruby26"
RUBY_FAKEGEM_RECIPE_DOC="rdoc"
RUBY_FAKEGEM_EXTRADOC="History.rdoc README.rdoc"
^ permalink raw reply related [flat|nested] 13+ messages in thread
end of thread, other threads:[~2019-05-15 5:33 UTC | newest]
Thread overview: 13+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2016-05-13 5:18 [gentoo-commits] repo/gentoo:master commit in: dev-ruby/bluecloth/ Hans de Graaff
-- strict thread matches above, loose matches on Subject: below --
2019-05-15 5:33 Hans de Graaff
2019-01-16 7:24 Hans de Graaff
2018-04-10 20:21 Hans de Graaff
2018-01-21 6:49 Hans de Graaff
2017-06-30 11:17 Alexis Ballier
2017-06-23 3:38 Hans de Graaff
2016-07-22 19:04 Hans de Graaff
2016-07-18 21:13 Hans de Graaff
2016-03-17 0:23 Manuel Rüger
2016-03-17 0:23 Manuel Rüger
2016-03-07 20:21 Hans de Graaff
2015-10-11 10:18 Hans de Graaff
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox