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/http/
Date: Sun,  7 Aug 2016 06:20:51 +0000 (UTC)	[thread overview]
Message-ID: <1470550562.6f3e14423d94a0cf014286a4e79354534535d113.graaff@gentoo> (raw)

commit:     6f3e14423d94a0cf014286a4e79354534535d113
Author:     Hans de Graaff <graaff <AT> gentoo <DOT> org>
AuthorDate: Sun Aug  7 06:16:02 2016 +0000
Commit:     Hans de Graaff <graaff <AT> gentoo <DOT> org>
CommitDate: Sun Aug  7 06:16:02 2016 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6f3e1442

dev-ruby/http: add 2.0.3

Package-Manager: portage-2.2.28

 dev-ruby/http/Manifest          |  1 +
 dev-ruby/http/http-2.0.3.ebuild | 44 +++++++++++++++++++++++++++++++++++++++++
 2 files changed, 45 insertions(+)

diff --git a/dev-ruby/http/Manifest b/dev-ruby/http/Manifest
index 4140c93..a2d28dd 100644
--- a/dev-ruby/http/Manifest
+++ b/dev-ruby/http/Manifest
@@ -4,3 +4,4 @@ DIST http-1.0.2.gem 62464 SHA256 90f0b96e221d6c4bd6cfbdb6e2ec5426e1bdbb61f833e2f
 DIST http-2.0.0.gem 62464 SHA256 995c38950b382f3982ed1c3adaad27d087855fced1c62a256fcdd765bfe18671 SHA512 6d03a328e26b9a66cd29c1cb8178ac7b77251bf469464e342ed853f37a6e5cd5d18a112eac3ca813abf6680574535f9a837217c7461e939a179d8eacc6c5fe93 WHIRLPOOL e6a490e23be86a6348c88cd73cda99550bc01276da198e3694411362c523567a11544a37f2194244fff417a3e319ca400e3616dd4539836355b02389a29d7df0
 DIST http-2.0.1.gem 62464 SHA256 f46f7ea5aec6e56b22fefe2de0d03d081156d348c6ff1f5c063f1f8c79dfe27b SHA512 db3166b11388974ca07acfd5de0cfeb5971363e6dbeb712abcba025b338d97704cc85593accf4a89c87c139fb2bd327c58665f4b12bc66cf4ab9eedb49c19ab2 WHIRLPOOL c69ccbfeafb5ac8d37942d6923df267136e225d9312c38d6e3999ec00bbf2c19f264a765ac9e90cf54e2cb082e56959411ba16ad90520e7af20f8c5f5c42e6eb
 DIST http-2.0.2.gem 62976 SHA256 d881dfc7cb8f63fd25e522e8f99cdb922c9fe15410cd0d95b1bba083e07d6b76 SHA512 0466d270a5bc2fdbd0d5dff085373e16e99bd52142187ae6ec127ece982bfca2998fc369be724647725c7519bef61a4c8ad9a405e0a44a454729fa68984e8862 WHIRLPOOL 27ad8882f7d52d38c894ee0297826790a08941574f83f00e2cf2a6b282336857575818cfbf5451736671aa52475672b80b374553ade01b1fa8a9660c455bd3bd
+DIST http-2.0.3.gem 62976 SHA256 f8681ff9f77fbc1ca4b92e70f112d1664efd56172862a175912092082051eb56 SHA512 957f40b627f2da98632636053ddd37d7ca6fb29b94b78157eade3fd13696611808f74c8e12b6a458a47f9494d192656610968b5273754fb006876690a6d0211f WHIRLPOOL ed130b4e36d62e353c35c96ecd493c9805ff9372d1397dee89ad54828e57212f71f5d63a9d70390b2a89c90405af7aae745dcb3de71397dd7f1b81985919093e

diff --git a/dev-ruby/http/http-2.0.3.ebuild b/dev-ruby/http/http-2.0.3.ebuild
new file mode 100644
index 0000000..da335b5
--- /dev/null
+++ b/dev-ruby/http/http-2.0.3.ebuild
@@ -0,0 +1,44 @@
+# Copyright 1999-2016 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=5
+USE_RUBY="ruby20 ruby21 ruby22"
+
+RUBY_FAKEGEM_RECIPE_TEST="rspec3"
+
+RUBY_FAKEGEM_RECIPE_DOC="rdoc"
+RUBY_FAKEGEM_EXTRADOC="CHANGES.md README.md"
+
+inherit ruby-fakegem
+
+DESCRIPTION="An easy-to-use client library for making requests from Ruby"
+HOMEPAGE="https://github.com/tarcieri/http"
+
+LICENSE="MIT"
+SLOT="2.0"
+KEYWORDS="~amd64 ~arm ~ppc64 ~x86"
+IUSE=""
+
+ruby_add_rdepend "
+	>=dev-ruby/addressable-2.3
+	>=dev-ruby/http-cookie-1.0
+	>=dev-ruby/http-form_data-1.0.1:1.0
+	>=dev-ruby/http_parser_rb-0.6.0 =dev-ruby/http_parser_rb-0.6*"
+
+ruby_add_bdepend "
+	test? ( dev-ruby/certificate_authority dev-ruby/rspec-its )"
+
+all_ruby_prepare() {
+	sed -i -e '/simplecov/,/end/ s:^:#:' \
+		-e '1irequire "cgi"' spec/spec_helper.rb || die
+
+	# Avoid specs that require network access
+	sed -i -e '/.persistent/,/^  end/ s:^:#:' \
+		spec/lib/http_spec.rb || die
+	sed -i -e '/with non-ASCII URLs/,/^    end/ s:^:#:' \
+		spec/lib/http/client_spec.rb || die
+
+	# Avoid spec that may fail with a running web server
+	sed -i -e '/unifies socket errors into HTTP::ConnectionError/,/^    end/ s:^:#:' spec/lib/http_spec.rb || die
+}


             reply	other threads:[~2016-08-07  6:20 UTC|newest]

