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
34 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,3 +1,4 @@ | ||
DIST parser-2.3.1.2.gem 541184 SHA256 66c6681c1703c435b93c8173443f5aaaf8c000c1052f7897b19d23f107d2ac3b SHA512 8c7e5635153255e283b8bb14765ce1b869eb3cfa93863ac30668e17257b49af929e0b1febc1b888acab093dab51d434758b7fb147247d99d9e5aa96fcd7d4cc1 WHIRLPOOL b3cd038e4c712a810cf234d85174e348dc759ba6ada4fe4cb6c99b37ce73fde7819b6f4d85f34b9cfe5835cb8d3f6ca06e8cf2600eea0f1c58ae9aa8f1f658d9 | ||
DIST parser-2.3.1.3.gem 542720 SHA256 6fe26adc2f815c4d63e549314c7d4d7d818ef3fb412cc3ada3ee410652a96f91 SHA512 ebeff655c8cb27195d54b32d09d36605a30da51dd4d36f64fe23f5f3d46870c2399cd054765f016122326d4cad634cd8189168e3a300b313ce43c12d3141404a WHIRLPOOL a8904146d1af9febf8e8680ad9b555dfd4949b4795711a101163b8d189baa54242b8be23f0a9f2e28d010207ce72c57fb14b3a5c0a694a0c7dc27e55f09ee835 | ||
DIST parser-2.3.1.4.gem 542720 SHA256 a151d8a39ab06e05365c940209f745728f5d0b4388c669eb3cde04ef18ce2251 SHA512 841fc0237c5481568a8a2aec1bf3f8bfeddb19fe06be1f915d273fac65ab923f2853e64ab0084fe74f9c362b19f1ebe1b83d91dce9a0bec5f78496805e094275 WHIRLPOOL 5f101f89ff3efdb209688d546e4fd24940ad3abc51adb305ea4b22ca5d14cd7d88ade7cebed9aaa052276cf2aeeafb9d6a820f39bdcd0789f26b5e68457a9a92 | ||
DIST parser-2.3.2.0.gem 543744 SHA256 379f6588063ba6baed2fac731e2cca096ecfbfdcd2890f747994240fe8ebeb7d SHA512 465119ec69e621cb59fd74685a825000725b537a3b0b178cb5dd48f35589cdb86a79ee0b7f86517c25d9742e9fd1dd414657623a0e0f46e8b69253eb7e10d081 WHIRLPOOL e4b534b9b775be2acde1a90bfa17f4373b1f9bd5c481de77ea89f5f23fe458dd8af59e908aee7d7a18b338031ed556299b228eeea4eeb30cd13e497df438b999 |
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,33 @@ | ||
# 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_RECIPE_DOC="yard" | ||
RUBY_FAKEGEM_TASK_TEST="test" | ||
RUBY_FAKEGEM_EXTRADOC="CHANGELOG.md README.md" | ||
|
||
RUBY_FAKEGEM_VERSION="${PV/_pre/.pre.}" | ||
|
||
inherit ruby-fakegem | ||
|
||
DESCRIPTION="A production-ready Ruby parser written in pure Ruby" | ||
HOMEPAGE="https://github.com/whitequark/parser" | ||
|
||
LICENSE="MIT" | ||
SLOT="0" | ||
KEYWORDS="~amd64" | ||
IUSE="" | ||
|
||
ruby_add_bdepend "test? ( | ||
dev-ruby/minitest:5 | ||
dev-ruby/racc | ||
dev-ruby/cliver )" | ||
ruby_add_rdepend ">=dev-ruby/ast-2.2:0" | ||
|
||
all_ruby_prepare() { | ||
sed -i -e "/[Bb]undler/d" Rakefile || die | ||
sed -i -e "/simplecov/,+35d" test/helper.rb || die | ||
} |