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

2024-07-18 Thread Hans de Graaff
commit: 7beeb25af975042d3e724ee55d6a12fbd627aca5
Author: Hans de Graaff  gentoo  org>
AuthorDate: Wed Jul 17 10:10:13 2024 +
Commit: Hans de Graaff  gentoo  org>
CommitDate: Thu Jul 18 06:05:03 2024 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7beeb25a

dev-ruby/omniauth: drop 2.1.1

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

 dev-ruby/omniauth/Manifest  |  1 -
 dev-ruby/omniauth/omniauth-2.1.1.ebuild | 48 -
 2 files changed, 49 deletions(-)

diff --git a/dev-ruby/omniauth/Manifest b/dev-ruby/omniauth/Manifest
index a06ad6dd5df9..c8f809b5a41e 100644
--- a/dev-ruby/omniauth/Manifest
+++ b/dev-ruby/omniauth/Manifest
@@ -1,2 +1 @@
-DIST omniauth-2.1.1.tar.gz 31414 BLAKE2B 
180ee40499a61e8b6360dc4c462ca10933dc7bac976f76dd8c9579e73da6618ffae71ed532fab024f0eb65c3830db1e52f866c40b6e160e65c8fa403c7c1ab37
 SHA512 
e86fbd3c1f239b4950f17fdfe4ebd97a9a135831b63892dd009bae97f4372b3a6fa2452233e414c6097c3b835ee4e75821e795599da9613affdaf163d31964a3
 DIST omniauth-2.1.2.tar.gz 31631 BLAKE2B 
73faa82db781c3980eae55f3fa8a099d3ec0769326201f51f57840566a3b2da2331bdaaddd4ef17d957e389ea8863fc7bfdc11f0278753c27f3a7eabc01ec138
 SHA512 
bd0c65af815502f3df2dbb104ede35de093c6cc6f25285e9bbcdd58df3d31ac6c05d410888a40aca86a00b17a4851856d158593b06415e8b69ff426f171b9857

diff --git a/dev-ruby/omniauth/omniauth-2.1.1.ebuild 
b/dev-ruby/omniauth/omniauth-2.1.1.ebuild
deleted file mode 100644
index ece4591244e5..
--- a/dev-ruby/omniauth/omniauth-2.1.1.ebuild
+++ /dev/null
@@ -1,48 +0,0 @@
-# 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_EXTRADOC="README.md"
-RUBY_FAKEGEM_RECIPE_TEST="rspec3"
-RUBY_FAKEGEM_DOCDIR="doc"
-
-RUBY_FAKEGEM_GEMSPEC="${PN}.gemspec"
-
-inherit ruby-fakegem
-
-DESCRIPTION="A generalized Rack framework for multiple-provider authentication"
-HOMEPAGE="https://github.com/omniauth/omniauth;
-SRC_URI="https://github.com/omniauth/omniauth/archive/v${PV}.tar.gz -> 
${P}.tar.gz"
-LICENSE="MIT"
-KEYWORDS="~amd64"
-SLOT="$(ver_cut 1)"
-IUSE=""
-
-ruby_add_rdepend "
-   >=dev-ruby/rack-2.2.3
-   dev-ruby/rack-protection
-   >=dev-ruby/hashie-3.4.6:*"
-ruby_add_bdepend "doc? ( dev-ruby/yard )
-   test? ( dev-ruby/rack-test dev-ruby/rack:2.2 )"
-
-all_ruby_prepare() {
-   sed -i -e '/[Bb]undler/d' \
-   Rakefile ${PN}.gemspec || die "sed failed"
-   sed -e '/RUBY_VERSION/,/^end/ s:^:#: ; /freeze/ s:^:#:' \
-   -e '2igem "rack", "<3"' \
-   -i spec/helper.rb || die "sed failed"
-   # maruku fails, resorting to default markdown implementation
-   sed -i -e '/maruku/d' .yardopts || die "sed failed"
-
-   sed -i -e '/s.files/d' ${RUBY_FAKEGEM_GEMSPEC} || die
-}
-
-all_ruby_compile() {
-   all_fakegem_compile
-
-   if use doc ; then
-   yard || die "yard failed"
-   fi
-}



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

2024-07-18 Thread Hans de Graaff
commit: 5e1f85e8a8632c691c4d2ab6ded271e3edeb3b83
Author: Hans de Graaff  gentoo  org>
AuthorDate: Wed Jul 17 18:29:41 2024 +
Commit: Hans de Graaff  gentoo  org>
CommitDate: Thu Jul 18 06:05:03 2024 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5e1f85e8

dev-ruby/omniauth: use compatible rack-protection slot

Only rack-protection:3 is compatible with the version of rack that we
require here.

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

 dev-ruby/omniauth/omniauth-2.1.2.ebuild | 9 +
 1 file changed, 5 insertions(+), 4 deletions(-)

diff --git a/dev-ruby/omniauth/omniauth-2.1.2.ebuild 
b/dev-ruby/omniauth/omniauth-2.1.2.ebuild
index 0ff88ca09fd5..84c249a9576a 100644
--- a/dev-ruby/omniauth/omniauth-2.1.2.ebuild
+++ b/dev-ruby/omniauth/omniauth-2.1.2.ebuild
@@ -16,22 +16,23 @@ DESCRIPTION="A generalized Rack framework for 
multiple-provider authentication"
 HOMEPAGE="https://github.com/omniauth/omniauth;
 SRC_URI="https://github.com/omniauth/omniauth/archive/v${PV}.tar.gz -> 
${P}.tar.gz"
 LICENSE="MIT"
-KEYWORDS="~amd64"
+
 SLOT="$(ver_cut 1)"
-IUSE=""
+KEYWORDS="~amd64"
+IUSE="doc test"
 
 ruby_add_rdepend "
>=dev-ruby/rack-2.2.3
dev-ruby/rack-protection
>=dev-ruby/hashie-3.4.6:*"
 ruby_add_bdepend "doc? ( dev-ruby/yard )
