[gentoo-commits] repo/gentoo:master commit in: dev-ruby/oauth/

2024-08-14 Thread Hans de Graaff
commit: e9c81e4bf2b58d8e8b548e30f9a556b14c9af004
Author: Hans de Graaff  gentoo  org>
AuthorDate: Wed Aug 14 07:26:38 2024 +
Commit: Hans de Graaff  gentoo  org>
CommitDate: Wed Aug 14 07:26:38 2024 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e9c81e4b

dev-ruby/oauth: ensure consistent test dependencies

Closes: https://bugs.gentoo.org/937905
Signed-off-by: Hans de Graaff  gentoo.org>

 dev-ruby/oauth/oauth-1.1.0.ebuild | 4 +++-
 1 file changed, 3 insertions(+), 1 deletion(-)

diff --git a/dev-ruby/oauth/oauth-1.1.0.ebuild 
b/dev-ruby/oauth/oauth-1.1.0.ebuild
index 1fcace89c710..8e140227f30b 100644
--- a/dev-ruby/oauth/oauth-1.1.0.ebuild
+++ b/dev-ruby/oauth/oauth-1.1.0.ebuild
@@ -41,7 +41,9 @@ ruby_add_bdepend "test? (
 all_ruby_prepare() {
sed -i -e 's:_relative ": "./:' ${RUBY_FAKEGEM_GEMSPEC} || die
 
-   sed -i  -e 's/if RUN_COVERAGE/if false/' test/test_helper.rb || die
+   sed -e 's/if RUN_COVERAGE/if false/' \
+   -e '3igem "actionpack"' \
+   -i test/test_helper.rb || die
 
# # Avoid test tripped up by kwargs confusion
sed -e '/test_authorize/askip "kwargs confusion"' \



[gentoo-commits] repo/gentoo:master commit in: dev-ruby/oauth-tty/

2024-07-15 Thread Hans de Graaff
commit: 144e0f91d95b159dee5c8ecacdcdcf3e933103bc
Author: Hans de Graaff  gentoo  org>
AuthorDate: Tue Jul 16 04:06:01 2024 +
Commit: Hans de Graaff  gentoo  org>
CommitDate: Tue Jul 16 04:06:15 2024 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=144e0f91

dev-ruby/oauth-tty: new package, add 1.0.5

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

 dev-ruby/oauth-tty/Manifest   |  1 +
 dev-ruby/oauth-tty/metadata.xml   | 11 +++
 dev-ruby/oauth-tty/oauth-tty-1.0.5.ebuild | 52 +++
 3 files changed, 64 insertions(+)

diff --git a/dev-ruby/oauth-tty/Manifest b/dev-ruby/oauth-tty/Manifest
new file mode 100644
index ..9727188d531e
--- /dev/null
+++ b/dev-ruby/oauth-tty/Manifest
@@ -0,0 +1 @@
+DIST oauth2-1.0.5.tar.bz2 27649 BLAKE2B 
cb20b0073838ad887b2b7311e929507d152746c33adeef602f475fca94aa49df4283597ab678f2fa16d17467220edab6601e7ff4bae07d5c81b55cf8515ca5eb
 SHA512 
3dbb5d1394bf5791b16e88bb4e8ead7456ea935005947e0e6b5e4864277b17c75acea389d5c7e5eef1eff68447596261928049f8f0686abe434f2fffacf8

diff --git a/dev-ruby/oauth-tty/metadata.xml b/dev-ruby/oauth-tty/metadata.xml
new file mode 100644
index ..5082bc5c9e92
--- /dev/null
+++ b/dev-ruby/oauth-tty/metadata.xml
@@ -0,0 +1,11 @@
+
+https://www.gentoo.org/dtd/metadata.dtd";>
+
+  
+r...@gentoo.org
+Gentoo Ruby Project
+  
+  
+oauth-xx/oauth-tty
+  
+

diff --git a/dev-ruby/oauth-tty/oauth-tty-1.0.5.ebuild 
b/dev-ruby/oauth-tty/oauth-tty-1.0.5.ebuild
new file mode 100644
index ..cb1572ab46d0
--- /dev/null
+++ b/dev-ruby/oauth-tty/oauth-tty-1.0.5.ebuild
@@ -0,0 +1,52 @@
+# Copyright 1999-2024 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+USE_RUBY="ruby31 ruby32"
+
+RUBY_FAKEGEM_BINDIR="exe"
+
+RUBY_FAKEGEM_EXTRADOC="CHANGELOG.md README.md"
+
+RUBY_FAKEGEM_GEMSPEC="oauth-tty.gemspec"
+
+inherit ruby-fakegem
+
+DESCRIPTION="OAuth 1.0 TTY Command Line Interface"
+HOMEPAGE="https://gitlab.com/oauth-xx/oauth-tty";
+SRC_URI="https://gitlab.com/oauth-xx/oauth-tty/-/archive/v${PV}/oauth2-${PV}.tar.bz2";
+RUBY_S="${PN}-v${PV}-*"
+
+LICENSE="MIT"
+SLOT="$(ver_cut 1)"
+KEYWORDS="~amd64 ~ppc ~riscv ~x86"
+IUSE="test"
+
+ruby_add_rdepend "
+   >=dev-ruby/version_gem-1.1.1:1
+   !=dev-ruby/minitest-5.15
+   dev-ruby/mocha
+   >=dev-ruby/oauth-1.1.0
+   dev-ruby/rack-test
+   dev-ruby/webmock
+)"
+
+all_ruby_prepare() {
+   # Avoid unneeded coverage tools
+   sed -e 's/if RUN_COVERAGE/if false/' -i test/test_helper.rb || die
+
+   # Fix deprecated minitest names
+   sed -e 's/MiniTest/Minitest/' -i test/*_test.rb || die
+
+   # # Avoid test tripped up by kwargs confusion
+   sed -e '/test_authorize/askip "kwargs confusion"' \
+   -i test/cli_test.rb || die
+
+   sed -e 's:_relative ": "./:' \
+   -i ${RUBY_FAKEGEM_GEMSPEC} || die
+}



[gentoo-commits] repo/gentoo:master commit in: dev-ruby/oauth/

2024-07-15 Thread Hans de Graaff
commit: 1f27f5c85f74ee01a94e0b13e5049463b87a1c20
Author: Hans de Graaff  gentoo  org>
AuthorDate: Tue Jul 16 04:05:04 2024 +
Commit: Hans de Graaff  gentoo  org>
CommitDate: Tue Jul 16 04:06:15 2024 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1f27f5c8

dev-ruby/oauth: add 1.1.0

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

 dev-ruby/oauth/Manifest  |  1 +
 dev-ruby/oauth/oauth-0.6.2-r2.ebuild | 56 
 dev-ruby/oauth/oauth-1.1.0.ebuild| 54 ++
 3 files changed, 111 insertions(+)

diff --git a/dev-ruby/oauth/Manifest b/dev-ruby/oauth/Manifest
index a022ef58f36a..74b62443ae9c 100644
--- a/dev-ruby/oauth/Manifest
+++ b/dev-ruby/oauth/Manifest
@@ -1 +1,2 @@
 DIST oauth-0.6.2.tar.gz 81702 BLAKE2B 
2775c0711beb9f3612844ae07ff59953d4db72c0f9a797c6eac49132a021a48481a13f4b1428b2037b0a04b83b5d79e621cccd4a794fe3a339a1ceb468f0b165
 SHA512 
22f4f734daa42339bbaed1d1d449a4591ef4404aaf8cf1753ba705735a176f6142853b2c4f5e8ff3afa3e9899163af1c5598685664326d58a5b529d94b65441f
+DIST oauth-1.1.0.tar.gz 77282 BLAKE2B 
f0916b0137922780981987b2977ce19c1acbb2bfb72a64948be5e530ef8c4a375a32785e5d5f5d64349ff3adf2e05ffbfb1417123ffe0674700062952d8fc0e5
 SHA512 
bb9025ef279d97077b1c7e03ed402f43dd3fe1921cbd55aa03b1732ce3199578fbb4221991d0d3ab8dd8720354bec2ab8b7c25ed039f10fffd296d1c4e851ff5

diff --git a/dev-ruby/oauth/oauth-0.6.2-r2.ebuild 
b/dev-ruby/oauth/oauth-0.6.2-r2.ebuild
new file mode 100644
index ..442cf9782b21
--- /dev/null
+++ b/dev-ruby/oauth/oauth-0.6.2-r2.ebuild
@@ -0,0 +1,56 @@
+# Copyright 1999-2024 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+USE_RUBY="ruby30 ruby31 ruby32"
+
+RUBY_FAKEGEM_BINWRAP=""
+RUBY_FAKEGEM_EXTRADOC="CHANGELOG.md README.md TODO"
+
+RUBY_FAKEGEM_GEMSPEC="oauth.gemspec"
+
+inherit ruby-fakegem
+
+DESCRIPTION="A RubyGem for implementing both OAuth clients and servers"
+HOMEPAGE="https://github.com/oauth-xx/oauth-ruby";
+SRC_URI="https://github.com/oauth-xx/oauth-ruby/archive/v${PV}.tar.gz -> 
${P}.tar.gz"
+RUBY_S="${PN}-ruby-${PV}"
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="~amd64 ~ppc ~riscv ~x86"
+IUSE=""
+
+ruby_add_rdepend "
+   dev-ruby/snaky_hash:1
+   >=dev-ruby/version_gem-1.1:1
+"
+
+ruby_add_bdepend "test? (
+   dev-ruby/bundler
+   dev-ruby/test-unit:2
+   dev-ruby/mocha:2
+   dev-ruby/webmock
+   dev-ruby/rack
+   dev-ruby/rest-client
+   dev-ruby/actionpack:6.1
+   dev-ruby/railties:6.1
+)"
+
+all_ruby_prepare() {
+   sed -i -e 's:_relative ": "./:' ${RUBY_FAKEGEM_GEMSPEC} || die
+
+   # Require compatible versions of dependencies
+   sed -i -e '1igem "railties", "~>6.1.0" ; gem "actionpack", "~>6.1.0"; 
require "action_dispatch"' \
+   -e '/mocha/ s/mini_test/minitest/' \
+   -e 's/if RUN_COVERAGE/if false/' test/test_helper.rb || die
+
+   # Avoid test tripped up by kwargs confusion
+   sed -e '/test_authorize/askip "kwargs confusion"' \
+   -e 's/MiniTest/Minitest/' \
+   -i test/units/cli_test.rb || die
+}
+
+each_ruby_test() {
+   ${RUBY} -Ilib:test:. -e 'Dir["test/**/*test*.rb"].each {|f| require f}' 
|| die
+}

diff --git a/dev-ruby/oauth/oauth-1.1.0.ebuild 
b/dev-ruby/oauth/oauth-1.1.0.ebuild
new file mode 100644
index ..1fcace89c710
--- /dev/null
+++ b/dev-ruby/oauth/oauth-1.1.0.ebuild
@@ -0,0 +1,54 @@
+# Copyright 1999-2024 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+USE_RUBY="ruby31 ruby32"
+
+RUBY_FAKEGEM_BINWRAP=""
+RUBY_FAKEGEM_EXTRADOC="CHANGELOG.md README.md TODO"
+
+RUBY_FAKEGEM_GEMSPEC="oauth.gemspec"
+
+inherit ruby-fakegem
+
+DESCRIPTION="A RubyGem for implementing both OAuth clients and servers"
+HOMEPAGE="https://github.com/oauth-xx/oauth-ruby";
+SRC_URI="https://github.com/oauth-xx/oauth-ruby/archive/v${PV}.tar.gz -> 
${P}.tar.gz"
+RUBY_S="${PN}-ruby-${PV}"
+
+LICENSE="MIT"
+SLOT="$(ver_cut 1)"
+KEYWORDS="~amd64 ~ppc ~riscv ~x86"
+IUSE="test"
+
+ruby_add_rdepend "
+   >=dev-ruby/oauth-tty-1.0.1:1
+   dev-ruby/snaky_hash:1
+   >=dev-ruby/version_gem-1.1:1
+"
+
+ruby_add_bdepend "test? (
+   dev-ruby/bundler
+   dev-ruby/test-unit:2
+   dev-ruby/mocha:2
+   dev-ruby/webmock
+   dev-ruby/rack
+   dev-ruby/rest-client
+   || ( dev-ruby/actionpack:7.1 dev-ruby/actionpack:7.0 
dev-ruby/actionpack:6.1 )
+   || ( dev-ruby/railties:7.1 dev-ruby/railties:7.0 dev-ruby/railties:6.1 )
+)"
+
+all_ruby_prepare() {
+   sed -i -e 's:_relative ": "./:' ${RUBY_FAKEGEM_GEMSPEC} || die
+
+   sed -i  -e 's/if RUN_COVERAGE/if false/' test/test_helper.rb || die
+
+   # # Avoid test tripped up by kwargs confusion
+   sed -e '/test_authorize/askip "kwargs confusion"' \
+   -e 's/MiniTest/Minitest/' \
+   -i test/units/cli_test.rb || die
+}
+
+each_ruby_test() {
+   

[gentoo-commits] repo/gentoo:master commit in: dev-ruby/oauth/

2023-09-15 Thread Hans de Graaff
commit: fe9ec5467683d100a29f28e3afd3f4d177915b35
Author: Hans de Graaff  gentoo  org>
AuthorDate: Fri Sep 15 13:35:11 2023 +
Commit: Hans de Graaff  gentoo  org>
CommitDate: Fri Sep 15 14:56:31 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=fe9ec546

dev-ruby/oauth: drop 0.5.14, 0.6.2

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

 dev-ruby/oauth/Manifest|  1 -
 dev-ruby/oauth/oauth-0.5.14.ebuild | 46 -
 dev-ruby/oauth/oauth-0.6.2.ebuild  | 53 --
 3 files changed, 100 deletions(-)

diff --git a/dev-ruby/oauth/Manifest b/dev-ruby/oauth/Manifest
index d978bfb874ca..a022ef58f36a 100644
--- a/dev-ruby/oauth/Manifest
+++ b/dev-ruby/oauth/Manifest
@@ -1,2 +1 @@
-DIST oauth-0.5.14.tar.gz 68764 BLAKE2B 
19c7f463d5fcba62a609355834ba93adf1efa05b2ce25fc5d9d3623da15d35a7cb54eff9201bb4f373a66629781f5937326430a7a1c9c615929bcc5bae099a67
 SHA512 
646ed55a602e9e7b8e8d59532c89929305abeeda6b38fc38bdf1d5e400deec7f5884d988bcbb9e3537eb3a0921dacb73cb5238af27e9885aff95b67196f62c99
 DIST oauth-0.6.2.tar.gz 81702 BLAKE2B 
2775c0711beb9f3612844ae07ff59953d4db72c0f9a797c6eac49132a021a48481a13f4b1428b2037b0a04b83b5d79e621cccd4a794fe3a339a1ceb468f0b165
 SHA512 
22f4f734daa42339bbaed1d1d449a4591ef4404aaf8cf1753ba705735a176f6142853b2c4f5e8ff3afa3e9899163af1c5598685664326d58a5b529d94b65441f

diff --git a/dev-ruby/oauth/oauth-0.5.14.ebuild 
b/dev-ruby/oauth/oauth-0.5.14.ebuild
deleted file mode 100644
index 2092a7815cc8..
--- a/dev-ruby/oauth/oauth-0.5.14.ebuild
+++ /dev/null
@@ -1,46 +0,0 @@
-# Copyright 1999-2023 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-USE_RUBY="ruby27 ruby30 ruby31"
-
-RUBY_FAKEGEM_BINWRAP="oauth"
-RUBY_FAKEGEM_EXTRADOC="CHANGELOG.md README.md TODO"
-
-RUBY_FAKEGEM_GEMSPEC="oauth.gemspec"
-
-inherit ruby-fakegem
-
-DESCRIPTION="A RubyGem for implementing both OAuth clients and servers"
-HOMEPAGE="https://github.com/oauth-xx/oauth-ruby";
-SRC_URI="https://github.com/oauth-xx/oauth-ruby/archive/v${PV}.tar.gz -> 
${P}.tar.gz"
-RUBY_S="${PN}-ruby-${PV}"
-
-LICENSE="MIT"
-SLOT="0"
-KEYWORDS="~amd64 ~ppc ~riscv ~x86"
-IUSE=""
-
-ruby_add_bdepend "test? (
-   dev-ruby/bundler
-   dev-ruby/test-unit:2
-   dev-ruby/mocha:1.0
-   dev-ruby/webmock
-   dev-ruby/rack
-   dev-ruby/actionpack:6.1
-   dev-ruby/railties:6.1
-)"
-
-all_ruby_prepare() {
-   # Require a compatible version of mocha
-   sed -i -e '1igem "mocha", "~> 1.0"; gem "railties", "~>6.1.0" ; gem 
"actionpack", "~>6.1.0"; require "action_dispatch"' \
-   -e '/mocha/ s/mini_test/minitest/' \
-   -e '/\(byebug\|minitest_helpers\|simplecov\)/I s:^:#:' 
test/test_helper.rb || die
-
-   # Avoid test tripped up by kwargs confusion
-   sed -i -e '/test_authorize/askip "kwargs confusion"' 
test/units/test_cli.rb || die
-}
-
-each_ruby_test() {
-   ${RUBY} -Ilib:test:. -e 'Dir["test/**/*test*.rb"].each {|f| require f}' 
|| die
-}

