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
32 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 twitter-text-1.14.0.gem 47104 SHA256 8c60d5be2dcfe19bb97d2f2549296cf5d4f52199de85ea7bb66e1196193cd294 SHA512 f2064d0108da5768c2b9f7fde4453d36eccfc38e3717cab03284c3001cd24d5365489ee718a1cd4ead28562f79075d20ccd0073755f245c6c20ca01d7d8b8ce9 WHIRLPOOL 5e69a2c34cd8991759b7bee3f736ef38f944d29845114367bca702f25e8fefc030d72399e33d09c7d4547f36bc0b990131834908123677ae1729d2651a131628 | ||
DIST twitter-text-1.14.1.gem 47616 SHA256 13b2b6f7fcee40a966f72847e48a85aee0eebedb64fbe166d1f9a67a90192b13 SHA512 333494a5354221f4556d3393cfe514664b3d6549743c195f3b5967f0b765c7b7a71c4f18a1460c3a8634a5159c0fb14cb19819376d96ee4c5bbf07645c738c89 WHIRLPOOL bbb4cfdc1983be4b7a25e22d05a5e6140f6307a7009e1d2996d7e701d6244189da74494dc75ad626a466b3eceff94060b18812ea24fda341ec91dbc27b0225d4 | ||
DIST twitter-text-1.14.2.gem 48128 SHA256 d71abba271418cbe79e28905678a6ec8ae72ccad478865f4cb3fc89f51338d52 SHA512 0262d44e1db6c4dd5b8724cbe0b53bbe540700f217b3566d8ab76b86c20c39c7fa64cdcbe4e9c6b7daeb2a1a60d798cffa6a28ab0ade70558fc580e77d557ae0 WHIRLPOOL 10bc8be3a1f1e1285da5a57ef4a3580fedb272cc68637cf02b878e4c369762b0e375ded567ff0fc80cc13f02cf6ff2f144ad7d8bd42ed6736dab0dc106a759ed |
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,31 @@ | ||
# 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_TEST="rspec" | ||
|
||
RUBY_FAKEGEM_RECIPE_DOC="rdoc" | ||
RUBY_FAKEGEM_EXTRADOC="README.md" | ||
|
||
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/multi_json-1.3 | ||
>=dev-ruby/nokogiri-1.5.10 )" | ||
|
||
all_ruby_prepare() { | ||
sed -i -e 's/2.14.0/2.14/' twitter-text.gemspec || die | ||
sed -i -e '/simplecov/,/end/ s:^:#:' spec/spec_helper.rb || die | ||
} |