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
28 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 sawyer-0.7.0.gem 15872 SHA256 72e855027c812f2cad7f4fa4746cab07727dde91d75516d353c155002846c4b2 SHA512 8f63adfc9c544f88280a18e7bab25c193d6e0aab5973f07774b838c40ce7f7da6f148d6122ccd9e3824eb292389d994c84e2460460f7b6f9f340b27f331d59bd WHIRLPOOL 4e6822ed65c38051c765d6bafe416bb033fd35e2555baff2844be0cc317aea1dd0b50870e6a6c2c5ade8f6a5ab1fb6c16c2330b8e509f82a345d140bb68e4bd3 | ||
DIST sawyer-0.8.0.gem 15872 SHA256 e62d31026094e9f926394e6a1c67edfc4ecc2dbf5946eaa4c62f5c1b895018f4 SHA512 3c814e8ba9136488eb33cb76642b559d4fa6bf960a20160d035b7fb1830690e1317449eb14371d285e808483efe18697129fa83be41a8cd89917bc6ec65b263b WHIRLPOOL 6a83bcef3d6b9ec5540a6c3c6e3cd6236de29d6aec13e18bc77d5a9b4538e6748a17ba57a7b86ec45451adb4fb2cb1f3a7977dfebdd745ee5c05bf56e180b43f |
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,27 @@ | ||
# 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="rdoc" | ||
RUBY_FAKEGEM_EXTRADOC="README.md" | ||
|
||
inherit multilib ruby-fakegem | ||
|
||
DESCRIPTION="Secret User Agent of HTTP" | ||
HOMEPAGE="https://github.com/lostisland/sawyer" | ||
|
||
LICENSE="MIT" | ||
SLOT="0" | ||
KEYWORDS="~amd64 ~arm" | ||
IUSE="" | ||
|
||
ruby_add_rdepend "<dev-ruby/faraday-0.10 | ||
>=dev-ruby/addressable-2.3.5 <dev-ruby/addressable-2.6" | ||
|
||
all_ruby_prepare() { | ||
# Avoid tests that require network acces | ||
sed -i -e '/test_blank_response_doesnt_raise/,/^ end/ s:^:#:' test/agent_test.rb || die | ||
} |