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.2.20.1
- Loading branch information
Showing
2 changed files
with
30 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 +1,2 @@ | ||
DIST twitter-text-1.12.0.gem 44032 SHA256 1b5c0bd5db4b16e6eda1992385e86c40890496a709f28ead7ede98f9f7ba778a SHA512 85f78eb91ec532cbb8b5133b76405224f5d10993351c61ca95c185c1ee730464fce7ab712a00220ce53c74d4f11940a2695f3153ef24cd9479ba72c92b0b5e27 WHIRLPOOL 313093a5105ae8a632ab2987c7446d1bcede14bfb73655315fdf20ad4cb380b3d6bc2d461e8fd1ad66979bff66c81146398058637bd04de03a532736d8e1904c | ||
DIST twitter-text-1.13.0.gem 44544 SHA256 11c44fabb6f3a3c298f614328ed6ae7f42e14c46d87c01191599b8e2d428205b SHA512 bfd4315e827149a6a7c34ad26fe6026fd17ebca39557edbab0dfe59380f14528f927c7b9332f28e24cf6a12e00b703b9edb94122fae60757f179f1a71a0e2ea7 WHIRLPOOL a981da96b7b4b27d48159e5d62899d753974b0e3fe53b4bfa31929ee170ee70ce60f011141a3234b9657bf9686938e368cfbf7575c74052078ab576ce9566425 |
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,29 @@ | ||
# 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_TEST="rspec" | ||
|
||
RUBY_FAKEGEM_RECIPE_DOC="rdoc" | ||
RUBY_FAKEGEM_EXTRADOC="README.rdoc" | ||
|
||
inherit ruby-fakegem | ||
|
||
DESCRIPTION="Text handling for Twitter" | ||
HOMEPAGE="https://github.com/twitter/twitter-text" | ||
|
||
LICENSE="MIT" | ||
SLOT="0" | ||
KEYWORDS="~amd64" | ||
IUSE="" | ||
|
||
ruby_add_rdepend "=dev-ruby/unf-0.1*" | ||
|
||
ruby_add_bdepend "test? ( >=dev-ruby/nokogiri-1.5.10 )" | ||
|
||
all_ruby_prepare() { | ||
sed -i -e '/simplecov/,/end/ s:^:#:' spec/spec_helper.rb || die | ||
} |