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/jwt/, dev-ruby/jwt/files/
Date: Mon, 23 Aug 2021 17:38:27
Message-Id: 1629740291.b89b42d256b67e83a35f73888b7de0ef6bba6299.graaff@gentoo
1 commit: b89b42d256b67e83a35f73888b7de0ef6bba6299
2 Author: Hans de Graaff <graaff <AT> gentoo <DOT> org>
3 AuthorDate: Sat Aug 21 08:52:10 2021 +0000
4 Commit: Hans de Graaff <graaff <AT> gentoo <DOT> org>
5 CommitDate: Mon Aug 23 17:38:11 2021 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b89b42d2
7
8 dev-ruby/jwt: add 2.2.3
9
10 Package-Manager: Portage-3.0.20, Repoman-3.0.3
11 Signed-off-by: Hans de Graaff <graaff <AT> gentoo.org>
12
13 dev-ruby/jwt/Manifest | 1 +
14 dev-ruby/jwt/files/jwt-2.2.3-ec-test.patch | 22 +++++++++++++++++++
15 dev-ruby/jwt/jwt-2.2.3.ebuild | 35 ++++++++++++++++++++++++++++++
16 3 files changed, 58 insertions(+)
17
18 diff --git a/dev-ruby/jwt/Manifest b/dev-ruby/jwt/Manifest
19 index ac2d23eae43..79eb02cf7c7 100644
20 --- a/dev-ruby/jwt/Manifest
21 +++ b/dev-ruby/jwt/Manifest
22 @@ -1 +1,2 @@
23 DIST jwt-2.2.2.tar.gz 43084 BLAKE2B 998c2770e50cc65b5cb687f99f76b64a6a8d58a5c4312c32b642c7280abcf268f43588f7a8421d05c892072f7e39a6b48c1eb57dde950e92372f2bfe5eda9083 SHA512 04ac42afb09ad8648e2c428cb7493f738b1944e5fd273723cd2fc2550d6ab3486c2f3be5ae5bac7e36664e58d2fa913e5b38ba34361a98ebe1259d18008341b9
24 +DIST jwt-2.2.3.tar.gz 50675 BLAKE2B 904a2b9be80ece10cc046d35df784ecc4991c3b09a79c2e2e461003596e9212409ed5840282ce632d3ff499754c505cd899ca95945f562883869ff3c50c4399a SHA512 ebefbf8f825afc1a78329088012118ed681a61bdf9e1c6a3fa125d46105092f1f26a4bc88791788c0290009dbc0427128d655a301c034ac07caf14216744962c
25
26 diff --git a/dev-ruby/jwt/files/jwt-2.2.3-ec-test.patch b/dev-ruby/jwt/files/jwt-2.2.3-ec-test.patch
27 new file mode 100644
28 index 00000000000..18f69cf8d44
29 --- /dev/null
30 +++ b/dev-ruby/jwt/files/jwt-2.2.3-ec-test.patch
31 @@ -0,0 +1,22 @@
32 +From c444ac978013a9e199c968fefc3c413f37c93351 Mon Sep 17 00:00:00 2001
33 +From: Joakim Antman <antmanj@×××××.com>
34 +Date: Wed, 23 Jun 2021 10:55:29 +0300
35 +Subject: [PATCH] Fix OpenSSL::PKey::EC public_key handing in tests
36 +
37 +---
38 + spec/jwk/ec_spec.rb | 2 +-
39 + 1 file changed, 1 insertion(+), 1 deletion(-)
40 +
41 +diff --git a/spec/jwk/ec_spec.rb b/spec/jwk/ec_spec.rb
42 +index 3a94976..d8258bb 100644
43 +--- a/spec/jwk/ec_spec.rb
44 ++++ b/spec/jwk/ec_spec.rb
45 +@@ -15,7 +15,7 @@
46 + end
47 +
48 + context 'when a keypair with only public key is given' do
49 +- let(:keypair) { ec_key.tap { |x| x.private_key = nil } }
50 ++ let(:keypair) { OpenSSL::PKey::EC.new(ec_key.public_key.group).tap { |ec| ec.public_key = ec_key.public_key } }
51 + it 'creates an instance of the class' do
52 + expect(subject).to be_a described_class
53 + expect(subject.private?).to eq false
54
55 diff --git a/dev-ruby/jwt/jwt-2.2.3.ebuild b/dev-ruby/jwt/jwt-2.2.3.ebuild
56 new file mode 100644
57 index 00000000000..bed4ee7f5a6
58 --- /dev/null
59 +++ b/dev-ruby/jwt/jwt-2.2.3.ebuild
60 @@ -0,0 +1,35 @@
61 +# Copyright 1999-2021 Gentoo Authors
62 +# Distributed under the terms of the GNU General Public License v2
63 +
64 +EAPI=8
65 +USE_RUBY="ruby26 ruby27 ruby30"
66 +
67 +RUBY_FAKEGEM_RECIPE_TEST="rspec3"
68 +
69 +RUBY_FAKEGEM_BINWRAP=""
70 +RUBY_FAKEGEM_GEMSPEC="ruby-jwt.gemspec"
71 +
72 +inherit ruby-fakegem
73 +
74 +DESCRIPTION="A Ruby implementation of JSON Web Token draft 06"
75 +HOMEPAGE="https://github.com/jwt/ruby-jwt"
76 +SRC_URI="https://github.com/jwt/ruby-jwt/archive/v${PV}.tar.gz -> ${P}.tar.gz"
77 +
78 +LICENSE="MIT"
79 +SLOT="2"
80 +KEYWORDS="~amd64 ~arm ~ppc ~ppc64 ~x86"
81 +IUSE=""
82 +
83 +RUBY_S="ruby-jwt-${PV}"
84 +
85 +PATCHES=( "${FILESDIR}/${P}-ec-test.patch" )
86 +
87 +ruby_add_bdepend "test? ( dev-ruby/rbnacl )"
88 +
89 +all_ruby_prepare() {
90 + sed -i -e "/simplecov/ s:^:#:" \
91 + -e '/^SimpleCov.start/,/^end/ s:^:#:' \
92 + spec/spec_helper.rb || die
93 +
94 + sed -i -e 's/git ls-files -z/find * -print0/' ${RUBY_FAKEGEM_GEMSPEC} || die
95 +}