diff --git a/dev-ruby/oauth/oauth-0.6.2.ebuild 
b/dev-ruby/oauth/oauth-0.6.2.ebuild
deleted file mode 100644
index bc39464e4173..
--- a/dev-ruby/oauth/oauth-0.6.2.ebuild
+++ /dev/null
@@ -1,53 +0,0 @@
-# Copyright 1999-2023 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-USE_RUBY="ruby30 ruby31"
-
-RUBY_FAKEGEM_BINWRAP="oauth"
-RUBY_FAKEGEM_EXTRADOC="CHANGELOG.md README.md TODO"
-
-RUBY_FAKEGEM_GEMSPEC="oauth.gemspec"
-
-inherit ruby-fakegem
-
-DESCRIPTION="A RubyGem for implementing both OAuth clients and servers"
-HOMEPAGE="https://github.com/oauth-xx/oauth-ruby";
-SRC_URI="https://github.com/oauth-xx/oauth-ruby/archive/v${PV}.tar.gz -> 
${P}.tar.gz"
-RUBY_S="${PN}-ruby-${PV}"
-
-LICENSE="MIT"
-SLOT="0"
-KEYWORDS="~amd64 ~riscv"
-IUSE=""
-
-ruby_add_rdepend "
-   dev-ruby/snaky_hash:1
-   >=dev-ruby/version_gem-1.1:1
-"
-
-ruby_add_bdepend "test? (
-   dev-ruby/bundler
-   dev-ruby/test-unit:2
-   dev-ruby/mocha:1.0
-   dev-ruby/webmock
-   dev-ruby/rack
-   dev-ruby/actionpack:6.1
-   dev-ruby/railties:6.1
-)"
-
-all_ruby_prepare() {
-   sed -i -e 's:_relative ": "./:' ${RUBY_FAKEGEM_GEMSPEC} || die
-
-   # Require a compatible version of mocha
-   sed -i -e '1igem "mocha", "~> 1.0"; gem "railties", "~>6.1.0" ; gem 
"actionpack", "~>6.1.0"; require "action_dispatch"' \
-   -e '/mocha/ s/mini_test/minitest/' \
-   -e 's/if RUN_COVERAGE/if false/' test/test_helper.rb || die
-
-   # Avoid test tripped up by kwargs confusion
-   sed -i -e '/test_authorize/askip "kwargs confusion"' 
test/units/cli_test.rb || die
-}
-
-each_ruby_test() {
-   ${RUBY} -Ilib:test:. -e 'Dir["test/**/*test*.rb"].each {|f| require f}' 
|| die
-}



[gentoo-commits] repo/gentoo:master commit in: dev-ruby/oauth/

2023-08-27 Thread Jakov Smolić
commit: c95bf46f43b59d40c588fdee609c49438a17956a
Author: Jakov Smolić  gentoo  org>
AuthorDate: Sun Aug 27 10:16:21 2023 +
Commit: Jakov Smolić  gentoo  org>
CommitDate: Sun Aug 27 10:16:21 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c95bf46f

dev-ruby/oauth: Keyword 0.6.2-r1 riscv, #913034

Signed-off-by: Jakov Smolić  gentoo.org>

 dev-ruby/oauth/oauth-0.6.2-r1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-ruby/oauth/oauth-0.6.2-r1.ebuild 
b/dev-ruby/oauth/oauth-0.6.2-r1.ebuild
index 84466604d31a..7b74b5dfd58c 100644
--- a/dev-ruby/oauth/oauth-0.6.2-r1.ebuild
+++ b/dev-ruby/oauth/oauth-0.6.2-r1.ebuild
@@ -18,7 +18,7 @@ RUBY_S="${PN}-ruby-${PV}"
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="~amd64 ~ppc ~x86"
+KEYWORDS="~amd64 ~ppc ~riscv ~x86"
 IUSE=""
 
 ruby_add_rdepend "



[gentoo-commits] repo/gentoo:master commit in: dev-ruby/oauth/

2023-08-26 Thread Arthur Zamarin
commit: 218f2a4bcaaa3ad381d80ad5200da1c126b8abb6
Author: Arthur Zamarin  gentoo  org>
AuthorDate: Sat Aug 26 13:47:07 2023 +
Commit: Arthur Zamarin  gentoo  org>
CommitDate: Sat Aug 26 13:47:07 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=218f2a4b

dev-ruby/oauth: Keyword 0.6.2-r1 x86, #913034

Signed-off-by: Arthur Zamarin  gentoo.org>

 dev-ruby/oauth/oauth-0.6.2-r1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-ruby/oauth/oauth-0.6.2-r1.ebuild 
b/dev-ruby/oauth/oauth-0.6.2-r1.ebuild
index 94dfd0e8d725..84466604d31a 100644
--- a/dev-ruby/oauth/oauth-0.6.2-r1.ebuild
+++ b/dev-ruby/oauth/oauth-0.6.2-r1.ebuild
@@ -18,7 +18,7 @@ RUBY_S="${PN}-ruby-${PV}"
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="~amd64 ~ppc"
+KEYWORDS="~amd64 ~ppc ~x86"
 IUSE=""
 
 ruby_add_rdepend "



[gentoo-commits] repo/gentoo:master commit in: dev-ruby/oauth/

2023-08-26 Thread Sam James
commit: 8c2278d856cb727a9c96b5a53407e4b23bc8c9ee
Author: Sam James  gentoo  org>
AuthorDate: Sat Aug 26 13:30:01 2023 +
Commit: Sam James  gentoo  org>
CommitDate: Sat Aug 26 13:30:01 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8c2278d8

dev-ruby/oauth: Keyword 0.6.2-r1 ppc, #913034

Signed-off-by: Sam James  gentoo.org>

 dev-ruby/oauth/oauth-0.6.2-r1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-ruby/oauth/oauth-0.6.2-r1.ebuild 
b/dev-ruby/oauth/oauth-0.6.2-r1.ebuild
index 29b7d4397a7d..94dfd0e8d725 100644
--- a/dev-ruby/oauth/oauth-0.6.2-r1.ebuild
+++ b/dev-ruby/oauth/oauth-0.6.2-r1.ebuild
@@ -18,7 +18,7 @@ RUBY_S="${PN}-ruby-${PV}"
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="~amd64"
+KEYWORDS="~amd64 ~ppc"
 IUSE=""
 
 ruby_add_rdepend "



[gentoo-commits] repo/gentoo:master commit in: dev-ruby/oauth/

2023-08-25 Thread Hans de Graaff
commit: e0bf42b92a695d28fdd53ddc1595b50dc27ba414
Author: Hans de Graaff  gentoo  org>
AuthorDate: Sat Aug 26 06:52:30 2023 +
Commit: Hans de Graaff  gentoo  org>
CommitDate: Sat Aug 26 06:53:03 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e0bf42b9

dev-ruby/oauth: fix tests

Add missing test dependency.
Fix minitest deprecation.

Closes: https://bugs.gentoo.org/911962
Signed-off-by: Hans de Graaff  gentoo.org>

 dev-ruby/oauth/oauth-0.6.2-r1.ebuild | 56 
 1 file changed, 56 insertions(+)

diff --git a/dev-ruby/oauth/oauth-0.6.2-r1.ebuild 
b/dev-ruby/oauth/oauth-0.6.2-r1.ebuild
new file mode 100644
index ..29b7d4397a7d
--- /dev/null
+++ b/dev-ruby/oauth/oauth-0.6.2-r1.ebuild
@@ -0,0 +1,56 @@
+# Copyright 1999-2023 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+USE_RUBY="ruby30 ruby31 ruby32"
+
+RUBY_FAKEGEM_BINWRAP="oauth"
+RUBY_FAKEGEM_EXTRADOC="CHANGELOG.md README.md TODO"
+
+RUBY_FAKEGEM_GEMSPEC="oauth.gemspec"
+
+inherit ruby-fakegem
+
+DESCRIPTION="A RubyGem for implementing both OAuth clients and servers"
+HOMEPAGE="https://github.com/oauth-xx/oauth-ruby";
+SRC_URI="https://github.com/oauth-xx/oauth-ruby/archive/v${PV}.tar.gz -> 
${P}.tar.gz"
+RUBY_S="${PN}-ruby-${PV}"
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="~amd64"
+IUSE=""
+
+ruby_add_rdepend "
+   dev-ruby/snaky_hash:1
+   >=dev-ruby/version_gem-1.1:1
+"
+
+ruby_add_bdepend "test? (
+   dev-ruby/bundler
+   dev-ruby/test-unit:2
+   dev-ruby/mocha:2
+   dev-ruby/webmock
+   dev-ruby/rack
+   dev-ruby/rest-client
+   dev-ruby/actionpack:6.1
+   dev-ruby/railties:6.1
+)"
+
+all_ruby_prepare() {
+   sed -i -e 's:_relative ": "./:' ${RUBY_FAKEGEM_GEMSPEC} || die
+
+   # Require compatible versions of dependencies
+   sed -i -e '1igem "railties", "~>6.1.0" ; gem "actionpack", "~>6.1.0"; 
require "action_dispatch"' \
+   -e '/mocha/ s/mini_test/minitest/' \
+   -e 's/if RUN_COVERAGE/if false/' test/test_helper.rb || die
+
+   # Avoid test tripped up by kwargs confusion
+   sed -e '/test_authorize/askip "kwargs confusion"' \
+   -e 's/MiniTest/Minitest/' \
+   -i test/units/cli_test.rb || die
+}
+
+each_ruby_test() {
+   ${RUBY} -Ilib:test:. -e 'Dir["test/**/*test*.rb"].each {|f| require f}' 
|| die
+}



[gentoo-commits] repo/gentoo:master commit in: dev-ruby/oauth/

2023-07-11 Thread Jakov Smolić
commit: d542328c2082678fe7fd86f5735e4814f41092f5
Author: Jakov Smolić  gentoo  org>
AuthorDate: Tue Jul 11 08:13:02 2023 +
Commit: Jakov Smolić  gentoo  org>
CommitDate: Tue Jul 11 08:13:02 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d542328c

dev-ruby/oauth: Keyword 0.6.2 riscv, #905724

Signed-off-by: Jakov Smolić  gentoo.org>

 dev-ruby/oauth/oauth-0.6.2.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-ruby/oauth/oauth-0.6.2.ebuild 
b/dev-ruby/oauth/oauth-0.6.2.ebuild
index 8d6f693b0b7f..bc39464e4173 100644
--- a/dev-ruby/oauth/oauth-0.6.2.ebuild
+++ b/dev-ruby/oauth/oauth-0.6.2.ebuild
@@ -18,7 +18,7 @@ RUBY_S="${PN}-ruby-${PV}"
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="~amd64"
+KEYWORDS="~amd64 ~riscv"
 IUSE=""
 
 ruby_add_rdepend "



[gentoo-commits] repo/gentoo:master commit in: dev-ruby/oauth/

2023-05-04 Thread Hans de Graaff
commit: c2da00861ff3f521176aaa3df20496900ad01643
Author: Hans de Graaff  gentoo  org>
AuthorDate: Fri May  5 05:53:32 2023 +
Commit: Hans de Graaff  gentoo  org>
CommitDate: Fri May  5 05:56:55 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c2da0086

