mirror of
https://github.com/gentoo-mirror/gentoo.git
synced 2026-08-06 00:48:18 -07:00
dev-ruby/faraday_middleware: add 1.1.0
Package-Manager: Portage-3.0.20, Repoman-3.0.3 Signed-off-by: Hans de Graaff <graaff@gentoo.org>
This commit is contained in:
@@ -1,2 +1,3 @@
|
||||
DIST faraday_middleware-0.14.0.tar.gz 26313 BLAKE2B 2d925f0bd9e4a10505bcdd3b483ac7b8ed2c42dc1187e04069505216dc739af3f10f5c7f2252e3f474e5ddaf972a7b8fe009be9957e66ab625fe49c364a0d217 SHA512 d8e86da166022c04c12acc37981de446ba30050330dc0320eec0414157bdd6c8e92ff49ce92b390a2f5d457c396144dbde698d61993302c0ac416559e7078a8d
|
||||
DIST faraday_middleware-1.0.0.tar.gz 28279 BLAKE2B d881f59e106a695e2d41936d552fe6cb16465964fcb2107806123ea1b34ee6db8e82bb1e6fe3a0135af04da70b56a3e8c933e44591b3f75901642a1fe7a3ea1a SHA512 478dd04840c27120c162e5d9c764a210d4cc55ac54f2d44935942ab5195ee5a0f198a4cc0c98805029f3eab4596cc3963a763cda1fcc1ce6daf1811186e0b5a7
|
||||
DIST faraday_middleware-1.1.0.tar.gz 28104 BLAKE2B be490abc57a11c64331c45f1529e55b38df699fe20e81f3783ca92ba7c5c573c1ba2494086f40bdcc7080581ffb2df89093bbabadf8c46721dcca2cb6a0310c1 SHA512 e9c3ada418e47c397272b52706bbcbfa1c98b7b467c148c0094b1dfe47d28fc57e397461e6e7446c5bb8d71ed968e74e1b7e67e793e30d3f47e9fb1aae549912
|
||||
|
||||
64
dev-ruby/faraday_middleware/faraday_middleware-1.1.0.ebuild
Normal file
64
dev-ruby/faraday_middleware/faraday_middleware-1.1.0.ebuild
Normal file
@@ -0,0 +1,64 @@
|
||||
# Copyright 1999-2021 Gentoo Authors
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
|
||||
EAPI=8
|
||||
|
||||
USE_RUBY="ruby26 ruby27"
|
||||
|
||||
RUBY_FAKEGEM_RECIPE_TEST="rspec3"
|
||||
|
||||
RUBY_FAKEGEM_EXTRADOC="README.md"
|
||||
|
||||
RUBY_FAKEGEM_GEMSPEC="${PN}.gemspec"
|
||||
|
||||
inherit ruby-fakegem
|
||||
|
||||
DESCRIPTION="Various middleware for Faraday"
|
||||
HOMEPAGE="https://github.com/lostisland/faraday_middleware"
|
||||
SRC_URI="https://github.com/lostisland/faraday_middleware/archive/v${PV}.tar.gz -> ${P}.tar.gz"
|
||||
|
||||
LICENSE="MIT"
|
||||
SLOT="$(ver_cut 1)"
|
||||
KEYWORDS="~amd64"
|
||||
IUSE="+parsexml +oauth +mashify +rashify"
|
||||
|
||||
ruby_add_rdepend "
|
||||
dev-ruby/faraday:1
|
||||
parsexml? ( >=dev-ruby/multi_xml-0.5.3 )
|
||||
oauth? ( >=dev-ruby/simple_oauth-0.1 )
|
||||
mashify? ( >=dev-ruby/hashie-1.2:* )
|
||||
rashify? ( >=dev-ruby/rash_alt-0.4.3 )"
|
||||
|
||||
# Bundler must be used because the optional dependencies have different
|
||||
# version requirements that must be resolved.
|
||||
ruby_add_bdepend "test? (
|
||||
>=dev-ruby/brotli-0.1.8
|
||||
dev-ruby/bundler
|
||||
dev-ruby/addressable
|
||||
>=dev-ruby/rake-12.3.3
|
||||
dev-ruby/webmock:3
|
||||
dev-ruby/json
|
||||
>=dev-ruby/multi_xml-0.5.3
|
||||
>=dev-ruby/rack-cache-1.1
|
||||
>=dev-ruby/simple_oauth-0.1
|
||||
>=dev-ruby/hashie-1.2
|
||||
>=dev-ruby/rash_alt-0.4.3 )"
|
||||
|
||||
all_ruby_prepare() {
|
||||
sed -i -e '/\(cane\|parallel\|rubocop\|simplecov\)/ s:^:#:' \
|
||||
-e '/rspec/ s/>=/~>/' \
|
||||
-e "/addressable/ s/, '< 2.4'//" \
|
||||
-e "/rack/ s/< 2/< 2.1/" \
|
||||
-e "/rack-cache/ s/, '< 1.3'//" \
|
||||
-e "/simple_oauth/ s/, '< 0.3'//" \
|
||||
-e "/webmock/ s/2.3/3.0/" Gemfile || die
|
||||
|
||||
# Avoid unneeded dependency on git
|
||||
sed -i -e '/git ls-files/d' ${RUBY_FAKEGEM_GEMSPEC} || die
|
||||
|
||||
sed -i -e '1irequire "fileutils"' spec/spec_helper.rb || die
|
||||
}
|
||||
|
||||
each_ruby_test() {
|
||||
${RUBY} -S bundle exec rspec-3 spec || die
|
||||
}
|
||||
Reference in New Issue
Block a user