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/oauth2/
Date: Wed, 07 Feb 2018 06:30:42
Message-Id: 1517985029.1c6ef648fd824e577deb378dbb97190f544138a0.graaff@gentoo
1 commit: 1c6ef648fd824e577deb378dbb97190f544138a0
2 Author: Hans de Graaff <graaff <AT> gentoo <DOT> org>
3 AuthorDate: Tue Feb 6 06:38:35 2018 +0000
4 Commit: Hans de Graaff <graaff <AT> gentoo <DOT> org>
5 CommitDate: Wed Feb 7 06:30:29 2018 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1c6ef648
7
8 dev-ruby/oauth2: cleanup
9
10 Package-Manager: Portage-2.3.19, Repoman-2.3.6
11
12 dev-ruby/oauth2/Manifest | 1 -
13 dev-ruby/oauth2/oauth2-1.3.1.ebuild | 41 -------------------------------------
14 2 files changed, 42 deletions(-)
15
16 diff --git a/dev-ruby/oauth2/Manifest b/dev-ruby/oauth2/Manifest
17 index bb7f93a2652..cc19652cd1b 100644
18 --- a/dev-ruby/oauth2/Manifest
19 +++ b/dev-ruby/oauth2/Manifest
20 @@ -1,2 +1 @@
21 -DIST oauth2-1.3.1.tar.gz 21371 BLAKE2B 3102918d211ae2b100b1cdf6c99727749e8ca11f8f861aee86e0ac81bc4c611c27a211575f349b914b9226679f24338efa7ce03b81f1d8cee2a1a0b570c42a7b SHA512 6ea4ce6c711c101f8cfe1450624e5bfe501114dd7888d663e0f5171de9f0efa0957483f1350dfc5bcf5d3a63240b194373df733395fac3fea2fcd55d22e4262a
22 DIST oauth2-1.4.0.tar.gz 21299 BLAKE2B 1fe4640b374450279e556477c23972030d3aecac4c96e9174e57458deaccfbfa012e3bb66fe3db5e845a4004b91b763dab6f68b885ed7c1ddb2710cda29a8486 SHA512 2db67cba2403be8ea5d6f88f9818f295c29c08201f8ea5876c55cffe2fa926be465a11061654adffd77d13da9c7e56353ece7e4595cd9501acdcfeb58573b300
23
24 diff --git a/dev-ruby/oauth2/oauth2-1.3.1.ebuild b/dev-ruby/oauth2/oauth2-1.3.1.ebuild
25 deleted file mode 100644
26 index 94f9427c18b..00000000000
27 --- a/dev-ruby/oauth2/oauth2-1.3.1.ebuild
28 +++ /dev/null
29 @@ -1,41 +0,0 @@
30 -# Copyright 1999-2017 Gentoo Foundation
31 -# Distributed under the terms of the GNU General Public License v2
32 -
33 -EAPI=5
34 -
35 -USE_RUBY="ruby21 ruby22 ruby23"
36 -
37 -RUBY_FAKEGEM_TASK_TEST="none"
38 -RUBY_FAKEGEM_TASK_DOC="doc:rdoc"
39 -
40 -RUBY_FAKEGEM_DOCDIR="rdoc"
41 -RUBY_FAKEGEM_EXTRADOC="README.md"
42 -
43 -inherit ruby-fakegem eutils
44 -
45 -DESCRIPTION="Wrapper for the OAuth 2.0 protocol with a similar style to the OAuth gem"
46 -HOMEPAGE="https://github.com/intridea/oauth2"
47 -SRC_URI="https://github.com/intridea/oauth2/archive/v${PV}.tar.gz -> ${P}.tar.gz"
48 -
49 -LICENSE="MIT"
50 -SLOT="0"
51 -KEYWORDS="~amd64 ~ppc64 ~x86"
52 -IUSE=""
53 -
54 -ruby_add_rdepend ">=dev-ruby/faraday-0.8
55 - >=dev-ruby/jwt-1.0 =dev-ruby/jwt-1*
56 - >=dev-ruby/multi_json-1.3 =dev-ruby/multi_json-1*
57 - >=dev-ruby/multi_xml-0.5:0
58 - >=dev-ruby/rack-1.2:* <dev-ruby/rack-3:*"
59 -ruby_add_bdepend "test? ( >=dev-ruby/rspec-2.5.0:2 )"
60 -
61 -all_ruby_prepare() {
62 - sed -i -e '/simplecov/,/^ end/ s:^:#:' spec/helper.rb || die
63 -
64 - sed -i -e '/yardstick/,/^end/ s:^:#:' \
65 - -e '/bundler/I s:^:#:' Rakefile || die
66 -}
67 -
68 -each_ruby_test() {
69 - CI=true ${RUBY} -S rspec spec || die
70 -}