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/oauth/
Date: Sun, 01 May 2022 06:34:50
Message-Id: 1651384682.0e2bb825a111f6ddbbb4eca011ca7e4d5415dfc3.graaff@gentoo
1 commit: 0e2bb825a111f6ddbbb4eca011ca7e4d5415dfc3
2 Author: Hans de Graaff <graaff <AT> gentoo <DOT> org>
3 AuthorDate: Sun May 1 05:58:02 2022 +0000
4 Commit: Hans de Graaff <graaff <AT> gentoo <DOT> org>
5 CommitDate: Sun May 1 05:58:02 2022 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0e2bb825
7
8 dev-ruby/oauth: drop 0.5.6, 0.5.7
9
10 Signed-off-by: Hans de Graaff <graaff <AT> gentoo.org>
11
12 dev-ruby/oauth/Manifest | 2 --
13 dev-ruby/oauth/oauth-0.5.6.ebuild | 39 ---------------------------------------
14 dev-ruby/oauth/oauth-0.5.7.ebuild | 39 ---------------------------------------
15 3 files changed, 80 deletions(-)
16
17 diff --git a/dev-ruby/oauth/Manifest b/dev-ruby/oauth/Manifest
18 index f6bf356a4632..95e7a931f2d8 100644
19 --- a/dev-ruby/oauth/Manifest
20 +++ b/dev-ruby/oauth/Manifest
21 @@ -1,3 +1 @@
22 -DIST oauth-0.5.6.tar.gz 60887 BLAKE2B 8dea7bc6b1a3c9d5befa5badbda105fed28004d6627624fedaf1572cc261421e3a8636019bb0a600a28fb6aa933d2b1be5faf613ae3062f7d50b314b86059b17 SHA512 dcb516b90d6cf0ff3f1071fa7bf1e1b30cd998c79205f9a6df001d5c04784ad23ecd430b4e04565a6351efcc780b552dfc38ea962d0a938c9e19a6e5bd3fe070
23 -DIST oauth-0.5.7.tar.gz 65889 BLAKE2B 71787b6a03156a25edbb006acd05f7aae789e9bc0fffa0afe9d3f0c55a2b991fa20527c493e9933891adc0e32571c1834f1a3f928e12f2a7b3159ebc09d29286 SHA512 4bc217123aaf74482ed118344c57b241b9efea172d872d670a860e8f236fac4ae1956826fcc786025164a5728c62edded8cb453f0051091c48bc87fe1f72f931
24 DIST oauth-0.5.8.tar.gz 67852 BLAKE2B 7dc19a2f84f585fd517d677bf441c5964b45566ffea3cbd7612061db115a5570cf8315b4cbdd8788f9b0ff336b6eea91922f17c0ce17a4c626731282bd8203ca SHA512 3bf8298ea5bcffe1fe61ba894a5cfcb04a5814348154749e056ea18d975b00b10db7ed226f2187ffb9f414b755022bf32ff4bb2c02f1f429f6a9a7062032d82e
25
26 diff --git a/dev-ruby/oauth/oauth-0.5.6.ebuild b/dev-ruby/oauth/oauth-0.5.6.ebuild
27 deleted file mode 100644
28 index 7fdf4be49c41..000000000000
29 --- a/dev-ruby/oauth/oauth-0.5.6.ebuild
30 +++ /dev/null
31 @@ -1,39 +0,0 @@
32 -# Copyright 1999-2021 Gentoo Authors
33 -# Distributed under the terms of the GNU General Public License v2
34 -
35 -EAPI=7
36 -USE_RUBY="ruby25 ruby26 ruby27"
37 -
38 -RUBY_FAKEGEM_EXTRADOC="HISTORY README.rdoc TODO"
39 -
40 -RUBY_FAKEGEM_GEMSPEC="oauth.gemspec"
41 -
42 -inherit ruby-fakegem
43 -
44 -DESCRIPTION="A RubyGem for implementing both OAuth clients and servers"
45 -HOMEPAGE="https://github.com/oauth-xx/oauth-ruby"
46 -SRC_URI="https://github.com/oauth-xx/oauth-ruby/archive/v${PV}.tar.gz -> ${P}.tar.gz"
47 -RUBY_S="${PN}-ruby-${PV}"
48 -
49 -LICENSE="MIT"
50 -SLOT="0"
51 -KEYWORDS="~amd64 ~ppc ~x86"
52 -IUSE=""
53 -
54 -ruby_add_bdepend "test? (
55 - dev-ruby/bundler
56 - dev-ruby/test-unit:2
57 - dev-ruby/mocha:1.0
58 - dev-ruby/webmock
59 - dev-ruby/rack
60 - dev-ruby/actionpack:6.0
61 - dev-ruby/railties:6.0
62 -)"
63 -
64 -all_ruby_prepare() {
65 - # Require a compatible version of mocha
66 - sed -i -e '1igem "mocha", "~> 1.0"; gem "railties", "~>6.0.0" ; gem "actionpack", "~>6.0.0"' \
67 - -e '2i gem "test-unit"; require "test/unit"' \
68 - -e '/mocha/ s/mini_test/minitest/' \
69 - -e '/\(byebug\|minitest_helpers\|simplecov\)/I s:^:#:' test/test_helper.rb || die
70 -}
71
72 diff --git a/dev-ruby/oauth/oauth-0.5.7.ebuild b/dev-ruby/oauth/oauth-0.5.7.ebuild
73 deleted file mode 100644
74 index cdb746579c6c..000000000000
75 --- a/dev-ruby/oauth/oauth-0.5.7.ebuild
76 +++ /dev/null
77 @@ -1,39 +0,0 @@
78 -# Copyright 1999-2021 Gentoo Authors
79 -# Distributed under the terms of the GNU General Public License v2
80 -
81 -EAPI=8
82 -USE_RUBY="ruby26 ruby27"
83 -
84 -RUBY_FAKEGEM_EXTRADOC="CHANGELOG.md README.md TODO"
85 -
86 -RUBY_FAKEGEM_GEMSPEC="oauth.gemspec"
87 -
88 -inherit ruby-fakegem
89 -
90 -DESCRIPTION="A RubyGem for implementing both OAuth clients and servers"
91 -HOMEPAGE="https://github.com/oauth-xx/oauth-ruby"
92 -SRC_URI="https://github.com/oauth-xx/oauth-ruby/archive/v${PV}.tar.gz -> ${P}.tar.gz"
93 -RUBY_S="${PN}-ruby-${PV}"
94 -
95 -LICENSE="MIT"
96 -SLOT="0"
97 -KEYWORDS="~amd64 ~ppc ~x86"
98 -IUSE=""
99 -
100 -ruby_add_bdepend "test? (
101 - dev-ruby/bundler
102 - dev-ruby/test-unit:2
103 - dev-ruby/mocha:1.0
104 - dev-ruby/webmock
105 - dev-ruby/rack
106 - dev-ruby/actionpack:6.0
107 - dev-ruby/railties:6.0
108 -)"
109 -
110 -all_ruby_prepare() {
111 - # Require a compatible version of mocha
112 - sed -i -e '1igem "mocha", "~> 1.0"; gem "railties", "~>6.0.0" ; gem "actionpack", "~>6.0.0"' \
113 - -e '2i gem "test-unit"; require "test/unit"' \
114 - -e '/mocha/ s/mini_test/minitest/' \
115 - -e '/\(byebug\|minitest_helpers\|simplecov\)/I s:^:#:' test/test_helper.rb || die
116 -}