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: Thu, 26 May 2022 06:16:15
Message-Id: 1653545768.344d488dfd571c84b53f19e56854a36f69a67e1f.graaff@gentoo
1 commit: 344d488dfd571c84b53f19e56854a36f69a67e1f
2 Author: Hans de Graaff <graaff <AT> gentoo <DOT> org>
3 AuthorDate: Thu May 26 06:15:52 2022 +0000
4 Commit: Hans de Graaff <graaff <AT> gentoo <DOT> org>
5 CommitDate: Thu May 26 06:16:08 2022 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=344d488d
7
8 dev-ruby/http-cookie: add 1.0.5
9
10 Signed-off-by: Hans de Graaff <graaff <AT> gentoo.org>
11
12 dev-ruby/http-cookie/Manifest | 1 +
13 dev-ruby/http-cookie/http-cookie-1.0.5.ebuild | 28 +++++++++++++++++++++++++++
14 2 files changed, 29 insertions(+)
15
16 diff --git a/dev-ruby/http-cookie/Manifest b/dev-ruby/http-cookie/Manifest
17 index 5bfe6ed058b7..5320eba7327c 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.4.gem 39424 BLAKE2B 06ac0e667340ac17827a8eb4ed320efe77ad97509fcd444f7e77d887a77643a6b34e84486db78eba52245891d1719e750d9a446c40a4ab7804f2304b600029bd SHA512 788fdaa642e6b596e7a91c57a7942a832c09a84fed88b30fdd8e5a8ad66d72780afc1246e6c83c4dfd5af8018c278750866dd05d804aef793aa067b09519af8d
22 +DIST http-cookie-1.0.5.gem 39424 BLAKE2B 569a0d18c962be378f3974b400ddf2289c72490b2b93619fcd83ed6c00bbf5def76239c52163dc6231060792abf3a19988285a6cd28f158ff7339252da912e61 SHA512 d530d64b5c2fc3757a6de03384fe768317e24a523d4a4215f5bcc6b5bca9e7b94eeaad1e52fbb67548396b7b2ca7c9d8b68ea7b99109e24770fcf34c950469ef
23
24 diff --git a/dev-ruby/http-cookie/http-cookie-1.0.5.ebuild b/dev-ruby/http-cookie/http-cookie-1.0.5.ebuild
25 new file mode 100644
26 index 000000000000..45bf95e150ef
27 --- /dev/null
28 +++ b/dev-ruby/http-cookie/http-cookie-1.0.5.ebuild
29 @@ -0,0 +1,28 @@
30 +# Copyright 1999-2022 Gentoo Authors
31 +# Distributed under the terms of the GNU General Public License v2
32 +
33 +EAPI=8
34 +USE_RUBY="ruby26 ruby27 ruby30 ruby31"
35 +
36 +RUBY_FAKEGEM_EXTRADOC="CHANGELOG.md README.md"
37 +
38 +inherit ruby-fakegem
39 +
40 +DESCRIPTION="A ruby library to handle HTTP cookies"
41 +HOMEPAGE="https://github.com/sparklemotion/http-cookie"
42 +
43 +LICENSE="MIT"
44 +SLOT="0"
45 +KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~loong ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86"
46 +IUSE=""
47 +
48 +ruby_add_rdepend ">=dev-ruby/domain_name-0.5:0"
49 +
50 +all_ruby_prepare() {
51 + sed -i -e "/simplecov/d" -e "/bundler/d" Rakefile || die
52 +}
53 +
54 +each_ruby_test() {
55 + ${RUBY} -Ilib test/test_http_cookie.rb || die
56 + ${RUBY} -Ilib test/test_http_cookie_jar.rb || die
57 +}