dev-ruby/oauth: add 0.6.2

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

 dev-ruby/oauth/Manifest   |  1 +
 dev-ruby/oauth/oauth-0.6.2.ebuild | 53 +++
 2 files changed, 54 insertions(+)

diff --git a/dev-ruby/oauth/Manifest b/dev-ruby/oauth/Manifest
index b00f5bccbf13..d978bfb874ca 100644
--- a/dev-ruby/oauth/Manifest
+++ b/dev-ruby/oauth/Manifest
@@ -1 +1,2 @@
 DIST oauth-0.5.14.tar.gz 68764 BLAKE2B 
19c7f463d5fcba62a609355834ba93adf1efa05b2ce25fc5d9d3623da15d35a7cb54eff9201bb4f373a66629781f5937326430a7a1c9c615929bcc5bae099a67
 SHA512 
646ed55a602e9e7b8e8d59532c89929305abeeda6b38fc38bdf1d5e400deec7f5884d988bcbb9e3537eb3a0921dacb73cb5238af27e9885aff95b67196f62c99
+DIST oauth-0.6.2.tar.gz 81702 BLAKE2B 
2775c0711beb9f3612844ae07ff59953d4db72c0f9a797c6eac49132a021a48481a13f4b1428b2037b0a04b83b5d79e621cccd4a794fe3a339a1ceb468f0b165
 SHA512 
22f4f734daa42339bbaed1d1d449a4591ef4404aaf8cf1753ba705735a176f6142853b2c4f5e8ff3afa3e9899163af1c5598685664326d58a5b529d94b65441f

diff --git a/dev-ruby/oauth/oauth-0.6.2.ebuild 
b/dev-ruby/oauth/oauth-0.6.2.ebuild
new file mode 100644
index ..8d6f693b0b7f
--- /dev/null
+++ b/dev-ruby/oauth/oauth-0.6.2.ebuild
@@ -0,0 +1,53 @@
+# Copyright 1999-2023 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+USE_RUBY="ruby30 ruby31"
+
+RUBY_FAKEGEM_BINWRAP="oauth"
+RUBY_FAKEGEM_EXTRADOC="CHANGELOG.md README.md TODO"
+
+RUBY_FAKEGEM_GEMSPEC="oauth.gemspec"
+
+inherit ruby-fakegem
+
+DESCRIPTION="A RubyGem for implementing both OAuth clients and servers"
+HOMEPAGE="https://github.com/oauth-xx/oauth-ruby";
+SRC_URI="https://github.com/oauth-xx/oauth-ruby/archive/v${PV}.tar.gz -> 
${P}.tar.gz"
+RUBY_S="${PN}-ruby-${PV}"
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="~amd64"
+IUSE=""
+
+ruby_add_rdepend "
+   dev-ruby/snaky_hash:1
+   >=dev-ruby/version_gem-1.1:1
+"
+
+ruby_add_bdepend "test? (
+   dev-ruby/bundler
+   dev-ruby/test-unit:2
+   dev-ruby/mocha:1.0
+   dev-ruby/webmock
+   dev-ruby/rack
+   dev-ruby/actionpack:6.1
+   dev-ruby/railties:6.1
+)"
+
+all_ruby_prepare() {
+   sed -i -e 's:_relative ": "./:' ${RUBY_FAKEGEM_GEMSPEC} || die
+
+   # Require a compatible version of mocha
+   sed -i -e '1igem "mocha", "~> 1.0"; gem "railties", "~>6.1.0" ; gem 
"actionpack", "~>6.1.0"; require "action_dispatch"' \
+   -e '/mocha/ s/mini_test/minitest/' \
+   -e 's/if RUN_COVERAGE/if false/' test/test_helper.rb || die
+
+   # Avoid test tripped up by kwargs confusion
+   sed -i -e '/test_authorize/askip "kwargs confusion"' 
test/units/cli_test.rb || die
+}
+
+each_ruby_test() {
+   ${RUBY} -Ilib:test:. -e 'Dir["test/**/*test*.rb"].each {|f| require f}' 
|| die
+}



[gentoo-commits] repo/gentoo:master commit in: dev-ruby/oauth/

2023-01-13 Thread Hans de Graaff
commit: 247f5f296325c582be45854e6aeb9e9342ec89a3
Author: Hans de Graaff  gentoo  org>
AuthorDate: Fri Jan 13 08:26:50 2023 +
Commit: Hans de Graaff  gentoo  org>
CommitDate: Fri Jan 13 08:28:29 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=247f5f29

dev-ruby/oauth: add 0.5.14

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

 dev-ruby/oauth/Manifest|  1 +
 dev-ruby/oauth/oauth-0.5.14.ebuild | 46 ++
 2 files changed, 47 insertions(+)

diff --git a/dev-ruby/oauth/Manifest b/dev-ruby/oauth/Manifest
index 85f3d66865d4..9e0f781b453a 100644
--- a/dev-ruby/oauth/Manifest
+++ b/dev-ruby/oauth/Manifest
@@ -1,2 +1,3 @@
 DIST oauth-0.5.10.tar.gz 67073 BLAKE2B 
30d5823151412f53af41f28f7d5831bcfa7e7cf0b86d3a122b825fd086c00dab7fca7a4838b7ed5ebb269725af7c2a64cf771fc598bd6a97b9968e480ce78b4c
 SHA512 
0ff5cd07052e210b1948496844166e1095b09d9c39592b6b11fa3aa4909fd8debec55237493d292dc60f4fe513ddf1a8f58cdb0215949241cf753d4e53aa107e
+DIST oauth-0.5.14.tar.gz 68764 BLAKE2B 
19c7f463d5fcba62a609355834ba93adf1efa05b2ce25fc5d9d3623da15d35a7cb54eff9201bb4f373a66629781f5937326430a7a1c9c615929bcc5bae099a67
 SHA512 
646ed55a602e9e7b8e8d59532c89929305abeeda6b38fc38bdf1d5e400deec7f5884d988bcbb9e3537eb3a0921dacb73cb5238af27e9885aff95b67196f62c99
 DIST oauth-0.5.8.tar.gz 67852 BLAKE2B 
7dc19a2f84f585fd517d677bf441c5964b45566ffea3cbd7612061db115a5570cf8315b4cbdd8788f9b0ff336b6eea91922f17c0ce17a4c626731282bd8203ca
 SHA512 
3bf8298ea5bcffe1fe61ba894a5cfcb04a5814348154749e056ea18d975b00b10db7ed226f2187ffb9f414b755022bf32ff4bb2c02f1f429f6a9a7062032d82e

diff --git a/dev-ruby/oauth/oauth-0.5.14.ebuild 
b/dev-ruby/oauth/oauth-0.5.14.ebuild
new file mode 100644
index ..2092a7815cc8
--- /dev/null
+++ b/dev-ruby/oauth/oauth-0.5.14.ebuild
@@ -0,0 +1,46 @@
+# Copyright 1999-2023 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+USE_RUBY="ruby27 ruby30 ruby31"
+
+RUBY_FAKEGEM_BINWRAP="oauth"
+RUBY_FAKEGEM_EXTRADOC="CHANGELOG.md README.md TODO"
+
+RUBY_FAKEGEM_GEMSPEC="oauth.gemspec"
+
+inherit ruby-fakegem
+
+DESCRIPTION="A RubyGem for implementing both OAuth clients and servers"
+HOMEPAGE="https://github.com/oauth-xx/oauth-ruby";
+SRC_URI="https://github.com/oauth-xx/oauth-ruby/archive/v${PV}.tar.gz -> 
${P}.tar.gz"
+RUBY_S="${PN}-ruby-${PV}"
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="~amd64 ~ppc ~riscv ~x86"
+IUSE=""
+
+ruby_add_bdepend "test? (
+   dev-ruby/bundler
+   dev-ruby/test-unit:2
+   dev-ruby/mocha:1.0
+   dev-ruby/webmock
+   dev-ruby/rack
+   dev-ruby/actionpack:6.1
+   dev-ruby/railties:6.1
+)"
+
+all_ruby_prepare() {
+   # Require a compatible version of mocha
+   sed -i -e '1igem "mocha", "~> 1.0"; gem "railties", "~>6.1.0" ; gem 
"actionpack", "~>6.1.0"; require "action_dispatch"' \
+   -e '/mocha/ s/mini_test/minitest/' \
+   -e '/\(byebug\|minitest_helpers\|simplecov\)/I s:^:#:' 
test/test_helper.rb || die
+
+   # Avoid test tripped up by kwargs confusion
+   sed -i -e '/test_authorize/askip "kwargs confusion"' 
test/units/test_cli.rb || die
+}
+
+each_ruby_test() {
+   ${RUBY} -Ilib:test:. -e 'Dir["test/**/*test*.rb"].each {|f| require f}' 
|| die
+}



[gentoo-commits] repo/gentoo:master commit in: dev-ruby/oauth/

2022-07-26 Thread Hans de Graaff
commit: 46f51d8dec299e53f0ac914c98517558ab8bf371
Author: Hans de Graaff  gentoo  org>
AuthorDate: Tue Jul 26 07:45:50 2022 +
Commit: Hans de Graaff  gentoo  org>
CommitDate: Tue Jul 26 09:49:32 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=46f51d8d

dev-ruby/oauth: fix tests

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

 dev-ruby/oauth/oauth-0.5.10.ebuild | 10 --
 1 file changed, 8 insertions(+), 2 deletions(-)

diff --git a/dev-ruby/oauth/oauth-0.5.10.ebuild 
b/dev-ruby/oauth/oauth-0.5.10.ebuild
index 6aacd85e42e9..d2a781ddc4e8 100644
--- a/dev-ruby/oauth/oauth-0.5.10.ebuild
+++ b/dev-ruby/oauth/oauth-0.5.10.ebuild
@@ -32,8 +32,14 @@ ruby_add_bdepend "test? (
 
 all_ruby_prepare() {
# Require a compatible version of mocha
-   sed -i -e '1igem "mocha", "~> 1.0"; gem "railties", "~>6.1.0" ; gem 
"actionpack", "~>6.1.0"' \
-   -e '2i gem "test-unit"; require "test/unit"' \
+   sed -i -e '1igem "mocha", "~> 1.0"; gem "railties", "~>6.1.0" ; gem 
"actionpack", "~>6.1.0"; require "action_dispatch"' \
-e '/mocha/ s/mini_test/minitest/' \
-e '/\(byebug\|minitest_helpers\|simplecov\)/I s:^:#:' 
test/test_helper.rb || die
+
+   # Avoid test tripped up by kwargs confusion
+   sed -i -e '/test_authorize/askip "kwargs confusion"' 
test/units/test_cli.rb || die
+}
+
+each_ruby_test() {
+   ${RUBY} -Ilib:test:. -e 'Dir["test/**/*test*.rb"].each {|f| require f}' 
|| die
 }



[gentoo-commits] repo/gentoo:master commit in: dev-ruby/oauth/

2022-05-04 Thread Hans de Graaff
commit: db1433d17658bb674787b320b5a9cad641a2e3a3
Author: Hans de Graaff  gentoo  org>
AuthorDate: Thu May  5 05:49:45 2022 +
Commit: Hans de Graaff  gentoo  org>
CommitDate: Thu May  5 05:50:09 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=db1433d1

dev-ruby/oauth: add 0.5.10

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

 dev-ruby/oauth/Manifest|  1 +
 dev-ruby/oauth/oauth-0.5.10.ebuild | 39 ++
 2 files changed, 40 insertions(+)

diff --git a/dev-ruby/oauth/Manifest b/dev-ruby/oauth/Manifest
index 95e7a931f2d8..85f3d66865d4 100644
--- a/dev-ruby/oauth/Manifest
+++ b/dev-ruby/oauth/Manifest
@@ -1 +1,2 @@
+DIST oauth-0.5.10.tar.gz 67073 BLAKE2B 
30d5823151412f53af41f28f7d5831bcfa7e7cf0b86d3a122b825fd086c00dab7fca7a4838b7ed5ebb269725af7c2a64cf771fc598bd6a97b9968e480ce78b4c
 SHA512 
0ff5cd07052e210b1948496844166e1095b09d9c39592b6b11fa3aa4909fd8debec55237493d292dc60f4fe513ddf1a8f58cdb0215949241cf753d4e53aa107e
 DIST oauth-0.5.8.tar.gz 67852 BLAKE2B 
7dc19a2f84f585fd517d677bf441c5964b45566ffea3cbd7612061db115a5570cf8315b4cbdd8788f9b0ff336b6eea91922f17c0ce17a4c626731282bd8203ca
 SHA512 
3bf8298ea5bcffe1fe61ba894a5cfcb04a5814348154749e056ea18d975b00b10db7ed226f2187ffb9f414b755022bf32ff4bb2c02f1f429f6a9a7062032d82e

diff --git a/dev-ruby/oauth/oauth-0.5.10.ebuild 
b/dev-ruby/oauth/oauth-0.5.10.ebuild
new file mode 100644
index ..6aacd85e42e9
--- /dev/null
+++ b/dev-ruby/oauth/oauth-0.5.10.ebuild
@@ -0,0 +1,39 @@
+# Copyright 1999-2022 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+USE_RUBY="ruby26 ruby27 ruby30"
+
+RUBY_FAKEGEM_EXTRADOC="CHANGELOG.md README.md TODO"
+
+RUBY_FAKEGEM_GEMSPEC="oauth.gemspec"
+
+inherit ruby-fakegem
+
+DESCRIPTION="A RubyGem for implementing both OAuth clients and servers"
+HOMEPAGE="https://github.com/oauth-xx/oauth-ruby";
+SRC_URI="https://github.com/oauth-xx/oauth-ruby/archive/v${PV}.tar.gz -> 
${P}.tar.gz"
+RUBY_S="${PN}-ruby-${PV}"
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="~amd64 ~ppc ~riscv ~x86"
+IUSE=""
+
+ruby_add_bdepend "test? (
+   dev-ruby/bundler
+   dev-ruby/test-unit:2
+   dev-ruby/mocha:1.0
+   dev-ruby/webmock
+   dev-ruby/rack
+   dev-ruby/actionpack:6.1
+   dev-ruby/railties:6.1
+)"
+
+all_ruby_prepare() {
+   # Require a compatible version of mocha
+   sed -i -e '1igem "mocha", "~> 1.0"; gem "railties", "~>6.1.0" ; gem 
"actionpack", "~>6.1.0"' \
+   -e '2i gem "test-unit"; require "test/unit"' \
+   -e '/mocha/ s/mini_test/minitest/' \
+   -e '/\(byebug\|minitest_helpers\|simplecov\)/I s:^:#:' 
test/test_helper.rb || die
+}



