Gentoo Archives: gentoo-commits

From: Hans de Graaff <graaff@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-ruby/http-cookie/
Date: Sat, 01 Oct 2016 06:10:08
Message-Id: 1475301887.1d8e207798d143425eea20e972f1dc812023ab27.graaff@gentoo
1 commit: 1d8e207798d143425eea20e972f1dc812023ab27
2 Author: Hans de Graaff <graaff <AT> gentoo <DOT> org>
3 AuthorDate: Sat Oct 1 06:04:47 2016 +0000
4 Commit: Hans de Graaff <graaff <AT> gentoo <DOT> org>
5 CommitDate: Sat Oct 1 06:04:47 2016 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1d8e2077
7
8 dev-ruby/http-cookie: add 1.0.3
9
10 Package-Manager: portage-2.3.0
11
12 dev-ruby/http-cookie/Manifest | 1 +
13 dev-ruby/http-cookie/http-cookie-1.0.3.ebuild | 30 +++++++++++++++++++++++++++
14 2 files changed, 31 insertions(+)
15
16 diff --git a/dev-ruby/http-cookie/Manifest b/dev-ruby/http-cookie/Manifest
17 index a6f7aad..90434a0 100644
18 --- a/dev-ruby/http-cookie/Manifest
19 +++ b/dev-ruby/http-cookie/Manifest
20 @@ -1 +1,2 @@
21 DIST http-cookie-1.0.2.gem 37888 SHA256 bcc1b18b5bc3e9302542c9c7f68f1ac0c3100a65dd2831786172e8676773e233 SHA512 447b7fcfd67f64edbd8420672add7ff04f28358ecd8ef59c3bf861b48378729d02bc1e4396259104651794e011ef0de72c892f28fd658474a1fc315b9b750178 WHIRLPOOL 43b67aa72b113dd736896907409512a1e50c543c38c7c5c36245b6873ec0d7fcd865bac687ff188ddfd259aed1acae2cf740e815a865b162e5a494b00de832da
22 +DIST http-cookie-1.0.3.gem 38400 SHA256 2f11269d817bc52ab2af2721e89a377660a961078de2a3a55fc696d7897e8c00 SHA512 43ac1218e98dd47ee22e33e72e20bc5b55f65e60aadd417641f8a4221eba88995d418c7738a4c35dfba132e05c0c4b0df2b2bedd56c22e82c062d1f03de0052f WHIRLPOOL 39b2a7bdea354345526373cc1dbb4a33ef419c9a62075f89e80ad7e926b0bb58564ebd2325b5c7d39a2dc3255aef0c6a53d08745fa563a34b7bab334e5d08cc5
23
24 diff --git a/dev-ruby/http-cookie/http-cookie-1.0.3.ebuild b/dev-ruby/http-cookie/http-cookie-1.0.3.ebuild
25 new file mode 100644
26 index 00000000..e51aaf8
27 --- /dev/null
28 +++ b/dev-ruby/http-cookie/http-cookie-1.0.3.ebuild
29 @@ -0,0 +1,30 @@
30 +# Copyright 1999-2016 Gentoo Foundation
31 +# Distributed under the terms of the GNU General Public License v2
32 +# $Id$
33 +
34 +EAPI=5
35 +USE_RUBY="ruby20 ruby21 ruby22 ruby23"
36 +
37 +RUBY_FAKEGEM_RECIPE_DOC="rdoc"
38 +RUBY_FAKEGEM_EXTRADOC="CHANGELOG.md README.md"
39 +
40 +inherit ruby-fakegem
41 +
42 +DESCRIPTION="A ruby library to handle HTTP cookies"
43 +HOMEPAGE="https://github.com/sparklemotion/http-cookie"
44 +
45 +LICENSE="MIT"
46 +SLOT="0"
47 +KEYWORDS="~alpha ~amd64 ~arm ~ppc ~ppc64 ~x86"
48 +IUSE=""
49 +
50 +ruby_add_rdepend ">=dev-ruby/domain_name-0.5:0"
51 +
52 +all_ruby_prepare() {
53 + sed -i -e "/simplecov/d" -e "/bundler/d" Rakefile || die
54 +}
55 +
56 +each_ruby_test() {
57 + ${RUBY} -Ilib test/test_http_cookie.rb || die
58 + ${RUBY} -Ilib test/test_http_cookie_jar.rb || die
59 +}