forked from gentoo/gentoo
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Package-Manager: portage-2.3.0
- Loading branch information
Showing
2 changed files
with
33 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,3 @@ | ||
DIST ruby2ruby-2.3.0.gem 25088 SHA256 19d9648bebce9eb08f279192ba18a03b9776a29fa527f2654191b4a12daad487 SHA512 82630abf24ddf53b5bbd8f9d399f49b043e6f1c418ec83f1ff5011044d3a7b52864a3c7c5f628a9afb5afcf59f7c5126a413e7743ceb1e03bf623d919af1fbda WHIRLPOOL d1b6cca7d61ba149e91c9c407631adf4bc9985e977ca1141c13fdbf169011e5371bf78e8599a63d6111204f7e39786b751f1aa1592b0893c0a647e7914e26027 | ||
DIST ruby2ruby-2.3.1.gem 25088 SHA256 77c36c6ce3f26c1166782c75110d3c3f70b40c85707d9094ab0ff6ef1ca5e011 SHA512 4b6ca39cc469f44697e2924a1074452a9453d7d809d088d89583040e1743dc49c1d5d92b2b74207ee5862565d6293e9563c698ddd53e18157e06a6f7fae6bad0 WHIRLPOOL b73393251d4a9a652f8ce076b4c37f80197edbb6d0f7898c610383e413f055027c4cb9acb244a05fe46184efea59980d5acb15836b4b0fa0c53166346ae88e55 | ||
DIST ruby2ruby-2.3.2.gem 26112 SHA256 17cefcd766567087b0f53f1a7c541f07dd3bd9b708dc9de67b7eaf91d2228a91 SHA512 4cccbc0498ed2af8302860b5547a54b4fada04eff8158ceb9e6a8969f85ddd84dcf315e90b2308b3f5e9e685d6e2105125ca9197dd1cf26cd03179c50e460ee7 WHIRLPOOL 6826f25ebdd31d2963694bcf980b7d38f2690a9fcbdc6e805a6a4f20bed17e9095271f5957d6dbd8d10378bfcdf420bc07c22e0515b94a4e73661d94c710019d |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,32 @@ | ||
# Copyright 1999-2016 Gentoo Foundation | ||
# Distributed under the terms of the GNU General Public License v2 | ||
# $Id$ | ||
|
||
EAPI=5 | ||
|
||
USE_RUBY="ruby20 ruby21 ruby22 ruby23" | ||
|
||
RUBY_FAKEGEM_TASK_DOC="docs" | ||
RUBY_FAKEGEM_DOCDIR="doc" | ||
RUBY_FAKEGEM_EXTRADOC="README.txt History.txt" | ||
|
||
inherit ruby-fakegem | ||
|
||
DESCRIPTION="Generates readable ruby from ParseTree" | ||
HOMEPAGE="https://github.com/seattlerb/ruby2ruby" | ||
|
||
LICENSE="GPL-2" | ||
SLOT="2" | ||
KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~x64-solaris ~x86-solaris" | ||
IUSE="test" | ||
|
||
ruby_add_rdepend " | ||
>=dev-ruby/sexp_processor-4.6.0:4 | ||
>=dev-ruby/ruby_parser-3.1:3 | ||
!<dev-ruby/ruby2ruby-1.3.1-r1" | ||
ruby_add_bdepend "doc? ( dev-ruby/hoe dev-ruby/hoe-seattlerb ) | ||
test? ( >=dev-ruby/minitest-5.3:5 )" | ||
|
||
all_ruby_prepare() { | ||
sed -i -e '/plugin :isolate/ s:^:#:' Rakefile || die | ||
} |