-   test? ( dev-ruby/rack-test dev-ruby/rack:2.2 )"
+   test? ( dev-ruby/rack-test dev-ruby/rack:2.2 dev-ruby/rack-protection:3 
)"
 
 all_ruby_prepare() {
sed -i -e '/[Bb]undler/d' \
Rakefile ${PN}.gemspec || die "sed failed"
sed -e '/RUBY_VERSION/,/^end/ s:^:#: ; /freeze/ s:^:#:' \
-   -e '2igem "rack", "<3"' \
+   -e '2igem "rack", "<3"; gem "rack-protection", "~> 3.0"' \
-e '/simplecov/,/^end/ s:^:#:' \
-i spec/helper.rb || die "sed failed"
# maruku fails, resorting to default markdown implementation



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

2024-02-10 Thread Hans de Graaff
commit: 04ee22165582727fecd51b766d3196dabac3d887
Author: Hans de Graaff  gentoo  org>
AuthorDate: Sun Feb 11 07:17:52 2024 +
Commit: Hans de Graaff  gentoo  org>
CommitDate: Sun Feb 11 07:26:09 2024 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=04ee2216

dev-ruby/omniauth: enable ruby33

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

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

diff --git a/dev-ruby/omniauth/omniauth-2.1.2.ebuild 
b/dev-ruby/omniauth/omniauth-2.1.2.ebuild
index ebf0636a87e2..0ff88ca09fd5 100644
--- a/dev-ruby/omniauth/omniauth-2.1.2.ebuild
+++ b/dev-ruby/omniauth/omniauth-2.1.2.ebuild
@@ -1,8 +1,8 @@
-# Copyright 1999-2023 Gentoo Authors
+# Copyright 1999-2024 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=8
-USE_RUBY="ruby31 ruby32"
+USE_RUBY="ruby31 ruby32 ruby33"
 
 RUBY_FAKEGEM_EXTRADOC="README.md"
 RUBY_FAKEGEM_RECIPE_TEST="rspec3"



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

2023-12-19 Thread Hans de Graaff
commit: e0bae4685597a6fd82001ecfe10b580980911e0f
Author: Hans de Graaff  gentoo  org>
AuthorDate: Wed Dec 20 07:09:27 2023 +
Commit: Hans de Graaff  gentoo  org>
CommitDate: Wed Dec 20 07:09:27 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e0bae468

dev-ruby/omniauth: add 2.1.2

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

 dev-ruby/omniauth/Manifest  |  1 +
 dev-ruby/omniauth/omniauth-2.1.2.ebuild | 49 +
 2 files changed, 50 insertions(+)

diff --git a/dev-ruby/omniauth/Manifest b/dev-ruby/omniauth/Manifest
index 048653b8c667..a06ad6dd5df9 100644
--- a/dev-ruby/omniauth/Manifest
+++ b/dev-ruby/omniauth/Manifest
@@ -1 +1,2 @@
 DIST omniauth-2.1.1.tar.gz 31414 BLAKE2B 
180ee40499a61e8b6360dc4c462ca10933dc7bac976f76dd8c9579e73da6618ffae71ed532fab024f0eb65c3830db1e52f866c40b6e160e65c8fa403c7c1ab37
 SHA512 
e86fbd3c1f239b4950f17fdfe4ebd97a9a135831b63892dd009bae97f4372b3a6fa2452233e414c6097c3b835ee4e75821e795599da9613affdaf163d31964a3
+DIST omniauth-2.1.2.tar.gz 31631 BLAKE2B 
73faa82db781c3980eae55f3fa8a099d3ec0769326201f51f57840566a3b2da2331bdaaddd4ef17d957e389ea8863fc7bfdc11f0278753c27f3a7eabc01ec138
 SHA512 
bd0c65af815502f3df2dbb104ede35de093c6cc6f25285e9bbcdd58df3d31ac6c05d410888a40aca86a00b17a4851856d158593b06415e8b69ff426f171b9857

diff --git a/dev-ruby/omniauth/omniauth-2.1.2.ebuild 
b/dev-ruby/omniauth/omniauth-2.1.2.ebuild
new file mode 100644
index ..ebf0636a87e2
--- /dev/null
+++ b/dev-ruby/omniauth/omniauth-2.1.2.ebuild
@@ -0,0 +1,49 @@
+# Copyright 1999-2023 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+USE_RUBY="ruby31 ruby32"
+
+RUBY_FAKEGEM_EXTRADOC="README.md"
+RUBY_FAKEGEM_RECIPE_TEST="rspec3"
+RUBY_FAKEGEM_DOCDIR="doc"
+
+RUBY_FAKEGEM_GEMSPEC="${PN}.gemspec"
+
+inherit ruby-fakegem
+
+DESCRIPTION="A generalized Rack framework for multiple-provider authentication"
+HOMEPAGE="https://github.com/omniauth/omniauth;
+SRC_URI="https://github.com/omniauth/omniauth/archive/v${PV}.tar.gz -> 
${P}.tar.gz"
+LICENSE="MIT"
+KEYWORDS="~amd64"
+SLOT="$(ver_cut 1)"
+IUSE=""
+
+ruby_add_rdepend "
+   >=dev-ruby/rack-2.2.3
+   dev-ruby/rack-protection
+   >=dev-ruby/hashie-3.4.6:*"
+ruby_add_bdepend "doc? ( dev-ruby/yard )
+   test? ( dev-ruby/rack-test dev-ruby/rack:2.2 )"
+
+all_ruby_prepare() {
+   sed -i -e '/[Bb]undler/d' \
+   Rakefile ${PN}.gemspec || die "sed failed"
+   sed -e '/RUBY_VERSION/,/^end/ s:^:#: ; /freeze/ s:^:#:' \
+   -e '2igem "rack", "<3"' \
+   -e '/simplecov/,/^end/ s:^:#:' \
+   -i spec/helper.rb || die "sed failed"
+   # maruku fails, resorting to default markdown implementation
+   sed -i -e '/maruku/d' .yardopts || die "sed failed"
+
+   sed -i -e '/s.files/d' ${RUBY_FAKEGEM_GEMSPEC} || die
+}
+
+all_ruby_compile() {
+   all_fakegem_compile
+
+   if use doc ; then
+   yard || die "yard failed"
+   fi
+}



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

2023-08-29 Thread Hans de Graaff
commit: 57e7f6c989797ef6cc3a4034e5d71834188bc1f5
Author: Hans de Graaff  gentoo  org>
AuthorDate: Tue Aug 29 16:49:50 2023 +
Commit: Hans de Graaff  gentoo  org>
CommitDate: Tue Aug 29 16:53:51 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=57e7f6c9

dev-ruby/omniauth: enable ruby32

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

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

diff --git a/dev-ruby/omniauth/omniauth-2.1.1.ebuild 
b/dev-ruby/omniauth/omniauth-2.1.1.ebuild
index 955e12d41818..ece4591244e5 100644
--- a/dev-ruby/omniauth/omniauth-2.1.1.ebuild
+++ b/dev-ruby/omniauth/omniauth-2.1.1.ebuild
@@ -2,7 +2,7 @@
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=8
-USE_RUBY="ruby27 ruby30 ruby31"
+USE_RUBY="ruby30 ruby31 ruby32"
 
 RUBY_FAKEGEM_EXTRADOC="README.md"
 RUBY_FAKEGEM_RECIPE_TEST="rspec3"



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

2023-08-29 Thread Hans de Graaff
commit: c08c6a4943aafec013075ca00921845c71695c9c
Author: Hans de Graaff  gentoo  org>
AuthorDate: Tue Aug 29 16:50:30 2023 +
Commit: Hans de Graaff  gentoo  org>
CommitDate: Tue Aug 29 16:53:51 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c08c6a49

dev-ruby/omniauth: update upstream metadata

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

 dev-ruby/omniauth/metadata.xml | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-ruby/omniauth/metadata.xml b/dev-ruby/omniauth/metadata.xml
index 404dc2f629d6..290d53d7f6af 100644
--- a/dev-ruby/omniauth/metadata.xml
+++ b/dev-ruby/omniauth/metadata.xml
@@ -6,6 +6,6 @@
 Gentoo Ruby Project
   
   
-intridea/omniauth
+omniauth/omniauth
   
 



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

2023-02-03 Thread Hans de Graaff
commit: 210c3d107c01332949c164f2070a6fbfcf054195
Author: Hans de Graaff  gentoo  org>
AuthorDate: Fri Feb  3 13:39:42 2023 +
Commit: Hans de Graaff  gentoo  org>
CommitDate: Sat Feb  4 07:07:52 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=210c3d10

dev-ruby/omniauth: add 2.1.1

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

 dev-ruby/omniauth/Manifest  |  1 +
 dev-ruby/omniauth/omniauth-2.1.1.ebuild | 48 +
 2 files changed, 49 insertions(+)

diff --git a/dev-ruby/omniauth/Manifest b/dev-ruby/omniauth/Manifest
index 7fa73d917aba..35435c5ec107 100644
--- a/dev-ruby/omniauth/Manifest
+++ b/dev-ruby/omniauth/Manifest
@@ -1 +1,2 @@
 DIST omniauth-2.1.0.tar.gz 31135 BLAKE2B 
b221c084b926e3ac9e31858268940d0bd8583c667c7bcb8ce14e7fbda91c06c286191ffeff36c17d1d668ee29ca850b377312f2f2a417c47cb1dd4e8a447a641
 SHA512 
f1dde6f527b6aafdbed83ce6e14dae39617b738c6e80e9ece3d768ef9f63a87924ef2ef92b99ecc52bd69c0103854f16ff9c80f3d2eeb7c134fc70ab0157df63
+DIST omniauth-2.1.1.tar.gz 31414 BLAKE2B 
180ee40499a61e8b6360dc4c462ca10933dc7bac976f76dd8c9579e73da6618ffae71ed532fab024f0eb65c3830db1e52f866c40b6e160e65c8fa403c7c1ab37
 SHA512 
e86fbd3c1f239b4950f17fdfe4ebd97a9a135831b63892dd009bae97f4372b3a6fa2452233e414c6097c3b835ee4e75821e795599da9613affdaf163d31964a3

diff --git a/dev-ruby/omniauth/omniauth-2.1.1.ebuild 
b/dev-ruby/omniauth/omniauth-2.1.1.ebuild
new file mode 100644
index ..955e12d41818
--- /dev/null
+++ b/dev-ruby/omniauth/omniauth-2.1.1.ebuild
@@ -0,0 +1,48 @@
+# 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_EXTRADOC="README.md"
+RUBY_FAKEGEM_RECIPE_TEST="rspec3"
+RUBY_FAKEGEM_DOCDIR="doc"
+
+RUBY_FAKEGEM_GEMSPEC="${PN}.gemspec"
+
+inherit ruby-fakegem
+
+DESCRIPTION="A generalized Rack framework for multiple-provider authentication"
+HOMEPAGE="https://github.com/omniauth/omniauth;
+SRC_URI="https://github.com/omniauth/omniauth/archive/v${PV}.tar.gz -> 
${P}.tar.gz"
+LICENSE="MIT"
+KEYWORDS="~amd64"
+SLOT="$(ver_cut 1)"
+IUSE=""
+
+ruby_add_rdepend "
+   >=dev-ruby/rack-2.2.3
+   dev-ruby/rack-protection
+   >=dev-ruby/hashie-3.4.6:*"
+ruby_add_bdepend "doc? ( dev-ruby/yard )
+   test? ( dev-ruby/rack-test dev-ruby/rack:2.2 )"
+
+all_ruby_prepare() {
+   sed -i -e '/[Bb]undler/d' \
+   Rakefile ${PN}.gemspec || die "sed failed"
+   sed -e '/RUBY_VERSION/,/^end/ s:^:#: ; /freeze/ s:^:#:' \
+   -e '2igem "rack", "<3"' \
+   -i spec/helper.rb || die "sed failed"
+   # maruku fails, resorting to default markdown implementation
+   sed -i -e '/maruku/d' .yardopts || die "sed failed"
+
+   sed -i -e '/s.files/d' ${RUBY_FAKEGEM_GEMSPEC} || die
+}
+
+all_ruby_compile() {
+   all_fakegem_compile
+
+   if use doc ; then
+   yard || die "yard failed"
+   fi
+}



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

2022-12-04 Thread Hans de Graaff
commit: 6dd157be00cfc2947cb44578d7ef242175b89261
Author: Hans de Graaff  gentoo  org>
AuthorDate: Sun Dec  4 10:33:20 2022 +
Commit: Hans de Graaff  gentoo  org>
CommitDate: Sun Dec  4 15:05:18 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6dd157be

dev-ruby/omniauth: drop 2.0.4

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

 dev-ruby/omniauth/Manifest  |  1 -
 dev-ruby/omniauth/omniauth-2.0.4.ebuild | 46 -
 2 files changed, 47 deletions(-)

diff --git a/dev-ruby/omniauth/Manifest b/dev-ruby/omniauth/Manifest
index a7597c449f36..7fa73d917aba 100644
--- a/dev-ruby/omniauth/Manifest
+++ b/dev-ruby/omniauth/Manifest
@@ -1,2 +1 @@
-DIST omniauth-2.0.4.tar.gz 30951 BLAKE2B 
6086a737e043ae37e6c7c4b1e4d597a08e6dc490c5d71f7847e9c5a8880bbbd1117470efbbe12e150bf238bf6e5413493712f1c09ae5e37f5d7b7676b6da023e
 SHA512 
c92ce881388c9793e96354caee764cbabb28c69ca63b32f304693c4859eb8bf994e86b2cc9dbeb57993347e6f2787c43eab967c36730d5c47a3c4767d16847eb
 DIST omniauth-2.1.0.tar.gz 31135 BLAKE2B 
b221c084b926e3ac9e31858268940d0bd8583c667c7bcb8ce14e7fbda91c06c286191ffeff36c17d1d668ee29ca850b377312f2f2a417c47cb1dd4e8a447a641
 SHA512 
f1dde6f527b6aafdbed83ce6e14dae39617b738c6e80e9ece3d768ef9f63a87924ef2ef92b99ecc52bd69c0103854f16ff9c80f3d2eeb7c134fc70ab0157df63

diff --git a/dev-ruby/omniauth/omniauth-2.0.4.ebuild 
b/dev-ruby/omniauth/omniauth-2.0.4.ebuild
deleted file mode 100644
index 79e5a2b31ca8..
--- a/dev-ruby/omniauth/omniauth-2.0.4.ebuild
+++ /dev/null
@@ -1,46 +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="README.md"
-RUBY_FAKEGEM_RECIPE_TEST="rspec3"
-RUBY_FAKEGEM_DOCDIR="doc"
-
-RUBY_FAKEGEM_GEMSPEC="${PN}.gemspec"
-
-inherit ruby-fakegem
-
-DESCRIPTION="A generalized Rack framework for multiple-provider authentication"
-HOMEPAGE="https://github.com/intridea/omniauth;
-SRC_URI="https://github.com/intridea/omniauth/archive/v${PV}.tar.gz -> 
${P}.tar.gz"
-LICENSE="MIT"
-KEYWORDS="~amd64"
-SLOT="$(ver_cut 1)"
-IUSE=""
-
-ruby_add_rdepend "
-   =dev-ruby/rack-2*
-   dev-ruby/rack-protection
-   >=dev-ruby/hashie-3.4.6:*"
-ruby_add_bdepend "doc? ( dev-ruby/yard )
-   test? ( dev-ruby/rack-test )"
-
-all_ruby_prepare() {
-   sed -i -e '/[Bb]undler/d' \
-   Rakefile ${PN}.gemspec || die "sed failed"
-   sed -i -e '/RUBY_VERSION/,/^end/ s:^:#: ; /freeze/ s:^:#:' 
spec/helper.rb || die "sed failed"
-   # maruku fails, resorting to default markdown implementation
-   sed -i -e '/maruku/d' .yardopts || die "sed failed"
-
-   sed -i -e '/s.files/d' ${RUBY_FAKEGEM_GEMSPEC} || die
-}
-
-all_ruby_compile() {
-   all_fakegem_compile
-
-   if use doc ; then
-   yard || die "yard failed"
-   fi
-}



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

2022-04-13 Thread Hans de Graaff
commit: e32cd255ccc20cde339749c312631330d3162f7c
Author: Hans de Graaff  gentoo  org>
AuthorDate: Thu Apr 14 04:59:47 2022 +
Commit: Hans de Graaff  gentoo  org>
CommitDate: Thu Apr 14 04:59:47 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e32cd255

dev-ruby/omniauth: add 2.1.0

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

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

diff --git a/dev-ruby/omniauth/Manifest b/dev-ruby/omniauth/Manifest
index a105ed73fd6c..a7597c449f36 100644
--- a/dev-ruby/omniauth/Manifest
+++ b/dev-ruby/omniauth/Manifest
@@ -1 +1,2 @@
 DIST omniauth-2.0.4.tar.gz 30951 BLAKE2B 
6086a737e043ae37e6c7c4b1e4d597a08e6dc490c5d71f7847e9c5a8880bbbd1117470efbbe12e150bf238bf6e5413493712f1c09ae5e37f5d7b7676b6da023e
 SHA512 
c92ce881388c9793e96354caee764cbabb28c69ca63b32f304693c4859eb8bf994e86b2cc9dbeb57993347e6f2787c43eab967c36730d5c47a3c4767d16847eb
+DIST omniauth-2.1.0.tar.gz 31135 BLAKE2B 
b221c084b926e3ac9e31858268940d0bd8583c667c7bcb8ce14e7fbda91c06c286191ffeff36c17d1d668ee29ca850b377312f2f2a417c47cb1dd4e8a447a641
 SHA512 
f1dde6f527b6aafdbed83ce6e14dae39617b738c6e80e9ece3d768ef9f63a87924ef2ef92b99ecc52bd69c0103854f16ff9c80f3d2eeb7c134fc70ab0157df63

diff --git a/dev-ruby/omniauth/omniauth-2.1.0.ebuild 
b/dev-ruby/omniauth/omniauth-2.1.0.ebuild
new file mode 100644
index ..16d0da9a9ceb
--- /dev/null
+++ b/dev-ruby/omniauth/omniauth-2.1.0.ebuild
@@ -0,0 +1,46 @@
+# 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="README.md"
+RUBY_FAKEGEM_RECIPE_TEST="rspec3"
+RUBY_FAKEGEM_DOCDIR="doc"
+
+RUBY_FAKEGEM_GEMSPEC="${PN}.gemspec"
+
+inherit ruby-fakegem
+
+DESCRIPTION="A generalized Rack framework for multiple-provider authentication"
+HOMEPAGE="https://github.com/intridea/omniauth;
+SRC_URI="https://github.com/intridea/omniauth/archive/v${PV}.tar.gz -> 
${P}.tar.gz"
+LICENSE="MIT"
+KEYWORDS="~amd64"
+SLOT="$(ver_cut 1)"
+IUSE=""
+
+ruby_add_rdepend "
+   >=dev-ruby/rack-2.2.3
+   dev-ruby/rack-protection
+   >=dev-ruby/hashie-3.4.6:*"
+ruby_add_bdepend "doc? ( dev-ruby/yard )
+   test? ( dev-ruby/rack-test )"
+
+all_ruby_prepare() {
+   sed -i -e '/[Bb]undler/d' \
+   Rakefile ${PN}.gemspec || die "sed failed"
+   sed -i -e '/RUBY_VERSION/,/^end/ s:^:#: ; /freeze/ s:^:#:' 
spec/helper.rb || die "sed failed"
+   # maruku fails, resorting to default markdown implementation
+   sed -i -e '/maruku/d' .yardopts || die "sed failed"
+
+   sed -i -e '/s.files/d' ${RUBY_FAKEGEM_GEMSPEC} || die
+}
+
+all_ruby_compile() {
+   all_fakegem_compile
+
+   if use doc ; then
+   yard || die "yard failed"
+   fi
+}



[gentoo-commits] repo/gentoo:master commit in: dev-ruby/omniauth/, profiles/

2021-08-19 Thread David Seifert
commit: 5424f4f5575040dab0ffa3f1d01148555faa5117
Author: Jakov Smolic  sartura  hr>
AuthorDate: Thu Aug 19 11:14:11 2021 +
Commit: David Seifert  gentoo  org>
CommitDate: Thu Aug 19 11:14:11 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5424f4f5

dev-ruby/omniauth: Remove last-rited version

Bug: https://bugs.gentoo.org/761960
Signed-off-by: Jakov Smolic  sartura.hr>
Signed-off-by: David Seifert  gentoo.org>

 dev-ruby/omniauth/Manifest  |  1 -
 dev-ruby/omniauth/omniauth-1.9.1.ebuild | 45 -
 profiles/package.mask   |  5 
 3 files changed, 51 deletions(-)

diff --git a/dev-ruby/omniauth/Manifest b/dev-ruby/omniauth/Manifest
index 414327ceb69..a105ed73fd6 100644
--- a/dev-ruby/omniauth/Manifest
+++ b/dev-ruby/omniauth/Manifest
@@ -1,2 +1 @@
-DIST omniauth-1.9.1.tar.gz 26528 BLAKE2B 
da096ce924972c867ade4cde7e6ec90f5a7de41947f5d04ad092174baf3073ba6b235ff998551d9bbc7f6dfa2a4290eef1e1d962590591cf29f89395a554f3a9
 SHA512 
687ab9ad47d57d1cbe01fb7ed37754fecb3b75b7e62853070b5880ad6347a2834524a8d4042271ecd7f708ab35b7b5bd3203058ef03c3317f26f88a7639c2672
 DIST omniauth-2.0.4.tar.gz 30951 BLAKE2B 
6086a737e043ae37e6c7c4b1e4d597a08e6dc490c5d71f7847e9c5a8880bbbd1117470efbbe12e150bf238bf6e5413493712f1c09ae5e37f5d7b7676b6da023e
 SHA512 
c92ce881388c9793e96354caee764cbabb28c69ca63b32f304693c4859eb8bf994e86b2cc9dbeb57993347e6f2787c43eab967c36730d5c47a3c4767d16847eb

diff --git a/dev-ruby/omniauth/omniauth-1.9.1.ebuild 
b/dev-ruby/omniauth/omniauth-1.9.1.ebuild
deleted file mode 100644
index 28d880e64b3..000
--- a/dev-ruby/omniauth/omniauth-1.9.1.ebuild
+++ /dev/null
@@ -1,45 +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="README.md"
-RUBY_FAKEGEM_RECIPE_TEST="rspec3"
-RUBY_FAKEGEM_DOCDIR="doc"
-
-RUBY_FAKEGEM_GEMSPEC="${PN}.gemspec"
-
-inherit ruby-fakegem
-
-DESCRIPTION="A generalized Rack framework for multiple-provider authentication"
-HOMEPAGE="https://github.com/intridea/omniauth;
-SRC_URI="https://github.com/intridea/omniauth/archive/v${PV}.tar.gz -> 
${P}.tar.gz"
-LICENSE="MIT"
-KEYWORDS="~amd64"
-SLOT="0"
-IUSE=""
-
-ruby_add_rdepend "
-   >=dev-ruby/rack-1.6.2:* =dev-ruby/hashie-3.4.6:3  (2021-07-07)
-# Security bug CVE-2015-9284, bug 761960. Use slot 2 instead.
-# Masked for removal in 30 days.
-dev-ruby/omniauth:0
-
 # Michał Górny  (2021-07-06)
 # Upstream changed license to GPL-3+ in order to deliberately cause
 # incompatiblity with revdep licenses.  Mask until the situation



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

2021-07-07 Thread Hans de Graaff
commit: 89bcc98ce7ba0cfe3de2910a9aa12c3f0847db94
Author: Hans de Graaff  gentoo  org>
AuthorDate: Wed Jul  7 07:36:31 2021 +
Commit: Hans de Graaff  gentoo  org>
CommitDate: Wed Jul  7 07:37:35 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=89bcc98c

dev-ruby/omniauth: add 2.0.4

Bug: https://bugs.gentoo.org/761960

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

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

diff --git a/dev-ruby/omniauth/Manifest b/dev-ruby/omniauth/Manifest
index ef5990b9823..414327ceb69 100644
--- a/dev-ruby/omniauth/Manifest
+++ b/dev-ruby/omniauth/Manifest
@@ -1 +1,2 @@
 DIST omniauth-1.9.1.tar.gz 26528 BLAKE2B 
da096ce924972c867ade4cde7e6ec90f5a7de41947f5d04ad092174baf3073ba6b235ff998551d9bbc7f6dfa2a4290eef1e1d962590591cf29f89395a554f3a9
 SHA512 
687ab9ad47d57d1cbe01fb7ed37754fecb3b75b7e62853070b5880ad6347a2834524a8d4042271ecd7f708ab35b7b5bd3203058ef03c3317f26f88a7639c2672
+DIST omniauth-2.0.4.tar.gz 30951 BLAKE2B 
6086a737e043ae37e6c7c4b1e4d597a08e6dc490c5d71f7847e9c5a8880bbbd1117470efbbe12e150bf238bf6e5413493712f1c09ae5e37f5d7b7676b6da023e
 SHA512 
c92ce881388c9793e96354caee764cbabb28c69ca63b32f304693c4859eb8bf994e86b2cc9dbeb57993347e6f2787c43eab967c36730d5c47a3c4767d16847eb

diff --git a/dev-ruby/omniauth/omniauth-2.0.4.ebuild 
b/dev-ruby/omniauth/omniauth-2.0.4.ebuild
new file mode 100644
index 000..79e5a2b31ca
--- /dev/null
+++ b/dev-ruby/omniauth/omniauth-2.0.4.ebuild
@@ -0,0 +1,46 @@
+# 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="README.md"
+RUBY_FAKEGEM_RECIPE_TEST="rspec3"
+RUBY_FAKEGEM_DOCDIR="doc"
+
+RUBY_FAKEGEM_GEMSPEC="${PN}.gemspec"
+
+inherit ruby-fakegem
+
+DESCRIPTION="A generalized Rack framework for multiple-provider authentication"
+HOMEPAGE="https://github.com/intridea/omniauth;
+SRC_URI="https://github.com/intridea/omniauth/archive/v${PV}.tar.gz -> 
${P}.tar.gz"
+LICENSE="MIT"
+KEYWORDS="~amd64"
+SLOT="$(ver_cut 1)"
+IUSE=""
+
+ruby_add_rdepend "
+   =dev-ruby/rack-2*
+   dev-ruby/rack-protection
+   >=dev-ruby/hashie-3.4.6:*"
+ruby_add_bdepend "doc? ( dev-ruby/yard )
+   test? ( dev-ruby/rack-test )"
+
+all_ruby_prepare() {
+   sed -i -e '/[Bb]undler/d' \
+   Rakefile ${PN}.gemspec || die "sed failed"
+   sed -i -e '/RUBY_VERSION/,/^end/ s:^:#: ; /freeze/ s:^:#:' 
spec/helper.rb || die "sed failed"
+   # maruku fails, resorting to default markdown implementation
+   sed -i -e '/maruku/d' .yardopts || die "sed failed"
+
+   sed -i -e '/s.files/d' ${RUBY_FAKEGEM_GEMSPEC} || die
+}
+
+all_ruby_compile() {
+   all_fakegem_compile
+
+   if use doc ; then
+   yard || die "yard failed"
+   fi
+}



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

2021-07-07 Thread Hans de Graaff
commit: 4d1298d6797f1cbbd99ee25c57234d115d4456a3
Author: Hans de Graaff  gentoo  org>
AuthorDate: Wed Jul  7 07:30:35 2021 +
Commit: Hans de Graaff  gentoo  org>
CommitDate: Wed Jul  7 07:30:35 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4d1298d6

dev-ruby/omniauth: add ruby27

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

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

diff --git a/dev-ruby/omniauth/omniauth-1.9.1.ebuild 
b/dev-ruby/omniauth/omniauth-1.9.1.ebuild
index d58ecb6d1b6..28d880e64b3 100644
--- a/dev-ruby/omniauth/omniauth-1.9.1.ebuild
+++ b/dev-ruby/omniauth/omniauth-1.9.1.ebuild
@@ -1,8 +1,8 @@
-# Copyright 1999-2020 Gentoo Authors
+# Copyright 1999-2021 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=7
-USE_RUBY="ruby24 ruby25 ruby26"
+USE_RUBY="ruby25 ruby26 ruby27"
 
 RUBY_FAKEGEM_EXTRADOC="README.md"
 RUBY_FAKEGEM_RECIPE_TEST="rspec3"



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

2020-08-01 Thread Hans de Graaff
commit: d164305e4ba9124dfd26c5fd4cff89eb742a598d
Author: Hans de Graaff  gentoo  org>
AuthorDate: Sat Aug  1 08:38:20 2020 +
Commit: Hans de Graaff  gentoo  org>
CommitDate: Sat Aug  1 09:03:27 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d164305e

dev-ruby/omniauth: cleanup

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

 dev-ruby/omniauth/Manifest  |  1 -
 dev-ruby/omniauth/omniauth-1.9.0.ebuild | 46 -
 2 files changed, 47 deletions(-)

diff --git a/dev-ruby/omniauth/Manifest b/dev-ruby/omniauth/Manifest
index 5ff4d5727a1..ef5990b9823 100644
--- a/dev-ruby/omniauth/Manifest
+++ b/dev-ruby/omniauth/Manifest
@@ -1,2 +1 @@
-DIST omniauth-1.9.0.tar.gz 26060 BLAKE2B 
d0b7cd7536fc19184f56cc2b383ff70d7556d4794fb2981738216b770c340cc14025f1241a40260c0620a7bae73906c4baad1a9ce68402f0e7882128b620005d
 SHA512 
8505fb5081f9f4daa143925b56804d81f656523c2e65c08f2bc5c1da50cd17a06c86856e9f6560a71ee440804a536d3e814eb5dd34a0fd0c4ababe2fdadf
 DIST omniauth-1.9.1.tar.gz 26528 BLAKE2B 
da096ce924972c867ade4cde7e6ec90f5a7de41947f5d04ad092174baf3073ba6b235ff998551d9bbc7f6dfa2a4290eef1e1d962590591cf29f89395a554f3a9
 SHA512 
687ab9ad47d57d1cbe01fb7ed37754fecb3b75b7e62853070b5880ad6347a2834524a8d4042271ecd7f708ab35b7b5bd3203058ef03c3317f26f88a7639c2672

diff --git a/dev-ruby/omniauth/omniauth-1.9.0.ebuild 
b/dev-ruby/omniauth/omniauth-1.9.0.ebuild
deleted file mode 100644
index 83b0ae242f0..000
--- a/dev-ruby/omniauth/omniauth-1.9.0.ebuild
+++ /dev/null
@@ -1,46 +0,0 @@
-# Copyright 1999-2019 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-USE_RUBY="ruby23 ruby24 ruby25 ruby26"
-
-RUBY_FAKEGEM_EXTRADOC="README.md"
-RUBY_FAKEGEM_RECIPE_TEST="rspec3"
-RUBY_FAKEGEM_RECIPE_DOC="none"
-RUBY_FAKEGEM_DOCDIR="doc"
-
-RUBY_FAKEGEM_GEMSPEC="${PN}.gemspec"
-
-inherit ruby-fakegem
-
-DESCRIPTION="A generalized Rack framework for multiple-provider authentication"
-HOMEPAGE="https://github.com/intridea/omniauth;
-SRC_URI="https://github.com/intridea/omniauth/archive/v${PV}.tar.gz -> 
${P}.tar.gz"
-LICENSE="MIT"
-KEYWORDS="~amd64"
-SLOT="0"
-IUSE=""
-
-ruby_add_rdepend "
-   >=dev-ruby/rack-1.6.2:* =dev-ruby/hashie-3.4.6:3 

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

2020-03-02 Thread Hans de Graaff
commit: 8450611af8409046384dfcc6832af00e9e580e61
Author: Hans de Graaff  gentoo  org>
AuthorDate: Tue Mar  3 07:08:29 2020 +
Commit: Hans de Graaff  gentoo  org>
CommitDate: Tue Mar  3 07:22:29 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8450611a

dev-ruby/omniauth: add 1.9.1

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

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

diff --git a/dev-ruby/omniauth/Manifest b/dev-ruby/omniauth/Manifest
index 774b6b1dfb5..5ff4d5727a1 100644
--- a/dev-ruby/omniauth/Manifest
+++ b/dev-ruby/omniauth/Manifest
@@ -1 +1,2 @@
 DIST omniauth-1.9.0.tar.gz 26060 BLAKE2B 
d0b7cd7536fc19184f56cc2b383ff70d7556d4794fb2981738216b770c340cc14025f1241a40260c0620a7bae73906c4baad1a9ce68402f0e7882128b620005d
 SHA512 
8505fb5081f9f4daa143925b56804d81f656523c2e65c08f2bc5c1da50cd17a06c86856e9f6560a71ee440804a536d3e814eb5dd34a0fd0c4ababe2fdadf
+DIST omniauth-1.9.1.tar.gz 26528 BLAKE2B 
da096ce924972c867ade4cde7e6ec90f5a7de41947f5d04ad092174baf3073ba6b235ff998551d9bbc7f6dfa2a4290eef1e1d962590591cf29f89395a554f3a9
 SHA512 
687ab9ad47d57d1cbe01fb7ed37754fecb3b75b7e62853070b5880ad6347a2834524a8d4042271ecd7f708ab35b7b5bd3203058ef03c3317f26f88a7639c2672

diff --git a/dev-ruby/omniauth/omniauth-1.9.1.ebuild 
b/dev-ruby/omniauth/omniauth-1.9.1.ebuild
new file mode 100644
index 000..d58ecb6d1b6
--- /dev/null
+++ b/dev-ruby/omniauth/omniauth-1.9.1.ebuild
@@ -0,0 +1,45 @@
+# Copyright 1999-2020 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+USE_RUBY="ruby24 ruby25 ruby26"
+
+RUBY_FAKEGEM_EXTRADOC="README.md"
+RUBY_FAKEGEM_RECIPE_TEST="rspec3"
+RUBY_FAKEGEM_DOCDIR="doc"
+
+RUBY_FAKEGEM_GEMSPEC="${PN}.gemspec"
+
+inherit ruby-fakegem
+
+DESCRIPTION="A generalized Rack framework for multiple-provider authentication"
+HOMEPAGE="https://github.com/intridea/omniauth;
+SRC_URI="https://github.com/intridea/omniauth/archive/v${PV}.tar.gz -> 
${P}.tar.gz"
+LICENSE="MIT"
+KEYWORDS="~amd64"
+SLOT="0"
+IUSE=""
+
+ruby_add_rdepend "
+   >=dev-ruby/rack-1.6.2:* =dev-ruby/hashie-3.4.6:3 

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

2019-11-08 Thread Hans de Graaff
commit: 815b7b38858021af162369dd917f5a3db296945d
Author: Hans de Graaff  gentoo  org>
AuthorDate: Sat Nov  9 06:25:47 2019 +
Commit: Hans de Graaff  gentoo  org>
CommitDate: Sat Nov  9 06:25:47 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=815b7b38

dev-ruby/omniauth: cleanup

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

 dev-ruby/omniauth/Manifest  |  1 -
 dev-ruby/omniauth/omniauth-1.8.1.ebuild | 46 -
 2 files changed, 47 deletions(-)

diff --git a/dev-ruby/omniauth/Manifest b/dev-ruby/omniauth/Manifest
index f650a6618a8..774b6b1dfb5 100644
--- a/dev-ruby/omniauth/Manifest
+++ b/dev-ruby/omniauth/Manifest
@@ -1,2 +1 @@
-DIST omniauth-1.8.1.tar.gz 26016 BLAKE2B 
ad7f22a847bd91385ddce44efc89fb312b07ffe43d2b0fab3773e7c809959eb8a8b4567af5ba1a1e9fb9d559b692dec358bf16d6b1cb21b85f13521c20fa3415
 SHA512 
ad085d067971f3fef40e99be7f2e58a9bb006b404f8d7289c5c00be4ed7314ff9d40409053d2bda0a5072035d6e09295d22b8ae6b5d2a84384b245b5a0ae225a
 DIST omniauth-1.9.0.tar.gz 26060 BLAKE2B 
d0b7cd7536fc19184f56cc2b383ff70d7556d4794fb2981738216b770c340cc14025f1241a40260c0620a7bae73906c4baad1a9ce68402f0e7882128b620005d
 SHA512 
8505fb5081f9f4daa143925b56804d81f656523c2e65c08f2bc5c1da50cd17a06c86856e9f6560a71ee440804a536d3e814eb5dd34a0fd0c4ababe2fdadf

diff --git a/dev-ruby/omniauth/omniauth-1.8.1.ebuild 
b/dev-ruby/omniauth/omniauth-1.8.1.ebuild
deleted file mode 100644
index 6292d39c383..000
--- a/dev-ruby/omniauth/omniauth-1.8.1.ebuild
+++ /dev/null
@@ -1,46 +0,0 @@
-# Copyright 1999-2018 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-USE_RUBY="ruby23 ruby24 ruby25"
-
-RUBY_FAKEGEM_EXTRADOC="README.md"
-RUBY_FAKEGEM_RECIPE_TEST="rspec3"
-RUBY_FAKEGEM_RECIPE_DOC="none"
-RUBY_FAKEGEM_DOCDIR="doc"
-
-RUBY_FAKEGEM_GEMSPEC="${PN}.gemspec"
-
-inherit ruby-fakegem
-
-DESCRIPTION="A generalized Rack framework for multiple-provider authentication"
-HOMEPAGE="https://github.com/intridea/omniauth;
-SRC_URI="https://github.com/intridea/omniauth/archive/v${PV}.tar.gz -> 
${P}.tar.gz"
-LICENSE="MIT"
-KEYWORDS="~amd64"
-SLOT="0"
-IUSE=""
-
-ruby_add_rdepend "
-   >=dev-ruby/rack-1.6.2:* =dev-ruby/hashie-3.4.6:3 

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

2019-03-30 Thread Hans de Graaff
commit: 905b2ff23eee524e2433ecad1b9eba4c8ec4fee4
Author: Hans de Graaff  gentoo  org>
AuthorDate: Sat Mar 30 06:23:20 2019 +
Commit: Hans de Graaff  gentoo  org>
CommitDate: Sat Mar 30 06:43:19 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=905b2ff2

dev-ruby/omniauth: add ruby26

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

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

diff --git a/dev-ruby/omniauth/omniauth-1.9.0.ebuild 
b/dev-ruby/omniauth/omniauth-1.9.0.ebuild
index 13f9e1058c4..83b0ae242f0 100644
--- a/dev-ruby/omniauth/omniauth-1.9.0.ebuild
+++ b/dev-ruby/omniauth/omniauth-1.9.0.ebuild
@@ -1,8 +1,8 @@
-# Copyright 1999-2018 Gentoo Authors
+# 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_EXTRADOC="README.md"
 RUBY_FAKEGEM_RECIPE_TEST="rspec3"



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

2018-12-14 Thread Hans de Graaff
commit: 396efa0fb464940c668a6c22e77fa124b8a3a2c7
Author: Hans de Graaff  gentoo  org>
AuthorDate: Sat Dec 15 06:30:53 2018 +
Commit: Hans de Graaff  gentoo  org>
CommitDate: Sat Dec 15 06:30:53 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=396efa0f

dev-ruby/omniauth: add 1.9.0

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

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

diff --git a/dev-ruby/omniauth/Manifest b/dev-ruby/omniauth/Manifest
index f6f2ed063c6..f650a6618a8 100644
--- a/dev-ruby/omniauth/Manifest
+++ b/dev-ruby/omniauth/Manifest
@@ -1 +1,2 @@
 DIST omniauth-1.8.1.tar.gz 26016 BLAKE2B 
ad7f22a847bd91385ddce44efc89fb312b07ffe43d2b0fab3773e7c809959eb8a8b4567af5ba1a1e9fb9d559b692dec358bf16d6b1cb21b85f13521c20fa3415
 SHA512 
ad085d067971f3fef40e99be7f2e58a9bb006b404f8d7289c5c00be4ed7314ff9d40409053d2bda0a5072035d6e09295d22b8ae6b5d2a84384b245b5a0ae225a
+DIST omniauth-1.9.0.tar.gz 26060 BLAKE2B 
d0b7cd7536fc19184f56cc2b383ff70d7556d4794fb2981738216b770c340cc14025f1241a40260c0620a7bae73906c4baad1a9ce68402f0e7882128b620005d
 SHA512 
8505fb5081f9f4daa143925b56804d81f656523c2e65c08f2bc5c1da50cd17a06c86856e9f6560a71ee440804a536d3e814eb5dd34a0fd0c4ababe2fdadf

diff --git a/dev-ruby/omniauth/omniauth-1.9.0.ebuild 
b/dev-ruby/omniauth/omniauth-1.9.0.ebuild
new file mode 100644
index 000..13f9e1058c4
--- /dev/null
+++ b/dev-ruby/omniauth/omniauth-1.9.0.ebuild
@@ -0,0 +1,46 @@
+# Copyright 1999-2018 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+USE_RUBY="ruby23 ruby24 ruby25"
+
+RUBY_FAKEGEM_EXTRADOC="README.md"
+RUBY_FAKEGEM_RECIPE_TEST="rspec3"
+RUBY_FAKEGEM_RECIPE_DOC="none"
+RUBY_FAKEGEM_DOCDIR="doc"
+
+RUBY_FAKEGEM_GEMSPEC="${PN}.gemspec"
+
+inherit ruby-fakegem
+
+DESCRIPTION="A generalized Rack framework for multiple-provider authentication"
+HOMEPAGE="https://github.com/intridea/omniauth;
+SRC_URI="https://github.com/intridea/omniauth/archive/v${PV}.tar.gz -> 
${P}.tar.gz"
+LICENSE="MIT"
+KEYWORDS="~amd64"
+SLOT="0"
+IUSE=""
+
+ruby_add_rdepend "
+   >=dev-ruby/rack-1.6.2:* =dev-ruby/hashie-3.4.6:3 

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

2018-09-10 Thread Hans de Graaff
commit: 65d4a5c68a019930e950297304effcb1573740c6
Author: Hans de Graaff  gentoo  org>
AuthorDate: Tue Sep 11 04:37:50 2018 +
Commit: Hans de Graaff  gentoo  org>
CommitDate: Tue Sep 11 04:37:50 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=65d4a5c6

dev-ruby/omniauth: add ruby25

Package-Manager: Portage-2.3.40, Repoman-2.3.9

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

diff --git a/dev-ruby/omniauth/omniauth-1.8.1.ebuild 
b/dev-ruby/omniauth/omniauth-1.8.1.ebuild
index 2c597ca3030..6292d39c383 100644
--- a/dev-ruby/omniauth/omniauth-1.8.1.ebuild
+++ b/dev-ruby/omniauth/omniauth-1.8.1.ebuild
@@ -1,8 +1,8 @@
-# Copyright 1999-2017 Gentoo Foundation
+# Copyright 1999-2018 Gentoo Foundation
 # 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_EXTRADOC="README.md"
 RUBY_FAKEGEM_RECIPE_TEST="rspec3"



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

2018-02-06 Thread Hans de Graaff
commit: 3a3d7c973596089851c86f00de634193743438c2
Author: Hans de Graaff  gentoo  org>
AuthorDate: Wed Feb  7 06:37:38 2018 +
Commit: Hans de Graaff  gentoo  org>
CommitDate: Wed Feb  7 07:04:49 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3a3d7c97

dev-ruby/omniauth: cleanup

Package-Manager: Portage-2.3.19, Repoman-2.3.6

 dev-ruby/omniauth/Manifest  |  2 --
 dev-ruby/omniauth/omniauth-1.6.1.ebuild | 46 -
 dev-ruby/omniauth/omniauth-1.7.1.ebuild | 46 -
 3 files changed, 94 deletions(-)

diff --git a/dev-ruby/omniauth/Manifest b/dev-ruby/omniauth/Manifest
index f748ec48f82..f6f2ed063c6 100644
--- a/dev-ruby/omniauth/Manifest
+++ b/dev-ruby/omniauth/Manifest
@@ -1,3 +1 @@
-DIST omniauth-1.6.1.tar.gz 25094 BLAKE2B 
45fa6c9d5eb249d5650adaf5e7a89e35ade8613cbc051b76e57b3332f26b8bc18a1645120a0590828c5dedc3034cf8ce5f107d1bcf88054cf5d27abb8d44c723
 SHA512 
5cb372ef4c8b78d5d110eb3f2f828ac3af5d14f230ed3a7d81f0464e21f0d3a434604fe2102874a3b6c341cbe9ad4db4af575229c77592c11e756bb38ab3b80b
-DIST omniauth-1.7.1.tar.gz 26002 BLAKE2B 
180d0eba2a4dc6289411e5a56ee776dc1bb0a799d4f3c735803986b6d47e4de4d50e670157a2996b10e4d80d57f322a296d24af18b87b6c6de669dbd64253fd1
 SHA512 
ed951394f996eb7eb9ab90fb6e46957f8f85148cc29ffb90697a0f74819014327a8e1fb6e8dbd5be736961c7283dc6132586841d05b87043b8d5a20c12441f68
 DIST omniauth-1.8.1.tar.gz 26016 BLAKE2B 
ad7f22a847bd91385ddce44efc89fb312b07ffe43d2b0fab3773e7c809959eb8a8b4567af5ba1a1e9fb9d559b692dec358bf16d6b1cb21b85f13521c20fa3415
 SHA512 
ad085d067971f3fef40e99be7f2e58a9bb006b404f8d7289c5c00be4ed7314ff9d40409053d2bda0a5072035d6e09295d22b8ae6b5d2a84384b245b5a0ae225a

diff --git a/dev-ruby/omniauth/omniauth-1.6.1.ebuild 
b/dev-ruby/omniauth/omniauth-1.6.1.ebuild
deleted file mode 100644
index ddea4b3b8f5..000
--- a/dev-ruby/omniauth/omniauth-1.6.1.ebuild
+++ /dev/null
@@ -1,46 +0,0 @@
-# Copyright 1999-2017 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=5
-USE_RUBY="ruby21 ruby22 ruby23"
-
-RUBY_FAKEGEM_EXTRADOC="README.md"
-RUBY_FAKEGEM_RECIPE_TEST="rspec3"
-RUBY_FAKEGEM_RECIPE_DOC="none"
-RUBY_FAKEGEM_DOCDIR="doc"
-
-RUBY_FAKEGEM_GEMSPEC="${PN}.gemspec"
-
-inherit ruby-fakegem
-
-DESCRIPTION="A generalized Rack framework for multiple-provider authentication"
-HOMEPAGE="https://github.com/intridea/omniauth;
-SRC_URI="https://github.com/intridea/omniauth/archive/v${PV}.tar.gz -> 
${P}.tar.gz"
-LICENSE="MIT"
-KEYWORDS="~amd64"
-SLOT="0"
-IUSE=""
-
-ruby_add_rdepend "
-   >=dev-ruby/rack-1.6.2:* =dev-ruby/hashie-3.4.6:3 https://github.com/intridea/omniauth;
-SRC_URI="https://github.com/intridea/omniauth/archive/v${PV}.tar.gz -> 
${P}.tar.gz"
-LICENSE="MIT"
-KEYWORDS="~amd64"
-SLOT="0"
-IUSE=""
-
-ruby_add_rdepend "
-   >=dev-ruby/rack-1.6.2:* =dev-ruby/hashie-3.4.6:3 

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

2017-12-27 Thread Hans de Graaff
commit: 136dc5cdb527e969ab507de7aba6dd2da1d3ad78
Author: Hans de Graaff  gentoo  org>
AuthorDate: Thu Dec 28 06:33:25 2017 +
Commit: Hans de Graaff  gentoo  org>
CommitDate: Thu Dec 28 06:33:25 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=136dc5cd

dev-ruby/omniauth: add 1.8.1

Package-Manager: Portage-2.3.13, Repoman-2.3.3

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

diff --git a/dev-ruby/omniauth/Manifest b/dev-ruby/omniauth/Manifest
index 0b3965cc221..f748ec48f82 100644
--- a/dev-ruby/omniauth/Manifest
+++ b/dev-ruby/omniauth/Manifest
@@ -1,2 +1,3 @@
 DIST omniauth-1.6.1.tar.gz 25094 BLAKE2B 
45fa6c9d5eb249d5650adaf5e7a89e35ade8613cbc051b76e57b3332f26b8bc18a1645120a0590828c5dedc3034cf8ce5f107d1bcf88054cf5d27abb8d44c723
 SHA512 
5cb372ef4c8b78d5d110eb3f2f828ac3af5d14f230ed3a7d81f0464e21f0d3a434604fe2102874a3b6c341cbe9ad4db4af575229c77592c11e756bb38ab3b80b
 DIST omniauth-1.7.1.tar.gz 26002 BLAKE2B 
180d0eba2a4dc6289411e5a56ee776dc1bb0a799d4f3c735803986b6d47e4de4d50e670157a2996b10e4d80d57f322a296d24af18b87b6c6de669dbd64253fd1
 SHA512 
ed951394f996eb7eb9ab90fb6e46957f8f85148cc29ffb90697a0f74819014327a8e1fb6e8dbd5be736961c7283dc6132586841d05b87043b8d5a20c12441f68
+DIST omniauth-1.8.1.tar.gz 26016 BLAKE2B 
ad7f22a847bd91385ddce44efc89fb312b07ffe43d2b0fab3773e7c809959eb8a8b4567af5ba1a1e9fb9d559b692dec358bf16d6b1cb21b85f13521c20fa3415
 SHA512 
ad085d067971f3fef40e99be7f2e58a9bb006b404f8d7289c5c00be4ed7314ff9d40409053d2bda0a5072035d6e09295d22b8ae6b5d2a84384b245b5a0ae225a

diff --git a/dev-ruby/omniauth/omniauth-1.8.1.ebuild 
b/dev-ruby/omniauth/omniauth-1.8.1.ebuild
new file mode 100644
index 000..2c597ca3030
--- /dev/null
+++ b/dev-ruby/omniauth/omniauth-1.8.1.ebuild
@@ -0,0 +1,46 @@
+# Copyright 1999-2017 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+USE_RUBY="ruby22 ruby23 ruby24"
+
+RUBY_FAKEGEM_EXTRADOC="README.md"
+RUBY_FAKEGEM_RECIPE_TEST="rspec3"
+RUBY_FAKEGEM_RECIPE_DOC="none"
+RUBY_FAKEGEM_DOCDIR="doc"
+
+RUBY_FAKEGEM_GEMSPEC="${PN}.gemspec"
+
+inherit ruby-fakegem
+
+DESCRIPTION="A generalized Rack framework for multiple-provider authentication"
+HOMEPAGE="https://github.com/intridea/omniauth;
+SRC_URI="https://github.com/intridea/omniauth/archive/v${PV}.tar.gz -> 
${P}.tar.gz"
+LICENSE="MIT"
+KEYWORDS="~amd64"
+SLOT="0"
+IUSE=""
+
+ruby_add_rdepend "
+   >=dev-ruby/rack-1.6.2:* =dev-ruby/hashie-3.4.6:3 

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

2017-12-27 Thread Hans de Graaff
commit: d014d1c62886b9fe904a059f7220a5b82849d239
Author: Hans de Graaff  gentoo  org>
AuthorDate: Thu Dec 28 06:32:08 2017 +
Commit: Hans de Graaff  gentoo  org>
CommitDate: Thu Dec 28 06:32:08 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d014d1c6

dev-ruby/omniauth: cleanup

Package-Manager: Portage-2.3.13, Repoman-2.3.3

 dev-ruby/omniauth/Manifest  |  2 --
 dev-ruby/omniauth/omniauth-1.6.0.ebuild | 46 -
 dev-ruby/omniauth/omniauth-1.7.0.ebuild | 46 -
 3 files changed, 94 deletions(-)

diff --git a/dev-ruby/omniauth/Manifest b/dev-ruby/omniauth/Manifest
index 843f164586e..0b3965cc221 100644
--- a/dev-ruby/omniauth/Manifest
+++ b/dev-ruby/omniauth/Manifest
@@ -1,4 +1,2 @@
-DIST omniauth-1.6.0.tar.gz 25205 BLAKE2B 
0179b30eea5bd5ac52084307ea2264a76eab273b35aa13fb64326f23d8e0d9a64b1073e80c68f5d09c5f5711130a63af39cea32a8ace9f4ec113b892c4b1cb0d
 SHA512 
fb989ba7aef74bd3d2c185d6401cf263ef6169abc3018f51ae7ed99921b9f339c60fc2735582f559a0e0726338bb8d114973588155239fde2bff5805ad520bc2
 DIST omniauth-1.6.1.tar.gz 25094 BLAKE2B 
45fa6c9d5eb249d5650adaf5e7a89e35ade8613cbc051b76e57b3332f26b8bc18a1645120a0590828c5dedc3034cf8ce5f107d1bcf88054cf5d27abb8d44c723
 SHA512 
5cb372ef4c8b78d5d110eb3f2f828ac3af5d14f230ed3a7d81f0464e21f0d3a434604fe2102874a3b6c341cbe9ad4db4af575229c77592c11e756bb38ab3b80b
-DIST omniauth-1.7.0.tar.gz 25918 BLAKE2B 
81a76e3fa01745a1d5207a85d490f0ba93820e93df55757147e21ce10afecd09d1a793de791a36da1a40281676ddb66026861749195b03da3014baf1dcd1f09b
 SHA512 
004475651fba1fe6e737eceb16a1bd89b510cd06d1bcf155dc56fc6793ad5e61755b80b827076583f6f72d17ada0223c22aac34c206cee4b250e5dd126f98fa7
 DIST omniauth-1.7.1.tar.gz 26002 BLAKE2B 
180d0eba2a4dc6289411e5a56ee776dc1bb0a799d4f3c735803986b6d47e4de4d50e670157a2996b10e4d80d57f322a296d24af18b87b6c6de669dbd64253fd1
 SHA512 
ed951394f996eb7eb9ab90fb6e46957f8f85148cc29ffb90697a0f74819014327a8e1fb6e8dbd5be736961c7283dc6132586841d05b87043b8d5a20c12441f68

diff --git a/dev-ruby/omniauth/omniauth-1.6.0.ebuild 
b/dev-ruby/omniauth/omniauth-1.6.0.ebuild
deleted file mode 100644
index 6992570564d..000
--- a/dev-ruby/omniauth/omniauth-1.6.0.ebuild
+++ /dev/null
@@ -1,46 +0,0 @@
-# Copyright 1999-2017 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=5
-USE_RUBY="ruby21 ruby22 ruby23"
-
-RUBY_FAKEGEM_EXTRADOC="README.md"
-RUBY_FAKEGEM_RECIPE_TEST="rspec3"
-RUBY_FAKEGEM_RECIPE_DOC="none"
-RUBY_FAKEGEM_DOCDIR="doc"
-
-RUBY_FAKEGEM_GEMSPEC="${PN}.gemspec"
-
-inherit ruby-fakegem
-
-DESCRIPTION="A generalized Rack framework for multiple-provider authentication"
-HOMEPAGE="https://github.com/intridea/omniauth;
-SRC_URI="https://github.com/intridea/omniauth/archive/v${PV}.tar.gz -> 
${P}.tar.gz"
-LICENSE="MIT"
-KEYWORDS="~amd64"
-SLOT="0"
-IUSE=""
-
-ruby_add_rdepend "
-   >=dev-ruby/rack-1.6.2:* =dev-ruby/hashie-3.4.6:3"
-ruby_add_bdepend "doc? ( dev-ruby/yard )
-   test? ( dev-ruby/rack-test )"
-
-all_ruby_prepare() {
-   sed -i -e '/[Bb]undler/d' \
-   Rakefile ${PN}.gemspec || die "sed failed"
-   sed -i -e '/RUBY_VERSION/,/^end/ s:^:#:' spec/helper.rb || die "sed 
failed"
-   # maruku fails, resorting to default markdown implementation
-   sed -i -e '/maruku/d' .yardopts || die "sed failed"
-
-   sed -i -e '/s.files/d' ${RUBY_FAKEGEM_GEMSPEC} || die
-}
-
-all_ruby_compile() {
-   all_fakegem_compile
-
-   if use doc ; then
-   yard || die "yard failed"
-   fi
-}

diff --git a/dev-ruby/omniauth/omniauth-1.7.0.ebuild 
b/dev-ruby/omniauth/omniauth-1.7.0.ebuild
deleted file mode 100644
index 2c597ca3030..000
--- a/dev-ruby/omniauth/omniauth-1.7.0.ebuild
+++ /dev/null
@@ -1,46 +0,0 @@
-# Copyright 1999-2017 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-USE_RUBY="ruby22 ruby23 ruby24"
-
-RUBY_FAKEGEM_EXTRADOC="README.md"
-RUBY_FAKEGEM_RECIPE_TEST="rspec3"
-RUBY_FAKEGEM_RECIPE_DOC="none"
-RUBY_FAKEGEM_DOCDIR="doc"
-
-RUBY_FAKEGEM_GEMSPEC="${PN}.gemspec"
-
-inherit ruby-fakegem
-
-DESCRIPTION="A generalized Rack framework for multiple-provider authentication"
-HOMEPAGE="https://github.com/intridea/omniauth;
-SRC_URI="https://github.com/intridea/omniauth/archive/v${PV}.tar.gz -> 
${P}.tar.gz"
-LICENSE="MIT"
-KEYWORDS="~amd64"
-SLOT="0"
-IUSE=""
-
-ruby_add_rdepend "
-   >=dev-ruby/rack-1.6.2:* =dev-ruby/hashie-3.4.6:3 

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

2017-10-10 Thread Hans de Graaff
commit: a87cedf1cb3ee776655cecf5b1d7221714bc6c50
Author: Hans de Graaff  gentoo  org>
AuthorDate: Wed Oct 11 05:00:22 2017 +
Commit: Hans de Graaff  gentoo  org>
CommitDate: Wed Oct 11 05:00:22 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a87cedf1

dev-ruby/omniauth: add 1.7.1

Package-Manager: Portage-2.3.8, Repoman-2.3.3

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

diff --git a/dev-ruby/omniauth/Manifest b/dev-ruby/omniauth/Manifest
index 466e37c4a89..234becaaf40 100644
--- a/dev-ruby/omniauth/Manifest
+++ b/dev-ruby/omniauth/Manifest
@@ -1,3 +1,4 @@
 DIST omniauth-1.6.0.tar.gz 25205 SHA256 
9eae49f049f47f646540d21c257b596a25179cd4466927362a97dc852fe4664c SHA512 
fb989ba7aef74bd3d2c185d6401cf263ef6169abc3018f51ae7ed99921b9f339c60fc2735582f559a0e0726338bb8d114973588155239fde2bff5805ad520bc2
 WHIRLPOOL 
33a83c09a775297fdc9346530e0935ccdb7985075e9e520dd8e6d30eb16a33fcc69baa7d9479c12689755122452cff1c8cf1cb1e8f390da3270bb2900b8d6834
 DIST omniauth-1.6.1.tar.gz 25094 SHA256 
9a6cb873857f30468cff0024b73ead30ac46bd5da98be2db0b2e72a20b73f0d4 SHA512 
5cb372ef4c8b78d5d110eb3f2f828ac3af5d14f230ed3a7d81f0464e21f0d3a434604fe2102874a3b6c341cbe9ad4db4af575229c77592c11e756bb38ab3b80b
 WHIRLPOOL 
b7711d6f5526e96e2d249cd2bc83e01b65d7fc8feb4f46bf660ce8f43979177168d9a9065876db6c9062f282907e6750649cfb350d1aa56cd7b3ec168f64e096
 DIST omniauth-1.7.0.tar.gz 25918 SHA256 
1b7175f3f1c3d24ee530c590aeca34f16f5e093cf8702efee735c0de38cb29bf SHA512 
004475651fba1fe6e737eceb16a1bd89b510cd06d1bcf155dc56fc6793ad5e61755b80b827076583f6f72d17ada0223c22aac34c206cee4b250e5dd126f98fa7
 WHIRLPOOL 
1afc8fe1a1d645a5dbb32b34a0c692566be08eba7c9af1ff9bdcf784742f61154c2d0fb674b87bd265aa1aa200658d40cb5b8abfb652d04355532cefc7f223e1
+DIST omniauth-1.7.1.tar.gz 26002 SHA256 
a7b247773275a56eb672cbb66cd6cfc531d9f73bf3b169803af589c619cb1536 SHA512 
ed951394f996eb7eb9ab90fb6e46957f8f85148cc29ffb90697a0f74819014327a8e1fb6e8dbd5be736961c7283dc6132586841d05b87043b8d5a20c12441f68
 WHIRLPOOL 
5d47ca1ad406455d14403c7e4e13fd9d461bb48eb46c991ec983dc29f1d7d0f12dba2e57300771249807f91e34e702cf2f47e5d295063f6d8ffbe82e54e3

diff --git a/dev-ruby/omniauth/omniauth-1.7.1.ebuild 
b/dev-ruby/omniauth/omniauth-1.7.1.ebuild
new file mode 100644
index 000..2c597ca3030
--- /dev/null
+++ b/dev-ruby/omniauth/omniauth-1.7.1.ebuild
@@ -0,0 +1,46 @@
+# Copyright 1999-2017 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+USE_RUBY="ruby22 ruby23 ruby24"
+
+RUBY_FAKEGEM_EXTRADOC="README.md"
+RUBY_FAKEGEM_RECIPE_TEST="rspec3"
+RUBY_FAKEGEM_RECIPE_DOC="none"
+RUBY_FAKEGEM_DOCDIR="doc"
+
+RUBY_FAKEGEM_GEMSPEC="${PN}.gemspec"
+
+inherit ruby-fakegem
+
+DESCRIPTION="A generalized Rack framework for multiple-provider authentication"
+HOMEPAGE="https://github.com/intridea/omniauth;
+SRC_URI="https://github.com/intridea/omniauth/archive/v${PV}.tar.gz -> 
${P}.tar.gz"
+LICENSE="MIT"
+KEYWORDS="~amd64"
+SLOT="0"
+IUSE=""
+
+ruby_add_rdepend "
+   >=dev-ruby/rack-1.6.2:* =dev-ruby/hashie-3.4.6:3 

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

2017-09-29 Thread Hans de Graaff
commit: ebd907dc67f191f9045580b7767e59f0ce8f614b
Author: Hans de Graaff  gentoo  org>
AuthorDate: Fri Sep 29 08:18:29 2017 +
Commit: Hans de Graaff  gentoo  org>
CommitDate: Fri Sep 29 14:19:42 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ebd907dc

dev-ruby/omniauth: add 1.7.0

Package-Manager: Portage-2.3.8, Repoman-2.3.2

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

diff --git a/dev-ruby/omniauth/Manifest b/dev-ruby/omniauth/Manifest
index 2db4fd0907a..466e37c4a89 100644
--- a/dev-ruby/omniauth/Manifest
+++ b/dev-ruby/omniauth/Manifest
@@ -1,2 +1,3 @@
 DIST omniauth-1.6.0.tar.gz 25205 SHA256 
9eae49f049f47f646540d21c257b596a25179cd4466927362a97dc852fe4664c SHA512 
fb989ba7aef74bd3d2c185d6401cf263ef6169abc3018f51ae7ed99921b9f339c60fc2735582f559a0e0726338bb8d114973588155239fde2bff5805ad520bc2
 WHIRLPOOL 
33a83c09a775297fdc9346530e0935ccdb7985075e9e520dd8e6d30eb16a33fcc69baa7d9479c12689755122452cff1c8cf1cb1e8f390da3270bb2900b8d6834
 DIST omniauth-1.6.1.tar.gz 25094 SHA256 
9a6cb873857f30468cff0024b73ead30ac46bd5da98be2db0b2e72a20b73f0d4 SHA512 
5cb372ef4c8b78d5d110eb3f2f828ac3af5d14f230ed3a7d81f0464e21f0d3a434604fe2102874a3b6c341cbe9ad4db4af575229c77592c11e756bb38ab3b80b
 WHIRLPOOL 
b7711d6f5526e96e2d249cd2bc83e01b65d7fc8feb4f46bf660ce8f43979177168d9a9065876db6c9062f282907e6750649cfb350d1aa56cd7b3ec168f64e096
+DIST omniauth-1.7.0.tar.gz 25918 SHA256 
1b7175f3f1c3d24ee530c590aeca34f16f5e093cf8702efee735c0de38cb29bf SHA512 
004475651fba1fe6e737eceb16a1bd89b510cd06d1bcf155dc56fc6793ad5e61755b80b827076583f6f72d17ada0223c22aac34c206cee4b250e5dd126f98fa7
 WHIRLPOOL 
1afc8fe1a1d645a5dbb32b34a0c692566be08eba7c9af1ff9bdcf784742f61154c2d0fb674b87bd265aa1aa200658d40cb5b8abfb652d04355532cefc7f223e1

diff --git a/dev-ruby/omniauth/omniauth-1.7.0.ebuild 
b/dev-ruby/omniauth/omniauth-1.7.0.ebuild
new file mode 100644
index 000..2c597ca3030
--- /dev/null
+++ b/dev-ruby/omniauth/omniauth-1.7.0.ebuild
@@ -0,0 +1,46 @@
+# Copyright 1999-2017 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+USE_RUBY="ruby22 ruby23 ruby24"
+
+RUBY_FAKEGEM_EXTRADOC="README.md"
+RUBY_FAKEGEM_RECIPE_TEST="rspec3"
+RUBY_FAKEGEM_RECIPE_DOC="none"
+RUBY_FAKEGEM_DOCDIR="doc"
+
+RUBY_FAKEGEM_GEMSPEC="${PN}.gemspec"
+
+inherit ruby-fakegem
+
+DESCRIPTION="A generalized Rack framework for multiple-provider authentication"
+HOMEPAGE="https://github.com/intridea/omniauth;
+SRC_URI="https://github.com/intridea/omniauth/archive/v${PV}.tar.gz -> 
${P}.tar.gz"
+LICENSE="MIT"
+KEYWORDS="~amd64"
+SLOT="0"
+IUSE=""
+
+ruby_add_rdepend "
+   >=dev-ruby/rack-1.6.2:* =dev-ruby/hashie-3.4.6:3 

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

2017-09-29 Thread Hans de Graaff
commit: 01d5fd905b1121512ac8871101c2e9fddc065490
Author: Hans de Graaff  gentoo  org>
AuthorDate: Fri Sep 29 08:16:47 2017 +
Commit: Hans de Graaff  gentoo  org>
CommitDate: Fri Sep 29 14:19:40 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=01d5fd90

dev-ruby/omniauth: cleanup

Package-Manager: Portage-2.3.8, Repoman-2.3.2

 dev-ruby/omniauth/Manifest  |  3 ---
 dev-ruby/omniauth/omniauth-1.3.1.ebuild | 45 
 dev-ruby/omniauth/omniauth-1.3.2.ebuild | 46 -
 dev-ruby/omniauth/omniauth-1.4.0.ebuild | 46 -
 4 files changed, 140 deletions(-)

diff --git a/dev-ruby/omniauth/Manifest b/dev-ruby/omniauth/Manifest
index f5a6e90828f..2db4fd0907a 100644
--- a/dev-ruby/omniauth/Manifest
+++ b/dev-ruby/omniauth/Manifest
@@ -1,5 +1,2 @@
-DIST omniauth-1.3.1.tar.gz 23759 SHA256 
a5043cd38442600320cfd92672f9985be3dc556f51fef63989f46bc21d69aa9e SHA512 
4959d568cf8d2b4e874fd2a5a8e842a8be4705a5df525ad691a1a1d31de0d702023327cc8f9bc934539c25bcde06dc65714f830eaeb8f97b323fc297b99c4c0a
 WHIRLPOOL 
5363a764e2526b9ffab9b17c939ccc31d5fb5fec365566b6b1bb90918f5c0bc8a9daee5075719a6c61a57d3610c466553443d7988249bb9ada73e0407a85f1b4
-DIST omniauth-1.3.2.tar.gz 23598 SHA256 
d3780cc9c945ab74362d2aa93250ce84a2c18f940b3a42cde1c6dfbb1f873a13 SHA512 
43b27f370f8ea86105952c61a087534f19328680303e1c5e9ad9877420b4f4086d463dae17722a7a13f55ef28d7cef508c52b25e0279961b1f6dc3e133696f3a
 WHIRLPOOL 
65e8dd2ec1c1ed74f4cc7aa16c9561a6d097a98952ee64dfe6a56e16e2036ad8a2b5f7a677453310465dc56c9d8072cf07bfc6dfe61a56d567a9adc7ecd5ad39
-DIST omniauth-1.4.0.tar.gz 24476 SHA256 
6998cca7fb2ed620f5ae400b9d88ae54a26def8bd714a0f2eb495efed24494fd SHA512 
8953c0cd451d622ff9ace3324187081e405f50c5d89c35a2ab3151f491dc0108757ba1be40546cfb74bb8e179d2a25563c0f5713d72a8e012ceec33d184eaaec
 WHIRLPOOL 
27bd779015982aff510cd1e0c96428c78e6a8c290bc8f19a269eda792d47ff0aadc16d47723c63e0aa2e1e48b49799c6d9219c801dba3ad1848da52a704aff1c
 DIST omniauth-1.6.0.tar.gz 25205 SHA256 
9eae49f049f47f646540d21c257b596a25179cd4466927362a97dc852fe4664c SHA512 
fb989ba7aef74bd3d2c185d6401cf263ef6169abc3018f51ae7ed99921b9f339c60fc2735582f559a0e0726338bb8d114973588155239fde2bff5805ad520bc2
 WHIRLPOOL 
33a83c09a775297fdc9346530e0935ccdb7985075e9e520dd8e6d30eb16a33fcc69baa7d9479c12689755122452cff1c8cf1cb1e8f390da3270bb2900b8d6834
 DIST omniauth-1.6.1.tar.gz 25094 SHA256 
9a6cb873857f30468cff0024b73ead30ac46bd5da98be2db0b2e72a20b73f0d4 SHA512 
5cb372ef4c8b78d5d110eb3f2f828ac3af5d14f230ed3a7d81f0464e21f0d3a434604fe2102874a3b6c341cbe9ad4db4af575229c77592c11e756bb38ab3b80b
 WHIRLPOOL 
b7711d6f5526e96e2d249cd2bc83e01b65d7fc8feb4f46bf660ce8f43979177168d9a9065876db6c9062f282907e6750649cfb350d1aa56cd7b3ec168f64e096

diff --git a/dev-ruby/omniauth/omniauth-1.3.1.ebuild 
b/dev-ruby/omniauth/omniauth-1.3.1.ebuild
deleted file mode 100644
index 73d34a33945..000
--- a/dev-ruby/omniauth/omniauth-1.3.1.ebuild
+++ /dev/null
@@ -1,45 +0,0 @@
-# Copyright 1999-2016 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=5
-USE_RUBY="ruby20 ruby21 ruby22 ruby23"
-
-RUBY_FAKEGEM_EXTRADOC="README.md"
-RUBY_FAKEGEM_RECIPE_TEST="rspec"
-RUBY_FAKEGEM_RECIPE_DOC="none"
-RUBY_FAKEGEM_DOCDIR="doc"
-
-RUBY_FAKEGEM_GEMSPEC="${PN}.gemspec"
-
-inherit ruby-fakegem
-
-DESCRIPTION="A generalized Rack framework for multiple-provider authentication"
-HOMEPAGE="https://github.com/intridea/omniauth;
-SRC_URI="https://github.com/intridea/omniauth/archive/v${PV}.tar.gz -> 
${P}.tar.gz"
-LICENSE="MIT"
-KEYWORDS="~amd64"
-SLOT="0"
-IUSE=""
-
-ruby_add_rdepend "dev-ruby/rack:*
-   >=dev-ruby/hashie-1.2:* https://github.com/intridea/omniauth;
-SRC_URI="https://github.com/intridea/omniauth/archive/v${PV}.tar.gz -> 
${P}.tar.gz"
-LICENSE="MIT"
-KEYWORDS="~amd64"
-SLOT="0"
-IUSE=""
-
-ruby_add_rdepend "
-   >=dev-ruby/rack-1.0:* =dev-ruby/hashie-1.2:* https://github.com/intridea/omniauth;
-SRC_URI="https://github.com/intridea/omniauth/archive/v${PV}.tar.gz -> 
${P}.tar.gz"
-LICENSE="MIT"
-KEYWORDS="~amd64"
-SLOT="0"
-IUSE=""
-
-ruby_add_rdepend "
-   >=dev-ruby/rack-1.0:* =dev-ruby/hashie-1.2:* 

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

2017-03-06 Thread Hans de Graaff
commit: 5548f1909bbf8abc0a15ac0e5e73675e964c94cd
Author: Hans de Graaff  gentoo  org>
AuthorDate: Tue Mar  7 06:09:26 2017 +
Commit: Hans de Graaff  gentoo  org>
CommitDate: Tue Mar  7 06:10:20 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5548f190

dev-ruby/omniauth: add 1.6.1

Package-Manager: Portage-2.3.3, Repoman-2.3.1

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

diff --git a/dev-ruby/omniauth/Manifest b/dev-ruby/omniauth/Manifest
index dd17bf64781..f5a6e90828f 100644
--- a/dev-ruby/omniauth/Manifest
+++ b/dev-ruby/omniauth/Manifest
@@ -2,3 +2,4 @@ DIST omniauth-1.3.1.tar.gz 23759 SHA256 
a5043cd38442600320cfd92672f9985be3dc556f
 DIST omniauth-1.3.2.tar.gz 23598 SHA256 
d3780cc9c945ab74362d2aa93250ce84a2c18f940b3a42cde1c6dfbb1f873a13 SHA512 
43b27f370f8ea86105952c61a087534f19328680303e1c5e9ad9877420b4f4086d463dae17722a7a13f55ef28d7cef508c52b25e0279961b1f6dc3e133696f3a
 WHIRLPOOL 
65e8dd2ec1c1ed74f4cc7aa16c9561a6d097a98952ee64dfe6a56e16e2036ad8a2b5f7a677453310465dc56c9d8072cf07bfc6dfe61a56d567a9adc7ecd5ad39
 DIST omniauth-1.4.0.tar.gz 24476 SHA256 
6998cca7fb2ed620f5ae400b9d88ae54a26def8bd714a0f2eb495efed24494fd SHA512 
8953c0cd451d622ff9ace3324187081e405f50c5d89c35a2ab3151f491dc0108757ba1be40546cfb74bb8e179d2a25563c0f5713d72a8e012ceec33d184eaaec
 WHIRLPOOL 
27bd779015982aff510cd1e0c96428c78e6a8c290bc8f19a269eda792d47ff0aadc16d47723c63e0aa2e1e48b49799c6d9219c801dba3ad1848da52a704aff1c
 DIST omniauth-1.6.0.tar.gz 25205 SHA256 
9eae49f049f47f646540d21c257b596a25179cd4466927362a97dc852fe4664c SHA512 
fb989ba7aef74bd3d2c185d6401cf263ef6169abc3018f51ae7ed99921b9f339c60fc2735582f559a0e0726338bb8d114973588155239fde2bff5805ad520bc2
 WHIRLPOOL 
33a83c09a775297fdc9346530e0935ccdb7985075e9e520dd8e6d30eb16a33fcc69baa7d9479c12689755122452cff1c8cf1cb1e8f390da3270bb2900b8d6834
+DIST omniauth-1.6.1.tar.gz 25094 SHA256 
9a6cb873857f30468cff0024b73ead30ac46bd5da98be2db0b2e72a20b73f0d4 SHA512 
5cb372ef4c8b78d5d110eb3f2f828ac3af5d14f230ed3a7d81f0464e21f0d3a434604fe2102874a3b6c341cbe9ad4db4af575229c77592c11e756bb38ab3b80b
 WHIRLPOOL 
b7711d6f5526e96e2d249cd2bc83e01b65d7fc8feb4f46bf660ce8f43979177168d9a9065876db6c9062f282907e6750649cfb350d1aa56cd7b3ec168f64e096

diff --git a/dev-ruby/omniauth/omniauth-1.6.1.ebuild 
b/dev-ruby/omniauth/omniauth-1.6.1.ebuild
new file mode 100644
index 000..ddea4b3b8f5
--- /dev/null
+++ b/dev-ruby/omniauth/omniauth-1.6.1.ebuild
@@ -0,0 +1,46 @@
+# Copyright 1999-2017 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=5
+USE_RUBY="ruby21 ruby22 ruby23"
+
+RUBY_FAKEGEM_EXTRADOC="README.md"
+RUBY_FAKEGEM_RECIPE_TEST="rspec3"
+RUBY_FAKEGEM_RECIPE_DOC="none"
+RUBY_FAKEGEM_DOCDIR="doc"
+
+RUBY_FAKEGEM_GEMSPEC="${PN}.gemspec"
+
+inherit ruby-fakegem
+
+DESCRIPTION="A generalized Rack framework for multiple-provider authentication"
+HOMEPAGE="https://github.com/intridea/omniauth;
+SRC_URI="https://github.com/intridea/omniauth/archive/v${PV}.tar.gz -> 
${P}.tar.gz"
+LICENSE="MIT"
+KEYWORDS="~amd64"
+SLOT="0"
+IUSE=""
+
+ruby_add_rdepend "
+   >=dev-ruby/rack-1.6.2:* =dev-ruby/hashie-3.4.6:3 

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

2017-02-18 Thread Hans de Graaff
commit: d296898a336595196de0603e2a381cdb7e5ffaaa
Author: Hans de Graaff  gentoo  org>
AuthorDate: Sun Feb 19 06:27:50 2017 +
Commit: Hans de Graaff  gentoo  org>
CommitDate: Sun Feb 19 07:05:46 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d296898a

dev-ruby/omniauth: add 1.6.0

Package-Manager: portage-2.3.3

 dev-ruby/omniauth/Manifest  |  1 +
 dev-ruby/omniauth/omniauth-1.6.0.ebuild | 47 +
 2 files changed, 48 insertions(+)

diff --git a/dev-ruby/omniauth/Manifest b/dev-ruby/omniauth/Manifest
index 4f909ea53e..dd17bf6478 100644
--- a/dev-ruby/omniauth/Manifest
+++ b/dev-ruby/omniauth/Manifest
@@ -1,3 +1,4 @@
 DIST omniauth-1.3.1.tar.gz 23759 SHA256 
a5043cd38442600320cfd92672f9985be3dc556f51fef63989f46bc21d69aa9e SHA512 
4959d568cf8d2b4e874fd2a5a8e842a8be4705a5df525ad691a1a1d31de0d702023327cc8f9bc934539c25bcde06dc65714f830eaeb8f97b323fc297b99c4c0a
 WHIRLPOOL 
5363a764e2526b9ffab9b17c939ccc31d5fb5fec365566b6b1bb90918f5c0bc8a9daee5075719a6c61a57d3610c466553443d7988249bb9ada73e0407a85f1b4
 DIST omniauth-1.3.2.tar.gz 23598 SHA256 
d3780cc9c945ab74362d2aa93250ce84a2c18f940b3a42cde1c6dfbb1f873a13 SHA512 
43b27f370f8ea86105952c61a087534f19328680303e1c5e9ad9877420b4f4086d463dae17722a7a13f55ef28d7cef508c52b25e0279961b1f6dc3e133696f3a
 WHIRLPOOL 
65e8dd2ec1c1ed74f4cc7aa16c9561a6d097a98952ee64dfe6a56e16e2036ad8a2b5f7a677453310465dc56c9d8072cf07bfc6dfe61a56d567a9adc7ecd5ad39
 DIST omniauth-1.4.0.tar.gz 24476 SHA256 
6998cca7fb2ed620f5ae400b9d88ae54a26def8bd714a0f2eb495efed24494fd SHA512 
8953c0cd451d622ff9ace3324187081e405f50c5d89c35a2ab3151f491dc0108757ba1be40546cfb74bb8e179d2a25563c0f5713d72a8e012ceec33d184eaaec
 WHIRLPOOL 
27bd779015982aff510cd1e0c96428c78e6a8c290bc8f19a269eda792d47ff0aadc16d47723c63e0aa2e1e48b49799c6d9219c801dba3ad1848da52a704aff1c
+DIST omniauth-1.6.0.tar.gz 25205 SHA256 
9eae49f049f47f646540d21c257b596a25179cd4466927362a97dc852fe4664c SHA512 
fb989ba7aef74bd3d2c185d6401cf263ef6169abc3018f51ae7ed99921b9f339c60fc2735582f559a0e0726338bb8d114973588155239fde2bff5805ad520bc2
 WHIRLPOOL 
33a83c09a775297fdc9346530e0935ccdb7985075e9e520dd8e6d30eb16a33fcc69baa7d9479c12689755122452cff1c8cf1cb1e8f390da3270bb2900b8d6834

diff --git a/dev-ruby/omniauth/omniauth-1.6.0.ebuild 
b/dev-ruby/omniauth/omniauth-1.6.0.ebuild
new file mode 100644
index 00..c649fa256f
--- /dev/null
+++ b/dev-ruby/omniauth/omniauth-1.6.0.ebuild
@@ -0,0 +1,47 @@
+# Copyright 1999-2017 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=5
+USE_RUBY="ruby21 ruby22 ruby23"
+
+RUBY_FAKEGEM_EXTRADOC="README.md"
+RUBY_FAKEGEM_RECIPE_TEST="rspec3"
+RUBY_FAKEGEM_RECIPE_DOC="none"
+RUBY_FAKEGEM_DOCDIR="doc"
+
+RUBY_FAKEGEM_GEMSPEC="${PN}.gemspec"
+
+inherit ruby-fakegem
+
+DESCRIPTION="A generalized Rack framework for multiple-provider authentication"
+HOMEPAGE="https://github.com/intridea/omniauth;
+SRC_URI="https://github.com/intridea/omniauth/archive/v${PV}.tar.gz -> 
${P}.tar.gz"
+LICENSE="MIT"
+KEYWORDS="~amd64"
+SLOT="0"
+IUSE=""
+
+ruby_add_rdepend "
+   >=dev-ruby/rack-1.6.2:* =dev-ruby/hashie-3.4.6:3"
+ruby_add_bdepend "doc? ( dev-ruby/yard )
+   test? ( dev-ruby/rack-test )"
+
+all_ruby_prepare() {
+   sed -i -e '/[Bb]undler/d' \
+   Rakefile ${PN}.gemspec || die "sed failed"
+   sed -i -e '/RUBY_VERSION/,/^end/ s:^:#:' spec/helper.rb || die "sed 
failed"
+   # maruku fails, resorting to default markdown implementation
+   sed -i -e '/maruku/d' .yardopts || die "sed failed"
+
+   sed -i -e '/s.files/d' ${RUBY_FAKEGEM_GEMSPEC} || die
+}
+
+all_ruby_compile() {
+   all_fakegem_compile
+
+   if use doc ; then
+   yard || die "yard failed"
+   fi
+}



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

2017-02-05 Thread Hans de Graaff
commit: d4ae6b4c3079d3e8be84b28a7dc5cfec406b8d99
Author: Hans de Graaff  gentoo  org>
AuthorDate: Mon Feb  6 06:10:50 2017 +
Commit: Hans de Graaff  gentoo  org>
CommitDate: Mon Feb  6 06:29:39 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d4ae6b4c

dev-ruby/omniauth: add 1.4.0

Package-Manager: portage-2.3.3

 dev-ruby/omniauth/Manifest  |  1 +
 dev-ruby/omniauth/omniauth-1.4.0.ebuild | 47 +
 2 files changed, 48 insertions(+)

diff --git a/dev-ruby/omniauth/Manifest b/dev-ruby/omniauth/Manifest
index 7ad1ab85..4f909ea 100644
--- a/dev-ruby/omniauth/Manifest
+++ b/dev-ruby/omniauth/Manifest
@@ -1,2 +1,3 @@
 DIST omniauth-1.3.1.tar.gz 23759 SHA256 
a5043cd38442600320cfd92672f9985be3dc556f51fef63989f46bc21d69aa9e SHA512 
4959d568cf8d2b4e874fd2a5a8e842a8be4705a5df525ad691a1a1d31de0d702023327cc8f9bc934539c25bcde06dc65714f830eaeb8f97b323fc297b99c4c0a
 WHIRLPOOL 
5363a764e2526b9ffab9b17c939ccc31d5fb5fec365566b6b1bb90918f5c0bc8a9daee5075719a6c61a57d3610c466553443d7988249bb9ada73e0407a85f1b4
 DIST omniauth-1.3.2.tar.gz 23598 SHA256 
d3780cc9c945ab74362d2aa93250ce84a2c18f940b3a42cde1c6dfbb1f873a13 SHA512 
43b27f370f8ea86105952c61a087534f19328680303e1c5e9ad9877420b4f4086d463dae17722a7a13f55ef28d7cef508c52b25e0279961b1f6dc3e133696f3a
 WHIRLPOOL 
65e8dd2ec1c1ed74f4cc7aa16c9561a6d097a98952ee64dfe6a56e16e2036ad8a2b5f7a677453310465dc56c9d8072cf07bfc6dfe61a56d567a9adc7ecd5ad39
+DIST omniauth-1.4.0.tar.gz 24476 SHA256 
6998cca7fb2ed620f5ae400b9d88ae54a26def8bd714a0f2eb495efed24494fd SHA512 
8953c0cd451d622ff9ace3324187081e405f50c5d89c35a2ab3151f491dc0108757ba1be40546cfb74bb8e179d2a25563c0f5713d72a8e012ceec33d184eaaec
 WHIRLPOOL 
27bd779015982aff510cd1e0c96428c78e6a8c290bc8f19a269eda792d47ff0aadc16d47723c63e0aa2e1e48b49799c6d9219c801dba3ad1848da52a704aff1c

diff --git a/dev-ruby/omniauth/omniauth-1.4.0.ebuild 
b/dev-ruby/omniauth/omniauth-1.4.0.ebuild
new file mode 100644
index ..371e633
--- /dev/null
+++ b/dev-ruby/omniauth/omniauth-1.4.0.ebuild
@@ -0,0 +1,47 @@
+# Copyright 1999-2017 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=5
+USE_RUBY="ruby21 ruby22 ruby23"
+
+RUBY_FAKEGEM_EXTRADOC="README.md"
+RUBY_FAKEGEM_RECIPE_TEST="rspec3"
+RUBY_FAKEGEM_RECIPE_DOC="none"
+RUBY_FAKEGEM_DOCDIR="doc"
+
+RUBY_FAKEGEM_GEMSPEC="${PN}.gemspec"
+
+inherit ruby-fakegem
+
+DESCRIPTION="A generalized Rack framework for multiple-provider authentication"
+HOMEPAGE="https://github.com/intridea/omniauth;
+SRC_URI="https://github.com/intridea/omniauth/archive/v${PV}.tar.gz -> 
${P}.tar.gz"
+LICENSE="MIT"
+KEYWORDS="~amd64"
+SLOT="0"
+IUSE=""
+
+ruby_add_rdepend "
+   >=dev-ruby/rack-1.0:* =dev-ruby/hashie-1.2:* 

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

2017-01-17 Thread Hans de Graaff
commit: 646a6e2571ededbb4be910bbb41cb857d5d8e246
Author: Hans de Graaff  gentoo  org>
AuthorDate: Wed Jan 18 06:50:20 2017 +
Commit: Hans de Graaff  gentoo  org>
CommitDate: Wed Jan 18 07:16:06 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=646a6e25

dev-ruby/omniauth: cleanup

Package-Manager: portage-2.3.0

 dev-ruby/omniauth/Manifest |  1 -
 dev-ruby/omniauth/omniauth-1.2.2-r1.ebuild | 40 --
 2 files changed, 41 deletions(-)

diff --git a/dev-ruby/omniauth/Manifest b/dev-ruby/omniauth/Manifest
index 3a4766b..7ad1ab85 100644
--- a/dev-ruby/omniauth/Manifest
+++ b/dev-ruby/omniauth/Manifest
@@ -1,3 +1,2 @@
-DIST omniauth-1.2.2.gem 27648 SHA256 
939eabc200dc19d624ad02020b9f9258a69429b2250b883e47ce2cf76c6a10b8 SHA512 
5451ad281be5cd1dc45c66d295476f182904d08818c23a08a6245dbb517eeb49b29ff5810f67680073fb4cde2407eee164a2aae2b06397d7ea71b149fb86789e
 WHIRLPOOL 
d7ca6d180eea30583163a2eb60d14498c09fbd1baf78b1e6539e187028a5f943c7f7dd0f3a47a9b95acb59995f8c7bf39eb6a53b69cfb1fa9d39e87010975c7b
 DIST omniauth-1.3.1.tar.gz 23759 SHA256 
a5043cd38442600320cfd92672f9985be3dc556f51fef63989f46bc21d69aa9e SHA512 
4959d568cf8d2b4e874fd2a5a8e842a8be4705a5df525ad691a1a1d31de0d702023327cc8f9bc934539c25bcde06dc65714f830eaeb8f97b323fc297b99c4c0a
 WHIRLPOOL 
5363a764e2526b9ffab9b17c939ccc31d5fb5fec365566b6b1bb90918f5c0bc8a9daee5075719a6c61a57d3610c466553443d7988249bb9ada73e0407a85f1b4
 DIST omniauth-1.3.2.tar.gz 23598 SHA256 
d3780cc9c945ab74362d2aa93250ce84a2c18f940b3a42cde1c6dfbb1f873a13 SHA512 
43b27f370f8ea86105952c61a087534f19328680303e1c5e9ad9877420b4f4086d463dae17722a7a13f55ef28d7cef508c52b25e0279961b1f6dc3e133696f3a
 WHIRLPOOL 
65e8dd2ec1c1ed74f4cc7aa16c9561a6d097a98952ee64dfe6a56e16e2036ad8a2b5f7a677453310465dc56c9d8072cf07bfc6dfe61a56d567a9adc7ecd5ad39

diff --git a/dev-ruby/omniauth/omniauth-1.2.2-r1.ebuild 
b/dev-ruby/omniauth/omniauth-1.2.2-r1.ebuild
deleted file mode 100644
index a630c11..
--- a/dev-ruby/omniauth/omniauth-1.2.2-r1.ebuild
+++ /dev/null
@@ -1,40 +0,0 @@
-# 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_EXTRADOC="README.md"
-RUBY_FAKEGEM_RECIPE_TEST="rspec"
-RUBY_FAKEGEM_RECIPE_DOC="none"
-RUBY_FAKEGEM_DOCDIR="doc"
-
-inherit ruby-fakegem
-
-DESCRIPTION="A generalized Rack framework for multiple-provider authentication"
-HOMEPAGE="https://github.com/intridea/omniauth;
-LICENSE="MIT"
-KEYWORDS="~amd64"
-SLOT="0"
-IUSE=""
-
-ruby_add_rdepend "dev-ruby/rack dev-ruby/hashie"
-ruby_add_bdepend "doc? ( dev-ruby/yard )
-   test? ( dev-ruby/rack-test )"
-
-all_ruby_prepare() {
-   sed -i -e '/[Bb]undler/d' \
-   Rakefile ${PN}.gemspec || die "sed failed"
-   sed -i -e '/simplecov/,/^end/ s:^:#:' spec/helper.rb || die "sed failed"
-   # maruku fails, resorting to default markdown implementation
-   sed -i -e '/maruku/d' .yardopts || die "sed failed"
-}
-
-all_ruby_compile() {
-   all_fakegem_compile
-
-   if use doc ; then
-   yard || die "yard failed"
-   fi
-}



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

2017-01-17 Thread Hans de Graaff
commit: 72f76698db53380a8321b7d5b2a89e91797ce141
Author: Hans de Graaff  gentoo  org>
AuthorDate: Wed Jan 18 06:49:31 2017 +
Commit: Hans de Graaff  gentoo  org>
CommitDate: Wed Jan 18 07:16:00 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=72f76698

dev-ruby/omniauth: add 1.3.2

Package-Manager: portage-2.3.0

 dev-ruby/omniauth/Manifest  |  1 +
 dev-ruby/omniauth/omniauth-1.3.2.ebuild | 47 +
 2 files changed, 48 insertions(+)

diff --git a/dev-ruby/omniauth/Manifest b/dev-ruby/omniauth/Manifest
index 25a8c6c..3a4766b 100644
--- a/dev-ruby/omniauth/Manifest
+++ b/dev-ruby/omniauth/Manifest
@@ -1,2 +1,3 @@
 DIST omniauth-1.2.2.gem 27648 SHA256 
939eabc200dc19d624ad02020b9f9258a69429b2250b883e47ce2cf76c6a10b8 SHA512 
5451ad281be5cd1dc45c66d295476f182904d08818c23a08a6245dbb517eeb49b29ff5810f67680073fb4cde2407eee164a2aae2b06397d7ea71b149fb86789e
 WHIRLPOOL 
d7ca6d180eea30583163a2eb60d14498c09fbd1baf78b1e6539e187028a5f943c7f7dd0f3a47a9b95acb59995f8c7bf39eb6a53b69cfb1fa9d39e87010975c7b
 DIST omniauth-1.3.1.tar.gz 23759 SHA256 
a5043cd38442600320cfd92672f9985be3dc556f51fef63989f46bc21d69aa9e SHA512 
4959d568cf8d2b4e874fd2a5a8e842a8be4705a5df525ad691a1a1d31de0d702023327cc8f9bc934539c25bcde06dc65714f830eaeb8f97b323fc297b99c4c0a
 WHIRLPOOL 
5363a764e2526b9ffab9b17c939ccc31d5fb5fec365566b6b1bb90918f5c0bc8a9daee5075719a6c61a57d3610c466553443d7988249bb9ada73e0407a85f1b4
+DIST omniauth-1.3.2.tar.gz 23598 SHA256 
d3780cc9c945ab74362d2aa93250ce84a2c18f940b3a42cde1c6dfbb1f873a13 SHA512 
43b27f370f8ea86105952c61a087534f19328680303e1c5e9ad9877420b4f4086d463dae17722a7a13f55ef28d7cef508c52b25e0279961b1f6dc3e133696f3a
 WHIRLPOOL 
65e8dd2ec1c1ed74f4cc7aa16c9561a6d097a98952ee64dfe6a56e16e2036ad8a2b5f7a677453310465dc56c9d8072cf07bfc6dfe61a56d567a9adc7ecd5ad39

diff --git a/dev-ruby/omniauth/omniauth-1.3.2.ebuild 
b/dev-ruby/omniauth/omniauth-1.3.2.ebuild
new file mode 100644
index ..dbf5d5b
--- /dev/null
+++ b/dev-ruby/omniauth/omniauth-1.3.2.ebuild
@@ -0,0 +1,47 @@
+# Copyright 1999-2017 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=5
+USE_RUBY="ruby21 ruby22 ruby23"
+
+RUBY_FAKEGEM_EXTRADOC="README.md"
+RUBY_FAKEGEM_RECIPE_TEST="rspec"
+RUBY_FAKEGEM_RECIPE_DOC="none"
+RUBY_FAKEGEM_DOCDIR="doc"
+
+RUBY_FAKEGEM_GEMSPEC="${PN}.gemspec"
+
+inherit ruby-fakegem
+
+DESCRIPTION="A generalized Rack framework for multiple-provider authentication"
+HOMEPAGE="https://github.com/intridea/omniauth;
+SRC_URI="https://github.com/intridea/omniauth/archive/v${PV}.tar.gz -> 
${P}.tar.gz"
+LICENSE="MIT"
+KEYWORDS="~amd64"
+SLOT="0"
+IUSE=""
+
+ruby_add_rdepend "
+   >=dev-ruby/rack-1.0:* =dev-ruby/hashie-1.2:* 

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

2016-10-30 Thread Manuel Rüger
commit: 3b9916ba09d2e351383034143f4dbf63f542f1cf
Author: Manuel Rüger  gentoo  org>
AuthorDate: Mon Oct 31 01:44:26 2016 +
Commit: Manuel Rüger  gentoo  org>
CommitDate: Mon Oct 31 01:44:26 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3b9916ba

dev-ruby/omniauth: Add ruby23

Package-Manager: portage-2.3.2

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

diff --git a/dev-ruby/omniauth/omniauth-1.3.1.ebuild 
b/dev-ruby/omniauth/omniauth-1.3.1.ebuild
index 86f9ee6..d261c51 100644
--- a/dev-ruby/omniauth/omniauth-1.3.1.ebuild
+++ b/dev-ruby/omniauth/omniauth-1.3.1.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="ruby20 ruby21 ruby22"
+USE_RUBY="ruby20 ruby21 ruby22 ruby23"
 
 RUBY_FAKEGEM_EXTRADOC="README.md"
 RUBY_FAKEGEM_RECIPE_TEST="rspec"



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

2016-05-09 Thread Manuel Rüger
commit: 5d5b0bc9009eea5a88fafeb0c9bd43fad0021134
Author: Manuel Rüger  gentoo  org>
AuthorDate: Mon May  9 22:28:01 2016 +
Commit: Manuel Rüger  gentoo  org>
CommitDate: Mon May  9 22:28:46 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5d5b0bc9

dev-ruby/omniauth: Drop ruby19

Package-Manager: portage-2.2.28

 dev-ruby/omniauth/omniauth-1.2.2-r1.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/dev-ruby/omniauth/omniauth-1.2.2-r1.ebuild 
b/dev-ruby/omniauth/omniauth-1.2.2-r1.ebuild
index 2388407..a630c11 100644
--- a/dev-ruby/omniauth/omniauth-1.2.2-r1.ebuild
+++ b/dev-ruby/omniauth/omniauth-1.2.2-r1.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 ruby22"
+USE_RUBY="ruby20 ruby21 ruby22"
 
 RUBY_FAKEGEM_EXTRADOC="README.md"
 RUBY_FAKEGEM_RECIPE_TEST="rspec"



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

2015-12-23 Thread Hans de Graaff
commit: e54f716d2bbb68a0c630b1487ad1f13989f6cc82
Author: Hans de Graaff  gentoo  org>
AuthorDate: Thu Dec 24 06:05:58 2015 +
Commit: Hans de Graaff  gentoo  org>
CommitDate: Thu Dec 24 06:05:58 2015 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e54f716d

dev-ruby/omniauth: add 1.3.1

Package-Manager: portage-2.2.24

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

diff --git a/dev-ruby/omniauth/Manifest b/dev-ruby/omniauth/Manifest
index d8ac736..25a8c6c 100644
--- a/dev-ruby/omniauth/Manifest
+++ b/dev-ruby/omniauth/Manifest
@@ -1 +1,2 @@
 DIST omniauth-1.2.2.gem 27648 SHA256 
939eabc200dc19d624ad02020b9f9258a69429b2250b883e47ce2cf76c6a10b8 SHA512 
5451ad281be5cd1dc45c66d295476f182904d08818c23a08a6245dbb517eeb49b29ff5810f67680073fb4cde2407eee164a2aae2b06397d7ea71b149fb86789e
 WHIRLPOOL 
d7ca6d180eea30583163a2eb60d14498c09fbd1baf78b1e6539e187028a5f943c7f7dd0f3a47a9b95acb59995f8c7bf39eb6a53b69cfb1fa9d39e87010975c7b
+DIST omniauth-1.3.1.tar.gz 23759 SHA256 
a5043cd38442600320cfd92672f9985be3dc556f51fef63989f46bc21d69aa9e SHA512 
4959d568cf8d2b4e874fd2a5a8e842a8be4705a5df525ad691a1a1d31de0d702023327cc8f9bc934539c25bcde06dc65714f830eaeb8f97b323fc297b99c4c0a
 WHIRLPOOL 
5363a764e2526b9ffab9b17c939ccc31d5fb5fec365566b6b1bb90918f5c0bc8a9daee5075719a6c61a57d3610c466553443d7988249bb9ada73e0407a85f1b4

diff --git a/dev-ruby/omniauth/omniauth-1.3.1.ebuild 
b/dev-ruby/omniauth/omniauth-1.3.1.ebuild
new file mode 100644
index 000..86f9ee6
--- /dev/null
+++ b/dev-ruby/omniauth/omniauth-1.3.1.ebuild
@@ -0,0 +1,46 @@
+# Copyright 1999-2015 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=5
+USE_RUBY="ruby20 ruby21 ruby22"
+
+RUBY_FAKEGEM_EXTRADOC="README.md"
+RUBY_FAKEGEM_RECIPE_TEST="rspec"
+RUBY_FAKEGEM_RECIPE_DOC="none"
+RUBY_FAKEGEM_DOCDIR="doc"
+
+RUBY_FAKEGEM_GEMSPEC="${PN}.gemspec"
+
+inherit ruby-fakegem
+
+DESCRIPTION="A generalized Rack framework for multiple-provider authentication"
+HOMEPAGE="https://github.com/intridea/omniauth;
+SRC_URI="https://github.com/intridea/omniauth/archive/v${PV}.tar.gz -> 
${P}.tar.gz"
+LICENSE="MIT"
+KEYWORDS="~amd64"
+SLOT="0"
+IUSE=""
+
+ruby_add_rdepend "dev-ruby/rack:*
+   >=dev-ruby/hashie-1.2:* 

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

2015-12-11 Thread Hans de Graaff
commit: 14eee1e0b8f6da2b596716892696f456fee01c89
Author: Hans de Graaff  gentoo  org>
AuthorDate: Sat Dec 12 07:21:52 2015 +
Commit: Hans de Graaff  gentoo  org>
CommitDate: Sat Dec 12 07:35:32 2015 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=14eee1e0

dev-ruby/omniauth: cleanup

Package-Manager: portage-2.2.24

 dev-ruby/omniauth/Manifest  |  1 -
 dev-ruby/omniauth/omniauth-1.2.1.ebuild | 40 -
 dev-ruby/omniauth/omniauth-1.2.2.ebuild | 40 -
 3 files changed, 81 deletions(-)

diff --git a/dev-ruby/omniauth/Manifest b/dev-ruby/omniauth/Manifest
index 0f11744..d8ac736 100644
--- a/dev-ruby/omniauth/Manifest
+++ b/dev-ruby/omniauth/Manifest
@@ -1,2 +1 @@
-DIST omniauth-1.2.1.gem 33280 SHA256 
fd545593bd19b506d41e39dd830c62fd541eb4df0861a1bc99b6e357456ed9fe SHA512 
4a06bc7a473240a17de15b55c10cbc6150eaa98aa0efd66e7c7b2ef5abb55248776ce88a3de5e576a7517498847b02249d084136f9209051b1ee8c07831c8da1
 WHIRLPOOL 
09953f36a2999f357fac557435f91e851bdcb3ab15f2aa04afd4980c5b32ca7b18b3bbfe9b59d06c89ca95fe422b78461739e2e7667c41a83a87c03a7f03
 DIST omniauth-1.2.2.gem 27648 SHA256 
939eabc200dc19d624ad02020b9f9258a69429b2250b883e47ce2cf76c6a10b8 SHA512 
5451ad281be5cd1dc45c66d295476f182904d08818c23a08a6245dbb517eeb49b29ff5810f67680073fb4cde2407eee164a2aae2b06397d7ea71b149fb86789e
 WHIRLPOOL 
d7ca6d180eea30583163a2eb60d14498c09fbd1baf78b1e6539e187028a5f943c7f7dd0f3a47a9b95acb59995f8c7bf39eb6a53b69cfb1fa9d39e87010975c7b

diff --git a/dev-ruby/omniauth/omniauth-1.2.1.ebuild 
b/dev-ruby/omniauth/omniauth-1.2.1.ebuild
deleted file mode 100644
index dd74ebf..000
--- a/dev-ruby/omniauth/omniauth-1.2.1.ebuild
+++ /dev/null
@@ -1,40 +0,0 @@
-# Copyright 1999-2014 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-EAPI=5
-USE_RUBY="ruby19 ruby20"
-
-RUBY_FAKEGEM_EXTRADOC="README.md"
-RUBY_FAKEGEM_RECIPE_TEST="rspec"
-RUBY_FAKEGEM_RECIPE_DOC="none"
-RUBY_FAKEGEM_DOCDIR="doc"
-
-inherit ruby-fakegem
-
-DESCRIPTION="A generalized Rack framework for multiple-provider authentication"
-HOMEPAGE="https://github.com/intridea/omniauth;
-LICENSE="MIT"
-KEYWORDS="~amd64"
-SLOT="0"
-IUSE=""
-
-ruby_add_rdepend "dev-ruby/rack dev-ruby/hashie"
-ruby_add_bdepend "doc? ( dev-ruby/yard )
-   test? ( dev-ruby/rack-test )"
-
-all_ruby_prepare() {
-   sed -i -e '/[Bb]undler/d' \
-   Rakefile ${PN}.gemspec || die "sed failed"
-   sed -i -e '/simplecov/,/^end/ s:^:#:' spec/helper.rb || die "sed failed"
-   # maruku fails, resorting to default markdown implementation
-   sed -i -e '/maruku/d' .yardopts || die "sed failed"
-}
-
-all_ruby_compile() {
-   all_fakegem_compile
-
-   if use doc ; then
-   yard || die "yard failed"
-   fi
-}

diff --git a/dev-ruby/omniauth/omniauth-1.2.2.ebuild 
b/dev-ruby/omniauth/omniauth-1.2.2.ebuild
deleted file mode 100644
index 1897d02..000
--- a/dev-ruby/omniauth/omniauth-1.2.2.ebuild
+++ /dev/null
@@ -1,40 +0,0 @@
-# Copyright 1999-2014 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-EAPI=5
-USE_RUBY="ruby19 ruby20 ruby21"
-
-RUBY_FAKEGEM_EXTRADOC="README.md"
-RUBY_FAKEGEM_RECIPE_TEST="rspec"
-RUBY_FAKEGEM_RECIPE_DOC="none"
-RUBY_FAKEGEM_DOCDIR="doc"
-
-inherit ruby-fakegem
-
-DESCRIPTION="A generalized Rack framework for multiple-provider authentication"
-HOMEPAGE="https://github.com/intridea/omniauth;
-LICENSE="MIT"
-KEYWORDS="~amd64"
-SLOT="0"
-IUSE=""
-
-ruby_add_rdepend "dev-ruby/rack dev-ruby/hashie"
-ruby_add_bdepend "doc? ( dev-ruby/yard )
-   test? ( dev-ruby/rack-test )"
-
-all_ruby_prepare() {
-   sed -i -e '/[Bb]undler/d' \
-   Rakefile ${PN}.gemspec || die "sed failed"
-   sed -i -e '/simplecov/,/^end/ s:^:#:' spec/helper.rb || die "sed failed"
-   # maruku fails, resorting to default markdown implementation
-   sed -i -e '/maruku/d' .yardopts || die "sed failed"
-}
-
-all_ruby_compile() {
-   all_fakegem_compile
-
-   if use doc ; then
-   yard || die "yard failed"
-   fi
-}



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

2015-08-13 Thread Peter Wilmott
commit: 94d0da5ada22fff170121eedd1d5833534e2d1b9
Author: Peter Wilmott p8952 AT gentoo DOT org
AuthorDate: Thu Aug 13 18:55:04 2015 +
Commit: Peter Wilmott p8952 AT gentoo DOT org
CommitDate: Thu Aug 13 18:59:04 2015 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=94d0da5a

dev-ruby/omniauth: Add ruby22

Package-Manager: portage-2.2.20.1

 dev-ruby/omniauth/omniauth-1.2.2-r1.ebuild | 40 ++
 1 file changed, 40 insertions(+)

diff --git a/dev-ruby/omniauth/omniauth-1.2.2-r1.ebuild 
b/dev-ruby/omniauth/omniauth-1.2.2-r1.ebuild
new file mode 100644
index 000..2388407
--- /dev/null
+++ b/dev-ruby/omniauth/omniauth-1.2.2-r1.ebuild
@@ -0,0 +1,40 @@
+# Copyright 1999-2015 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=5
+USE_RUBY=ruby19 ruby20 ruby21 ruby22
+
+RUBY_FAKEGEM_EXTRADOC=README.md
+RUBY_FAKEGEM_RECIPE_TEST=rspec
+RUBY_FAKEGEM_RECIPE_DOC=none
+RUBY_FAKEGEM_DOCDIR=doc
+
+inherit ruby-fakegem
+
+DESCRIPTION=A generalized Rack framework for multiple-provider authentication
+HOMEPAGE=https://github.com/intridea/omniauth;
+LICENSE=MIT
+KEYWORDS=~amd64
+SLOT=0
+IUSE=
+
+ruby_add_rdepend dev-ruby/rack dev-ruby/hashie
+ruby_add_bdepend doc? ( dev-ruby/yard )
+   test? ( dev-ruby/rack-test )
+
+all_ruby_prepare() {
+   sed -i -e '/[Bb]undler/d' \
+   Rakefile ${PN}.gemspec || die sed failed
+   sed -i -e '/simplecov/,/^end/ s:^:#:' spec/helper.rb || die sed failed
+   # maruku fails, resorting to default markdown implementation
+   sed -i -e '/maruku/d' .yardopts || die sed failed
+}
+
+all_ruby_compile() {
+   all_fakegem_compile
+
+   if use doc ; then
+   yard || die yard failed
+   fi
+}