Thread overview: 81+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2016-08-07  6:20 Hans de Graaff [this message]
  -- strict thread matches above, loose matches on Subject: below --
2024-03-15 13:16 [gentoo-commits] repo/gentoo:master commit in: dev-ruby/http/ Hans de Graaff
2024-03-14  5:48 Hans de Graaff
2024-03-14  5:48 Hans de Graaff
2023-09-16  5:30 Hans de Graaff
2023-07-04  9:41 Hans de Graaff
2023-04-09  3:13 Sam James
2023-04-09  3:00 Sam James
2023-04-09  2:34 Sam James
2023-04-08 21:30 Sam James
2022-12-05 20:03 Arthur Zamarin
2022-12-05 18:35 Hans de Graaff
2022-12-01  4:03 Sam James
2022-12-01  4:03 Sam James
2022-12-01  2:04 Sam James
2022-10-22 21:33 Matt Turner
2022-08-27  7:57 Sam James
2022-07-28  8:28 Hans de Graaff
2021-02-14  5:41 Sam James
2021-02-09 21:29 Sam James
2021-01-20  0:38 Sam James
2021-01-19 14:25 Sam James
2020-12-25  7:13 Hans de Graaff
2020-10-01  0:26 Sam James
2020-10-01  0:26 Sam James
2020-05-13  5:05 Hans de Graaff
2020-04-19 23:55 Sergei Trofimovich
2020-04-19 23:55 Sergei Trofimovich
2019-11-16  9:13 Hans de Graaff
2019-11-16  9:13 Hans de Graaff
2019-05-01 19:36 Hans de Graaff
2019-05-01 19:36 Hans de Graaff
2019-04-10  6:09 Hans de Graaff
2019-03-11  6:25 Hans de Graaff
2019-03-11  6:25 Hans de Graaff
2019-02-18  8:28 Hans de Graaff
2019-01-25  6:10 Hans de Graaff
2019-01-15  6:02 Hans de Graaff
2018-12-12  9:30 Hans de Graaff
2018-12-10  7:33 Hans de Graaff
2018-11-23 10:46 Hans de Graaff
2018-10-19  5:35 Hans de Graaff
2018-06-16  6:12 Hans de Graaff
2018-05-23  4:47 Hans de Graaff
2018-04-28  6:33 Hans de Graaff
2018-04-28  6:33 Hans de Graaff
2018-04-23  5:56 Hans de Graaff
2018-03-25 12:41 Sergei Trofimovich
2018-03-25 12:41 Sergei Trofimovich
2018-03-22 20:23 Jeroen Roovers
2018-02-07  5:52 Thomas Deutschmann
2018-01-19  9:02 Hans de Graaff
2017-10-14  8:08 Hans de Graaff
2017-08-26  8:27 Hans de Graaff
2017-08-26  8:27 Hans de Graaff
2017-08-17  5:45 Hans de Graaff
2017-07-19  6:55 Hans de Graaff
2017-05-23 19:55 Michael Weber
2017-05-06  7:52 Hans de Graaff
2017-04-30  5:12 Hans de Graaff
2017-04-30  5:12 Hans de Graaff
2017-02-10 18:04 Hans de Graaff
2017-02-05  9:18 Hans de Graaff
2017-02-05  9:18 Hans de Graaff
2016-11-09  6:34 Hans de Graaff
2016-10-13  5:52 Hans de Graaff
2016-06-27  4:41 Hans de Graaff
2016-06-13  4:37 Richard Farina
2016-06-05  7:59 Hans de Graaff
2016-06-05  7:59 Hans de Graaff
2016-05-20  5:18 Hans de Graaff
2016-05-20  5:18 Hans de Graaff
2016-04-26  5:29 Hans de Graaff
2016-02-18  6:34 Hans de Graaff
2016-02-13  6:46 Hans de Graaff
2016-02-13  6:46 Hans de Graaff
2015-10-04  6:54 Hans de Graaff
2015-10-03  5:35 Hans de Graaff
2015-10-03  5:35 Hans de Graaff
2015-08-19 18:27 Hans de Graaff
2015-08-16  6:38 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=1470550562.6f3e14423d94a0cf014286a4e79354534535d113.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