[gentoo-commits] repo/gentoo:master commit in: dev-ruby/oauth/

2022-04-30 Thread Hans de Graaff
commit: 0063c138094d753b9a245b4adaee04fe50ee6b85
Author: Hans de Graaff  gentoo  org>
AuthorDate: Sun May  1 06:13:47 2022 +
Commit: Hans de Graaff  gentoo  org>
CommitDate: Sun May  1 06:13:47 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0063c138

dev-ruby/oauth: enable ruby30

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

 dev-ruby/oauth/oauth-0.5.8.ebuild | 8 
 1 file changed, 4 insertions(+), 4 deletions(-)

diff --git a/dev-ruby/oauth/oauth-0.5.8.ebuild 
b/dev-ruby/oauth/oauth-0.5.8.ebuild
index a675a968338d..6aacd85e42e9 100644
--- a/dev-ruby/oauth/oauth-0.5.8.ebuild
+++ b/dev-ruby/oauth/oauth-0.5.8.ebuild
@@ -2,7 +2,7 @@
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=8
-USE_RUBY="ruby26 ruby27"
+USE_RUBY="ruby26 ruby27 ruby30"
 
 RUBY_FAKEGEM_EXTRADOC="CHANGELOG.md README.md TODO"
 
@@ -26,13 +26,13 @@ ruby_add_bdepend "test? (
dev-ruby/mocha:1.0
dev-ruby/webmock
dev-ruby/rack
-   dev-ruby/actionpack:6.0
-   dev-ruby/railties:6.0
+   dev-ruby/actionpack:6.1
+   dev-ruby/railties:6.1
 )"
 
 all_ruby_prepare() {
# Require a compatible version of mocha
-   sed -i -e '1igem "mocha", "~> 1.0"; gem "railties", "~>6.0.0" ; gem 
"actionpack", "~>6.0.0"' \
+   sed -i -e '1igem "mocha", "~> 1.0"; gem "railties", "~>6.1.0" ; gem 
"actionpack", "~>6.1.0"' \
-e '2i gem "test-unit"; require "test/unit"' \
-e '/mocha/ s/mini_test/minitest/' \
-e '/\(byebug\|minitest_helpers\|simplecov\)/I s:^:#:' 
test/test_helper.rb || die



[gentoo-commits] repo/gentoo:master commit in: dev-ruby/oauth/

2022-04-30 Thread Hans de Graaff
commit: 0e2bb825a111f6ddbbb4eca011ca7e4d5415dfc3
Author: Hans de Graaff  gentoo  org>
AuthorDate: Sun May  1 05:58:02 2022 +
Commit: Hans de Graaff  gentoo  org>
CommitDate: Sun May  1 05:58:02 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0e2bb825

dev-ruby/oauth: drop 0.5.6, 0.5.7

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

 dev-ruby/oauth/Manifest   |  2 --
 dev-ruby/oauth/oauth-0.5.6.ebuild | 39 ---
 dev-ruby/oauth/oauth-0.5.7.ebuild | 39 ---
 3 files changed, 80 deletions(-)

diff --git a/dev-ruby/oauth/Manifest b/dev-ruby/oauth/Manifest
index f6bf356a4632..95e7a931f2d8 100644
--- a/dev-ruby/oauth/Manifest
+++ b/dev-ruby/oauth/Manifest
@@ -1,3 +1 @@
-DIST oauth-0.5.6.tar.gz 60887 BLAKE2B 
8dea7bc6b1a3c9d5befa5badbda105fed28004d6627624fedaf1572cc261421e3a8636019bb0a600a28fb6aa933d2b1be5faf613ae3062f7d50b314b86059b17
 SHA512 
dcb516b90d6cf0ff3f1071fa7bf1e1b30cd998c79205f9a6df001d5c04784ad23ecd430b4e04565a6351efcc780b552dfc38ea962d0a938c9e19a6e5bd3fe070
-DIST oauth-0.5.7.tar.gz 65889 BLAKE2B 
71787b6a03156a25edbb006acd05f7aae789e9bc0fffa0afe9d3f0c55a2b991fa20527c493e9933891adc0e32571c1834f1a3f928e12f2a7b3159ebc09d29286
 SHA512 
4bc217123aaf74482ed118344c57b241b9efea172d872d670a860e8f236fac4ae1956826fcc786025164a5728c62edded8cb453f0051091c48bc87fe1f72f931
 DIST oauth-0.5.8.tar.gz 67852 BLAKE2B 
7dc19a2f84f585fd517d677bf441c5964b45566ffea3cbd7612061db115a5570cf8315b4cbdd8788f9b0ff336b6eea91922f17c0ce17a4c626731282bd8203ca
 SHA512 
3bf8298ea5bcffe1fe61ba894a5cfcb04a5814348154749e056ea18d975b00b10db7ed226f2187ffb9f414b755022bf32ff4bb2c02f1f429f6a9a7062032d82e

diff --git a/dev-ruby/oauth/oauth-0.5.6.ebuild 
b/dev-ruby/oauth/oauth-0.5.6.ebuild
deleted file mode 100644
index 7fdf4be49c41..
--- a/dev-ruby/oauth/oauth-0.5.6.ebuild
+++ /dev/null
@@ -1,39 +0,0 @@
-# Copyright 1999-2021 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-USE_RUBY="ruby25 ruby26 ruby27"
-
-RUBY_FAKEGEM_EXTRADOC="HISTORY README.rdoc TODO"
-
-RUBY_FAKEGEM_GEMSPEC="oauth.gemspec"
-
-inherit ruby-fakegem
-
-DESCRIPTION="A RubyGem for implementing both OAuth clients and servers"
-HOMEPAGE="https://github.com/oauth-xx/oauth-ruby";
-SRC_URI="https://github.com/oauth-xx/oauth-ruby/archive/v${PV}.tar.gz -> 
${P}.tar.gz"
-RUBY_S="${PN}-ruby-${PV}"
-
-LICENSE="MIT"
-SLOT="0"
-KEYWORDS="~amd64 ~ppc ~x86"
-IUSE=""
-
-ruby_add_bdepend "test? (
-   dev-ruby/bundler
-   dev-ruby/test-unit:2
-   dev-ruby/mocha:1.0
-   dev-ruby/webmock
-   dev-ruby/rack
-   dev-ruby/actionpack:6.0
-   dev-ruby/railties:6.0
-)"
-
-all_ruby_prepare() {
-   # Require a compatible version of mocha
-   sed -i -e '1igem "mocha", "~> 1.0"; gem "railties", "~>6.0.0" ; gem 
"actionpack", "~>6.0.0"' \
-   -e '2i gem "test-unit"; require "test/unit"' \
-   -e '/mocha/ s/mini_test/minitest/' \
-   -e '/\(byebug\|minitest_helpers\|simplecov\)/I s:^:#:' 
test/test_helper.rb || die
-}

diff --git a/dev-ruby/oauth/oauth-0.5.7.ebuild 
b/dev-ruby/oauth/oauth-0.5.7.ebuild
deleted file mode 100644
index cdb746579c6c..
--- a/dev-ruby/oauth/oauth-0.5.7.ebuild
+++ /dev/null
@@ -1,39 +0,0 @@
-# Copyright 1999-2021 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-USE_RUBY="ruby26 ruby27"
-
-RUBY_FAKEGEM_EXTRADOC="CHANGELOG.md README.md TODO"
-
-RUBY_FAKEGEM_GEMSPEC="oauth.gemspec"
-
-inherit ruby-fakegem
-
-DESCRIPTION="A RubyGem for implementing both OAuth clients and servers"
-HOMEPAGE="https://github.com/oauth-xx/oauth-ruby";
-SRC_URI="https://github.com/oauth-xx/oauth-ruby/archive/v${PV}.tar.gz -> 
${P}.tar.gz"
-RUBY_S="${PN}-ruby-${PV}"
-
-LICENSE="MIT"
-SLOT="0"
-KEYWORDS="~amd64 ~ppc ~x86"
-IUSE=""
-
-ruby_add_bdepend "test? (
-   dev-ruby/bundler
-   dev-ruby/test-unit:2
-   dev-ruby/mocha:1.0
-   dev-ruby/webmock
-   dev-ruby/rack
-   dev-ruby/actionpack:6.0
-   dev-ruby/railties:6.0
-)"
-
-all_ruby_prepare() {
-   # Require a compatible version of mocha
-   sed -i -e '1igem "mocha", "~> 1.0"; gem "railties", "~>6.0.0" ; gem 
"actionpack", "~>6.0.0"' \
-   -e '2i gem "test-unit"; require "test/unit"' \
-   -e '/mocha/ s/mini_test/minitest/' \
-   -e '/\(byebug\|minitest_helpers\|simplecov\)/I s:^:#:' 
test/test_helper.rb || die
-}



[gentoo-commits] repo/gentoo:master commit in: dev-ruby/oauth/

2021-11-10 Thread Hans de Graaff
commit: 54fb0e926b5ddeb036193e2b8db6746d1f1c5e40
Author: Hans de Graaff  gentoo  org>
AuthorDate: Thu Nov 11 07:02:42 2021 +
Commit: Hans de Graaff  gentoo  org>
CommitDate: Thu Nov 11 07:04:05 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=54fb0e92

dev-ruby/oauth: add 0.5.8

Package-Manager: Portage-3.0.28, Repoman-3.0.3
Signed-off-by: Hans de Graaff  gentoo.org>

 dev-ruby/oauth/Manifest   |  1 +
 dev-ruby/oauth/oauth-0.5.8.ebuild | 39 +++
 2 files changed, 40 insertions(+)

diff --git a/dev-ruby/oauth/Manifest b/dev-ruby/oauth/Manifest
index c9b32ecea0b..f6bf356a463 100644
--- a/dev-ruby/oauth/Manifest
+++ b/dev-ruby/oauth/Manifest
@@ -1,2 +1,3 @@
 DIST oauth-0.5.6.tar.gz 60887 BLAKE2B 
8dea7bc6b1a3c9d5befa5badbda105fed28004d6627624fedaf1572cc261421e3a8636019bb0a600a28fb6aa933d2b1be5faf613ae3062f7d50b314b86059b17
 SHA512 
dcb516b90d6cf0ff3f1071fa7bf1e1b30cd998c79205f9a6df001d5c04784ad23ecd430b4e04565a6351efcc780b552dfc38ea962d0a938c9e19a6e5bd3fe070
 DIST oauth-0.5.7.tar.gz 65889 BLAKE2B 
71787b6a03156a25edbb006acd05f7aae789e9bc0fffa0afe9d3f0c55a2b991fa20527c493e9933891adc0e32571c1834f1a3f928e12f2a7b3159ebc09d29286
 SHA512 
4bc217123aaf74482ed118344c57b241b9efea172d872d670a860e8f236fac4ae1956826fcc786025164a5728c62edded8cb453f0051091c48bc87fe1f72f931
+DIST oauth-0.5.8.tar.gz 67852 BLAKE2B 
7dc19a2f84f585fd517d677bf441c5964b45566ffea3cbd7612061db115a5570cf8315b4cbdd8788f9b0ff336b6eea91922f17c0ce17a4c626731282bd8203ca
 SHA512 
3bf8298ea5bcffe1fe61ba894a5cfcb04a5814348154749e056ea18d975b00b10db7ed226f2187ffb9f414b755022bf32ff4bb2c02f1f429f6a9a7062032d82e

diff --git a/dev-ruby/oauth/oauth-0.5.8.ebuild 
b/dev-ruby/oauth/oauth-0.5.8.ebuild
new file mode 100644
index 000..cdb746579c6
--- /dev/null
+++ b/dev-ruby/oauth/oauth-0.5.8.ebuild
@@ -0,0 +1,39 @@
+# Copyright 1999-2021 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+USE_RUBY="ruby26 ruby27"
+
+RUBY_FAKEGEM_EXTRADOC="CHANGELOG.md README.md TODO"
+
+RUBY_FAKEGEM_GEMSPEC="oauth.gemspec"
+
+inherit ruby-fakegem
+
+DESCRIPTION="A RubyGem for implementing both OAuth clients and servers"
+HOMEPAGE="https://github.com/oauth-xx/oauth-ruby";
+SRC_URI="https://github.com/oauth-xx/oauth-ruby/archive/v${PV}.tar.gz -> 
${P}.tar.gz"
+RUBY_S="${PN}-ruby-${PV}"
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="~amd64 ~ppc ~x86"
+IUSE=""
+
+ruby_add_bdepend "test? (
+   dev-ruby/bundler
+   dev-ruby/test-unit:2
+   dev-ruby/mocha:1.0
+   dev-ruby/webmock
+   dev-ruby/rack
+   dev-ruby/actionpack:6.0
+   dev-ruby/railties:6.0
+)"
+
+all_ruby_prepare() {
+   # Require a compatible version of mocha
+   sed -i -e '1igem "mocha", "~> 1.0"; gem "railties", "~>6.0.0" ; gem 
"actionpack", "~>6.0.0"' \
+   -e '2i gem "test-unit"; require "test/unit"' \
+   -e '/mocha/ s/mini_test/minitest/' \
+   -e '/\(byebug\|minitest_helpers\|simplecov\)/I s:^:#:' 
test/test_helper.rb || die
+}



[gentoo-commits] repo/gentoo:master commit in: dev-ruby/oauth/

2021-11-02 Thread Hans de Graaff
commit: 5f5663c8e033306b15604942562a4851ba527ecc
Author: Hans de Graaff  gentoo  org>
AuthorDate: Wed Nov  3 06:41:49 2021 +
Commit: Hans de Graaff  gentoo  org>
CommitDate: Wed Nov  3 06:43:19 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5f5663c8

dev-ruby/oauth: add 0.5.7

Package-Manager: Portage-3.0.28, Repoman-3.0.3
Signed-off-by: Hans de Graaff  gentoo.org>

 dev-ruby/oauth/Manifest   |  1 +
 dev-ruby/oauth/oauth-0.5.7.ebuild | 39 +++
 2 files changed, 40 insertions(+)

diff --git a/dev-ruby/oauth/Manifest b/dev-ruby/oauth/Manifest
index 45230fd3af3..c9b32ecea0b 100644
--- a/dev-ruby/oauth/Manifest
+++ b/dev-ruby/oauth/Manifest
@@ -1 +1,2 @@
 DIST oauth-0.5.6.tar.gz 60887 BLAKE2B 
8dea7bc6b1a3c9d5befa5badbda105fed28004d6627624fedaf1572cc261421e3a8636019bb0a600a28fb6aa933d2b1be5faf613ae3062f7d50b314b86059b17
 SHA512 
dcb516b90d6cf0ff3f1071fa7bf1e1b30cd998c79205f9a6df001d5c04784ad23ecd430b4e04565a6351efcc780b552dfc38ea962d0a938c9e19a6e5bd3fe070
+DIST oauth-0.5.7.tar.gz 65889 BLAKE2B 
71787b6a03156a25edbb006acd05f7aae789e9bc0fffa0afe9d3f0c55a2b991fa20527c493e9933891adc0e32571c1834f1a3f928e12f2a7b3159ebc09d29286
 SHA512 
4bc217123aaf74482ed118344c57b241b9efea172d872d670a860e8f236fac4ae1956826fcc786025164a5728c62edded8cb453f0051091c48bc87fe1f72f931

diff --git a/dev-ruby/oauth/oauth-0.5.7.ebuild 
b/dev-ruby/oauth/oauth-0.5.7.ebuild
new file mode 100644
index 000..cdb746579c6
--- /dev/null
+++ b/dev-ruby/oauth/oauth-0.5.7.ebuild
@@ -0,0 +1,39 @@
+# Copyright 1999-2021 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+USE_RUBY="ruby26 ruby27"
+
+RUBY_FAKEGEM_EXTRADOC="CHANGELOG.md README.md TODO"
+
+RUBY_FAKEGEM_GEMSPEC="oauth.gemspec"
+
+inherit ruby-fakegem
+
+DESCRIPTION="A RubyGem for implementing both OAuth clients and servers"
+HOMEPAGE="https://github.com/oauth-xx/oauth-ruby";
+SRC_URI="https://github.com/oauth-xx/oauth-ruby/archive/v${PV}.tar.gz -> 
${P}.tar.gz"
+RUBY_S="${PN}-ruby-${PV}"
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="~amd64 ~ppc ~x86"
+IUSE=""
+
+ruby_add_bdepend "test? (
+   dev-ruby/bundler
+   dev-ruby/test-unit:2
+   dev-ruby/mocha:1.0
+   dev-ruby/webmock
+   dev-ruby/rack
+   dev-ruby/actionpack:6.0
+   dev-ruby/railties:6.0
+)"
+
+all_ruby_prepare() {
+   # Require a compatible version of mocha
+   sed -i -e '1igem "mocha", "~> 1.0"; gem "railties", "~>6.0.0" ; gem 
"actionpack", "~>6.0.0"' \
+   -e '2i gem "test-unit"; require "test/unit"' \
+   -e '/mocha/ s/mini_test/minitest/' \
+   -e '/\(byebug\|minitest_helpers\|simplecov\)/I s:^:#:' 
test/test_helper.rb || die
+}



[gentoo-commits] repo/gentoo:master commit in: dev-ruby/oauth/

2021-07-05 Thread Hans de Graaff
commit: 3b98c326191927cbca3220712d53100dc3794c45
Author: Hans de Graaff  gentoo  org>
AuthorDate: Mon Jul  5 06:12:09 2021 +
Commit: Hans de Graaff  gentoo  org>
CommitDate: Mon Jul  5 11:51:25 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3b98c326

dev-ruby/oauth: cleanup

Package-Manager: Portage-3.0.20, Repoman-3.0.2
Signed-off-by: Hans de Graaff  gentoo.org>

 dev-ruby/oauth/Manifest   |  2 --
 dev-ruby/oauth/oauth-0.5.4.ebuild | 39 ---
 dev-ruby/oauth/oauth-0.5.5.ebuild | 39 ---
 3 files changed, 80 deletions(-)

diff --git a/dev-ruby/oauth/Manifest b/dev-ruby/oauth/Manifest
index 0b8ec66c9ae..45230fd3af3 100644
--- a/dev-ruby/oauth/Manifest
+++ b/dev-ruby/oauth/Manifest
@@ -1,3 +1 @@
-DIST oauth-0.5.4.tar.gz 59141 BLAKE2B 
1e588d411795b7c5b4ae5b7b3c9928b69aaa005bef858137759757e9f06d6de144408e4dba33d7fbf82a3f2586238a71b85b89c681f5d633453dfe0da954a2fb
 SHA512 
f114f80255944934a276d0f9556ed37e4a0a72b221269cf7792f2c3a5a1504c5ec726fd5b7437b1102c648a6cf451a1c83de4689f53d30ea8c6a1d62662de535
-DIST oauth-0.5.5.tar.gz 60289 BLAKE2B 
28a283bdb251b791ab6e0d50e6ed7db09445177bcaf5a99258c465e3783c5535f7d6acee356ec2f7559a942d1146ae8487260f8945f3138de670c20c60d7068c
 SHA512 
9db8d68950b46b469777e320dea88e14506be846233f7c24e7dcdf9b57e761c43a7b715fa70f32a41b15ac7936a586e8b49a33af971fd0e9509d62827c69571f
 DIST oauth-0.5.6.tar.gz 60887 BLAKE2B 
8dea7bc6b1a3c9d5befa5badbda105fed28004d6627624fedaf1572cc261421e3a8636019bb0a600a28fb6aa933d2b1be5faf613ae3062f7d50b314b86059b17
 SHA512 
dcb516b90d6cf0ff3f1071fa7bf1e1b30cd998c79205f9a6df001d5c04784ad23ecd430b4e04565a6351efcc780b552dfc38ea962d0a938c9e19a6e5bd3fe070

diff --git a/dev-ruby/oauth/oauth-0.5.4.ebuild 
b/dev-ruby/oauth/oauth-0.5.4.ebuild
deleted file mode 100644
index f8e8976472f..000
--- a/dev-ruby/oauth/oauth-0.5.4.ebuild
+++ /dev/null
@@ -1,39 +0,0 @@
-# Copyright 1999-2021 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-USE_RUBY="ruby23 ruby24 ruby25 ruby26"
-
-RUBY_FAKEGEM_RECIPE_DOC="rdoc"
-
-RUBY_FAKEGEM_EXTRADOC="HISTORY README.rdoc TODO"
-
-inherit ruby-fakegem
-
-DESCRIPTION="A RubyGem for implementing both OAuth clients and servers"
-HOMEPAGE="https://github.com/oauth-xx/oauth-ruby";
-SRC_URI="https://github.com/oauth-xx/oauth-ruby/archive/v${PV}.tar.gz -> 
${P}.tar.gz"
-RUBY_S="${PN}-ruby-${PV}"
-
-LICENSE="MIT"
-SLOT="0"
-KEYWORDS="~amd64 ~ppc ~x86"
-IUSE=""
-
-ruby_add_bdepend "test? (
-   dev-ruby/bundler
-   dev-ruby/test-unit:2
-   dev-ruby/mocha:1.0
-   dev-ruby/webmock
-   dev-ruby/rack
-   dev-ruby/actionpack:5.2
-   dev-ruby/railties:5.2
-)"
-
-all_ruby_prepare() {
-   # Require a compatible version of mocha
-   sed -i -e '1igem "mocha", "~> 1.0"; gem "railties", "~>5.2.0" ; gem 
"actionpack", "~>5.2.0"' \
-   -e '2i gem "test-unit"; require "test/unit"' \
-   -e '/mocha/ s/mini_test/minitest/' \
-   -e '/\(byebug\|minitest_helpers\|simplecov\)/I s:^:#:' 
test/test_helper.rb || die
-}

diff --git a/dev-ruby/oauth/oauth-0.5.5.ebuild 
b/dev-ruby/oauth/oauth-0.5.5.ebuild
deleted file mode 100644
index 7fdf4be49c4..000
--- a/dev-ruby/oauth/oauth-0.5.5.ebuild
+++ /dev/null
@@ -1,39 +0,0 @@
-# Copyright 1999-2021 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-USE_RUBY="ruby25 ruby26 ruby27"
-
-RUBY_FAKEGEM_EXTRADOC="HISTORY README.rdoc TODO"
-
-RUBY_FAKEGEM_GEMSPEC="oauth.gemspec"
-
-inherit ruby-fakegem
-
-DESCRIPTION="A RubyGem for implementing both OAuth clients and servers"
-HOMEPAGE="https://github.com/oauth-xx/oauth-ruby";
-SRC_URI="https://github.com/oauth-xx/oauth-ruby/archive/v${PV}.tar.gz -> 
${P}.tar.gz"
-RUBY_S="${PN}-ruby-${PV}"
-
-LICENSE="MIT"
-SLOT="0"
-KEYWORDS="~amd64 ~ppc ~x86"
-IUSE=""
-
-ruby_add_bdepend "test? (
-   dev-ruby/bundler
-   dev-ruby/test-unit:2
-   dev-ruby/mocha:1.0
-   dev-ruby/webmock
-   dev-ruby/rack
-   dev-ruby/actionpack:6.0
-   dev-ruby/railties:6.0
-)"
-
-all_ruby_prepare() {
-   # Require a compatible version of mocha
-   sed -i -e '1igem "mocha", "~> 1.0"; gem "railties", "~>6.0.0" ; gem 
"actionpack", "~>6.0.0"' \
-   -e '2i gem "test-unit"; require "test/unit"' \
-   -e '/mocha/ s/mini_test/minitest/' \
-   -e '/\(byebug\|minitest_helpers\|simplecov\)/I s:^:#:' 
test/test_helper.rb || die
-}



[gentoo-commits] repo/gentoo:master commit in: dev-ruby/oauth/

2021-04-07 Thread Hans de Graaff
commit: daadf6a1dfa2c748aaf271de1fcb872dfc42c5ba
Author: Hans de Graaff  gentoo  org>
AuthorDate: Thu Apr  8 05:59:36 2021 +
Commit: Hans de Graaff  gentoo  org>
CommitDate: Thu Apr  8 05:59:36 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=daadf6a1

dev-ruby/oauth: add 0.5.6

Package-Manager: Portage-3.0.17, Repoman-3.0.2
Signed-off-by: Hans de Graaff  gentoo.org>

 dev-ruby/oauth/Manifest   |  1 +
 dev-ruby/oauth/oauth-0.5.6.ebuild | 39 +++
 2 files changed, 40 insertions(+)

diff --git a/dev-ruby/oauth/Manifest b/dev-ruby/oauth/Manifest
index fcb141fdd3a..0b8ec66c9ae 100644
--- a/dev-ruby/oauth/Manifest
+++ b/dev-ruby/oauth/Manifest
@@ -1,2 +1,3 @@
 DIST oauth-0.5.4.tar.gz 59141 BLAKE2B 
1e588d411795b7c5b4ae5b7b3c9928b69aaa005bef858137759757e9f06d6de144408e4dba33d7fbf82a3f2586238a71b85b89c681f5d633453dfe0da954a2fb
 SHA512 
f114f80255944934a276d0f9556ed37e4a0a72b221269cf7792f2c3a5a1504c5ec726fd5b7437b1102c648a6cf451a1c83de4689f53d30ea8c6a1d62662de535
 DIST oauth-0.5.5.tar.gz 60289 BLAKE2B 
28a283bdb251b791ab6e0d50e6ed7db09445177bcaf5a99258c465e3783c5535f7d6acee356ec2f7559a942d1146ae8487260f8945f3138de670c20c60d7068c
 SHA512 
9db8d68950b46b469777e320dea88e14506be846233f7c24e7dcdf9b57e761c43a7b715fa70f32a41b15ac7936a586e8b49a33af971fd0e9509d62827c69571f
+DIST oauth-0.5.6.tar.gz 60887 BLAKE2B 
8dea7bc6b1a3c9d5befa5badbda105fed28004d6627624fedaf1572cc261421e3a8636019bb0a600a28fb6aa933d2b1be5faf613ae3062f7d50b314b86059b17
 SHA512 
dcb516b90d6cf0ff3f1071fa7bf1e1b30cd998c79205f9a6df001d5c04784ad23ecd430b4e04565a6351efcc780b552dfc38ea962d0a938c9e19a6e5bd3fe070

diff --git a/dev-ruby/oauth/oauth-0.5.6.ebuild 
b/dev-ruby/oauth/oauth-0.5.6.ebuild
new file mode 100644
index 000..7fdf4be49c4
--- /dev/null
+++ b/dev-ruby/oauth/oauth-0.5.6.ebuild
@@ -0,0 +1,39 @@
+# Copyright 1999-2021 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+USE_RUBY="ruby25 ruby26 ruby27"
+
+RUBY_FAKEGEM_EXTRADOC="HISTORY README.rdoc TODO"
+
+RUBY_FAKEGEM_GEMSPEC="oauth.gemspec"
+
+inherit ruby-fakegem
+
+DESCRIPTION="A RubyGem for implementing both OAuth clients and servers"
+HOMEPAGE="https://github.com/oauth-xx/oauth-ruby";
+SRC_URI="https://github.com/oauth-xx/oauth-ruby/archive/v${PV}.tar.gz -> 
${P}.tar.gz"
+RUBY_S="${PN}-ruby-${PV}"
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="~amd64 ~ppc ~x86"
+IUSE=""
+
+ruby_add_bdepend "test? (
+   dev-ruby/bundler
+   dev-ruby/test-unit:2
+   dev-ruby/mocha:1.0
+   dev-ruby/webmock
+   dev-ruby/rack
+   dev-ruby/actionpack:6.0
+   dev-ruby/railties:6.0
+)"
+
+all_ruby_prepare() {
+   # Require a compatible version of mocha
+   sed -i -e '1igem "mocha", "~> 1.0"; gem "railties", "~>6.0.0" ; gem 
"actionpack", "~>6.0.0"' \
+   -e '2i gem "test-unit"; require "test/unit"' \
+   -e '/mocha/ s/mini_test/minitest/' \
+   -e '/\(byebug\|minitest_helpers\|simplecov\)/I s:^:#:' 
test/test_helper.rb || die
+}



[gentoo-commits] repo/gentoo:master commit in: dev-ruby/oauth/

2021-02-15 Thread Hans de Graaff
commit: 585bbe0358a31778d115945af53933b2a1d96aaf
Author: Hans de Graaff  gentoo  org>
AuthorDate: Tue Feb 16 05:57:57 2021 +
Commit: Hans de Graaff  gentoo  org>
CommitDate: Tue Feb 16 05:57:57 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=585bbe03

dev-ruby/oauth: add ruby27

Package-Manager: Portage-3.0.13, Repoman-3.0.2
Signed-off-by: Hans de Graaff  gentoo.org>

 dev-ruby/oauth/oauth-0.5.5.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-ruby/oauth/oauth-0.5.5.ebuild 
b/dev-ruby/oauth/oauth-0.5.5.ebuild
index 016e9a7ac23..7fdf4be49c4 100644
--- a/dev-ruby/oauth/oauth-0.5.5.ebuild
+++ b/dev-ruby/oauth/oauth-0.5.5.ebuild
@@ -2,7 +2,7 @@
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=7
-USE_RUBY="ruby25 ruby26"
+USE_RUBY="ruby25 ruby26 ruby27"
 
 RUBY_FAKEGEM_EXTRADOC="HISTORY README.rdoc TODO"
 



[gentoo-commits] repo/gentoo:master commit in: dev-ruby/oauth/

2021-01-21 Thread Hans de Graaff
commit: 811751cfaf36341efd5dc98bd71ab81194fe5223
Author: Hans de Graaff  gentoo  org>
AuthorDate: Fri Jan 22 07:05:35 2021 +
Commit: Hans de Graaff  gentoo  org>
CommitDate: Fri Jan 22 07:05:35 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=811751cf

dev-ruby/oauth: add 0.5.5

Package-Manager: Portage-3.0.13, Repoman-3.0.2
Signed-off-by: Hans de Graaff  gentoo.org>

 dev-ruby/oauth/Manifest   |  1 +
 dev-ruby/oauth/oauth-0.5.5.ebuild | 39 +++
 2 files changed, 40 insertions(+)

diff --git a/dev-ruby/oauth/Manifest b/dev-ruby/oauth/Manifest
index c8aed657606..fcb141fdd3a 100644
--- a/dev-ruby/oauth/Manifest
+++ b/dev-ruby/oauth/Manifest
@@ -1 +1,2 @@
 DIST oauth-0.5.4.tar.gz 59141 BLAKE2B 
1e588d411795b7c5b4ae5b7b3c9928b69aaa005bef858137759757e9f06d6de144408e4dba33d7fbf82a3f2586238a71b85b89c681f5d633453dfe0da954a2fb
 SHA512 
f114f80255944934a276d0f9556ed37e4a0a72b221269cf7792f2c3a5a1504c5ec726fd5b7437b1102c648a6cf451a1c83de4689f53d30ea8c6a1d62662de535
+DIST oauth-0.5.5.tar.gz 60289 BLAKE2B 
28a283bdb251b791ab6e0d50e6ed7db09445177bcaf5a99258c465e3783c5535f7d6acee356ec2f7559a942d1146ae8487260f8945f3138de670c20c60d7068c
 SHA512 
9db8d68950b46b469777e320dea88e14506be846233f7c24e7dcdf9b57e761c43a7b715fa70f32a41b15ac7936a586e8b49a33af971fd0e9509d62827c69571f

diff --git a/dev-ruby/oauth/oauth-0.5.5.ebuild 
b/dev-ruby/oauth/oauth-0.5.5.ebuild
new file mode 100644
index 000..016e9a7ac23
--- /dev/null
+++ b/dev-ruby/oauth/oauth-0.5.5.ebuild
@@ -0,0 +1,39 @@
+# Copyright 1999-2021 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+USE_RUBY="ruby25 ruby26"
+
+RUBY_FAKEGEM_EXTRADOC="HISTORY README.rdoc TODO"
+
+RUBY_FAKEGEM_GEMSPEC="oauth.gemspec"
+
+inherit ruby-fakegem
+
+DESCRIPTION="A RubyGem for implementing both OAuth clients and servers"
+HOMEPAGE="https://github.com/oauth-xx/oauth-ruby";
+SRC_URI="https://github.com/oauth-xx/oauth-ruby/archive/v${PV}.tar.gz -> 
${P}.tar.gz"
+RUBY_S="${PN}-ruby-${PV}"
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="~amd64 ~ppc ~x86"
+IUSE=""
+
+ruby_add_bdepend "test? (
+   dev-ruby/bundler
+   dev-ruby/test-unit:2
+   dev-ruby/mocha:1.0
+   dev-ruby/webmock
+   dev-ruby/rack
+   dev-ruby/actionpack:6.0
+   dev-ruby/railties:6.0
+)"
+
+all_ruby_prepare() {
+   # Require a compatible version of mocha
+   sed -i -e '1igem "mocha", "~> 1.0"; gem "railties", "~>6.0.0" ; gem 
"actionpack", "~>6.0.0"' \
+   -e '2i gem "test-unit"; require "test/unit"' \
+   -e '/mocha/ s/mini_test/minitest/' \
+   -e '/\(byebug\|minitest_helpers\|simplecov\)/I s:^:#:' 
test/test_helper.rb || die
+}



[gentoo-commits] repo/gentoo:master commit in: dev-ruby/oauth/

2020-05-31 Thread Hans de Graaff
commit: f90fb72bba0504467c243710de56ffe52e3d0ba8
Author: Hans de Graaff  gentoo  org>
AuthorDate: Sun May 31 08:08:38 2020 +
Commit: Hans de Graaff  gentoo  org>
CommitDate: Sun May 31 08:08:55 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f90fb72b

dev-ruby/oauth: fix tests

Closes: https://bugs.gentoo.org/723930
Package-Manager: Portage-2.3.99, Repoman-2.3.22
Signed-off-by: Hans de Graaff  gentoo.org>

 dev-ruby/oauth/oauth-0.5.4.ebuild | 7 +--
 1 file changed, 5 insertions(+), 2 deletions(-)

diff --git a/dev-ruby/oauth/oauth-0.5.4.ebuild 
b/dev-ruby/oauth/oauth-0.5.4.ebuild
index d674b5571b4..59a71726716 100644
--- a/dev-ruby/oauth/oauth-0.5.4.ebuild
+++ b/dev-ruby/oauth/oauth-0.5.4.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2019 Gentoo Authors
+# Copyright 1999-2020 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=6
@@ -21,16 +21,19 @@ KEYWORDS="~amd64 ~ppc ~x86 ~x86-macos"
 IUSE=""
 
 ruby_add_bdepend "test? (
+   dev-ruby/bundler
dev-ruby/test-unit:2
dev-ruby/mocha:1.0
dev-ruby/webmock
dev-ruby/rack
dev-ruby/actionpack:5.2
+   dev-ruby/railties:5.2
 )"
 
 all_ruby_prepare() {
# Require a compatible version of mocha
-   sed -i -e '1igem "mocha", "~> 1.0"; gem "actionpack", "~>5.2.0"' \
+   sed -i -e '1igem "mocha", "~> 1.0"; gem "railties", "~>5.2.0" ; gem 
"actionpack", "~>5.2.0"' \
-e '2i gem "test-unit"; require "test/unit"' \
+   -e '/mocha/ s/mini_test/minitest/' \
-e '/\(byebug\|minitest_helpers\|simplecov\)/I s:^:#:' 
test/test_helper.rb || die
 }



[gentoo-commits] repo/gentoo:master commit in: dev-ruby/oauth/

2019-05-04 Thread Hans de Graaff
commit: 9363c592169d654c05cc4af79f448502df72f003
Author: Hans de Graaff  gentoo  org>
AuthorDate: Sat May  4 19:10:38 2019 +
Commit: Hans de Graaff  gentoo  org>
CommitDate: Sat May  4 19:14:48 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9363c592

dev-ruby/oauth: add ruby26

Signed-off-by: Hans de Graaff  gentoo.org>
Package-Manager: Portage-2.3.62, Repoman-2.3.11

 dev-ruby/oauth/oauth-0.5.4.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/dev-ruby/oauth/oauth-0.5.4.ebuild 
b/dev-ruby/oauth/oauth-0.5.4.ebuild
index fd90e9faa80..d674b5571b4 100644
--- a/dev-ruby/oauth/oauth-0.5.4.ebuild
+++ b/dev-ruby/oauth/oauth-0.5.4.ebuild
@@ -1,8 +1,8 @@
-# Copyright 1999-2018 Gentoo Foundation
+# Copyright 1999-2019 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=6
-USE_RUBY="ruby23 ruby24 ruby25"
+USE_RUBY="ruby23 ruby24 ruby25 ruby26"
 
 RUBY_FAKEGEM_RECIPE_DOC="rdoc"
 



[gentoo-commits] repo/gentoo:master commit in: dev-ruby/oauth/

2018-08-05 Thread Hans de Graaff
commit: fe02d7336a62bbf848a94eed674d6b068078343d
Author: Hans de Graaff  gentoo  org>
AuthorDate: Sun Aug  5 20:15:47 2018 +
Commit: Hans de Graaff  gentoo  org>
CommitDate: Sun Aug  5 20:36:44 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=fe02d733

dev-ruby/oauth: add ruby25

Package-Manager: Portage-2.3.40, Repoman-2.3.9

 dev-ruby/oauth/oauth-0.5.4.ebuild | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/dev-ruby/oauth/oauth-0.5.4.ebuild 
b/dev-ruby/oauth/oauth-0.5.4.ebuild
index 1b883606f56..fd90e9faa80 100644
--- a/dev-ruby/oauth/oauth-0.5.4.ebuild
+++ b/dev-ruby/oauth/oauth-0.5.4.ebuild
@@ -2,7 +2,7 @@
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=6
-USE_RUBY="ruby22 ruby23 ruby24"
+USE_RUBY="ruby23 ruby24 ruby25"
 
 RUBY_FAKEGEM_RECIPE_DOC="rdoc"
 
@@ -25,12 +25,12 @@ ruby_add_bdepend "test? (
dev-ruby/mocha:1.0
dev-ruby/webmock
dev-ruby/rack
-   dev-ruby/actionpack:5.1
+   dev-ruby/actionpack:5.2
 )"
 
 all_ruby_prepare() {
# Require a compatible version of mocha
-   sed -i -e '1igem "mocha", "~> 1.0"; gem "actionpack", "~>5.1.0"' \
+   sed -i -e '1igem "mocha", "~> 1.0"; gem "actionpack", "~>5.2.0"' \
-e '2i gem "test-unit"; require "test/unit"' \
-e '/\(byebug\|minitest_helpers\|simplecov\)/I s:^:#:' 
test/test_helper.rb || die
 }



[gentoo-commits] repo/gentoo:master commit in: dev-ruby/oauth/

2018-04-29 Thread Hans de Graaff
commit: f186777dce81ddcf8cdfee948d973786fd669dde
Author: Hans de Graaff  gentoo  org>
AuthorDate: Sun Apr 29 09:40:26 2018 +
Commit: Hans de Graaff  gentoo  org>
CommitDate: Sun Apr 29 09:42:19 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f186777d

dev-ruby/oauth: cleanup

Package-Manager: Portage-2.3.24, Repoman-2.3.6

 dev-ruby/oauth/Manifest   |  1 -
 dev-ruby/oauth/oauth-0.5.3.ebuild | 36 
 2 files changed, 37 deletions(-)

diff --git a/dev-ruby/oauth/Manifest b/dev-ruby/oauth/Manifest
index f2664ebf573..c8aed657606 100644
--- a/dev-ruby/oauth/Manifest
+++ b/dev-ruby/oauth/Manifest
@@ -1,2 +1 @@
-DIST oauth-0.5.3.tar.gz 59355 BLAKE2B 
d676ca2aade85a43655ca95ff289b248c33197a06f58b5d998b834ec6750547c5b66d781f97b66b04584f6f6825d010434cb9a73cf5ec69b900a73f0dce1d8f0
 SHA512 
658a0b2c8b2eaa51981fd274c5058996309aa0a7098fad8221ca4074f51d996c17c5bdd8373da5e13b6cdc782b9d59769b705f2aa6ad724a2ebd14034ff92e9e
 DIST oauth-0.5.4.tar.gz 59141 BLAKE2B 
1e588d411795b7c5b4ae5b7b3c9928b69aaa005bef858137759757e9f06d6de144408e4dba33d7fbf82a3f2586238a71b85b89c681f5d633453dfe0da954a2fb
 SHA512 
f114f80255944934a276d0f9556ed37e4a0a72b221269cf7792f2c3a5a1504c5ec726fd5b7437b1102c648a6cf451a1c83de4689f53d30ea8c6a1d62662de535

diff --git a/dev-ruby/oauth/oauth-0.5.3.ebuild 
b/dev-ruby/oauth/oauth-0.5.3.ebuild
deleted file mode 100644
index d24757d8033..000
--- a/dev-ruby/oauth/oauth-0.5.3.ebuild
+++ /dev/null
@@ -1,36 +0,0 @@
-# Copyright 1999-2018 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-USE_RUBY="ruby21 ruby22 ruby23"
-
-RUBY_FAKEGEM_RECIPE_DOC="rdoc"
-
-RUBY_FAKEGEM_EXTRADOC="HISTORY README.rdoc TODO"
-
-inherit ruby-fakegem
-
-DESCRIPTION="A RubyGem for implementing both OAuth clients and servers"
-HOMEPAGE="https://github.com/oauth-xx/oauth-ruby";
-SRC_URI="https://github.com/oauth-xx/oauth-ruby/archive/v${PV}.tar.gz -> 
${P}.tar.gz"
-RUBY_S="${PN}-ruby-${PV}"
-
-LICENSE="MIT"
-SLOT="0"
-KEYWORDS="~amd64 ~ppc ~x86 ~x86-macos"
-IUSE=""
-
-ruby_add_bdepend "test? (
-   dev-ruby/test-unit:2
-   dev-ruby/mocha:1.0
-   dev-ruby/webmock
-   dev-ruby/rack
-   dev-ruby/actionpack:4.2
-)"
-
-all_ruby_prepare() {
-   # Require a compatible version of mocha
-   sed -i -e '1igem "mocha", "~> 1.0"; gem "actionpack", "~>4.2.0"' \
-   -e '2i gem "test-unit"; require "test/unit"' \
-   -e '/\(byebug\|minitest_helpers\|simplecov\)/I s:^:#:' 
test/test_helper.rb || die
-}



