diff options
author | Michael Mair-Keimberger <mmk@levelnine.at> | 2023-08-20 17:10:22 +0200 |
---|---|---|
committer | Hans de Graaff <graaff@gentoo.org> | 2023-08-25 10:05:26 +0200 |
commit | 1233641950d8fdfb5f712ef5c35f3405ec2bde05 (patch) | |
tree | 7f189e3d642e077e06ad5bf2173f8350210ea96b /dev-ruby/jwt | |
parent | dev-python/numpy: Keyword 1.25.2 for ~m68k (diff) | |
download | gentoo-1233641950d8fdfb5f712ef5c35f3405ec2bde05.tar.gz gentoo-1233641950d8fdfb5f712ef5c35f3405ec2bde05.tar.bz2 gentoo-1233641950d8fdfb5f712ef5c35f3405ec2bde05.zip |
dev-ruby/jwt: remove unused patch(es)
Signed-off-by: Michael Mair-Keimberger <mmk@levelnine.at>
Signed-off-by: Hans de Graaff <graaff@gentoo.org>
Diffstat (limited to 'dev-ruby/jwt')
-rw-r--r-- | dev-ruby/jwt/files/jwt-2.2.3-ec-test.patch | 22 |
1 files changed, 0 insertions, 22 deletions
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 deleted file mode 100644 index 18f69cf8d44d..000000000000 --- a/dev-ruby/jwt/files/jwt-2.2.3-ec-test.patch +++ /dev/null @@ -1,22 +0,0 @@ -From c444ac978013a9e199c968fefc3c413f37c93351 Mon Sep 17 00:00:00 2001 -From: Joakim Antman <antmanj@gmail.com> -Date: Wed, 23 Jun 2021 10:55:29 +0300 -Subject: [PATCH] Fix OpenSSL::PKey::EC public_key handing in tests - ---- - spec/jwk/ec_spec.rb | 2 +- - 1 file changed, 1 insertion(+), 1 deletion(-) - -diff --git a/spec/jwk/ec_spec.rb b/spec/jwk/ec_spec.rb -index 3a94976..d8258bb 100644 ---- a/spec/jwk/ec_spec.rb -+++ b/spec/jwk/ec_spec.rb -@@ -15,7 +15,7 @@ - end - - context 'when a keypair with only public key is given' do -- let(:keypair) { ec_key.tap { |x| x.private_key = nil } } -+ let(:keypair) { OpenSSL::PKey::EC.new(ec_key.public_key.group).tap { |ec| ec.public_key = ec_key.public_key } } - it 'creates an instance of the class' do - expect(subject).to be_a described_class - expect(subject.private?).to eq false |