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/
Date: Tue, 31 Jul 2018 04:53:43
Message-Id: 1533012284.6880d3b2d52452c7b1bc5c13ce436d8cd3b4cca0.graaff@gentoo
1 commit: 6880d3b2d52452c7b1bc5c13ce436d8cd3b4cca0
2 Author: Hans de Graaff <graaff <AT> gentoo <DOT> org>
3 AuthorDate: Tue Jul 31 04:44:44 2018 +0000
4 Commit: Hans de Graaff <graaff <AT> gentoo <DOT> org>
5 CommitDate: Tue Jul 31 04:44:44 2018 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6880d3b2
7
8 dev-ruby/jwt: cleanup
9
10 Package-Manager: Portage-2.3.40, Repoman-2.3.9
11
12 dev-ruby/jwt/Manifest | 1 -
13 dev-ruby/jwt/jwt-2.0.0.ebuild | 30 ------------------------------
14 2 files changed, 31 deletions(-)
15
16 diff --git a/dev-ruby/jwt/Manifest b/dev-ruby/jwt/Manifest
17 index 688e41bdf27..dfff526ea51 100644
18 --- a/dev-ruby/jwt/Manifest
19 +++ b/dev-ruby/jwt/Manifest
20 @@ -1,3 +1,2 @@
21 DIST jwt-1.5.6.tar.gz 28586 BLAKE2B d1fa2e735cf93126866c7a5eca14d63ee2646a66b9759fa59ec3191544efb2e0f502c7474e41a1b0d494ed8d692462db64efd718b8c6fa8acb4fcd9b58ab1c32 SHA512 f112bb815ef1af1f77d082574f5157f33469c2caba88716aa16b20dc48d279f8579730f75db81aa31480d6edd5deaa110adbaf3f52372b0397d5822a964a759e
22 -DIST jwt-2.0.0.tar.gz 32205 BLAKE2B ba356abd8bc37e819576485e381eb6025324ca3a8872a6d64d0e2a2ff51dd11a804fa904384c47d58b6dee46331fa7f6ca19feb042d3e65de30583211ff7af17 SHA512 d194e06df17edfbde49d9ae6caad5e220f602ce722ae4361a5118024e08dcaddccc71a8fbac99e75ce3b19033e6368825914eed3e91e402b2cf208ebaabf23a5
23 DIST jwt-2.1.0.tar.gz 34188 BLAKE2B 0022dbb76cd8570aee84b6590f24639320977ae8d6d5fa53ef1d260da12bc732f9fdc01d59f6c994dc36642a7b67786b607ae76aca8044b7d5f5c60dc300966a SHA512 ad65b6ddd5fb7f33efe0036103f8f7482fd35090b8545219141e8885298fb4809d2386fd6e986c9bca0f85c823c9d4a6500785c0c5964db22d023a99c603ec47
24
25 diff --git a/dev-ruby/jwt/jwt-2.0.0.ebuild b/dev-ruby/jwt/jwt-2.0.0.ebuild
26 deleted file mode 100644
27 index db473eb2b1f..00000000000
28 --- a/dev-ruby/jwt/jwt-2.0.0.ebuild
29 +++ /dev/null
30 @@ -1,30 +0,0 @@
31 -# Copyright 1999-2017 Gentoo Foundation
32 -# Distributed under the terms of the GNU General Public License v2
33 -
34 -EAPI=6
35 -USE_RUBY="ruby22 ruby23 ruby24"
36 -
37 -RUBY_FAKEGEM_RECIPE_TEST="rspec3"
38 -
39 -RUBY_FAKEGEM_RECIPE_DOC="rdoc"
40 -
41 -inherit ruby-fakegem
42 -
43 -DESCRIPTION="A Ruby implementation of JSON Web Token draft 06"
44 -HOMEPAGE="https://github.com/jwt/ruby-jwt"
45 -SRC_URI="https://github.com/jwt/ruby-jwt/archive/v${PV}.tar.gz -> ${P}.tar.gz"
46 -
47 -LICENSE="MIT"
48 -SLOT="2"
49 -KEYWORDS="~amd64 ~ppc ~ppc64 ~x86"
50 -IUSE=""
51 -
52 -RUBY_S="ruby-jwt-${PV}"
53 -
54 -all_ruby_prepare() {
55 - sed -i -e "/simplecov/ s:^:#:" \
56 - -e '/^SimpleCov.configure/,/^end/ s:^:#:' \
57 - -e '/codeclimate/I s:^:#:' \
58 - -e '/codacy/I s:^:#:' \
59 - spec/spec_helper.rb || die
60 -}