public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
From: "Hans de Graaff" <graaff@gentoo.org>
To: gentoo-commits@lists.gentoo.org
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-ruby/faraday_middleware/
Date: Fri,  7 Apr 2017 05:45:06 +0000 (UTC)	[thread overview]
Message-ID: <1491543875.d3aeccee364f8dd3d818d10c7655a6613e3bd3a5.graaff@gentoo> (raw)

commit:     d3aeccee364f8dd3d818d10c7655a6613e3bd3a5
Author:     Hans de Graaff <graaff <AT> gentoo <DOT> org>
AuthorDate: Fri Apr  7 05:44:35 2017 +0000
Commit:     Hans de Graaff <graaff <AT> gentoo <DOT> org>
CommitDate: Fri Apr  7 05:44:35 2017 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d3aeccee

dev-ruby/faraday_middleware: add 0.11.0

Package-Manager: Portage-2.3.3, Repoman-2.3.1

 dev-ruby/faraday_middleware/Manifest               |  1 +
 .../faraday_middleware-0.11.0.ebuild               | 57 ++++++++++++++++++++++
 2 files changed, 58 insertions(+)

diff --git a/dev-ruby/faraday_middleware/Manifest b/dev-ruby/faraday_middleware/Manifest
index e83ebc76fde..ffed9582081 100644
--- a/dev-ruby/faraday_middleware/Manifest
+++ b/dev-ruby/faraday_middleware/Manifest
@@ -1,2 +1,3 @@
 DIST faraday_middleware-0.10.0.tar.gz 22646 SHA256 210e69fc76e2f5c2b76771452e1b859129869961749262e16bee7b50ff98ddc3 SHA512 f516f040a7be7b14635e8685d6d63647fd49ef595f31c655b6cd8e6b9443a80e1d4c68a516cd4088c129a73e411748d15d97b24cbcf321fd15953292ca3c7964 WHIRLPOOL 5c1b3d64358a71b35bd7b721ffff1e76da248e59b3eff6404ef0d46c8c149d1c5045422b05a10bef5205d2bf65c19edff6ad7f96c7ff863ee4a3bd05def2035b
+DIST faraday_middleware-0.11.0.tar.gz 24345 SHA256 254413e5e63b8b5879a75090fd796181fb54fba7536a56e4bcc2bc2e0fe4c645 SHA512 555407c2daa220fe050a33a6572626bdd47b800f75a87cc0b4da7a311aa3a89c24873434fdb8c14ae92e34c253179697471c25a42d18034b8a1e1e8c332f0e13 WHIRLPOOL 00ce78b1b6f9b7ff093da0e13f7f7619a53e627191ef977f2894e7dc3827bb8321def94184d588b0124369a55f5a50edabc08481d746ee35631e96a0947568da
 DIST faraday_middleware-0.9.2.tar.gz 21926 SHA256 014cfce128eb50a696168eb012e830c349c52c9e6ae25a5bbaea30f2c59de17d SHA512 74d0a63eac16f119ca2c2c6da16fe3b7a1c9e6949044ec312ed5828544bb83e3bdfd65a1991cfb1fdeb29543f1ee978781bed76299361683b69ed362feb4f18d WHIRLPOOL 3c4ebb2c690fb9624d7f908cc2b31e87264b7746d48873494e23de642067b2149e5fd115e27d00c332d652ad7f2321396a52ee8d09242169c952863859c43bad

diff --git a/dev-ruby/faraday_middleware/faraday_middleware-0.11.0.ebuild b/dev-ruby/faraday_middleware/faraday_middleware-0.11.0.ebuild
new file mode 100644
index 00000000000..b5796f7721b
--- /dev/null
+++ b/dev-ruby/faraday_middleware/faraday_middleware-0.11.0.ebuild
@@ -0,0 +1,57 @@
+# Copyright 1999-2017 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=5
+
+USE_RUBY="ruby21 ruby22 ruby23"
+
+RUBY_FAKEGEM_RECIPE_TEST="rspec3"
+
+RUBY_FAKEGEM_RECIPE_DOC="rdoc"
+RUBY_FAKEGEM_EXTRADOC="CHANGELOG.md README.md"
+
+RUBY_FAKEGEM_GEMSPEC="${PN}.gemspec"
+
+inherit ruby-fakegem eutils
+
+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="0"
+KEYWORDS="~amd64"
+IUSE="+parsexml +oauth +mashify +rashify"
+
+ruby_add_rdepend "
+	>=dev-ruby/faraday-0.7.4 <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-0.3 )"
+
+# Bundler must be used because the optional dependencies have different
+# version requirements that must be resolved.
+ruby_add_bdepend "test? (
+	dev-ruby/bundler
+	dev-ruby/addressable
+	dev-ruby/rake
+	dev-ruby/webmock:0
+	>=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-0.3 )"
+
+all_ruby_prepare() {
+	sed -i -e '/\(cane\|parallel\|simplecov\)/ s:^:#:' \
+		-e '/rspec/ s/>=/~>/' \
+		-e "/addressable/ s/, '< 2.4'//" \
+		-e "/rake/ s/, '< 11'//" \
+		-e "/rack-cache/ s/, '< 1.3'//" \
+		-e "/simple_oauth/ s/, '< 0.3'//" Gemfile || die
+}
+
+each_ruby_test() {
+	${RUBY} -S bundle exec rspec-3 spec || die
+}


             reply	other threads:[~2017-04-07  5:45 UTC|newest]

Thread overview: 35+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2017-04-07  5:45 Hans de Graaff [this message]
  -- strict thread matches above, loose matches on Subject: below --
2024-03-30  8:49 [gentoo-commits] repo/gentoo:master commit in: dev-ruby/faraday_middleware/ Hans de Graaff
2024-02-18  6:59 Hans de Graaff
2023-08-19  5:14 Hans de Graaff
2023-03-22 12:04 Hans de Graaff
2022-12-16 21:02 Arthur Zamarin
2022-12-16  9:12 Hans de Graaff
2022-12-07  6:45 Hans de Graaff
2022-08-27  7:57 Sam James
2022-08-02  5:35 Hans de Graaff
2022-05-08  7:28 Hans de Graaff
2021-10-09  7:27 Hans de Graaff
2021-07-06 10:26 Hans de Graaff
2020-07-20  6:49 Hans de Graaff
2020-05-23 18:49 Hans de Graaff
2020-05-23  8:03 Hans de Graaff
2020-05-23  8:03 Hans de Graaff
2020-05-23  8:03 Hans de Graaff
2020-01-25  7:12 Hans de Graaff
2019-11-16  9:13 Hans de Graaff
2019-05-13 18:39 Hans de Graaff
2019-02-10 11:07 Hans de Graaff
2018-08-05 20:37 Hans de Graaff
2018-04-30 20:11 Hans de Graaff
2018-04-22 19:13 Hans de Graaff
2018-01-24 16:11 Hans de Graaff
2017-08-05  6:14 Hans de Graaff
2017-07-29  5:42 Hans de Graaff
2017-07-16  8:26 Hans de Graaff
2017-06-26 18:39 Hans de Graaff
2017-06-11  5:40 Hans de Graaff
2016-05-04 12:41 Manuel Rüger
2015-10-10  5:58 Hans de Graaff
2015-10-10  5:58 Hans de Graaff
2015-08-29  6:25 Hans de Graaff

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=1491543875.d3aeccee364f8dd3d818d10c7655a6613e3bd3a5.graaff@gentoo \
    --to=graaff@gentoo.org \
    --cc=gentoo-commits@lists.gentoo.org \
    --cc=gentoo-dev@lists.gentoo.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox