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/jwt/
Date: Fri, 26 Aug 2022 12:13:36 +0000 (UTC)	[thread overview]
Message-ID: <1661516013.2bdb6c33841b3b44f5e4eeafc1a8ea9215a7226d.graaff@gentoo> (raw)

commit:     2bdb6c33841b3b44f5e4eeafc1a8ea9215a7226d
Author:     Hans de Graaff <graaff <AT> gentoo <DOT> org>
AuthorDate: Fri Aug 26 12:13:12 2022 +0000
Commit:     Hans de Graaff <graaff <AT> gentoo <DOT> org>
CommitDate: Fri Aug 26 12:13:33 2022 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2bdb6c33

Revert "dev-ruby/jwt: drop 2.2.3, 2.4.0"

This reverts commit 4b121ffa4141212e2d04a64902b13a417ac79411.

2.2.3 is still being used by app-admin/r10k

Signed-off-by: Hans de Graaff <graaff <AT> gentoo.org>

 dev-ruby/jwt/Manifest         |  2 ++
 dev-ruby/jwt/jwt-2.2.3.ebuild | 35 +++++++++++++++++++++++++++++++++++
 dev-ruby/jwt/jwt-2.4.0.ebuild | 33 +++++++++++++++++++++++++++++++++
 3 files changed, 70 insertions(+)

diff --git a/dev-ruby/jwt/Manifest b/dev-ruby/jwt/Manifest
index 09f61aedf001..05fdaecf0a53 100644
--- a/dev-ruby/jwt/Manifest
+++ b/dev-ruby/jwt/Manifest
@@ -1,3 +1,5 @@
+DIST jwt-2.2.3.tar.gz 50675 BLAKE2B 904a2b9be80ece10cc046d35df784ecc4991c3b09a79c2e2e461003596e9212409ed5840282ce632d3ff499754c505cd899ca95945f562883869ff3c50c4399a SHA512 ebefbf8f825afc1a78329088012118ed681a61bdf9e1c6a3fa125d46105092f1f26a4bc88791788c0290009dbc0427128d655a301c034ac07caf14216744962c
 DIST jwt-2.3.0.tar.gz 53312 BLAKE2B 4653a786d0f5da0d7c7e160f5b0c189f0eab78d045d5af441561c953d6d42fc74d6baff95e54dd9bfd47b3245f3b628e25f99e37016631ef282d95564a08cb1d SHA512 a4dfbb119575d9b5f883c2789734180f092adc75e05310de2e523e352f47469243868480e06f9bfabfa2a48e174ea669e69bd73e0fd002c4f66134462ffe2653
+DIST jwt-2.4.0.tar.gz 59280 BLAKE2B e7ff827c0f8d0514feaea43f5915d83b4be4ee538890250a390cf9a5df3f372d5bff3d90b741d0024c9e89ad28e581626a330b1fb400d2616454a1f964d358e4 SHA512 2bb409a8b2ae2e2330744e3efe306bfc1755c70244f2d7d4dd8ed824c7960f42baf6ec3ee80ed74c0590a3a61b92f61edb157db001d4c4f28005bb50c60bf74f
 DIST jwt-2.4.1.tar.gz 59783 BLAKE2B c18d44f0adda0c2111d312450c01c39d3926afc3e13c807283ffc1fe47b7c49284ab48572b47845c30805c2caefebbdf257e18e807af84819a7fff6c86f881c8 SHA512 871ffe9dc659877a77de0c2a51b1f78b45614cf8265bd07820a9b4b08e38160861b4c9f98391138bfaaf64261ce2eb58eba26c40f29c41b02b8fa16cd260997a
 DIST jwt-2.5.0.tar.gz 65165 BLAKE2B 3011bca18101cd6ec4ce066ce541e31d135ca57ecb3c105915e55d1637e4465e5ae87655c4a7dbb91ff8ca299b6b1c77f9c9263b944cb6b90a1679c25a593cc7 SHA512 fab73ee33769db297b8c8c7381070c8fcd1dd8e43aff2d241ee82f0327867eff3c1067536a90928ad65a2870dc2638515617f5d5cc92023ab1dfe3b6696f10d8

diff --git a/dev-ruby/jwt/jwt-2.2.3.ebuild b/dev-ruby/jwt/jwt-2.2.3.ebuild
new file mode 100644
index 000000000000..bed4ee7f5a63
--- /dev/null
+++ b/dev-ruby/jwt/jwt-2.2.3.ebuild
@@ -0,0 +1,35 @@
+# Copyright 1999-2021 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+USE_RUBY="ruby26 ruby27 ruby30"
+
+RUBY_FAKEGEM_RECIPE_TEST="rspec3"
+
+RUBY_FAKEGEM_BINWRAP=""
+RUBY_FAKEGEM_GEMSPEC="ruby-jwt.gemspec"
+
+inherit ruby-fakegem
+
+DESCRIPTION="A Ruby implementation of JSON Web Token draft 06"
+HOMEPAGE="https://github.com/jwt/ruby-jwt"
+SRC_URI="https://github.com/jwt/ruby-jwt/archive/v${PV}.tar.gz -> ${P}.tar.gz"
+
+LICENSE="MIT"
+SLOT="2"
+KEYWORDS="~amd64 ~arm ~ppc ~ppc64 ~x86"
+IUSE=""
+
+RUBY_S="ruby-jwt-${PV}"
+
+PATCHES=( "${FILESDIR}/${P}-ec-test.patch" )
+
+ruby_add_bdepend "test? ( dev-ruby/rbnacl )"
+
+all_ruby_prepare() {
+	sed -i -e "/simplecov/ s:^:#:" \
+		-e '/^SimpleCov.start/,/^end/ s:^:#:' \
+		spec/spec_helper.rb || die
+
+	sed -i -e 's/git ls-files -z/find * -print0/' ${RUBY_FAKEGEM_GEMSPEC} || die
+}