[gentoo-commits] repo/gentoo:master commit in: dev-ruby/oauth/

2018-03-25 Thread Sergei Trofimovich
commit: 5c96cc52cd644ab00bf0dc9f4e99f3a86f587c1d
Author: Sergei Trofimovich  gentoo  org>
AuthorDate: Sun Mar 25 19:41:58 2018 +
Commit: Sergei Trofimovich  gentoo  org>
CommitDate: Sun Mar 25 19:41:58 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5c96cc52

dev-ruby/oauth: keyworded 0.5.3 for ppc, bug #563858

Package-Manager: Portage-2.3.24, Repoman-2.3.6
RepoMan-Options: --include-arches="ppc"

 dev-ruby/oauth/oauth-0.5.3.ebuild | 2 +-
 dev-ruby/oauth/oauth-0.5.4.ebuild | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/dev-ruby/oauth/oauth-0.5.3.ebuild 
b/dev-ruby/oauth/oauth-0.5.3.ebuild
index 883027835fb..d24757d8033 100644
--- a/dev-ruby/oauth/oauth-0.5.3.ebuild
+++ b/dev-ruby/oauth/oauth-0.5.3.ebuild
@@ -17,7 +17,7 @@ RUBY_S="${PN}-ruby-${PV}"
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="~amd64 ~x86 ~x86-macos"
+KEYWORDS="~amd64 ~ppc ~x86 ~x86-macos"
 IUSE=""
 
 ruby_add_bdepend "test? (

diff --git a/dev-ruby/oauth/oauth-0.5.4.ebuild 
b/dev-ruby/oauth/oauth-0.5.4.ebuild
index 3694fe7cabc..1b883606f56 100644
--- a/dev-ruby/oauth/oauth-0.5.4.ebuild
+++ b/dev-ruby/oauth/oauth-0.5.4.ebuild
@@ -17,7 +17,7 @@ RUBY_S="${PN}-ruby-${PV}"
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="~amd64 ~x86 ~x86-macos"
+KEYWORDS="~amd64 ~ppc ~x86 ~x86-macos"
 IUSE=""
 
 ruby_add_bdepend "test? (



[gentoo-commits] repo/gentoo:master commit in: dev-ruby/oauth/

2018-02-17 Thread Hans de Graaff
commit: 31e5ffa3ccd33f5194bd31707704be514487260b
Author: Hans de Graaff  gentoo  org>
AuthorDate: Sat Feb 17 08:04:34 2018 +
Commit: Hans de Graaff  gentoo  org>
CommitDate: Sat Feb 17 08:04:34 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=31e5ffa3

dev-ruby/oauth: add 0.5.4, fix test failure bug 646870

Package-Manager: Portage-2.3.19, Repoman-2.3.6

 dev-ruby/oauth/Manifest   |  1 +
 dev-ruby/oauth/oauth-0.5.4.ebuild | 36 
 2 files changed, 37 insertions(+)

diff --git a/dev-ruby/oauth/Manifest b/dev-ruby/oauth/Manifest
index 88c72413fb5..f2664ebf573 100644
--- a/dev-ruby/oauth/Manifest
+++ b/dev-ruby/oauth/Manifest
@@ -1 +1,2 @@
 DIST oauth-0.5.3.tar.gz 59355 BLAKE2B 
d676ca2aade85a43655ca95ff289b248c33197a06f58b5d998b834ec6750547c5b66d781f97b66b04584f6f6825d010434cb9a73cf5ec69b900a73f0dce1d8f0
 SHA512 
658a0b2c8b2eaa51981fd274c5058996309aa0a7098fad8221ca4074f51d996c17c5bdd8373da5e13b6cdc782b9d59769b705f2aa6ad724a2ebd14034ff92e9e
+DIST oauth-0.5.4.tar.gz 59141 BLAKE2B 
1e588d411795b7c5b4ae5b7b3c9928b69aaa005bef858137759757e9f06d6de144408e4dba33d7fbf82a3f2586238a71b85b89c681f5d633453dfe0da954a2fb
 SHA512 
f114f80255944934a276d0f9556ed37e4a0a72b221269cf7792f2c3a5a1504c5ec726fd5b7437b1102c648a6cf451a1c83de4689f53d30ea8c6a1d62662de535

diff --git a/dev-ruby/oauth/oauth-0.5.4.ebuild 
b/dev-ruby/oauth/oauth-0.5.4.ebuild
new file mode 100644
index 000..3694fe7cabc
--- /dev/null
+++ b/dev-ruby/oauth/oauth-0.5.4.ebuild
@@ -0,0 +1,36 @@
+# Copyright 1999-2018 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+USE_RUBY="ruby22 ruby23 ruby24"
+
+RUBY_FAKEGEM_RECIPE_DOC="rdoc"
+
+RUBY_FAKEGEM_EXTRADOC="HISTORY README.rdoc TODO"
+
+inherit ruby-fakegem
+
+DESCRIPTION="A RubyGem for implementing both OAuth clients and servers"
+HOMEPAGE="https://github.com/oauth-xx/oauth-ruby";
+SRC_URI="https://github.com/oauth-xx/oauth-ruby/archive/v${PV}.tar.gz -> 
${P}.tar.gz"
+RUBY_S="${PN}-ruby-${PV}"
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="~amd64 ~x86 ~x86-macos"
+IUSE=""
+
+ruby_add_bdepend "test? (
+   dev-ruby/test-unit:2
+   dev-ruby/mocha:1.0
+   dev-ruby/webmock
+   dev-ruby/rack
+   dev-ruby/actionpack:5.1
+)"
+
+all_ruby_prepare() {
+   # Require a compatible version of mocha
+   sed -i -e '1igem "mocha", "~> 1.0"; gem "actionpack", "~>5.1.0"' \
+   -e '2i gem "test-unit"; require "test/unit"' \
+   -e '/\(byebug\|minitest_helpers\|simplecov\)/I s:^:#:' 
test/test_helper.rb || die
+}



[gentoo-commits] repo/gentoo:master commit in: dev-ruby/oauth/

2018-02-06 Thread Hans de Graaff
commit: df37634af2e438eaf477c79cca566f06b526327d
Author: Hans de Graaff  gentoo  org>
AuthorDate: Tue Feb  6 06:30:22 2018 +
Commit: Hans de Graaff  gentoo  org>
CommitDate: Wed Feb  7 06:30:27 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=df37634a

dev-ruby/oauth: cleanup

Package-Manager: Portage-2.3.19, Repoman-2.3.6

 dev-ruby/oauth/Manifest   |  1 -
 dev-ruby/oauth/oauth-0.5.1.ebuild | 44 ---
 2 files changed, 45 deletions(-)

diff --git a/dev-ruby/oauth/Manifest b/dev-ruby/oauth/Manifest
index 37d6321381b..88c72413fb5 100644
--- a/dev-ruby/oauth/Manifest
+++ b/dev-ruby/oauth/Manifest
@@ -1,2 +1 @@
-DIST oauth-0.5.1.tar.gz 46675 BLAKE2B 
4522326d48c9a8004819a82d23c9151ecb0b10a6f60ef57a521f8f1cf86fbfb4c3181f7a29b6f29407569da2acb6c1f5033e003a54db92586d5cd92f957d6214
 SHA512 
fe00e4455ab72edb38051e0c203f27b299b624cdc3ba031de9aea33c1429a54a364f066297dae86c22b723859ab8bd8854b02d344ec49a535c28b256e96593a6
 DIST oauth-0.5.3.tar.gz 59355 BLAKE2B 
d676ca2aade85a43655ca95ff289b248c33197a06f58b5d998b834ec6750547c5b66d781f97b66b04584f6f6825d010434cb9a73cf5ec69b900a73f0dce1d8f0
 SHA512 
658a0b2c8b2eaa51981fd274c5058996309aa0a7098fad8221ca4074f51d996c17c5bdd8373da5e13b6cdc782b9d59769b705f2aa6ad724a2ebd14034ff92e9e

diff --git a/dev-ruby/oauth/oauth-0.5.1.ebuild 
b/dev-ruby/oauth/oauth-0.5.1.ebuild
deleted file mode 100644
index 1b866d8157f..000
--- a/dev-ruby/oauth/oauth-0.5.1.ebuild
+++ /dev/null
@@ -1,44 +0,0 @@
-# Copyright 1999-2016 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=5
-USE_RUBY="ruby21 ruby22 ruby23"
-
-RUBY_FAKEGEM_TASK_DOC=""
-
-RUBY_FAKEGEM_EXTRADOC="HISTORY README.rdoc TODO"
-
-inherit ruby-fakegem
-
-DESCRIPTION="A RubyGem for implementing both OAuth clients and servers"
-HOMEPAGE="https://github.com/oauth-xx/oauth-ruby";
-SRC_URI="https://github.com/oauth-xx/oauth-ruby/archive/v${PV}.tar.gz -> 
${P}.tar.gz"
-RUBY_S="${PN}-ruby-${PV}"
-
-LICENSE="MIT"
-SLOT="0"
-KEYWORDS="~amd64 ~x86-macos"
-IUSE=""
-
-ruby_add_bdepend "test? (
-   dev-ruby/test-unit:2
-   dev-ruby/mocha:1.0
-   dev-ruby/webmock
-   dev-ruby/rack )"
-
-all_ruby_prepare() {
-   # Require a compatible version of mocha
-   sed -i -e '1igem "mocha", "~> 1.0"' \
-   -e '2i gem "test-unit"; require "test/unit"' \
-   -e '/byebug/ s:^:#:' test/test_helper.rb || die
-
-   # Remove tests that require Rails 2.3 since that is ruby18-only.
-   rm -f test/test_action_controller_request_proxy.rb || die
-
-   # Remove typhoeus tests since they require an old version.
-   rm -f test/test_typhoeus_request_proxy.rb || die
-}
-
-each_ruby_test() {
-   ${RUBY} -I.:lib -e 'Dir["test/**/test_*.rb"].each{|f| require f}' || die
-}



[gentoo-commits] repo/gentoo:master commit in: dev-ruby/oauth/

2018-02-06 Thread Thomas Deutschmann
commit: f9a8ad79ac8ee3ee7decf93bc4940638f09cd33c
Author: Thomas Deutschmann  gentoo  org>
AuthorDate: Wed Feb  7 05:34:24 2018 +
Commit: Thomas Deutschmann  gentoo  org>
CommitDate: Wed Feb  7 05:51:14 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f9a8ad79

dev-ruby/oauth: x86 keyworded (bug #563858)

Package-Manager: Portage-2.3.24, Repoman-2.3.6

 dev-ruby/oauth/oauth-0.5.3.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/dev-ruby/oauth/oauth-0.5.3.ebuild 
b/dev-ruby/oauth/oauth-0.5.3.ebuild
index 59fae1c6f0a..883027835fb 100644
--- a/dev-ruby/oauth/oauth-0.5.3.ebuild
+++ b/dev-ruby/oauth/oauth-0.5.3.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2017 Gentoo Foundation
+# Copyright 1999-2018 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=6
@@ -17,7 +17,7 @@ RUBY_S="${PN}-ruby-${PV}"
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="~amd64 ~x86-macos"
+KEYWORDS="~amd64 ~x86 ~x86-macos"
 IUSE=""
 
 ruby_add_bdepend "test? (



[gentoo-commits] repo/gentoo:master commit in: dev-ruby/oauth/

2017-09-24 Thread Hans de Graaff
commit: 20ba9ca9cd5ab4d11a3b5b33ee1f6c19c1df48fa
Author: Hans de Graaff  gentoo  org>
AuthorDate: Sun Sep 24 06:37:19 2017 +
Commit: Hans de Graaff  gentoo  org>
CommitDate: Sun Sep 24 06:57:36 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=20ba9ca9

dev-ruby/oauth: cleanup

Package-Manager: Portage-2.3.8, Repoman-2.3.2

 dev-ruby/oauth/Manifest  |  1 -
 dev-ruby/oauth/oauth-0.4.7-r2.ebuild | 39 
 2 files changed, 40 deletions(-)

diff --git a/dev-ruby/oauth/Manifest b/dev-ruby/oauth/Manifest
index 245562d315b..598dfaa7af4 100644
--- a/dev-ruby/oauth/Manifest
+++ b/dev-ruby/oauth/Manifest
@@ -1,3 +1,2 @@
-DIST oauth-0.4.7.gem 50688 SHA256 
bca47d77c946af466872269e37e470837858b1305d5143e5a56c50356e02b2cc SHA512 
7d8df61574aaf53ffcb206c6a210546c36b67b2c545d6b31afef2961ee135050923f427dc4720379b7689eef9d921015c26fedd8b11bbd13761dd498155fc550
 WHIRLPOOL 
5a9dd0eeb2137db2b9810482dca116bf38c06ed75dff2df434118c147ed907d4fdad55dfd2e9c0751b42a110cd240c2ff70bfca75bcffc7f08dd454f65ca7591
 DIST oauth-0.5.1.tar.gz 46675 SHA256 
462839c6a685b72d619e050869d15abb889f98b010ee97a19ea5a2bc4e39ad91 SHA512 
fe00e4455ab72edb38051e0c203f27b299b624cdc3ba031de9aea33c1429a54a364f066297dae86c22b723859ab8bd8854b02d344ec49a535c28b256e96593a6
 WHIRLPOOL 
b9813500cc920a74ac7b48414bcb80f266cad4f8407fc9a62ac1c0da69c92dcd83f1b837de2b7caf8e2a89727c794bc3b0652f1091981e70d82122e7fd6470a9
 DIST oauth-0.5.3.tar.gz 59355 SHA256 
0a8225316dfcaf83fc05c2f96ccef912ccfd41a2f57b45ea78ccf44bca975c5c SHA512 
658a0b2c8b2eaa51981fd274c5058996309aa0a7098fad8221ca4074f51d996c17c5bdd8373da5e13b6cdc782b9d59769b705f2aa6ad724a2ebd14034ff92e9e
 WHIRLPOOL 
0700f2ccb7e4b3e24c9e6651d7a2ad9fdba21dcf9d37a85b4e0e008e89bed795dc8877877fced792f48996f9ecbe7f0fd89ca4831fdebbc9eddeec287ab6b8df

diff --git a/dev-ruby/oauth/oauth-0.4.7-r2.ebuild 
b/dev-ruby/oauth/oauth-0.4.7-r2.ebuild
deleted file mode 100644
index b4136ac19ba..000
--- a/dev-ruby/oauth/oauth-0.4.7-r2.ebuild
+++ /dev/null
@@ -1,39 +0,0 @@
-# Copyright 1999-2017 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=5
-USE_RUBY="ruby21 ruby22"
-
-RUBY_FAKEGEM_TASK_DOC=""
-
-RUBY_FAKEGEM_EXTRADOC="HISTORY README.rdoc TODO"
-
-inherit ruby-fakegem
-
-DESCRIPTION="A RubyGem for implementing both OAuth clients and servers"
-HOMEPAGE="http://oauth.rubyforge.org/";
-
-LICENSE="MIT"
-SLOT="0"
-KEYWORDS="~amd64 ~x86 ~x86-macos"
-IUSE=""
-
-ruby_add_bdepend "test? (
-   dev-ruby/test-unit:2
-   dev-ruby/mocha:0.14
-   dev-ruby/webmock
-   dev-ruby/rack )"
-
-all_ruby_prepare() {
-   # Require a compatible version of mocha
-   sed -i -e '1igem "mocha", "~> 0.14.0"' test/test_helper.rb || die
-
-   # Ensure a consistent test order to avoid loading issues with e.g. rack
-   sed -i -e "s/.rb']/.rb'].sort/" Rakefile || die
-
-   # Remove tests that require Rails 2.3 since that is ruby18-only.
-   rm -f test/test_action_controller_request_proxy.rb || die
-
-   # Remove typhoeus tests since they require an old version.
-   rm -f test/test_typhoeus_request_proxy.rb || die
-}