diff --git a/dev-ruby/jwt/jwt-2.4.0.ebuild b/dev-ruby/jwt/jwt-2.4.0.ebuild
new file mode 100644
index 000000000000..2151906e7d9c
--- /dev/null
+++ b/dev-ruby/jwt/jwt-2.4.0.ebuild
@@ -0,0 +1,33 @@
+# Copyright 1999-2022 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+USE_RUBY="ruby26 ruby27 ruby30 ruby31"
+
+RUBY_FAKEGEM_RECIPE_TEST="rspec3"
+
+RUBY_FAKEGEM_BINWRAP=""
+RUBY_FAKEGEM_GEMSPEC="ruby-jwt.gemspec"
+
+inherit ruby-fakegem
+
+DESCRIPTION="A Ruby implementation of JSON Web Token draft 06"
+HOMEPAGE="https://github.com/jwt/ruby-jwt"
+SRC_URI="https://github.com/jwt/ruby-jwt/archive/v${PV}.tar.gz -> ${P}.tar.gz"
+
+LICENSE="MIT"
+SLOT="2"
+KEYWORDS="~amd64 ~arm ~ppc ~ppc64 ~x86"
+IUSE=""
+
+RUBY_S="ruby-jwt-${PV}"
+
+ruby_add_bdepend "test? ( dev-ruby/rbnacl )"
+
+all_ruby_prepare() {
+	sed -i -e "/simplecov/ s:^:#:" \
+		-e '/^SimpleCov.start/,/^end/ s:^:#:' \
+		spec/spec_helper.rb || die
+
+	sed -i -e 's/git ls-files -z/find * -print0/' ${RUBY_FAKEGEM_GEMSPEC} || die
+}


             reply	other threads:[~2022-08-26 12:13 UTC|newest]

Thread overview: 51+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2022-08-26 12:13 Hans de Graaff [this message]
  -- strict thread matches above, loose matches on Subject: below --
2024-10-18  6:22 [gentoo-commits] repo/gentoo:master commit in: dev-ruby/jwt/ Hans de Graaff
2024-09-18  8:56 Hans de Graaff
2024-06-19  5:16 Hans de Graaff
2024-06-02  5:43 Hans de Graaff
2024-02-29  7:20 Hans de Graaff
2024-02-18  7:05 Hans de Graaff
2024-01-02  7:05 Hans de Graaff
2023-08-19  9:17 Hans de Graaff
2023-06-12  6:21 Hans de Graaff
2023-04-07  7:52 Hans de Graaff
2023-04-07  6:34 Hans de Graaff
2023-04-01 23:19 Sam James
2023-03-27  8:35 Sam James
2023-02-04  7:52 Hans de Graaff
2023-02-04  7:52 Hans de Graaff
2023-02-04  7:41 Hans de Graaff
2023-02-04  7:41 Hans de Graaff
2022-12-24 15:00 Hans de Graaff
2022-08-26 11:45 Hans de Graaff
2022-08-26 11:45 Hans de Graaff
2022-06-08  3:45 Hans de Graaff
2022-06-07 18:31 Hans de Graaff
2021-10-09  7:27 Hans de Graaff
2021-10-09  7:27 Hans de Graaff
2020-09-12  4:09 Hans de Graaff
2020-09-05  8:01 Hans de Graaff
2020-08-19  3:54 Hans de Graaff
2020-07-17  0:54 Sam James
2020-02-02  6:32 Hans de Graaff
2019-05-25  5:38 Hans de Graaff
2019-05-24  7:06 Hans de Graaff
2019-02-02  7:55 Hans de Graaff
2018-07-31  4:53 Hans de Graaff
2018-07-31  4:53 Hans de Graaff
2018-05-26  4:48 Hans de Graaff
2017-09-03  6:50 Hans de Graaff
2017-09-03  6:50 Hans de Graaff
2017-08-26  8:27 Hans de Graaff
2017-08-26  8:27 Hans de Graaff
2017-06-14  4:43 Hans de Graaff
2017-06-14  4:43 Hans de Graaff
2016-09-20  5:07 Hans de Graaff
2016-09-17  5:53 Hans de Graaff
2016-09-17  5:53 Hans de Graaff
2016-03-25  6:29 Hans de Graaff
2016-03-25  6:29 Hans de Graaff
2016-02-26  6:54 Hans de Graaff
2016-02-26  6:54 Hans de Graaff
2015-10-28  5:31 Hans de Graaff
2015-10-28  5:31 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=1661516013.2bdb6c33841b3b44f5e4eeafc1a8ea9215a7226d.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