[gentoo-commits] repo/gentoo:master commit in: dev-ruby/oauth/

2017-07-11 Thread Hans de Graaff
commit: 59fa022978d9433f72cc1d7a265ceaab1bb7f671
Author: Hans de Graaff  gentoo  org>
AuthorDate: Wed Jul 12 04:20:26 2017 +
Commit: Hans de Graaff  gentoo  org>
CommitDate: Wed Jul 12 04:20:26 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=59fa0229

dev-ruby/oauth: add 0.5.3

Package-Manager: Portage-2.3.6, Repoman-2.3.1

 dev-ruby/oauth/Manifest   |  1 +
 dev-ruby/oauth/oauth-0.5.3.ebuild | 36 
 2 files changed, 37 insertions(+)

diff --git a/dev-ruby/oauth/Manifest b/dev-ruby/oauth/Manifest
index bf150f77ae7..245562d315b 100644
--- a/dev-ruby/oauth/Manifest
+++ b/dev-ruby/oauth/Manifest
@@ -1,2 +1,3 @@
 DIST oauth-0.4.7.gem 50688 SHA256 
bca47d77c946af466872269e37e470837858b1305d5143e5a56c50356e02b2cc SHA512 
7d8df61574aaf53ffcb206c6a210546c36b67b2c545d6b31afef2961ee135050923f427dc4720379b7689eef9d921015c26fedd8b11bbd13761dd498155fc550
 WHIRLPOOL 
5a9dd0eeb2137db2b9810482dca116bf38c06ed75dff2df434118c147ed907d4fdad55dfd2e9c0751b42a110cd240c2ff70bfca75bcffc7f08dd454f65ca7591
 DIST oauth-0.5.1.tar.gz 46675 SHA256 
462839c6a685b72d619e050869d15abb889f98b010ee97a19ea5a2bc4e39ad91 SHA512 
fe00e4455ab72edb38051e0c203f27b299b624cdc3ba031de9aea33c1429a54a364f066297dae86c22b723859ab8bd8854b02d344ec49a535c28b256e96593a6
 WHIRLPOOL 
b9813500cc920a74ac7b48414bcb80f266cad4f8407fc9a62ac1c0da69c92dcd83f1b837de2b7caf8e2a89727c794bc3b0652f1091981e70d82122e7fd6470a9
+DIST oauth-0.5.3.tar.gz 59355 SHA256 
0a8225316dfcaf83fc05c2f96ccef912ccfd41a2f57b45ea78ccf44bca975c5c SHA512 
658a0b2c8b2eaa51981fd274c5058996309aa0a7098fad8221ca4074f51d996c17c5bdd8373da5e13b6cdc782b9d59769b705f2aa6ad724a2ebd14034ff92e9e
 WHIRLPOOL 
0700f2ccb7e4b3e24c9e6651d7a2ad9fdba21dcf9d37a85b4e0e008e89bed795dc8877877fced792f48996f9ecbe7f0fd89ca4831fdebbc9eddeec287ab6b8df

diff --git a/dev-ruby/oauth/oauth-0.5.3.ebuild 
b/dev-ruby/oauth/oauth-0.5.3.ebuild
new file mode 100644
index 000..59fae1c6f0a
--- /dev/null
+++ b/dev-ruby/oauth/oauth-0.5.3.ebuild
@@ -0,0 +1,36 @@
+# Copyright 1999-2017 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+USE_RUBY="ruby21 ruby22 ruby23"
+
+RUBY_FAKEGEM_RECIPE_DOC="rdoc"
+
+RUBY_FAKEGEM_EXTRADOC="HISTORY README.rdoc TODO"
+
+inherit ruby-fakegem
+
+DESCRIPTION="A RubyGem for implementing both OAuth clients and servers"
+HOMEPAGE="https://github.com/oauth-xx/oauth-ruby";
+SRC_URI="https://github.com/oauth-xx/oauth-ruby/archive/v${PV}.tar.gz -> 
${P}.tar.gz"
+RUBY_S="${PN}-ruby-${PV}"
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="~amd64 ~x86-macos"
+IUSE=""
+
+ruby_add_bdepend "test? (
+   dev-ruby/test-unit:2
+   dev-ruby/mocha:1.0
+   dev-ruby/webmock
+   dev-ruby/rack
+   dev-ruby/actionpack:4.2
+)"
+
+all_ruby_prepare() {
+   # Require a compatible version of mocha
+   sed -i -e '1igem "mocha", "~> 1.0"; gem "actionpack", "~>4.2.0"' \
+   -e '2i gem "test-unit"; require "test/unit"' \
+   -e '/\(byebug\|minitest_helpers\|simplecov\)/I s:^:#:' 
test/test_helper.rb || die
+}



[gentoo-commits] repo/gentoo:master commit in: dev-ruby/oauth/

2017-06-27 Thread Hans de Graaff
commit: 0379ae0ddecc9fe4336c7a0a59af1c0f381194ff
Author: Hans de Graaff  gentoo  org>
AuthorDate: Wed Jun 28 05:54:15 2017 +
Commit: Hans de Graaff  gentoo  org>
CommitDate: Wed Jun 28 05:54:15 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0379ae0d

dev-ruby/oauth: add ruby22

Package-Manager: Portage-2.3.6, Repoman-2.3.1

 dev-ruby/oauth/oauth-0.4.7-r2.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/dev-ruby/oauth/oauth-0.4.7-r2.ebuild 
b/dev-ruby/oauth/oauth-0.4.7-r2.ebuild
index bb881d58c23..b4136ac19ba 100644
--- a/dev-ruby/oauth/oauth-0.4.7-r2.ebuild
+++ b/dev-ruby/oauth/oauth-0.4.7-r2.ebuild
@@ -1,8 +1,8 @@
-# Copyright 1999-2016 Gentoo Foundation
+# Copyright 1999-2017 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=5
-USE_RUBY="ruby20 ruby21"
+USE_RUBY="ruby21 ruby22"
 
 RUBY_FAKEGEM_TASK_DOC=""
 



[gentoo-commits] repo/gentoo:master commit in: dev-ruby/oauth/

2016-12-19 Thread Manuel Rüger
commit: 732feefa43834b7c1e67f4f6f8584a9caad9f919
Author: Manuel Rüger  gentoo  org>
AuthorDate: Tue Dec 20 00:52:10 2016 +
Commit: Manuel Rüger  gentoo  org>
CommitDate: Tue Dec 20 00:52:10 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=732feefa

dev-ruby/oauth: Add ruby23

Package-Manager: portage-2.3.3

 dev-ruby/oauth/oauth-0.5.1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-ruby/oauth/oauth-0.5.1.ebuild 
b/dev-ruby/oauth/oauth-0.5.1.ebuild
index 39c3094..6558d0b 100644
--- a/dev-ruby/oauth/oauth-0.5.1.ebuild
+++ b/dev-ruby/oauth/oauth-0.5.1.ebuild
@@ -3,7 +3,7 @@
 # $Id$
 
 EAPI=5
-USE_RUBY="ruby20 ruby21 ruby22"
+USE_RUBY="ruby21 ruby22 ruby23"
 
 RUBY_FAKEGEM_TASK_DOC=""
 



[gentoo-commits] repo/gentoo:master commit in: dev-ruby/oauth/

2016-05-08 Thread Hans de Graaff
commit: fbb223854e0af123c98f996f00b10f065c1bda02
Author: Hans de Graaff  gentoo  org>
AuthorDate: Mon May  9 06:31:04 2016 +
Commit: Hans de Graaff  gentoo  org>
CommitDate: Mon May  9 06:31:04 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=fbb22385

dev-ruby/oauth: drop ruby19

Package-Manager: portage-2.2.28

 dev-ruby/oauth/oauth-0.4.7-r2.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/dev-ruby/oauth/oauth-0.4.7-r2.ebuild 
b/dev-ruby/oauth/oauth-0.4.7-r2.ebuild
index b4d2040..8b5b19e 100644
--- a/dev-ruby/oauth/oauth-0.4.7-r2.ebuild
+++ b/dev-ruby/oauth/oauth-0.4.7-r2.ebuild
@@ -1,9 +1,9 @@
-# Copyright 1999-2015 Gentoo Foundation
+# Copyright 1999-2016 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 # $Id$
 
 EAPI=5
-USE_RUBY="ruby19 ruby20 ruby21"
+USE_RUBY="ruby20 ruby21"
 
 RUBY_FAKEGEM_TASK_DOC=""
 



[gentoo-commits] repo/gentoo:master commit in: dev-ruby/oauth/

2016-03-06 Thread Hans de Graaff
commit: 79a68a744d2d9f839c544890368d6f55683daeda
Author: Hans de Graaff  gentoo  org>
AuthorDate: Sun Mar  6 06:23:47 2016 +
Commit: Hans de Graaff  gentoo  org>
CommitDate: Sun Mar  6 06:23:47 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=79a68a74

dev-ruby/oauth: add 0.5.1

Drop x86 keyword due to missing keywords in dependencies, bug 563858.

Package-Manager: portage-2.2.26

 dev-ruby/oauth/Manifest   |  1 +
 dev-ruby/oauth/oauth-0.5.1.ebuild | 45 +++
 2 files changed, 46 insertions(+)

diff --git a/dev-ruby/oauth/Manifest b/dev-ruby/oauth/Manifest
index d2e4fd4..bf150f7 100644
--- a/dev-ruby/oauth/Manifest
+++ b/dev-ruby/oauth/Manifest
@@ -1 +1,2 @@
 DIST oauth-0.4.7.gem 50688 SHA256 
bca47d77c946af466872269e37e470837858b1305d5143e5a56c50356e02b2cc SHA512 
7d8df61574aaf53ffcb206c6a210546c36b67b2c545d6b31afef2961ee135050923f427dc4720379b7689eef9d921015c26fedd8b11bbd13761dd498155fc550
 WHIRLPOOL 
5a9dd0eeb2137db2b9810482dca116bf38c06ed75dff2df434118c147ed907d4fdad55dfd2e9c0751b42a110cd240c2ff70bfca75bcffc7f08dd454f65ca7591
+DIST oauth-0.5.1.tar.gz 46675 SHA256 
462839c6a685b72d619e050869d15abb889f98b010ee97a19ea5a2bc4e39ad91 SHA512 
fe00e4455ab72edb38051e0c203f27b299b624cdc3ba031de9aea33c1429a54a364f066297dae86c22b723859ab8bd8854b02d344ec49a535c28b256e96593a6
 WHIRLPOOL 
b9813500cc920a74ac7b48414bcb80f266cad4f8407fc9a62ac1c0da69c92dcd83f1b837de2b7caf8e2a89727c794bc3b0652f1091981e70d82122e7fd6470a9

diff --git a/dev-ruby/oauth/oauth-0.5.1.ebuild 
b/dev-ruby/oauth/oauth-0.5.1.ebuild
new file mode 100644
index 000..39c3094
--- /dev/null
+++ b/dev-ruby/oauth/oauth-0.5.1.ebuild
@@ -0,0 +1,45 @@
+# Copyright 1999-2016 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=5
+USE_RUBY="ruby20 ruby21 ruby22"
+
+RUBY_FAKEGEM_TASK_DOC=""
+
+RUBY_FAKEGEM_EXTRADOC="HISTORY README.rdoc TODO"
+
+inherit ruby-fakegem
+
+DESCRIPTION="A RubyGem for implementing both OAuth clients and servers"
+HOMEPAGE="https://github.com/oauth-xx/oauth-ruby";
+SRC_URI="https://github.com/oauth-xx/oauth-ruby/archive/v${PV}.tar.gz -> 
${P}.tar.gz"
+RUBY_S="${PN}-ruby-${PV}"
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="~amd64 ~x86-macos"
+IUSE=""
+
+ruby_add_bdepend "test? (
+   dev-ruby/test-unit:2
+   dev-ruby/mocha:1.0
+   dev-ruby/webmock
+   dev-ruby/rack )"
+
+all_ruby_prepare() {
+   # Require a compatible version of mocha
+   sed -i -e '1igem "mocha", "~> 1.0"' \
+   -e '2i gem "test-unit"; require "test/unit"' \
+   -e '/byebug/ s:^:#:' test/test_helper.rb || die
+
+   # Remove tests that require Rails 2.3 since that is ruby18-only.
+   rm -f test/test_action_controller_request_proxy.rb || die
+
+   # Remove typhoeus tests since they require an old version.
+   rm -f test/test_typhoeus_request_proxy.rb || die
+}
+
+each_ruby_test() {
+   ${RUBY} -I.:lib -e 'Dir["test/**/test_*.rb"].each{|f| require f}' || die
+}