[gentoo-commits] repo/gentoo:master commit in: dev-ruby/patron/files/, dev-ruby/patron/

2024-06-02 Thread Hans de Graaff
commit: 119c5c1c6a5fdfe496c53d15286d71662a8e1340
Author: Hans de Graaff  gentoo  org>
AuthorDate: Mon Jun  3 05:33:07 2024 +
Commit: Hans de Graaff  gentoo  org>
CommitDate: Mon Jun  3 05:54:58 2024 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=119c5c1c

dev-ruby/patron: backport fix for warning

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

 .../patron/files/patron-0.13.3-fix-warning.patch   | 24 
 dev-ruby/patron/patron-0.13.3-r3.ebuild| 45 ++
 2 files changed, 69 insertions(+)

diff --git a/dev-ruby/patron/files/patron-0.13.3-fix-warning.patch 
b/dev-ruby/patron/files/patron-0.13.3-fix-warning.patch
new file mode 100644
index ..ff33cdcc287a
--- /dev/null
+++ b/dev-ruby/patron/files/patron-0.13.3-fix-warning.patch
@@ -0,0 +1,24 @@
+From 2b84ba489fb28f474195d215be7cc6bed43c32bc Mon Sep 17 00:00:00 2001
+From: Olle Jonsson 
+Date: Thu, 2 Apr 2020 21:02:51 +0200
+Subject: [PATCH] Avoid warning `*' interpreted as argument prefix
+
+---
+ lib/patron/request.rb | 4 ++--
+ 1 file changed, 2 insertions(+), 2 deletions(-)
+
+diff --git a/lib/patron/request.rb b/lib/patron/request.rb
+index 9050ef2..3ac998a 100644
+--- a/lib/patron/request.rb
 b/lib/patron/request.rb
+@@ -34,8 +34,8 @@ def initialize
+   :low_speed_time, :low_speed_limit, :progress_callback
+ ]
+ 
+-attr_reader *READER_VARS
+-attr_writer *WRITER_VARS
++attr_reader(*READER_VARS)
++attr_writer(*WRITER_VARS)
+ 
+ # Set the type of authentication to use for this request.
+ #

diff --git a/dev-ruby/patron/patron-0.13.3-r3.ebuild 
b/dev-ruby/patron/patron-0.13.3-r3.ebuild
new file mode 100644
index ..d09e7a4912f3
--- /dev/null
+++ b/dev-ruby/patron/patron-0.13.3-r3.ebuild
@@ -0,0 +1,45 @@
+# Copyright 1999-2024 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+USE_RUBY="ruby31 ruby32 ruby33"
+
+RUBY_FAKEGEM_RECIPE_TEST="rspec3"
+RUBY_FAKEGEM_EXTRADOC="README.md"
+
+RUBY_FAKEGEM_EXTENSIONS=(ext/patron/extconf.rb)
+RUBY_FAKEGEM_EXTENSION_DIR="lib/patron"
+
+inherit ruby-fakegem
+
+DESCRIPTION="Patron is a Ruby HTTP client library based on libcurl"
+HOMEPAGE="https://github.com/toland/patron;
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~ppc ~ppc64 ~x86"
+IUSE="test"
+
+DEPEND+=" net-misc/curl"
+RDEPEND+=" net-misc/curl"
+
+PATCHES=( "${FILESDIR}/${P}-fix-warning.patch" )
+
+ruby_add_bdepend "test? ( dev-ruby/rack:2.2 www-servers/puma )"
+
+all_ruby_prepare() {
+   # Fix Rakefile
+   sed -i -e 's:rake/rdoctask:rdoc/task:' \
+   -e 's/README.txt/README.md/' \
+   -e '/bundler/I s:^:#:' \
+   -e '/extensiontask/ s:^:#:' \
+   -e '/ExtensionTask/,/^end/ s:^:#:' \
+   Rakefile || die
+
+   # Avoid specs with failures. We were not running any specs before.
+   rm spec/session_ssl_spec.rb spec/session_spec.rb spec/response_spec.rb 
|| die
+
+   # Ensure a compatible rack version
+   sed -i -e '1igem "rack", "~> 2.2.0"' spec/spec_helper.rb || die
+}



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

2024-02-28 Thread Hans de Graaff
commit: 75fe053848c34df5c0bb938b42d5f8dc26addb46
Author: Hans de Graaff  gentoo  org>
AuthorDate: Thu Feb 29 06:39:25 2024 +
Commit: Hans de Graaff  gentoo  org>
CommitDate: Thu Feb 29 07:14:27 2024 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=75fe0538

dev-ruby/patron: enable ruby33

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

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

diff --git a/dev-ruby/patron/patron-0.13.3-r2.ebuild 
b/dev-ruby/patron/patron-0.13.3-r2.ebuild
index f48b9a84af8e..2293e2a96eb0 100644
--- a/dev-ruby/patron/patron-0.13.3-r2.ebuild
+++ b/dev-ruby/patron/patron-0.13.3-r2.ebuild
@@ -1,9 +1,9 @@
-# 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="ruby27 ruby30 ruby31 ruby32"
+USE_RUBY="ruby31 ruby32 ruby33"
 
 RUBY_FAKEGEM_RECIPE_TEST="rspec3"
 RUBY_FAKEGEM_EXTRADOC="README.md"



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

2023-09-15 Thread Hans de Graaff
commit: aa1f8b95f7cf53e13209d48b9ad80158b1f74fc4
Author: Hans de Graaff  gentoo  org>
AuthorDate: Fri Sep 15 12:50:14 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=aa1f8b95

dev-ruby/patron: drop 0.13.3-r1

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

 dev-ruby/patron/patron-0.13.3-r1.ebuild | 39 -
 1 file changed, 39 deletions(-)

diff --git a/dev-ruby/patron/patron-0.13.3-r1.ebuild 
b/dev-ruby/patron/patron-0.13.3-r1.ebuild
deleted file mode 100644
index 1e1a19bea9ff..
--- a/dev-ruby/patron/patron-0.13.3-r1.ebuild
+++ /dev/null
@@ -1,39 +0,0 @@
-# Copyright 1999-2023 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-USE_RUBY="ruby27 ruby30 ruby31"
-
-RUBY_FAKEGEM_RECIPE_TEST="rspec3"
-RUBY_FAKEGEM_EXTRADOC="README.md"
-
-RUBY_FAKEGEM_EXTENSIONS=(ext/patron/extconf.rb)
-RUBY_FAKEGEM_EXTENSION_DIR="lib/patron"
-
-inherit ruby-fakegem
-
-DESCRIPTION="Patron is a Ruby HTTP client library based on libcurl"
-HOMEPAGE="https://github.com/toland/patron;
-
-LICENSE="MIT"
-SLOT="0"
-KEYWORDS="amd64 ~arm ~arm64 ~hppa ~ppc ~ppc64 x86 ~amd64-linux ~x86-linux 
~ppc-macos ~x64-macos ~x64-solaris"
-IUSE=""
-
-DEPEND+=" net-misc/curl"
-RDEPEND+=" net-misc/curl"
-
-ruby_add_bdepend "test? ( dev-ruby/rack www-servers/puma )"
-
-all_ruby_prepare() {
-   # Fix Rakefile
-   sed -i -e 's:rake/rdoctask:rdoc/task:' \
-   -e 's/README.txt/README.md/' \
-   -e '/bundler/I s:^:#:' \
-   -e '/extensiontask/ s:^:#:' \
-   -e '/ExtensionTask/,/^end/ s:^:#:' \
-   Rakefile || die
-
-   # Avoid specs with failures. We were not running any specs before.
-   rm spec/session_ssl_spec.rb spec/session_spec.rb spec/response_spec.rb 
|| die
-}



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

2023-07-12 Thread Jakov Smolić
commit: efe028d016fc6b847f976d34aa7722fa4871f1d7
Author: Jakov Smolić  gentoo  org>
AuthorDate: Wed Jul 12 06:39:35 2023 +
Commit: Jakov Smolić  gentoo  org>
CommitDate: Wed Jul 12 06:39:35 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=efe028d0

dev-ruby/patron: Stabilize 0.13.3-r2 x86, #907540

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

 dev-ruby/patron/patron-0.13.3-r2.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-ruby/patron/patron-0.13.3-r2.ebuild 
b/dev-ruby/patron/patron-0.13.3-r2.ebuild
index edd506521bd3..f48b9a84af8e 100644
--- a/dev-ruby/patron/patron-0.13.3-r2.ebuild
+++ b/dev-ruby/patron/patron-0.13.3-r2.ebuild
@@ -18,7 +18,7 @@ HOMEPAGE="https://github.com/toland/patron;
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="amd64 ~arm ~arm64 ~hppa ~ppc ~ppc64 ~x86"
+KEYWORDS="amd64 ~arm ~arm64 ~hppa ~ppc ~ppc64 x86"
 IUSE=""
 
 DEPEND+=" net-misc/curl"



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

2023-07-11 Thread Jakov Smolić
commit: d0339dfc19ef2cd6de6bad40579be6d9fe725445
Author: Jakov Smolić  gentoo  org>
AuthorDate: Tue Jul 11 14:02:19 2023 +
Commit: Jakov Smolić  gentoo  org>
CommitDate: Tue Jul 11 14:02:19 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d0339dfc

dev-ruby/patron: Stabilize 0.13.3-r2 amd64, #907540

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

 dev-ruby/patron/patron-0.13.3-r2.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-ruby/patron/patron-0.13.3-r2.ebuild 
b/dev-ruby/patron/patron-0.13.3-r2.ebuild
index 2665afcbfd35..edd506521bd3 100644
--- a/dev-ruby/patron/patron-0.13.3-r2.ebuild
+++ b/dev-ruby/patron/patron-0.13.3-r2.ebuild
@@ -18,7 +18,7 @@ HOMEPAGE="https://github.com/toland/patron;
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~ppc ~ppc64 ~x86"
+KEYWORDS="amd64 ~arm ~arm64 ~hppa ~ppc ~ppc64 ~x86"
 IUSE=""
 
 DEPEND+=" net-misc/curl"



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

2023-07-11 Thread Hans de Graaff
commit: cf3ddb4e91c0f1468c0a835b14d84cb996587f28
Author: Hans de Graaff  gentoo  org>
AuthorDate: Tue Jul 11 05:18:46 2023 +
Commit: Hans de Graaff  gentoo  org>
CommitDate: Tue Jul 11 07:47:14 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=cf3ddb4e

dev-ruby/patron: fix tests

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

 dev-ruby/patron/patron-0.13.3-r2.ebuild | 5 -
 1 file changed, 4 insertions(+), 1 deletion(-)

diff --git a/dev-ruby/patron/patron-0.13.3-r2.ebuild 
b/dev-ruby/patron/patron-0.13.3-r2.ebuild
index 8e2ce837..2665afcbfd35 100644
--- a/dev-ruby/patron/patron-0.13.3-r2.ebuild
+++ b/dev-ruby/patron/patron-0.13.3-r2.ebuild
@@ -24,7 +24,7 @@ IUSE=""
 DEPEND+=" net-misc/curl"
 RDEPEND+=" net-misc/curl"
 
-ruby_add_bdepend "test? ( dev-ruby/rack www-servers/puma )"
+ruby_add_bdepend "test? ( dev-ruby/rack:2.2 www-servers/puma )"
 
 all_ruby_prepare() {
# Fix Rakefile
@@ -37,4 +37,7 @@ all_ruby_prepare() {
 
# Avoid specs with failures. We were not running any specs before.
rm spec/session_ssl_spec.rb spec/session_spec.rb spec/response_spec.rb 
|| die
+
+   # Ensure a compatible rack version
+   sed -i -e '1igem "rack", "~> 2.2.0"' spec/spec_helper.rb || die
 }



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

2023-04-08 Thread Sam James
commit: 10bfa15ec7032de19d2763e2c5ef871b980885b5
Author: Sam James  gentoo  org>
AuthorDate: Sun Apr  9 03:32:47 2023 +
Commit: Sam James  gentoo  org>
CommitDate: Sun Apr  9 03:32:47 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=10bfa15e

dev-ruby/patron: Keyword 0.13.3-r2 hppa, #903712

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

 dev-ruby/patron/patron-0.13.3-r2.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-ruby/patron/patron-0.13.3-r2.ebuild 
b/dev-ruby/patron/patron-0.13.3-r2.ebuild
index 8eab88483eb2..8e2ce837 100644
--- a/dev-ruby/patron/patron-0.13.3-r2.ebuild
+++ b/dev-ruby/patron/patron-0.13.3-r2.ebuild
@@ -18,7 +18,7 @@ HOMEPAGE="https://github.com/toland/patron;
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="~amd64 ~arm ~arm64 ~ppc ~ppc64 ~x86"
+KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~ppc ~ppc64 ~x86"
 IUSE=""
 
 DEPEND+=" net-misc/curl"



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

2023-04-07 Thread Sam James
commit: fc1536efc9d6805d97170b22b9716fc461044147
Author: Sam James  gentoo  org>
AuthorDate: Fri Apr  7 15:02:47 2023 +
Commit: Sam James  gentoo  org>
CommitDate: Fri Apr  7 15:02:47 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=fc1536ef

dev-ruby/patron: Keyword 0.13.3-r2 arm, #903712

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

 dev-ruby/patron/patron-0.13.3-r2.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-ruby/patron/patron-0.13.3-r2.ebuild 
b/dev-ruby/patron/patron-0.13.3-r2.ebuild
index 5c3884367749..c9bc2b3b0772 100644
--- a/dev-ruby/patron/patron-0.13.3-r2.ebuild
+++ b/dev-ruby/patron/patron-0.13.3-r2.ebuild
@@ -18,7 +18,7 @@ HOMEPAGE="https://github.com/toland/patron;
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="~amd64"
+KEYWORDS="~amd64 ~arm"
 IUSE=""
 
 DEPEND+=" net-misc/curl"



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

2023-04-07 Thread Sam James
commit: a16575dd5869e0e328fba29092c80d13f30f7ae0
Author: Sam James  gentoo  org>
AuthorDate: Fri Apr  7 15:02:50 2023 +
Commit: Sam James  gentoo  org>
CommitDate: Fri Apr  7 15:02:50 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a16575dd

dev-ruby/patron: Keyword 0.13.3-r2 arm64, #903712

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

 dev-ruby/patron/patron-0.13.3-r2.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-ruby/patron/patron-0.13.3-r2.ebuild 
b/dev-ruby/patron/patron-0.13.3-r2.ebuild
index c9bc2b3b0772..a50247819095 100644
--- a/dev-ruby/patron/patron-0.13.3-r2.ebuild
+++ b/dev-ruby/patron/patron-0.13.3-r2.ebuild
@@ -18,7 +18,7 @@ HOMEPAGE="https://github.com/toland/patron;
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="~amd64 ~arm"
+KEYWORDS="~amd64 ~arm ~arm64"
 IUSE=""
 
 DEPEND+=" net-misc/curl"



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

2023-04-07 Thread Sam James
commit: 6c4ff9f3138ffecc71fc540206a744a3c9185ff9
Author: Sam James  gentoo  org>
AuthorDate: Fri Apr  7 15:02:54 2023 +
Commit: Sam James  gentoo  org>
CommitDate: Fri Apr  7 15:02:54 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6c4ff9f3

dev-ruby/patron: Keyword 0.13.3-r2 ppc, #903712

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

 dev-ruby/patron/patron-0.13.3-r2.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-ruby/patron/patron-0.13.3-r2.ebuild 
b/dev-ruby/patron/patron-0.13.3-r2.ebuild
index a50247819095..9f7678788be7 100644
--- a/dev-ruby/patron/patron-0.13.3-r2.ebuild
+++ b/dev-ruby/patron/patron-0.13.3-r2.ebuild
@@ -18,7 +18,7 @@ HOMEPAGE="https://github.com/toland/patron;
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="~amd64 ~arm ~arm64"
+KEYWORDS="~amd64 ~arm ~arm64 ~ppc"
 IUSE=""
 
 DEPEND+=" net-misc/curl"



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

2023-04-07 Thread Sam James
commit: 6e475712b8bb132c79157063e6ad78e4888c9234
Author: Sam James  gentoo  org>
AuthorDate: Fri Apr  7 15:02:58 2023 +
Commit: Sam James  gentoo  org>
CommitDate: Fri Apr  7 15:02:58 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6e475712

dev-ruby/patron: Keyword 0.13.3-r2 ppc64, #903712

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

 dev-ruby/patron/patron-0.13.3-r2.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-ruby/patron/patron-0.13.3-r2.ebuild 
b/dev-ruby/patron/patron-0.13.3-r2.ebuild
index 9f7678788be7..064c711c7995 100644
--- a/dev-ruby/patron/patron-0.13.3-r2.ebuild
+++ b/dev-ruby/patron/patron-0.13.3-r2.ebuild
@@ -18,7 +18,7 @@ HOMEPAGE="https://github.com/toland/patron;
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="~amd64 ~arm ~arm64 ~ppc"
+KEYWORDS="~amd64 ~arm ~arm64 ~ppc ~ppc64"
 IUSE=""
 
 DEPEND+=" net-misc/curl"



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

2023-04-07 Thread Sam James
commit: b960e34b908393f7c05437a38516094eded829b8
Author: Sam James  gentoo  org>
AuthorDate: Fri Apr  7 15:03:01 2023 +
Commit: Sam James  gentoo  org>
CommitDate: Fri Apr  7 15:03:01 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b960e34b

dev-ruby/patron: Keyword 0.13.3-r2 x86, #903712

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

 dev-ruby/patron/patron-0.13.3-r2.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-ruby/patron/patron-0.13.3-r2.ebuild 
b/dev-ruby/patron/patron-0.13.3-r2.ebuild
index 064c711c7995..8eab88483eb2 100644
--- a/dev-ruby/patron/patron-0.13.3-r2.ebuild
+++ b/dev-ruby/patron/patron-0.13.3-r2.ebuild
@@ -18,7 +18,7 @@ HOMEPAGE="https://github.com/toland/patron;
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="~amd64 ~arm ~arm64 ~ppc ~ppc64"
+KEYWORDS="~amd64 ~arm ~arm64 ~ppc ~ppc64 ~x86"
 IUSE=""
 
 DEPEND+=" net-misc/curl"



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

2023-04-02 Thread Sam James
commit: c88fc76c16502fb8c49ba3e5f13aae82e31c7208
Author: Sam James  gentoo  org>
AuthorDate: Mon Apr  3 00:28:14 2023 +
Commit: Sam James  gentoo  org>
CommitDate: Mon Apr  3 00:46:34 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c88fc76c

dev-ruby/patron: EAPI 8, enable ruby32

Tests are the same as for older impls (even with the horrific
puma bits).

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

 dev-ruby/patron/patron-0.13.3-r2.ebuild | 40 +
 1 file changed, 40 insertions(+)

diff --git a/dev-ruby/patron/patron-0.13.3-r2.ebuild 
b/dev-ruby/patron/patron-0.13.3-r2.ebuild
new file mode 100644
index ..5c3884367749
--- /dev/null
+++ b/dev-ruby/patron/patron-0.13.3-r2.ebuild
@@ -0,0 +1,40 @@
+# Copyright 1999-2023 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+USE_RUBY="ruby27 ruby30 ruby31 ruby32"
+
+RUBY_FAKEGEM_RECIPE_TEST="rspec3"
+RUBY_FAKEGEM_EXTRADOC="README.md"
+
+RUBY_FAKEGEM_EXTENSIONS=(ext/patron/extconf.rb)
+RUBY_FAKEGEM_EXTENSION_DIR="lib/patron"
+
+inherit ruby-fakegem
+
+DESCRIPTION="Patron is a Ruby HTTP client library based on libcurl"
+HOMEPAGE="https://github.com/toland/patron;
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="~amd64"
+IUSE=""
+
+DEPEND+=" net-misc/curl"
+RDEPEND+=" net-misc/curl"
+
+ruby_add_bdepend "test? ( dev-ruby/rack www-servers/puma )"
+
+all_ruby_prepare() {
+   # Fix Rakefile
+   sed -i -e 's:rake/rdoctask:rdoc/task:' \
+   -e 's/README.txt/README.md/' \
+   -e '/bundler/I s:^:#:' \
+   -e '/extensiontask/ s:^:#:' \
+   -e '/ExtensionTask/,/^end/ s:^:#:' \
+   Rakefile || die
+
+   # Avoid specs with failures. We were not running any specs before.
+   rm spec/session_ssl_spec.rb spec/session_spec.rb spec/response_spec.rb 
|| die
+}



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

2023-04-02 Thread Sam James
commit: ffb8c49d09df5b2460bf9be00d4ba50ba31982e8
Author: Sam James  gentoo  org>
AuthorDate: Mon Apr  3 00:45:07 2023 +
Commit: Sam James  gentoo  org>
CommitDate: Mon Apr  3 00:46:35 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ffb8c49d

dev-ruby/patron: add github upstream metadata

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

 dev-ruby/patron/metadata.xml | 3 +++
 1 file changed, 3 insertions(+)

diff --git a/dev-ruby/patron/metadata.xml b/dev-ruby/patron/metadata.xml
index 658c72b1920d..3381fedd792f 100644
--- a/dev-ruby/patron/metadata.xml
+++ b/dev-ruby/patron/metadata.xml
@@ -5,4 +5,7 @@
r...@gentoo.org
Gentoo Ruby Project
 
+
+   toland/patron 
+
 



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

2023-02-03 Thread Hans de Graaff
commit: ab85a992a7ed72741152d5c8c73d03aac68d935e
Author: Hans de Graaff  gentoo  org>
AuthorDate: Fri Feb  3 14:00:17 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=ab85a992

dev-ruby/patron: update HOMEPAGE

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

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

diff --git a/dev-ruby/patron/patron-0.13.3-r1.ebuild 
b/dev-ruby/patron/patron-0.13.3-r1.ebuild
index 6bebd371fe1c..4e7f7d751118 100644
--- a/dev-ruby/patron/patron-0.13.3-r1.ebuild
+++ b/dev-ruby/patron/patron-0.13.3-r1.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2022 Gentoo Authors
+# Copyright 1999-2023 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=7
@@ -13,7 +13,7 @@ RUBY_FAKEGEM_EXTENSION_DIR="lib/patron"
 inherit ruby-fakegem
 
 DESCRIPTION="Patron is a Ruby HTTP client library based on libcurl"
-HOMEPAGE="https://toland.github.com/patron/;
+HOMEPAGE="https://github.com/toland/patron;
 
 LICENSE="MIT"
 SLOT="0"



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

2022-12-23 Thread Sam James
commit: acc544c42f087feeb12e49572acf6cf8e5fec941
Author: Sam James  gentoo  org>
AuthorDate: Sat Dec 24 06:34:30 2022 +
Commit: Sam James  gentoo  org>
CommitDate: Sat Dec 24 06:34:30 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=acc544c4

dev-ruby/patron: enable ruby31

Tests pass with all Rubys.

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

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

diff --git a/dev-ruby/patron/patron-0.13.3-r1.ebuild 
b/dev-ruby/patron/patron-0.13.3-r1.ebuild
index c9c2afa0dd53..6bebd371fe1c 100644
--- a/dev-ruby/patron/patron-0.13.3-r1.ebuild
+++ b/dev-ruby/patron/patron-0.13.3-r1.ebuild
@@ -1,8 +1,8 @@
-# Copyright 1999-2021 Gentoo Authors
+# Copyright 1999-2022 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=7
-USE_RUBY="ruby26 ruby27 ruby30"
+USE_RUBY="ruby27 ruby30 ruby31"
 
 RUBY_FAKEGEM_RECIPE_TEST="rspec3"
 RUBY_FAKEGEM_EXTRADOC="README.md"



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

2021-10-23 Thread Hans de Graaff
commit: bdf03ad4c95b7a0f057ed811729a947c1febc4c3
Author: Hans de Graaff  gentoo  org>
AuthorDate: Sat Oct 23 06:59:34 2021 +
Commit: Hans de Graaff  gentoo  org>
CommitDate: Sat Oct 23 07:05:38 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=bdf03ad4

dev-ruby/patron: cleanup

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

 dev-ruby/patron/Manifest|  1 -
 dev-ruby/patron/patron-0.13.1-r1.ebuild | 46 -
 2 files changed, 47 deletions(-)

diff --git a/dev-ruby/patron/Manifest b/dev-ruby/patron/Manifest
index b22add4d380..9eafcd30ce7 100644
--- a/dev-ruby/patron/Manifest
+++ b/dev-ruby/patron/Manifest
@@ -1,2 +1 @@
-DIST patron-0.13.1.gem 64512 BLAKE2B 
14f691cb0fd1c863a1ef634ba8aee94751095138e940f13bf09860e9e0061872fe14fa33416f59f82d4adc53963721d653936a3f058b27654ea7593d6068d0b7
 SHA512 
7b082ff7442c2635c38b37132cd61f6cd18d4792d41cbf3bed1201fb7371b75bb628a295f4e3dd173c23e086d3c1f54f0217df3f7d1a30c1031fcca86269e1e7
 DIST patron-0.13.3.gem 65024 BLAKE2B 
87aa69aab49978d14a80ed9e09d74d7853da3512875cc3aecd3f387d1523b85c84625b57a5826e5f5f999cec4feaae58c1aaae96582144a5c9dc537c9d5a4224
 SHA512 
afbbbd9570e338a5d1b97b4ebeda76ac95a22c29d908629723d345a47400183c2ccee67ebcaf5b6f9ecb032eb3b847e70ec9eebff75b33045a3665c215abfbd0

diff --git a/dev-ruby/patron/patron-0.13.1-r1.ebuild 
b/dev-ruby/patron/patron-0.13.1-r1.ebuild
deleted file mode 100644
index 8564423a857..000
--- a/dev-ruby/patron/patron-0.13.1-r1.ebuild
+++ /dev/null
@@ -1,46 +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_TEST="rspec3"
-RUBY_FAKEGEM_RECIPE_DOC="rdoc"
-RUBY_FAKEGEM_EXTRADOC="README.md"
-
-inherit multilib ruby-fakegem
-
-DESCRIPTION="Patron is a Ruby HTTP client library based on libcurl"
-HOMEPAGE="https://toland.github.com/patron/;
-
-LICENSE="MIT"
-SLOT="0"
-KEYWORDS="amd64 ~arm ~arm64 ~hppa ~ppc ~ppc64 x86 ~amd64-linux ~x86-linux 
~ppc-macos ~x64-macos ~x64-solaris ~x86-solaris"
-IUSE=""
-
-DEPEND+=" net-misc/curl"
-RDEPEND+=" net-misc/curl"
-
-ruby_add_bdepend "test? ( www-servers/puma )"
-
-all_ruby_prepare() {
-   # Fix Rakefile
-   sed -i -e 's:rake/rdoctask:rdoc/task:' \
-   -e 's/README.txt/README.md/' \
-   -e '/bundler/I s:^:#:' \
-   -e '/extensiontask/ s:^:#:' \
-   -e '/ExtensionTask/,/^end/ s:^:#:' \
-   Rakefile || die
-
-   # Avoid specs with failures. We were not running any specs before.
-   rm spec/session_ssl_spec.rb spec/session_spec.rb spec/response_spec.rb 
|| die
-}
-
-each_ruby_configure() {
-   ${RUBY} -Cext/patron extconf.rb || die
-}
-
-each_ruby_compile() {
-   emake -Cext/patron V=1
-   cp ext/patron/session_ext$(get_modname) lib/patron/ || die "Unable to 
cp shared object file"
-}



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

2021-10-20 Thread Agostino Sarubbo
commit: 97d53da6973fd99f92319797f659306b9efe0636
Author: Agostino Sarubbo  gentoo  org>
AuthorDate: Wed Oct 20 06:56:01 2021 +
Commit: Agostino Sarubbo  gentoo  org>
CommitDate: Wed Oct 20 06:56:01 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=97d53da6

dev-ruby/patron: amd64 stable wrt bug #818568

Package-Manager: Portage-3.0.20, Repoman-3.0.3
RepoMan-Options: --include-arches="amd64"
Signed-off-by: Agostino Sarubbo  gentoo.org>

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

diff --git a/dev-ruby/patron/patron-0.13.3-r1.ebuild 
b/dev-ruby/patron/patron-0.13.3-r1.ebuild
index 34cc1db8c6d..c9c2afa0dd5 100644
--- a/dev-ruby/patron/patron-0.13.3-r1.ebuild
+++ b/dev-ruby/patron/patron-0.13.3-r1.ebuild
@@ -17,7 +17,7 @@ HOMEPAGE="https://toland.github.com/patron/;
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~ppc ~ppc64 x86 ~amd64-linux ~x86-linux 
~ppc-macos ~x64-macos ~x64-solaris ~x86-solaris"
+KEYWORDS="amd64 ~arm ~arm64 ~hppa ~ppc ~ppc64 x86 ~amd64-linux ~x86-linux 
~ppc-macos ~x64-macos ~x64-solaris ~x86-solaris"
 IUSE=""
 
 DEPEND+=" net-misc/curl"



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

2021-10-17 Thread Sam James
commit: 75e34ada2d2f4d3b2772b4f00b96ed69241d6226
Author: Sam James  gentoo  org>
AuthorDate: Sun Oct 17 20:02:58 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Sun Oct 17 20:04:38 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=75e34ada

dev-ruby/patron: Stabilize 0.13.3-r1 x86, #818568

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

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

diff --git a/dev-ruby/patron/patron-0.13.3-r1.ebuild 
b/dev-ruby/patron/patron-0.13.3-r1.ebuild
index 508eb953b94..34cc1db8c6d 100644
--- a/dev-ruby/patron/patron-0.13.3-r1.ebuild
+++ b/dev-ruby/patron/patron-0.13.3-r1.ebuild
@@ -17,7 +17,7 @@ HOMEPAGE="https://toland.github.com/patron/;
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~ppc ~ppc64 ~x86 ~amd64-linux ~x86-linux 
~ppc-macos ~x64-macos ~x64-solaris ~x86-solaris"
+KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~ppc ~ppc64 x86 ~amd64-linux ~x86-linux 
~ppc-macos ~x64-macos ~x64-solaris ~x86-solaris"
 IUSE=""
 
 DEPEND+=" net-misc/curl"



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

2021-10-17 Thread Hans de Graaff
commit: c9bf7ff0fcda99382385edaa01bd4734435755e5
Author: Hans de Graaff  gentoo  org>
AuthorDate: Sun Oct 17 06:02:22 2021 +
Commit: Hans de Graaff  gentoo  org>
CommitDate: Sun Oct 17 06:04:17 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c9bf7ff0

dev-ruby/patron: add ruby30

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

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

diff --git a/dev-ruby/patron/patron-0.13.3-r1.ebuild 
b/dev-ruby/patron/patron-0.13.3-r1.ebuild
index 08c165ff73f..508eb953b94 100644
--- a/dev-ruby/patron/patron-0.13.3-r1.ebuild
+++ b/dev-ruby/patron/patron-0.13.3-r1.ebuild
@@ -2,7 +2,7 @@
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=7
-USE_RUBY="ruby26 ruby27"
+USE_RUBY="ruby26 ruby27 ruby30"
 
 RUBY_FAKEGEM_RECIPE_TEST="rspec3"
 RUBY_FAKEGEM_EXTRADOC="README.md"



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

2021-07-16 Thread Hans de Graaff
commit: 2ffd4a6e307b0d913128321b64d162be9c8929fe
Author: Hans de Graaff  gentoo  org>
AuthorDate: Fri Jul 16 08:49:15 2021 +
Commit: Hans de Graaff  gentoo  org>
CommitDate: Fri Jul 16 08:52:24 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2ffd4a6e

dev-ruby/patron: cleanup

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

 dev-ruby/patron/patron-0.13.3.ebuild | 46 
 1 file changed, 46 deletions(-)

diff --git a/dev-ruby/patron/patron-0.13.3.ebuild 
b/dev-ruby/patron/patron-0.13.3.ebuild
deleted file mode 100644
index cb42adae716..000
--- a/dev-ruby/patron/patron-0.13.3.ebuild
+++ /dev/null
@@ -1,46 +0,0 @@
-# Copyright 1999-2021 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-USE_RUBY="ruby24 ruby25 ruby26 ruby27"
-
-RUBY_FAKEGEM_RECIPE_TEST="rspec3"
-RUBY_FAKEGEM_RECIPE_DOC="rdoc"
-RUBY_FAKEGEM_EXTRADOC="README.md"
-
-inherit multilib ruby-fakegem
-
-DESCRIPTION="Patron is a Ruby HTTP client library based on libcurl"
-HOMEPAGE="https://toland.github.com/patron/;
-
-LICENSE="MIT"
-SLOT="0"
-KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~ppc ~ppc64 ~x86 ~amd64-linux ~x86-linux 
~ppc-macos ~x64-macos ~x64-solaris ~x86-solaris"
-IUSE=""
-
-DEPEND+=" net-misc/curl"
-RDEPEND+=" net-misc/curl"
-
-ruby_add_bdepend "test? ( dev-ruby/rack www-servers/puma )"
-
-all_ruby_prepare() {
-   # Fix Rakefile
-   sed -i -e 's:rake/rdoctask:rdoc/task:' \
-   -e 's/README.txt/README.md/' \
-   -e '/bundler/I s:^:#:' \
-   -e '/extensiontask/ s:^:#:' \
-   -e '/ExtensionTask/,/^end/ s:^:#:' \
-   Rakefile || die
-
-   # Avoid specs with failures. We were not running any specs before.
-   rm spec/session_ssl_spec.rb spec/session_spec.rb spec/response_spec.rb 
|| die
-}
-
-each_ruby_configure() {
-   ${RUBY} -Cext/patron extconf.rb || die
-}
-
-each_ruby_compile() {
-   emake -Cext/patron V=1
-   cp ext/patron/session_ext$(get_modname) lib/patron/ || die "Unable to 
cp shared object file"
-}



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

2021-07-12 Thread Hans de Graaff
commit: 59fb91b761840e19d61c3c50032c1d6c62c4101a
Author: Hans de Graaff  gentoo  org>
AuthorDate: Mon Jul 12 08:25:37 2021 +
Commit: Hans de Graaff  gentoo  org>
CommitDate: Mon Jul 12 13:26:30 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=59fb91b7

dev-ruby/patron: add ruby27; EAPI 7; fix extension

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

 dev-ruby/patron/patron-0.13.3-r1.ebuild | 39 +
 1 file changed, 39 insertions(+)

diff --git a/dev-ruby/patron/patron-0.13.3-r1.ebuild 
b/dev-ruby/patron/patron-0.13.3-r1.ebuild
new file mode 100644
index 000..08c165ff73f
--- /dev/null
+++ b/dev-ruby/patron/patron-0.13.3-r1.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="ruby26 ruby27"
+
+RUBY_FAKEGEM_RECIPE_TEST="rspec3"
+RUBY_FAKEGEM_EXTRADOC="README.md"
+
+RUBY_FAKEGEM_EXTENSIONS=(ext/patron/extconf.rb)
+RUBY_FAKEGEM_EXTENSION_DIR="lib/patron"
+
+inherit ruby-fakegem
+
+DESCRIPTION="Patron is a Ruby HTTP client library based on libcurl"
+HOMEPAGE="https://toland.github.com/patron/;
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~ppc ~ppc64 ~x86 ~amd64-linux ~x86-linux 
~ppc-macos ~x64-macos ~x64-solaris ~x86-solaris"
+IUSE=""
+
+DEPEND+=" net-misc/curl"
+RDEPEND+=" net-misc/curl"
+
+ruby_add_bdepend "test? ( dev-ruby/rack www-servers/puma )"
+
+all_ruby_prepare() {
+   # Fix Rakefile
+   sed -i -e 's:rake/rdoctask:rdoc/task:' \
+   -e 's/README.txt/README.md/' \
+   -e '/bundler/I s:^:#:' \
+   -e '/extensiontask/ s:^:#:' \
+   -e '/ExtensionTask/,/^end/ s:^:#:' \
+   Rakefile || die
+
+   # Avoid specs with failures. We were not running any specs before.
+   rm spec/session_ssl_spec.rb spec/session_spec.rb spec/response_spec.rb 
|| die
+}



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

2020-05-30 Thread Hans de Graaff
commit: 843ec52e64ab46290c3cbf9c0452b20a35af22cd
Author: Hans de Graaff  gentoo  org>
AuthorDate: Sat May 30 18:18:59 2020 +
Commit: Hans de Graaff  gentoo  org>
CommitDate: Sat May 30 18:36:15 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=843ec52e

dev-ruby/patron: add missing test dependency

Closes: https://bugs.gentoo.org/show_bug.cgi?id=723902
Package-Manager: Portage-2.3.99, Repoman-2.3.22
Signed-off-by: Hans de Graaff  gentoo.org>

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

diff --git a/dev-ruby/patron/patron-0.13.3.ebuild 
b/dev-ruby/patron/patron-0.13.3.ebuild
index cedf0130468..d87a8d18915 100644
--- a/dev-ruby/patron/patron-0.13.3.ebuild
+++ b/dev-ruby/patron/patron-0.13.3.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,7 +21,7 @@ IUSE=""
 DEPEND+=" net-misc/curl"
 RDEPEND+=" net-misc/curl"
 
-ruby_add_bdepend "test? ( www-servers/puma )"
+ruby_add_bdepend "test? ( dev-ruby/rack www-servers/puma )"
 
 all_ruby_prepare() {
# Fix Rakefile



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

2020-05-30 Thread Hans de Graaff
commit: 7fca18bcc283fd439eb9eac39f7afc2a75f093e5
Author: Hans de Graaff  gentoo  org>
AuthorDate: Sat May 30 18:21:13 2020 +
Commit: Hans de Graaff  gentoo  org>
CommitDate: Sat May 30 18:36:15 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7fca18bc

dev-ruby/patron: add ruby27

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

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

diff --git a/dev-ruby/patron/patron-0.13.3.ebuild 
b/dev-ruby/patron/patron-0.13.3.ebuild
index d87a8d18915..5ab39b36bb2 100644
--- a/dev-ruby/patron/patron-0.13.3.ebuild
+++ b/dev-ruby/patron/patron-0.13.3.ebuild
@@ -2,7 +2,7 @@
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=6
-USE_RUBY="ruby24 ruby25 ruby26"
+USE_RUBY="ruby24 ruby25 ruby26 ruby27"
 
 RUBY_FAKEGEM_RECIPE_TEST="rspec3"
 RUBY_FAKEGEM_RECIPE_DOC="rdoc"



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

2019-05-22 Thread Hans de Graaff
commit: 7adccfb52609bf91481ed351c7b91dc1daf7e13b
Author: Hans de Graaff  gentoo  org>
AuthorDate: Thu May 23 05:03:28 2019 +
Commit: Hans de Graaff  gentoo  org>
CommitDate: Thu May 23 05:38:47 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7adccfb5

dev-ruby/patron: add 0.13.3

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

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

diff --git a/dev-ruby/patron/Manifest b/dev-ruby/patron/Manifest
index 5c5faffddb2..b22add4d380 100644
--- a/dev-ruby/patron/Manifest
+++ b/dev-ruby/patron/Manifest
@@ -1 +1,2 @@
 DIST patron-0.13.1.gem 64512 BLAKE2B 
14f691cb0fd1c863a1ef634ba8aee94751095138e940f13bf09860e9e0061872fe14fa33416f59f82d4adc53963721d653936a3f058b27654ea7593d6068d0b7
 SHA512 
7b082ff7442c2635c38b37132cd61f6cd18d4792d41cbf3bed1201fb7371b75bb628a295f4e3dd173c23e086d3c1f54f0217df3f7d1a30c1031fcca86269e1e7
+DIST patron-0.13.3.gem 65024 BLAKE2B 
87aa69aab49978d14a80ed9e09d74d7853da3512875cc3aecd3f387d1523b85c84625b57a5826e5f5f999cec4feaae58c1aaae96582144a5c9dc537c9d5a4224
 SHA512 
afbbbd9570e338a5d1b97b4ebeda76ac95a22c29d908629723d345a47400183c2ccee67ebcaf5b6f9ecb032eb3b847e70ec9eebff75b33045a3665c215abfbd0

diff --git a/dev-ruby/patron/patron-0.13.3.ebuild 
b/dev-ruby/patron/patron-0.13.3.ebuild
new file mode 100644
index 000..cedf0130468
--- /dev/null
+++ b/dev-ruby/patron/patron-0.13.3.ebuild
@@ -0,0 +1,46 @@
+# Copyright 1999-2019 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+USE_RUBY="ruby24 ruby25 ruby26"
+
+RUBY_FAKEGEM_RECIPE_TEST="rspec3"
+RUBY_FAKEGEM_RECIPE_DOC="rdoc"
+RUBY_FAKEGEM_EXTRADOC="README.md"
+
+inherit multilib ruby-fakegem
+
+DESCRIPTION="Patron is a Ruby HTTP client library based on libcurl"
+HOMEPAGE="https://toland.github.com/patron/;
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~ppc ~ppc64 ~x86 ~amd64-linux ~x86-linux 
~ppc-macos ~x64-macos ~x86-macos ~x64-solaris ~x86-solaris"
+IUSE=""
+
+DEPEND+=" net-misc/curl"
+RDEPEND+=" net-misc/curl"
+
+ruby_add_bdepend "test? ( www-servers/puma )"
+
+all_ruby_prepare() {
+   # Fix Rakefile
+   sed -i -e 's:rake/rdoctask:rdoc/task:' \
+   -e 's/README.txt/README.md/' \
+   -e '/bundler/I s:^:#:' \
+   -e '/extensiontask/ s:^:#:' \
+   -e '/ExtensionTask/,/^end/ s:^:#:' \
+   Rakefile || die
+
+   # Avoid specs with failures. We were not running any specs before.
+   rm spec/session_ssl_spec.rb spec/session_spec.rb spec/response_spec.rb 
|| die
+}
+
+each_ruby_configure() {
+   ${RUBY} -Cext/patron extconf.rb || die
+}
+
+each_ruby_compile() {
+   emake -Cext/patron V=1
+   cp ext/patron/session_ext$(get_modname) lib/patron/ || die "Unable to 
cp shared object file"
+}



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

2019-04-29 Thread Hans de Graaff
commit: fd853c730a9e1a7a72f80932cdff3f37f898fc4b
Author: Hans de Graaff  gentoo  org>
AuthorDate: Mon Apr 29 18:24:42 2019 +
Commit: Hans de Graaff  gentoo  org>
CommitDate: Mon Apr 29 18:33:36 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=fd853c73

dev-ruby/patron: add ruby26

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

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

diff --git a/dev-ruby/patron/patron-0.13.1-r1.ebuild 
b/dev-ruby/patron/patron-0.13.1-r1.ebuild
index 704973cc7f6..f80cf6aa85a 100644
--- a/dev-ruby/patron/patron-0.13.1-r1.ebuild
+++ b/dev-ruby/patron/patron-0.13.1-r1.ebuild
@@ -2,7 +2,7 @@
 # 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_TEST="rspec3"
 RUBY_FAKEGEM_RECIPE_DOC="rdoc"



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

2019-04-28 Thread Hans de Graaff
commit: d92675669d2043db3e99d72980b87ee6b115e5ec
Author: Hans de Graaff  gentoo  org>
AuthorDate: Mon Apr 29 05:28:48 2019 +
Commit: Hans de Graaff  gentoo  org>
CommitDate: Mon Apr 29 05:32:37 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d9267566

dev-ruby/patron: cleanup

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

 dev-ruby/patron/Manifest |  1 -
 dev-ruby/patron/patron-0.10.0.ebuild | 44 
 dev-ruby/patron/patron-0.13.1.ebuild | 44 
 3 files changed, 89 deletions(-)

diff --git a/dev-ruby/patron/Manifest b/dev-ruby/patron/Manifest
index 3004437d36b..5c5faffddb2 100644
--- a/dev-ruby/patron/Manifest
+++ b/dev-ruby/patron/Manifest
@@ -1,2 +1 @@
-DIST patron-0.10.0.gem 59904 BLAKE2B 
f4ec8c81e4c0c13f3d3b5e0696955c01c8ff962980a8ed83ca7aaca722c422b0466a806af9b2c36f0183c16767f5b3f37dae4ae4a8801866592c8f861ba9778d
 SHA512 
bfe5fabbcbfa3d1c73ef6f79d100547de7e4121bcbd1f427423a127f0bc698bb8b6ade06c0e2eb1f529d1524e95fc36245b8be9d6e2c12b7e8d18b5f03ae6606
 DIST patron-0.13.1.gem 64512 BLAKE2B 
14f691cb0fd1c863a1ef634ba8aee94751095138e940f13bf09860e9e0061872fe14fa33416f59f82d4adc53963721d653936a3f058b27654ea7593d6068d0b7
 SHA512 
7b082ff7442c2635c38b37132cd61f6cd18d4792d41cbf3bed1201fb7371b75bb628a295f4e3dd173c23e086d3c1f54f0217df3f7d1a30c1031fcca86269e1e7

diff --git a/dev-ruby/patron/patron-0.10.0.ebuild 
b/dev-ruby/patron/patron-0.10.0.ebuild
deleted file mode 100644
index ff20b0eeb69..000
--- a/dev-ruby/patron/patron-0.10.0.ebuild
+++ /dev/null
@@ -1,44 +0,0 @@
-# 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_TEST="rspec3"
-RUBY_FAKEGEM_RECIPE_DOC="rdoc"
-RUBY_FAKEGEM_EXTRADOC="README.md"
-
-inherit multilib ruby-fakegem
-
-DESCRIPTION="Patron is a Ruby HTTP client library based on libcurl"
-HOMEPAGE="https://toland.github.com/patron/;
-
-LICENSE="MIT"
-SLOT="0"
-KEYWORDS="amd64 ~arm ~arm64 ~hppa ~ppc ~ppc64 x86 ~amd64-linux ~x86-linux 
~ppc-macos ~x64-macos ~x86-macos ~x64-solaris ~x86-solaris"
-IUSE=""
-
-DEPEND+=" net-misc/curl"
-RDEPEND+=" net-misc/curl"
-
-all_ruby_prepare() {
-   # Fix Rakefile
-   sed -i -e 's:rake/rdoctask:rdoc/task:' \
-   -e 's/README.txt/README.md/' \
-   -e '/bundler/I s:^:#:' \
-   -e '/extensiontask/ s:^:#:' \
-   -e '/ExtensionTask/,/^end/ s:^:#:' \
-   Rakefile || die
-
-   # Avoid specs with failures. We were not running any specs before.
-   rm spec/session_ssl_spec.rb spec/session_spec.rb spec/response_spec.rb 
|| die
-}
-
-each_ruby_configure() {
-   ${RUBY} -Cext/patron extconf.rb || die
-}
-
-each_ruby_compile() {
-   emake -Cext/patron V=1
-   cp ext/patron/session_ext$(get_modname) lib/patron/ || die "Unable to 
cp shared object file"
-}

diff --git a/dev-ruby/patron/patron-0.13.1.ebuild 
b/dev-ruby/patron/patron-0.13.1.ebuild
deleted file mode 100644
index 07e50489407..000
--- a/dev-ruby/patron/patron-0.13.1.ebuild
+++ /dev/null
@@ -1,44 +0,0 @@
-# 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_RECIPE_TEST="rspec3"
-RUBY_FAKEGEM_RECIPE_DOC="rdoc"
-RUBY_FAKEGEM_EXTRADOC="README.md"
-
-inherit multilib ruby-fakegem
-
-DESCRIPTION="Patron is a Ruby HTTP client library based on libcurl"
-HOMEPAGE="https://toland.github.com/patron/;
-
-LICENSE="MIT"
-SLOT="0"
-KEYWORDS="amd64 ~arm ~arm64 ~hppa ~ppc ~ppc64 ~x86 ~amd64-linux ~x86-linux 
~ppc-macos ~x64-macos ~x86-macos ~x64-solaris ~x86-solaris"
-IUSE=""
-
-DEPEND+=" net-misc/curl"
-RDEPEND+=" net-misc/curl"
-
-all_ruby_prepare() {
-   # Fix Rakefile
-   sed -i -e 's:rake/rdoctask:rdoc/task:' \
-   -e 's/README.txt/README.md/' \
-   -e '/bundler/I s:^:#:' \
-   -e '/extensiontask/ s:^:#:' \
-   -e '/ExtensionTask/,/^end/ s:^:#:' \
-   Rakefile || die
-
-   # Avoid specs with failures. We were not running any specs before.
-   rm spec/session_ssl_spec.rb spec/session_spec.rb spec/response_spec.rb 
|| die
-}
-
-each_ruby_configure() {
-   ${RUBY} -Cext/patron extconf.rb || die
-}
-
-each_ruby_compile() {
-   emake -Cext/patron V=1
-   cp ext/patron/session_ext$(get_modname) lib/patron/ || die "Unable to 
cp shared object file"
-}



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

2019-04-28 Thread Thomas Deutschmann
commit: 0ce89a5de4f40ebff69fd2320969c262c916e2e8
Author: Thomas Deutschmann  gentoo  org>
AuthorDate: Sun Apr 28 20:15:28 2019 +
Commit: Thomas Deutschmann  gentoo  org>
CommitDate: Sun Apr 28 20:34:12 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0ce89a5d

dev-ruby/patron: x86 stable (bug #683244)

Package-Manager: Portage-2.3.64, Repoman-2.3.12
Signed-off-by: Thomas Deutschmann  gentoo.org>

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

diff --git a/dev-ruby/patron/patron-0.13.1-r1.ebuild 
b/dev-ruby/patron/patron-0.13.1-r1.ebuild
index 6543c702c03..704973cc7f6 100644
--- a/dev-ruby/patron/patron-0.13.1-r1.ebuild
+++ b/dev-ruby/patron/patron-0.13.1-r1.ebuild
@@ -15,7 +15,7 @@ HOMEPAGE="https://toland.github.com/patron/;
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="amd64 ~arm ~arm64 ~hppa ~ppc ~ppc64 ~x86 ~amd64-linux ~x86-linux 
~ppc-macos ~x64-macos ~x86-macos ~x64-solaris ~x86-solaris"
+KEYWORDS="amd64 ~arm ~arm64 ~hppa ~ppc ~ppc64 x86 ~amd64-linux ~x86-linux 
~ppc-macos ~x64-macos ~x86-macos ~x64-solaris ~x86-solaris"
 IUSE=""
 
 DEPEND+=" net-misc/curl"



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

2019-04-13 Thread Mikle Kolyada
commit: 72de7ca4a7eb834f0c7f27100658386589f66844
Author: Mikle Kolyada  gentoo  org>
AuthorDate: Sat Apr 13 14:09:38 2019 +
Commit: Mikle Kolyada  gentoo  org>
CommitDate: Sat Apr 13 14:10:12 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=72de7ca4

dev-ruby/patron: amd64 stable wrt bug #683244

Signed-off-by: Mikle Kolyada  gentoo.org>
Package-Manager: Portage-2.3.62, Repoman-2.3.11
RepoMan-Options: --include-arches="amd64"

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

diff --git a/dev-ruby/patron/patron-0.13.1-r1.ebuild 
b/dev-ruby/patron/patron-0.13.1-r1.ebuild
index d98c6550e70..6543c702c03 100644
--- a/dev-ruby/patron/patron-0.13.1-r1.ebuild
+++ b/dev-ruby/patron/patron-0.13.1-r1.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2018 Gentoo Authors
+# Copyright 1999-2019 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=6
@@ -15,7 +15,7 @@ HOMEPAGE="https://toland.github.com/patron/;
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~ppc ~ppc64 ~x86 ~amd64-linux ~x86-linux 
~ppc-macos ~x64-macos ~x86-macos ~x64-solaris ~x86-solaris"
+KEYWORDS="amd64 ~arm ~arm64 ~hppa ~ppc ~ppc64 ~x86 ~amd64-linux ~x86-linux 
~ppc-macos ~x64-macos ~x86-macos ~x64-solaris ~x86-solaris"
 IUSE=""
 
 DEPEND+=" net-misc/curl"



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

2018-12-26 Thread Sergei Trofimovich
commit: 967588c4528e76827df769531b45ad962e6077d6
Author: Sergei Trofimovich  gentoo  org>
AuthorDate: Wed Dec 26 11:47:55 2018 +
Commit: Sergei Trofimovich  gentoo  org>
CommitDate: Wed Dec 26 11:47:55 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=967588c4

dev-ruby/patron: keyworded 0.13.1-r1 for ppc64, bug #673556

Package-Manager: Portage-2.3.52, Repoman-2.3.12
RepoMan-Options: --include-arches="ppc64"
Signed-off-by: Sergei Trofimovich  gentoo.org>

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

diff --git a/dev-ruby/patron/patron-0.13.1-r1.ebuild 
b/dev-ruby/patron/patron-0.13.1-r1.ebuild
index c935879f8a6..d98c6550e70 100644
--- a/dev-ruby/patron/patron-0.13.1-r1.ebuild
+++ b/dev-ruby/patron/patron-0.13.1-r1.ebuild
@@ -15,7 +15,7 @@ HOMEPAGE="https://toland.github.com/patron/;
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~ppc ~x86 ~amd64-linux ~x86-linux 
~ppc-macos ~x64-macos ~x86-macos ~x64-solaris ~x86-solaris"
+KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~ppc ~ppc64 ~x86 ~amd64-linux ~x86-linux 
~ppc-macos ~x64-macos ~x86-macos ~x64-solaris ~x86-solaris"
 IUSE=""
 
 DEPEND+=" net-misc/curl"



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

2018-12-21 Thread Hans de Graaff
commit: 5fb473b281cf9ddbff87a86e523d8e06ad0c1a61
Author: Hans de Graaff  gentoo  org>
AuthorDate: Sat Dec 22 06:44:38 2018 +
Commit: Hans de Graaff  gentoo  org>
CommitDate: Sat Dec 22 06:44:38 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5fb473b2

dev-ruby/patron: missing test dep on puma

Add a missing test dependency on www-servers/puma and drop ~ppc64, bug 673556

Fixes: https://bugs.gentoo.org/673488
Signed-off-by: Hans de Graaff  gentoo.org>
Package-Manager: Portage-2.3.51, Repoman-2.3.11

 dev-ruby/patron/patron-0.13.1-r1.ebuild | 46 +
 1 file changed, 46 insertions(+)

diff --git a/dev-ruby/patron/patron-0.13.1-r1.ebuild 
b/dev-ruby/patron/patron-0.13.1-r1.ebuild
new file mode 100644
index 000..c935879f8a6
--- /dev/null
+++ b/dev-ruby/patron/patron-0.13.1-r1.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_RECIPE_TEST="rspec3"
+RUBY_FAKEGEM_RECIPE_DOC="rdoc"
+RUBY_FAKEGEM_EXTRADOC="README.md"
+
+inherit multilib ruby-fakegem
+
+DESCRIPTION="Patron is a Ruby HTTP client library based on libcurl"
+HOMEPAGE="https://toland.github.com/patron/;
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~ppc ~x86 ~amd64-linux ~x86-linux 
~ppc-macos ~x64-macos ~x86-macos ~x64-solaris ~x86-solaris"
+IUSE=""
+
+DEPEND+=" net-misc/curl"
+RDEPEND+=" net-misc/curl"
+
+ruby_add_bdepend "test? ( www-servers/puma )"
+
+all_ruby_prepare() {
+   # Fix Rakefile
+   sed -i -e 's:rake/rdoctask:rdoc/task:' \
+   -e 's/README.txt/README.md/' \
+   -e '/bundler/I s:^:#:' \
+   -e '/extensiontask/ s:^:#:' \
+   -e '/ExtensionTask/,/^end/ s:^:#:' \
+   Rakefile || die
+
+   # Avoid specs with failures. We were not running any specs before.
+   rm spec/session_ssl_spec.rb spec/session_spec.rb spec/response_spec.rb 
|| die
+}
+
+each_ruby_configure() {
+   ${RUBY} -Cext/patron extconf.rb || die
+}
+
+each_ruby_compile() {
+   emake -Cext/patron V=1
+   cp ext/patron/session_ext$(get_modname) lib/patron/ || die "Unable to 
cp shared object file"
+}



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

2018-12-18 Thread Hans de Graaff
commit: 8b9f9f1bcb48ed02bf2917bf8f364622ff3dab39
Author: Hans de Graaff  gentoo  org>
AuthorDate: Wed Dec 19 06:11:06 2018 +
Commit: Hans de Graaff  gentoo  org>
CommitDate: Wed Dec 19 06:11:06 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8b9f9f1b

dev-ruby/patron: amd64 stable

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

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

diff --git a/dev-ruby/patron/patron-0.13.1.ebuild 
b/dev-ruby/patron/patron-0.13.1.ebuild
index 9e7b6892856..07e50489407 100644
--- a/dev-ruby/patron/patron-0.13.1.ebuild
+++ b/dev-ruby/patron/patron-0.13.1.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2018 Gentoo Foundation
+# Copyright 1999-2018 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=6
@@ -15,7 +15,7 @@ HOMEPAGE="https://toland.github.com/patron/;
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~ppc ~ppc64 ~x86 ~amd64-linux ~x86-linux 
~ppc-macos ~x64-macos ~x86-macos ~x64-solaris ~x86-solaris"
+KEYWORDS="amd64 ~arm ~arm64 ~hppa ~ppc ~ppc64 ~x86 ~amd64-linux ~x86-linux 
~ppc-macos ~x64-macos ~x86-macos ~x64-solaris ~x86-solaris"
 IUSE=""
 
 DEPEND+=" net-misc/curl"



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

2018-12-18 Thread Hans de Graaff
commit: b4d2859ac3bab53b24d8d4852ff065ed2e68a85e
Author: Hans de Graaff  gentoo  org>
AuthorDate: Wed Dec 19 06:09:03 2018 +
Commit: Hans de Graaff  gentoo  org>
CommitDate: Wed Dec 19 06:09:03 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b4d2859a

dev-ruby/patron: cleanup

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

 dev-ruby/patron/Manifest |  3 ---
 dev-ruby/patron/patron-0.11.1.ebuild | 44 
 dev-ruby/patron/patron-0.12.0.ebuild | 44 
 dev-ruby/patron/patron-0.12.1.ebuild | 44 
 4 files changed, 135 deletions(-)

diff --git a/dev-ruby/patron/Manifest b/dev-ruby/patron/Manifest
index 181e2fd339c..3004437d36b 100644
--- a/dev-ruby/patron/Manifest
+++ b/dev-ruby/patron/Manifest
@@ -1,5 +1,2 @@
 DIST patron-0.10.0.gem 59904 BLAKE2B 
f4ec8c81e4c0c13f3d3b5e0696955c01c8ff962980a8ed83ca7aaca722c422b0466a806af9b2c36f0183c16767f5b3f37dae4ae4a8801866592c8f861ba9778d
 SHA512 
bfe5fabbcbfa3d1c73ef6f79d100547de7e4121bcbd1f427423a127f0bc698bb8b6ade06c0e2eb1f529d1524e95fc36245b8be9d6e2c12b7e8d18b5f03ae6606
-DIST patron-0.11.1.gem 62976 BLAKE2B 
fc41865146876129eb824ccdd2351af8f0bb3bf099459becb87d0034291f864d576dda0c0ff017f0147eba88d7592dd5ce8ad3bb926db0d612e522a375a2c31a
 SHA512 
75a5705493f5496928279c751d396f9815bc47b4126ea8f9bcf9cabf7a40219b6f9cc2b12179d79848f616357552edcfe6b2b4312276bece432ed66a94ee8d63
-DIST patron-0.12.0.gem 64000 BLAKE2B 
1cdf258f4c49d5da6724a4ccb53ca81dd61f824727b5835a945799722db8aa9dd6878b903ea0cdebb2035a9f20f280539f624b9bf44e9a9da708687b163f8af0
 SHA512 
1826da20fe4aab21792d189466d4c6385d21388538c46e831f1852e0ea8f4007ddd0221e9c5a04eda67de9212d276bd494a98456f5befef42368925367d58798
-DIST patron-0.12.1.gem 64000 BLAKE2B 
d30990f79213929494d88e812e9c396474c326e87010a50416400ff5267acd9236fb5aedea8a110338356c3b0debc463752b23a595a04f44d9319a54d1c14cda
 SHA512 
ee551e221ea7c965055ddb72cdd063e5ed476ccaf032bc4b2a7f8344af38a4dbd5942d8eb5710bb2d23ca854b1676ff512eba4bfae7a33deef5238664bc7d00b
 DIST patron-0.13.1.gem 64512 BLAKE2B 
14f691cb0fd1c863a1ef634ba8aee94751095138e940f13bf09860e9e0061872fe14fa33416f59f82d4adc53963721d653936a3f058b27654ea7593d6068d0b7
 SHA512 
7b082ff7442c2635c38b37132cd61f6cd18d4792d41cbf3bed1201fb7371b75bb628a295f4e3dd173c23e086d3c1f54f0217df3f7d1a30c1031fcca86269e1e7

diff --git a/dev-ruby/patron/patron-0.11.1.ebuild 
b/dev-ruby/patron/patron-0.11.1.ebuild
deleted file mode 100644
index 843a380dbda..000
--- a/dev-ruby/patron/patron-0.11.1.ebuild
+++ /dev/null
@@ -1,44 +0,0 @@
-# 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_TEST="rspec3"
-RUBY_FAKEGEM_RECIPE_DOC="rdoc"
-RUBY_FAKEGEM_EXTRADOC="README.md"
-
-inherit multilib ruby-fakegem
-
-DESCRIPTION="Patron is a Ruby HTTP client library based on libcurl"
-HOMEPAGE="https://toland.github.com/patron/;
-
-LICENSE="MIT"
-SLOT="0"
-KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~ppc ~ppc64 ~x86 ~amd64-linux ~x86-linux 
~ppc-macos ~x64-macos ~x86-macos ~x64-solaris ~x86-solaris"
-IUSE=""
-
-DEPEND+=" net-misc/curl"
-RDEPEND+=" net-misc/curl"
-
-all_ruby_prepare() {
-   # Fix Rakefile
-   sed -i -e 's:rake/rdoctask:rdoc/task:' \
-   -e 's/README.txt/README.md/' \
-   -e '/bundler/I s:^:#:' \
-   -e '/extensiontask/ s:^:#:' \
-   -e '/ExtensionTask/,/^end/ s:^:#:' \
-   Rakefile || die
-
-   # Avoid specs with failures. We were not running any specs before.
-   rm spec/session_ssl_spec.rb spec/session_spec.rb spec/response_spec.rb 
|| die
-}
-
-each_ruby_configure() {
-   ${RUBY} -Cext/patron extconf.rb || die
-}
-
-each_ruby_compile() {
-   emake -Cext/patron V=1
-   cp ext/patron/session_ext$(get_modname) lib/patron/ || die "Unable to 
cp shared object file"
-}

diff --git a/dev-ruby/patron/patron-0.12.0.ebuild 
b/dev-ruby/patron/patron-0.12.0.ebuild
deleted file mode 100644
index 843a380dbda..000
--- a/dev-ruby/patron/patron-0.12.0.ebuild
+++ /dev/null
@@ -1,44 +0,0 @@
-# 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_TEST="rspec3"
-RUBY_FAKEGEM_RECIPE_DOC="rdoc"
-RUBY_FAKEGEM_EXTRADOC="README.md"
-
-inherit multilib ruby-fakegem
-
-DESCRIPTION="Patron is a Ruby HTTP client library based on libcurl"
-HOMEPAGE="https://toland.github.com/patron/;
-
-LICENSE="MIT"
-SLOT="0"
-KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~ppc ~ppc64 ~x86 ~amd64-linux ~x86-linux 
~ppc-macos ~x64-macos ~x86-macos ~x64-solaris ~x86-solaris"
-IUSE=""
-
-DEPEND+=" net-misc/curl"
-RDEPEND+=" net-misc/curl"
-
-all_ruby_prepare() {
-   # Fix Rakefile
-   sed -i -e 's:rake/rdoctask:rdoc/task:' \
-   -e 

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

2018-04-30 Thread Hans de Graaff
commit: 0d34aa1da0acbbea215f606fb6a41fac33977faa
Author: Hans de Graaff  gentoo  org>
AuthorDate: Tue May  1 04:40:38 2018 +
Commit: Hans de Graaff  gentoo  org>
CommitDate: Tue May  1 04:40:38 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0d34aa1d

dev-ruby/patron: add 0.13.1

Package-Manager: Portage-2.3.24, Repoman-2.3.6

 dev-ruby/patron/Manifest |  1 +
 dev-ruby/patron/patron-0.13.1.ebuild | 44 
 2 files changed, 45 insertions(+)

diff --git a/dev-ruby/patron/Manifest b/dev-ruby/patron/Manifest
index 4609b195a86..181e2fd339c 100644
--- a/dev-ruby/patron/Manifest
+++ b/dev-ruby/patron/Manifest
@@ -2,3 +2,4 @@ DIST patron-0.10.0.gem 59904 BLAKE2B 
f4ec8c81e4c0c13f3d3b5e0696955c01c8ff962980a
 DIST patron-0.11.1.gem 62976 BLAKE2B 
fc41865146876129eb824ccdd2351af8f0bb3bf099459becb87d0034291f864d576dda0c0ff017f0147eba88d7592dd5ce8ad3bb926db0d612e522a375a2c31a
 SHA512 
75a5705493f5496928279c751d396f9815bc47b4126ea8f9bcf9cabf7a40219b6f9cc2b12179d79848f616357552edcfe6b2b4312276bece432ed66a94ee8d63
 DIST patron-0.12.0.gem 64000 BLAKE2B 
1cdf258f4c49d5da6724a4ccb53ca81dd61f824727b5835a945799722db8aa9dd6878b903ea0cdebb2035a9f20f280539f624b9bf44e9a9da708687b163f8af0
 SHA512 
1826da20fe4aab21792d189466d4c6385d21388538c46e831f1852e0ea8f4007ddd0221e9c5a04eda67de9212d276bd494a98456f5befef42368925367d58798
 DIST patron-0.12.1.gem 64000 BLAKE2B 
d30990f79213929494d88e812e9c396474c326e87010a50416400ff5267acd9236fb5aedea8a110338356c3b0debc463752b23a595a04f44d9319a54d1c14cda
 SHA512 
ee551e221ea7c965055ddb72cdd063e5ed476ccaf032bc4b2a7f8344af38a4dbd5942d8eb5710bb2d23ca854b1676ff512eba4bfae7a33deef5238664bc7d00b
+DIST patron-0.13.1.gem 64512 BLAKE2B 
14f691cb0fd1c863a1ef634ba8aee94751095138e940f13bf09860e9e0061872fe14fa33416f59f82d4adc53963721d653936a3f058b27654ea7593d6068d0b7
 SHA512 
7b082ff7442c2635c38b37132cd61f6cd18d4792d41cbf3bed1201fb7371b75bb628a295f4e3dd173c23e086d3c1f54f0217df3f7d1a30c1031fcca86269e1e7

diff --git a/dev-ruby/patron/patron-0.13.1.ebuild 
b/dev-ruby/patron/patron-0.13.1.ebuild
new file mode 100644
index 000..9e7b6892856
--- /dev/null
+++ b/dev-ruby/patron/patron-0.13.1.ebuild
@@ -0,0 +1,44 @@
+# 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_RECIPE_TEST="rspec3"
+RUBY_FAKEGEM_RECIPE_DOC="rdoc"
+RUBY_FAKEGEM_EXTRADOC="README.md"
+
+inherit multilib ruby-fakegem
+
+DESCRIPTION="Patron is a Ruby HTTP client library based on libcurl"
+HOMEPAGE="https://toland.github.com/patron/;
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~ppc ~ppc64 ~x86 ~amd64-linux ~x86-linux 
~ppc-macos ~x64-macos ~x86-macos ~x64-solaris ~x86-solaris"
+IUSE=""
+
+DEPEND+=" net-misc/curl"
+RDEPEND+=" net-misc/curl"
+
+all_ruby_prepare() {
+   # Fix Rakefile
+   sed -i -e 's:rake/rdoctask:rdoc/task:' \
+   -e 's/README.txt/README.md/' \
+   -e '/bundler/I s:^:#:' \
+   -e '/extensiontask/ s:^:#:' \
+   -e '/ExtensionTask/,/^end/ s:^:#:' \
+   Rakefile || die
+
+   # Avoid specs with failures. We were not running any specs before.
+   rm spec/session_ssl_spec.rb spec/session_spec.rb spec/response_spec.rb 
|| die
+}
+
+each_ruby_configure() {
+   ${RUBY} -Cext/patron extconf.rb || die
+}
+
+each_ruby_compile() {
+   emake -Cext/patron V=1
+   cp ext/patron/session_ext$(get_modname) lib/patron/ || die "Unable to 
cp shared object file"
+}



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

2018-04-30 Thread Hans de Graaff
commit: 5188a9c4ef7266baa9bbf6e9b16030f3c9120469
Author: Hans de Graaff  gentoo  org>
AuthorDate: Mon Apr 30 20:02:13 2018 +
Commit: Hans de Graaff  gentoo  org>
CommitDate: Mon Apr 30 20:11:10 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5188a9c4

dev-ruby/patron: add ruby25

Package-Manager: Portage-2.3.24, Repoman-2.3.6

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

diff --git a/dev-ruby/patron/patron-0.12.1.ebuild 
b/dev-ruby/patron/patron-0.12.1.ebuild
index 843a380dbda..9e7b6892856 100644
--- a/dev-ruby/patron/patron-0.12.1.ebuild
+++ b/dev-ruby/patron/patron-0.12.1.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_TEST="rspec3"
 RUBY_FAKEGEM_RECIPE_DOC="rdoc"



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

2018-03-22 Thread Jeroen Roovers
commit: 3dc5aa163892e0fd206eaab7caac37f70f7fbc9a
Author: Jeroen Roovers  gentoo  org>
AuthorDate: Thu Mar 22 19:50:32 2018 +
Commit: Jeroen Roovers  gentoo  org>
CommitDate: Thu Mar 22 20:23:06 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3dc5aa16

dev-ruby/patron: Mark ~hppa too.

Package-Manager: Portage-2.3.24, Repoman-2.3.6
RepoMan-Options: --ignore-arches

 dev-ruby/patron/patron-0.10.0.ebuild | 2 +-
 dev-ruby/patron/patron-0.11.1.ebuild | 2 +-
 dev-ruby/patron/patron-0.12.0.ebuild | 2 +-
 dev-ruby/patron/patron-0.12.1.ebuild | 2 +-
 4 files changed, 4 insertions(+), 4 deletions(-)

diff --git a/dev-ruby/patron/patron-0.10.0.ebuild 
b/dev-ruby/patron/patron-0.10.0.ebuild
index 4e7e3ff39b0..ff20b0eeb69 100644
--- a/dev-ruby/patron/patron-0.10.0.ebuild
+++ b/dev-ruby/patron/patron-0.10.0.ebuild
@@ -15,7 +15,7 @@ HOMEPAGE="https://toland.github.com/patron/;
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="amd64 ~arm ~arm64 ~ppc ~ppc64 x86 ~amd64-linux ~x86-linux ~ppc-macos 
~x64-macos ~x86-macos ~x64-solaris ~x86-solaris"
+KEYWORDS="amd64 ~arm ~arm64 ~hppa ~ppc ~ppc64 x86 ~amd64-linux ~x86-linux 
~ppc-macos ~x64-macos ~x86-macos ~x64-solaris ~x86-solaris"
 IUSE=""
 
 DEPEND+=" net-misc/curl"

diff --git a/dev-ruby/patron/patron-0.11.1.ebuild 
b/dev-ruby/patron/patron-0.11.1.ebuild
index 9d99ba9f6d3..843a380dbda 100644
--- a/dev-ruby/patron/patron-0.11.1.ebuild
+++ b/dev-ruby/patron/patron-0.11.1.ebuild
@@ -15,7 +15,7 @@ HOMEPAGE="https://toland.github.com/patron/;
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="~amd64 ~arm ~arm64 ~ppc ~ppc64 ~x86 ~amd64-linux ~x86-linux 
~ppc-macos ~x64-macos ~x86-macos ~x64-solaris ~x86-solaris"
+KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~ppc ~ppc64 ~x86 ~amd64-linux ~x86-linux 
~ppc-macos ~x64-macos ~x86-macos ~x64-solaris ~x86-solaris"
 IUSE=""
 
 DEPEND+=" net-misc/curl"

diff --git a/dev-ruby/patron/patron-0.12.0.ebuild 
b/dev-ruby/patron/patron-0.12.0.ebuild
index 9d99ba9f6d3..843a380dbda 100644
--- a/dev-ruby/patron/patron-0.12.0.ebuild
+++ b/dev-ruby/patron/patron-0.12.0.ebuild
@@ -15,7 +15,7 @@ HOMEPAGE="https://toland.github.com/patron/;
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="~amd64 ~arm ~arm64 ~ppc ~ppc64 ~x86 ~amd64-linux ~x86-linux 
~ppc-macos ~x64-macos ~x86-macos ~x64-solaris ~x86-solaris"
+KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~ppc ~ppc64 ~x86 ~amd64-linux ~x86-linux 
~ppc-macos ~x64-macos ~x86-macos ~x64-solaris ~x86-solaris"
 IUSE=""
 
 DEPEND+=" net-misc/curl"

diff --git a/dev-ruby/patron/patron-0.12.1.ebuild 
b/dev-ruby/patron/patron-0.12.1.ebuild
index 9d99ba9f6d3..843a380dbda 100644
--- a/dev-ruby/patron/patron-0.12.1.ebuild
+++ b/dev-ruby/patron/patron-0.12.1.ebuild
@@ -15,7 +15,7 @@ HOMEPAGE="https://toland.github.com/patron/;
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="~amd64 ~arm ~arm64 ~ppc ~ppc64 ~x86 ~amd64-linux ~x86-linux 
~ppc-macos ~x64-macos ~x86-macos ~x64-solaris ~x86-solaris"
+KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~ppc ~ppc64 ~x86 ~amd64-linux ~x86-linux 
~ppc-macos ~x64-macos ~x86-macos ~x64-solaris ~x86-solaris"
 IUSE=""
 
 DEPEND+=" net-misc/curl"



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

2018-03-01 Thread Hans de Graaff
commit: 8094d69bc9d4dc9496f5e559e33f15fe5567797a
Author: Hans de Graaff  gentoo  org>
AuthorDate: Fri Mar  2 06:31:52 2018 +
Commit: Hans de Graaff  gentoo  org>
CommitDate: Fri Mar  2 06:39:11 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8094d69b

dev-ruby/patron: add 0.12.1

Package-Manager: Portage-2.3.19, Repoman-2.3.6

 dev-ruby/patron/Manifest |  1 +
 dev-ruby/patron/patron-0.12.1.ebuild | 44 
 2 files changed, 45 insertions(+)

diff --git a/dev-ruby/patron/Manifest b/dev-ruby/patron/Manifest
index 055fc8c2fb0..4609b195a86 100644
--- a/dev-ruby/patron/Manifest
+++ b/dev-ruby/patron/Manifest
@@ -1,3 +1,4 @@
 DIST patron-0.10.0.gem 59904 BLAKE2B 
f4ec8c81e4c0c13f3d3b5e0696955c01c8ff962980a8ed83ca7aaca722c422b0466a806af9b2c36f0183c16767f5b3f37dae4ae4a8801866592c8f861ba9778d
 SHA512 
bfe5fabbcbfa3d1c73ef6f79d100547de7e4121bcbd1f427423a127f0bc698bb8b6ade06c0e2eb1f529d1524e95fc36245b8be9d6e2c12b7e8d18b5f03ae6606
 DIST patron-0.11.1.gem 62976 BLAKE2B 
fc41865146876129eb824ccdd2351af8f0bb3bf099459becb87d0034291f864d576dda0c0ff017f0147eba88d7592dd5ce8ad3bb926db0d612e522a375a2c31a
 SHA512 
75a5705493f5496928279c751d396f9815bc47b4126ea8f9bcf9cabf7a40219b6f9cc2b12179d79848f616357552edcfe6b2b4312276bece432ed66a94ee8d63
 DIST patron-0.12.0.gem 64000 BLAKE2B 
1cdf258f4c49d5da6724a4ccb53ca81dd61f824727b5835a945799722db8aa9dd6878b903ea0cdebb2035a9f20f280539f624b9bf44e9a9da708687b163f8af0
 SHA512 
1826da20fe4aab21792d189466d4c6385d21388538c46e831f1852e0ea8f4007ddd0221e9c5a04eda67de9212d276bd494a98456f5befef42368925367d58798
+DIST patron-0.12.1.gem 64000 BLAKE2B 
d30990f79213929494d88e812e9c396474c326e87010a50416400ff5267acd9236fb5aedea8a110338356c3b0debc463752b23a595a04f44d9319a54d1c14cda
 SHA512 
ee551e221ea7c965055ddb72cdd063e5ed476ccaf032bc4b2a7f8344af38a4dbd5942d8eb5710bb2d23ca854b1676ff512eba4bfae7a33deef5238664bc7d00b

diff --git a/dev-ruby/patron/patron-0.12.1.ebuild 
b/dev-ruby/patron/patron-0.12.1.ebuild
new file mode 100644
index 000..9d99ba9f6d3
--- /dev/null
+++ b/dev-ruby/patron/patron-0.12.1.ebuild
@@ -0,0 +1,44 @@
+# 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_TEST="rspec3"
+RUBY_FAKEGEM_RECIPE_DOC="rdoc"
+RUBY_FAKEGEM_EXTRADOC="README.md"
+
+inherit multilib ruby-fakegem
+
+DESCRIPTION="Patron is a Ruby HTTP client library based on libcurl"
+HOMEPAGE="https://toland.github.com/patron/;
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="~amd64 ~arm ~arm64 ~ppc ~ppc64 ~x86 ~amd64-linux ~x86-linux 
~ppc-macos ~x64-macos ~x86-macos ~x64-solaris ~x86-solaris"
+IUSE=""
+
+DEPEND+=" net-misc/curl"
+RDEPEND+=" net-misc/curl"
+
+all_ruby_prepare() {
+   # Fix Rakefile
+   sed -i -e 's:rake/rdoctask:rdoc/task:' \
+   -e 's/README.txt/README.md/' \
+   -e '/bundler/I s:^:#:' \
+   -e '/extensiontask/ s:^:#:' \
+   -e '/ExtensionTask/,/^end/ s:^:#:' \
+   Rakefile || die
+
+   # Avoid specs with failures. We were not running any specs before.
+   rm spec/session_ssl_spec.rb spec/session_spec.rb spec/response_spec.rb 
|| die
+}
+
+each_ruby_configure() {
+   ${RUBY} -Cext/patron extconf.rb || die
+}
+
+each_ruby_compile() {
+   emake -Cext/patron V=1
+   cp ext/patron/session_ext$(get_modname) lib/patron/ || die "Unable to 
cp shared object file"
+}



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

2018-02-07 Thread Hans de Graaff
commit: dc1c84eebb511017dd6c75cc433db2b014ce417a
Author: Hans de Graaff  gentoo  org>
AuthorDate: Thu Feb  8 05:24:56 2018 +
Commit: Hans de Graaff  gentoo  org>
CommitDate: Thu Feb  8 06:24:30 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=dc1c84ee

dev-ruby/patron: add 0.12.0

Package-Manager: Portage-2.3.19, Repoman-2.3.6

 dev-ruby/patron/Manifest |  1 +
 dev-ruby/patron/patron-0.12.0.ebuild | 44 
 2 files changed, 45 insertions(+)

diff --git a/dev-ruby/patron/Manifest b/dev-ruby/patron/Manifest
index 9d674e419ea..055fc8c2fb0 100644
--- a/dev-ruby/patron/Manifest
+++ b/dev-ruby/patron/Manifest
@@ -1,2 +1,3 @@
 DIST patron-0.10.0.gem 59904 BLAKE2B 
f4ec8c81e4c0c13f3d3b5e0696955c01c8ff962980a8ed83ca7aaca722c422b0466a806af9b2c36f0183c16767f5b3f37dae4ae4a8801866592c8f861ba9778d
 SHA512 
bfe5fabbcbfa3d1c73ef6f79d100547de7e4121bcbd1f427423a127f0bc698bb8b6ade06c0e2eb1f529d1524e95fc36245b8be9d6e2c12b7e8d18b5f03ae6606
 DIST patron-0.11.1.gem 62976 BLAKE2B 
fc41865146876129eb824ccdd2351af8f0bb3bf099459becb87d0034291f864d576dda0c0ff017f0147eba88d7592dd5ce8ad3bb926db0d612e522a375a2c31a
 SHA512 
75a5705493f5496928279c751d396f9815bc47b4126ea8f9bcf9cabf7a40219b6f9cc2b12179d79848f616357552edcfe6b2b4312276bece432ed66a94ee8d63
+DIST patron-0.12.0.gem 64000 BLAKE2B 
1cdf258f4c49d5da6724a4ccb53ca81dd61f824727b5835a945799722db8aa9dd6878b903ea0cdebb2035a9f20f280539f624b9bf44e9a9da708687b163f8af0
 SHA512 
1826da20fe4aab21792d189466d4c6385d21388538c46e831f1852e0ea8f4007ddd0221e9c5a04eda67de9212d276bd494a98456f5befef42368925367d58798

diff --git a/dev-ruby/patron/patron-0.12.0.ebuild 
b/dev-ruby/patron/patron-0.12.0.ebuild
new file mode 100644
index 000..9d99ba9f6d3
--- /dev/null
+++ b/dev-ruby/patron/patron-0.12.0.ebuild
@@ -0,0 +1,44 @@
+# 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_TEST="rspec3"
+RUBY_FAKEGEM_RECIPE_DOC="rdoc"
+RUBY_FAKEGEM_EXTRADOC="README.md"
+
+inherit multilib ruby-fakegem
+
+DESCRIPTION="Patron is a Ruby HTTP client library based on libcurl"
+HOMEPAGE="https://toland.github.com/patron/;
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="~amd64 ~arm ~arm64 ~ppc ~ppc64 ~x86 ~amd64-linux ~x86-linux 
~ppc-macos ~x64-macos ~x86-macos ~x64-solaris ~x86-solaris"
+IUSE=""
+
+DEPEND+=" net-misc/curl"
+RDEPEND+=" net-misc/curl"
+
+all_ruby_prepare() {
+   # Fix Rakefile
+   sed -i -e 's:rake/rdoctask:rdoc/task:' \
+   -e 's/README.txt/README.md/' \
+   -e '/bundler/I s:^:#:' \
+   -e '/extensiontask/ s:^:#:' \
+   -e '/ExtensionTask/,/^end/ s:^:#:' \
+   Rakefile || die
+
+   # Avoid specs with failures. We were not running any specs before.
+   rm spec/session_ssl_spec.rb spec/session_spec.rb spec/response_spec.rb 
|| die
+}
+
+each_ruby_configure() {
+   ${RUBY} -Cext/patron extconf.rb || die
+}
+
+each_ruby_compile() {
+   emake -Cext/patron V=1
+   cp ext/patron/session_ext$(get_modname) lib/patron/ || die "Unable to 
cp shared object file"
+}



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

2018-01-30 Thread Hans de Graaff
commit: 7e264152d19853baf875bfe2477848bde9abc1be
Author: Hans de Graaff  gentoo  org>
AuthorDate: Wed Jan 31 06:00:07 2018 +
Commit: Hans de Graaff  gentoo  org>
CommitDate: Wed Jan 31 06:00:07 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7e264152

dev-ruby/patron: add 0.11.1

Package-Manager: Portage-2.3.19, Repoman-2.3.6

 dev-ruby/patron/Manifest |  1 +
 dev-ruby/patron/patron-0.11.1.ebuild | 44 
 2 files changed, 45 insertions(+)

diff --git a/dev-ruby/patron/Manifest b/dev-ruby/patron/Manifest
index 7d02beb7f66..9d674e419ea 100644
--- a/dev-ruby/patron/Manifest
+++ b/dev-ruby/patron/Manifest
@@ -1 +1,2 @@
 DIST patron-0.10.0.gem 59904 BLAKE2B 
f4ec8c81e4c0c13f3d3b5e0696955c01c8ff962980a8ed83ca7aaca722c422b0466a806af9b2c36f0183c16767f5b3f37dae4ae4a8801866592c8f861ba9778d
 SHA512 
bfe5fabbcbfa3d1c73ef6f79d100547de7e4121bcbd1f427423a127f0bc698bb8b6ade06c0e2eb1f529d1524e95fc36245b8be9d6e2c12b7e8d18b5f03ae6606
+DIST patron-0.11.1.gem 62976 BLAKE2B 
fc41865146876129eb824ccdd2351af8f0bb3bf099459becb87d0034291f864d576dda0c0ff017f0147eba88d7592dd5ce8ad3bb926db0d612e522a375a2c31a
 SHA512 
75a5705493f5496928279c751d396f9815bc47b4126ea8f9bcf9cabf7a40219b6f9cc2b12179d79848f616357552edcfe6b2b4312276bece432ed66a94ee8d63

diff --git a/dev-ruby/patron/patron-0.11.1.ebuild 
b/dev-ruby/patron/patron-0.11.1.ebuild
new file mode 100644
index 000..9d99ba9f6d3
--- /dev/null
+++ b/dev-ruby/patron/patron-0.11.1.ebuild
@@ -0,0 +1,44 @@
+# 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_TEST="rspec3"
+RUBY_FAKEGEM_RECIPE_DOC="rdoc"
+RUBY_FAKEGEM_EXTRADOC="README.md"
+
+inherit multilib ruby-fakegem
+
+DESCRIPTION="Patron is a Ruby HTTP client library based on libcurl"
+HOMEPAGE="https://toland.github.com/patron/;
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="~amd64 ~arm ~arm64 ~ppc ~ppc64 ~x86 ~amd64-linux ~x86-linux 
~ppc-macos ~x64-macos ~x86-macos ~x64-solaris ~x86-solaris"
+IUSE=""
+
+DEPEND+=" net-misc/curl"
+RDEPEND+=" net-misc/curl"
+
+all_ruby_prepare() {
+   # Fix Rakefile
+   sed -i -e 's:rake/rdoctask:rdoc/task:' \
+   -e 's/README.txt/README.md/' \
+   -e '/bundler/I s:^:#:' \
+   -e '/extensiontask/ s:^:#:' \
+   -e '/ExtensionTask/,/^end/ s:^:#:' \
+   Rakefile || die
+
+   # Avoid specs with failures. We were not running any specs before.
+   rm spec/session_ssl_spec.rb spec/session_spec.rb spec/response_spec.rb 
|| die
+}
+
+each_ruby_configure() {
+   ${RUBY} -Cext/patron extconf.rb || die
+}
+
+each_ruby_compile() {
+   emake -Cext/patron V=1
+   cp ext/patron/session_ext$(get_modname) lib/patron/ || die "Unable to 
cp shared object file"
+}



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

2018-01-22 Thread Hans de Graaff
commit: cd5e6cb8b7d6301cdd21beda23d8a1e9616b536a
Author: Hans de Graaff  gentoo  org>
AuthorDate: Mon Jan 22 19:11:58 2018 +
Commit: Hans de Graaff  gentoo  org>
CommitDate: Mon Jan 22 19:26:14 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=cd5e6cb8

dev-ruby/patron: cleanup

Package-Manager: Portage-2.3.19, Repoman-2.3.6

 dev-ruby/patron/Manifest|  1 -
 dev-ruby/patron/patron-0.4.18-r2.ebuild | 40 -
 2 files changed, 41 deletions(-)

diff --git a/dev-ruby/patron/Manifest b/dev-ruby/patron/Manifest
index d7dde995b69..7d02beb7f66 100644
--- a/dev-ruby/patron/Manifest
+++ b/dev-ruby/patron/Manifest
@@ -1,2 +1 @@
 DIST patron-0.10.0.gem 59904 BLAKE2B 
f4ec8c81e4c0c13f3d3b5e0696955c01c8ff962980a8ed83ca7aaca722c422b0466a806af9b2c36f0183c16767f5b3f37dae4ae4a8801866592c8f861ba9778d
 SHA512 
bfe5fabbcbfa3d1c73ef6f79d100547de7e4121bcbd1f427423a127f0bc698bb8b6ade06c0e2eb1f529d1524e95fc36245b8be9d6e2c12b7e8d18b5f03ae6606
-DIST patron-0.4.18.gem 35840 BLAKE2B 
a8018495aecbf5a158a3964147d6f12138d8288fe48a0162a15837a7e10e2b77bf7bbe91cb8b9b25f790ff15f3153647104e47afd4f33fd5c7b7277ed306b118
 SHA512 
0069f42378b0dfe03e6f86003b7927b099fd15be4d4b5eeba51958774380bf7a9ddbd8a83b30942d02e95b923f9ae0a1c1abf5bcda8ca8490671208e0ae8ecb4

diff --git a/dev-ruby/patron/patron-0.4.18-r2.ebuild 
b/dev-ruby/patron/patron-0.4.18-r2.ebuild
deleted file mode 100644
index 7657ca907a8..000
--- a/dev-ruby/patron/patron-0.4.18-r2.ebuild
+++ /dev/null
@@ -1,40 +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"
-
-RUBY_FAKEGEM_TASK_TEST="spec"
-RUBY_FAKEGEM_EXTRADOC="README.txt"
-
-inherit multilib ruby-fakegem
-
-DESCRIPTION="Patron is a Ruby HTTP client library based on libcurl"
-HOMEPAGE="https://toland.github.com/patron/;
-
-LICENSE="MIT"
-SLOT="0"
-KEYWORDS="amd64 ~ppc ~ppc64 x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos 
~x86-macos ~x64-solaris ~x86-solaris"
-IUSE=""
-
-#ruby_add_bdepend "test? ( dev-ruby/rspec:2 )"
-
-DEPEND+=" net-misc/curl"
-RDEPEND+=" net-misc/curl"
-
-# Tests require a live web service that is not included in the distribution.
-RESTRICT="test"
-
-all_ruby_prepare() {
-   # Fix rake deprecation
-   sed -i -e 's:rake/rdoctask:rdoc/task:' Rakefile || die
-}
-
-each_ruby_configure() {
-   ${RUBY} -Cext/patron extconf.rb || die
-}
-
-each_ruby_compile() {
-   emake -Cext/patron V=1
-   cp ext/patron/session_ext$(get_modname) lib/patron/ || die "Unable to 
cp shared object file"
-}



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

2018-01-21 Thread Thomas Deutschmann
commit: 470244012dab1164a3e8190d98c11ae19c1633fd
Author: Thomas Deutschmann  gentoo  org>
AuthorDate: Sun Jan 21 21:16:41 2018 +
Commit: Thomas Deutschmann  gentoo  org>
CommitDate: Sun Jan 21 21:17:30 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=47024401

dev-ruby/patron: x86 stable (bug #645206)

Package-Manager: Portage-2.3.19, Repoman-2.3.6

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

diff --git a/dev-ruby/patron/patron-0.10.0.ebuild 
b/dev-ruby/patron/patron-0.10.0.ebuild
index bc6943546a3..4e7e3ff39b0 100644
--- a/dev-ruby/patron/patron-0.10.0.ebuild
+++ b/dev-ruby/patron/patron-0.10.0.ebuild
@@ -15,7 +15,7 @@ HOMEPAGE="https://toland.github.com/patron/;
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="amd64 ~arm ~arm64 ~ppc ~ppc64 ~x86 ~amd64-linux ~x86-linux 
~ppc-macos ~x64-macos ~x86-macos ~x64-solaris ~x86-solaris"
+KEYWORDS="amd64 ~arm ~arm64 ~ppc ~ppc64 x86 ~amd64-linux ~x86-linux ~ppc-macos 
~x64-macos ~x86-macos ~x64-solaris ~x86-solaris"
 IUSE=""
 
 DEPEND+=" net-misc/curl"



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

2018-01-20 Thread Hans de Graaff
commit: b0b9b3d2cacfe046133954f3861e599bd99edd5b
Author: Hans de Graaff  gentoo  org>
AuthorDate: Sun Jan 21 06:42:49 2018 +
Commit: Hans de Graaff  gentoo  org>
CommitDate: Sun Jan 21 06:42:49 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b0b9b3d2

dev-ruby/patron: amd64 stable, bug 645206

Package-Manager: Portage-2.3.19, Repoman-2.3.6

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

diff --git a/dev-ruby/patron/patron-0.10.0.ebuild 
b/dev-ruby/patron/patron-0.10.0.ebuild
index f98916d6fc5..bc6943546a3 100644
--- a/dev-ruby/patron/patron-0.10.0.ebuild
+++ b/dev-ruby/patron/patron-0.10.0.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
@@ -15,7 +15,7 @@ HOMEPAGE="https://toland.github.com/patron/;
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="~amd64 ~arm ~arm64 ~ppc ~ppc64 ~x86 ~amd64-linux ~x86-linux 
~ppc-macos ~x64-macos ~x86-macos ~x64-solaris ~x86-solaris"
+KEYWORDS="amd64 ~arm ~arm64 ~ppc ~ppc64 ~x86 ~amd64-linux ~x86-linux 
~ppc-macos ~x64-macos ~x86-macos ~x64-solaris ~x86-solaris"
 IUSE=""
 
 DEPEND+=" net-misc/curl"



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

2018-01-20 Thread Hans de Graaff
commit: 39aa06ec49741a0d0d6ff92865ef059aa700a2a5
Author: Hans de Graaff  gentoo  org>
AuthorDate: Sat Jan 20 07:38:58 2018 +
Commit: Hans de Graaff  gentoo  org>
CommitDate: Sat Jan 20 10:18:52 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=39aa06ec

dev-ruby/patron: cleanup

Package-Manager: Portage-2.3.19, Repoman-2.3.6

 dev-ruby/patron/Manifest|  2 --
 dev-ruby/patron/patron-0.8.0.ebuild | 44 -
 dev-ruby/patron/patron-0.9.1.ebuild | 44 -
 3 files changed, 90 deletions(-)

diff --git a/dev-ruby/patron/Manifest b/dev-ruby/patron/Manifest
index 87e66e32551..d7dde995b69 100644
--- a/dev-ruby/patron/Manifest
+++ b/dev-ruby/patron/Manifest
@@ -1,4 +1,2 @@
 DIST patron-0.10.0.gem 59904 BLAKE2B 
f4ec8c81e4c0c13f3d3b5e0696955c01c8ff962980a8ed83ca7aaca722c422b0466a806af9b2c36f0183c16767f5b3f37dae4ae4a8801866592c8f861ba9778d
 SHA512 
bfe5fabbcbfa3d1c73ef6f79d100547de7e4121bcbd1f427423a127f0bc698bb8b6ade06c0e2eb1f529d1524e95fc36245b8be9d6e2c12b7e8d18b5f03ae6606
 DIST patron-0.4.18.gem 35840 BLAKE2B 
a8018495aecbf5a158a3964147d6f12138d8288fe48a0162a15837a7e10e2b77bf7bbe91cb8b9b25f790ff15f3153647104e47afd4f33fd5c7b7277ed306b118
 SHA512 
0069f42378b0dfe03e6f86003b7927b099fd15be4d4b5eeba51958774380bf7a9ddbd8a83b30942d02e95b923f9ae0a1c1abf5bcda8ca8490671208e0ae8ecb4
-DIST patron-0.8.0.gem 57856 BLAKE2B 
559baaf707c0494effe4efca49ce9b396e8bf9712f66f4ee78e4423a57525a1fbe629666117608d78586ee33f24c6e0ea00953025271bed8d85473c0a9b16c54
 SHA512 
43d6ae99aa3db3c5dabd2c3ec7fe5371a204d6e6ccec2c50b0cc126878b0db583e8a266b2b8e0f3ce7cdfde046bd36622e26d653e7ccae7b493ec924021b5f16
-DIST patron-0.9.1.gem 59904 BLAKE2B 
f55e2e4f7984b509515fc1ca64ea4f75161fbbe7f12fb42faa1a51435b5704be4fbc538a0692246fbf99a4f5737c2d8577cc7683dade85e65e76036c3b39709c
 SHA512 
649ee01517369d44009ccf5af4ac5f758893df84259b604be2f5015f9a9015a20a60eb2d6de9873ffa800c49a080e458d2a451222af4783261991c6c134785f7

diff --git a/dev-ruby/patron/patron-0.8.0.ebuild 
b/dev-ruby/patron/patron-0.8.0.ebuild
deleted file mode 100644
index 3e80646fee9..000
--- a/dev-ruby/patron/patron-0.8.0.ebuild
+++ /dev/null
@@ -1,44 +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 ruby24"
-
-RUBY_FAKEGEM_RECIPE_TEST="rspec3"
-RUBY_FAKEGEM_RECIPE_DOC="rdoc"
-RUBY_FAKEGEM_EXTRADOC="README.md"
-
-inherit multilib ruby-fakegem
-
-DESCRIPTION="Patron is a Ruby HTTP client library based on libcurl"
-HOMEPAGE="https://toland.github.com/patron/;
-
-LICENSE="MIT"
-SLOT="0"
-KEYWORDS="~amd64 ~arm ~arm64 ~ppc ~ppc64 ~x86 ~amd64-linux ~x86-linux 
~ppc-macos ~x64-macos ~x86-macos ~x64-solaris ~x86-solaris"
-IUSE=""
-
-DEPEND+=" net-misc/curl"
-RDEPEND+=" net-misc/curl"
-
-all_ruby_prepare() {
-   # Fix Rakefile
-   sed -i -e 's:rake/rdoctask:rdoc/task:' \
-   -e 's/README.txt/README.md/' \
-   -e '/bundler/I s:^:#:' \
-   -e '/extensiontask/ s:^:#:' \
-   -e '/ExtensionTask/,/^end/ s:^:#:' \
-   Rakefile || die
-
-   # Avoid specs with failures. We were not running any specs before.
-   rm spec/session_ssl_spec.rb spec/session_spec.rb spec/response_spec.rb 
|| die
-}
-
-each_ruby_configure() {
-   ${RUBY} -Cext/patron extconf.rb || die
-}
-
-each_ruby_compile() {
-   emake -Cext/patron V=1
-   cp ext/patron/session_ext$(get_modname) lib/patron/ || die "Unable to 
cp shared object file"
-}

diff --git a/dev-ruby/patron/patron-0.9.1.ebuild 
b/dev-ruby/patron/patron-0.9.1.ebuild
deleted file mode 100644
index aad086404b0..000
--- a/dev-ruby/patron/patron-0.9.1.ebuild
+++ /dev/null
@@ -1,44 +0,0 @@
-# Copyright 1999-2017 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-USE_RUBY="ruby21 ruby22 ruby23 ruby24"
-
-RUBY_FAKEGEM_RECIPE_TEST="rspec3"
-RUBY_FAKEGEM_RECIPE_DOC="rdoc"
-RUBY_FAKEGEM_EXTRADOC="README.md"
-
-inherit multilib ruby-fakegem
-
-DESCRIPTION="Patron is a Ruby HTTP client library based on libcurl"
-HOMEPAGE="https://toland.github.com/patron/;
-
-LICENSE="MIT"
-SLOT="0"
-KEYWORDS="~amd64 ~arm ~arm64 ~ppc ~ppc64 ~x86 ~amd64-linux ~x86-linux 
~ppc-macos ~x64-macos ~x86-macos ~x64-solaris ~x86-solaris"
-IUSE=""
-
-DEPEND+=" net-misc/curl"
-RDEPEND+=" net-misc/curl"
-
-all_ruby_prepare() {
-   # Fix Rakefile
-   sed -i -e 's:rake/rdoctask:rdoc/task:' \
-   -e 's/README.txt/README.md/' \
-   -e '/bundler/I s:^:#:' \
-   -e '/extensiontask/ s:^:#:' \
-   -e '/ExtensionTask/,/^end/ s:^:#:' \
-   Rakefile || die
-
-   # Avoid specs with failures. We were not running any specs before.
-   rm spec/session_ssl_spec.rb spec/session_spec.rb spec/response_spec.rb 
|| die
-}
-
-each_ruby_configure() {
-   ${RUBY} -Cext/patron extconf.rb || die

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

2017-10-04 Thread Hans de Graaff
commit: 8fb7c068612519e00e6e6737679c912972ed75d1
Author: Hans de Graaff  gentoo  org>
AuthorDate: Thu Oct  5 04:39:38 2017 +
Commit: Hans de Graaff  gentoo  org>
CommitDate: Thu Oct  5 04:45:16 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8fb7c068

dev-ruby/patron: add 0.10.0

Package-Manager: Portage-2.3.8, Repoman-2.3.3

 dev-ruby/patron/Manifest |  1 +
 dev-ruby/patron/patron-0.10.0.ebuild | 44 
 2 files changed, 45 insertions(+)

diff --git a/dev-ruby/patron/Manifest b/dev-ruby/patron/Manifest
index 57553db1fd8..30236a1a6c9 100644
--- a/dev-ruby/patron/Manifest
+++ b/dev-ruby/patron/Manifest
@@ -1,3 +1,4 @@
+DIST patron-0.10.0.gem 59904 SHA256 
caf53e63a1c0729d8a66d62cabb794e93d35bd8f3054a93856b5786fe26a2da2 SHA512 
bfe5fabbcbfa3d1c73ef6f79d100547de7e4121bcbd1f427423a127f0bc698bb8b6ade06c0e2eb1f529d1524e95fc36245b8be9d6e2c12b7e8d18b5f03ae6606
 WHIRLPOOL 
fcec13aefaf9cc8fbaa9de9367aea822444f8f973e6195a3248040dd99219e50af286d18b644d476c8dfede263d1e00a63cc20d1df114ab1f97bd406d069657b
 DIST patron-0.4.18.gem 35840 SHA256 
700ffba09ea854bc26fdde08998d8310ed59b0721098d4a7dc9a85845c71bd81 SHA512 
0069f42378b0dfe03e6f86003b7927b099fd15be4d4b5eeba51958774380bf7a9ddbd8a83b30942d02e95b923f9ae0a1c1abf5bcda8ca8490671208e0ae8ecb4
 WHIRLPOOL 
c709bcd65033288fc55d8d5c044c001afa8ac34d098466e017c5adc3a08314897e86f021a09f61abcc5153893152518dc1843ba7dfa79fc271067b708283b75c
 DIST patron-0.8.0.gem 57856 SHA256 
954db224e16421c78c55d190b2310c3201c68e72767908faead76a9c5a5159df SHA512 
43d6ae99aa3db3c5dabd2c3ec7fe5371a204d6e6ccec2c50b0cc126878b0db583e8a266b2b8e0f3ce7cdfde046bd36622e26d653e7ccae7b493ec924021b5f16
 WHIRLPOOL 
b176ced2464b52c3a1bd4412e8c5d0ca7c3c8ee6da2c7c59cf4442c04eeefd07cd6c1c76d93cb2c6ba63c51326d8e1c317e760bf7bbf7506f43ca923a105c04a
 DIST patron-0.9.1.gem 59904 SHA256 
6d5d2e89ab551d081dce572d2fbfed4e98ee7e7dccc144a69bcc17c7ad955ef3 SHA512 
649ee01517369d44009ccf5af4ac5f758893df84259b604be2f5015f9a9015a20a60eb2d6de9873ffa800c49a080e458d2a451222af4783261991c6c134785f7
 WHIRLPOOL 
c10234d797e3a52e49fb25a9be6c468066e3792bedd00fe14165b514e91712a9b19accc4a1d5c1741da2ba5cc6541f25e4f62ccab77248fcfd9bac5ec55daf19

diff --git a/dev-ruby/patron/patron-0.10.0.ebuild 
b/dev-ruby/patron/patron-0.10.0.ebuild
new file mode 100644
index 000..f98916d6fc5
--- /dev/null
+++ b/dev-ruby/patron/patron-0.10.0.ebuild
@@ -0,0 +1,44 @@
+# 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_RECIPE_TEST="rspec3"
+RUBY_FAKEGEM_RECIPE_DOC="rdoc"
+RUBY_FAKEGEM_EXTRADOC="README.md"
+
+inherit multilib ruby-fakegem
+
+DESCRIPTION="Patron is a Ruby HTTP client library based on libcurl"
+HOMEPAGE="https://toland.github.com/patron/;
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="~amd64 ~arm ~arm64 ~ppc ~ppc64 ~x86 ~amd64-linux ~x86-linux 
~ppc-macos ~x64-macos ~x86-macos ~x64-solaris ~x86-solaris"
+IUSE=""
+
+DEPEND+=" net-misc/curl"
+RDEPEND+=" net-misc/curl"
+
+all_ruby_prepare() {
+   # Fix Rakefile
+   sed -i -e 's:rake/rdoctask:rdoc/task:' \
+   -e 's/README.txt/README.md/' \
+   -e '/bundler/I s:^:#:' \
+   -e '/extensiontask/ s:^:#:' \
+   -e '/ExtensionTask/,/^end/ s:^:#:' \
+   Rakefile || die
+
+   # Avoid specs with failures. We were not running any specs before.
+   rm spec/session_ssl_spec.rb spec/session_spec.rb spec/response_spec.rb 
|| die
+}
+
+each_ruby_configure() {
+   ${RUBY} -Cext/patron extconf.rb || die
+}
+
+each_ruby_compile() {
+   emake -Cext/patron V=1
+   cp ext/patron/session_ext$(get_modname) lib/patron/ || die "Unable to 
cp shared object file"
+}



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

2017-08-26 Thread Hans de Graaff
commit: 0da841ec0103a73f7d1b024dbb6df1030b9a4745
Author: Hans de Graaff  gentoo  org>
AuthorDate: Sat Aug 26 06:03:54 2017 +
Commit: Hans de Graaff  gentoo  org>
CommitDate: Sat Aug 26 08:25:53 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0da841ec

dev-ruby/patron: cleanup

Package-Manager: Portage-2.3.6, Repoman-2.3.2

 dev-ruby/patron/Manifest   |  1 -
 dev-ruby/patron/patron-0.5.0-r1.ebuild | 43 --
 2 files changed, 44 deletions(-)

diff --git a/dev-ruby/patron/Manifest b/dev-ruby/patron/Manifest
index 7f063ff81a7..57553db1fd8 100644
--- a/dev-ruby/patron/Manifest
+++ b/dev-ruby/patron/Manifest
@@ -1,4 +1,3 @@
 DIST patron-0.4.18.gem 35840 SHA256 
700ffba09ea854bc26fdde08998d8310ed59b0721098d4a7dc9a85845c71bd81 SHA512 
0069f42378b0dfe03e6f86003b7927b099fd15be4d4b5eeba51958774380bf7a9ddbd8a83b30942d02e95b923f9ae0a1c1abf5bcda8ca8490671208e0ae8ecb4
 WHIRLPOOL 
c709bcd65033288fc55d8d5c044c001afa8ac34d098466e017c5adc3a08314897e86f021a09f61abcc5153893152518dc1843ba7dfa79fc271067b708283b75c
-DIST patron-0.5.0.gem 44032 SHA256 
6abf431b05f560afc8c479685bb3869797522290777a1ae8510ef5c8b3208c63 SHA512 
84c4cbb4ebeac3a9320915b35e4afefda5637f1bed96e83b8c2345dfd08ba02e07806b13a87c5067dd842ccddb67928c7f60889687676c0683d4e09373d8c2a7
 WHIRLPOOL 
df34adeb59ea45d5d84a6ad1aef3e0fbf4781720443be2ba37450ddf2e51ac3b2c969bb2798fe78bb476cde79f4ccc3d3c1f6511a20dc2deda5a750ec9d03139
 DIST patron-0.8.0.gem 57856 SHA256 
954db224e16421c78c55d190b2310c3201c68e72767908faead76a9c5a5159df SHA512 
43d6ae99aa3db3c5dabd2c3ec7fe5371a204d6e6ccec2c50b0cc126878b0db583e8a266b2b8e0f3ce7cdfde046bd36622e26d653e7ccae7b493ec924021b5f16
 WHIRLPOOL 
b176ced2464b52c3a1bd4412e8c5d0ca7c3c8ee6da2c7c59cf4442c04eeefd07cd6c1c76d93cb2c6ba63c51326d8e1c317e760bf7bbf7506f43ca923a105c04a
 DIST patron-0.9.1.gem 59904 SHA256 
6d5d2e89ab551d081dce572d2fbfed4e98ee7e7dccc144a69bcc17c7ad955ef3 SHA512 
649ee01517369d44009ccf5af4ac5f758893df84259b604be2f5015f9a9015a20a60eb2d6de9873ffa800c49a080e458d2a451222af4783261991c6c134785f7
 WHIRLPOOL 
c10234d797e3a52e49fb25a9be6c468066e3792bedd00fe14165b514e91712a9b19accc4a1d5c1741da2ba5cc6541f25e4f62ccab77248fcfd9bac5ec55daf19

diff --git a/dev-ruby/patron/patron-0.5.0-r1.ebuild 
b/dev-ruby/patron/patron-0.5.0-r1.ebuild
deleted file mode 100644
index 558569e162d..000
--- a/dev-ruby/patron/patron-0.5.0-r1.ebuild
+++ /dev/null
@@ -1,43 +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"
-
-RUBY_FAKEGEM_RECIPE_TEST="rspec3"
-RUBY_FAKEGEM_EXTRADOC="README.md"
-
-inherit multilib ruby-fakegem
-
-DESCRIPTION="Patron is a Ruby HTTP client library based on libcurl"
-HOMEPAGE="https://toland.github.com/patron/;
-
-LICENSE="MIT"
-SLOT="0"
-KEYWORDS="~amd64 ~arm ~ppc ~ppc64 ~x86 ~amd64-linux ~x86-linux ~ppc-macos 
~x64-macos ~x86-macos ~x64-solaris ~x86-solaris"
-IUSE=""
-
-DEPEND+=" net-misc/curl"
-RDEPEND+=" net-misc/curl"
-
-all_ruby_prepare() {
-   # Fix Rakefile
-   sed -i -e 's:rake/rdoctask:rdoc/task:' \
-   -e 's/README.txt/README.md/' \
-   -e '/bundler/I s:^:#:' \
-   -e '/extensiontask/ s:^:#:' \
-   -e '/ExtensionTask/,/^end/ s:^:#:' \
-   Rakefile || die
-
-   # Avoid specs with failures. We were not running any specs before.
-   rm spec/session_ssl_spec.rb spec/session_spec.rb spec/response_spec.rb 
|| die
-}
-
-each_ruby_configure() {
-   ${RUBY} -Cext/patron extconf.rb || die
-}
-
-each_ruby_compile() {
-   emake -Cext/patron V=1
-   cp ext/patron/session_ext$(get_modname) lib/patron/ || die "Unable to 
cp shared object file"
-}



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

2017-07-19 Thread Hans de Graaff
commit: 3add991ac754831e672ac4acfd5cf53820461442
Author: Hans de Graaff  gentoo  org>
AuthorDate: Wed Jul 19 05:22:45 2017 +
Commit: Hans de Graaff  gentoo  org>
CommitDate: Wed Jul 19 05:22:45 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3add991a

dev-ruby/patron: add 0.9.1

Package-Manager: Portage-2.3.6, Repoman-2.3.2

 dev-ruby/patron/Manifest|  1 +
 dev-ruby/patron/patron-0.9.1.ebuild | 44 +
 2 files changed, 45 insertions(+)

diff --git a/dev-ruby/patron/Manifest b/dev-ruby/patron/Manifest
index c9ccbd3d312..7f063ff81a7 100644
--- a/dev-ruby/patron/Manifest
+++ b/dev-ruby/patron/Manifest
@@ -1,3 +1,4 @@
 DIST patron-0.4.18.gem 35840 SHA256 
700ffba09ea854bc26fdde08998d8310ed59b0721098d4a7dc9a85845c71bd81 SHA512 
0069f42378b0dfe03e6f86003b7927b099fd15be4d4b5eeba51958774380bf7a9ddbd8a83b30942d02e95b923f9ae0a1c1abf5bcda8ca8490671208e0ae8ecb4
 WHIRLPOOL 
c709bcd65033288fc55d8d5c044c001afa8ac34d098466e017c5adc3a08314897e86f021a09f61abcc5153893152518dc1843ba7dfa79fc271067b708283b75c
 DIST patron-0.5.0.gem 44032 SHA256 
6abf431b05f560afc8c479685bb3869797522290777a1ae8510ef5c8b3208c63 SHA512 
84c4cbb4ebeac3a9320915b35e4afefda5637f1bed96e83b8c2345dfd08ba02e07806b13a87c5067dd842ccddb67928c7f60889687676c0683d4e09373d8c2a7
 WHIRLPOOL 
df34adeb59ea45d5d84a6ad1aef3e0fbf4781720443be2ba37450ddf2e51ac3b2c969bb2798fe78bb476cde79f4ccc3d3c1f6511a20dc2deda5a750ec9d03139
 DIST patron-0.8.0.gem 57856 SHA256 
954db224e16421c78c55d190b2310c3201c68e72767908faead76a9c5a5159df SHA512 
43d6ae99aa3db3c5dabd2c3ec7fe5371a204d6e6ccec2c50b0cc126878b0db583e8a266b2b8e0f3ce7cdfde046bd36622e26d653e7ccae7b493ec924021b5f16
 WHIRLPOOL 
b176ced2464b52c3a1bd4412e8c5d0ca7c3c8ee6da2c7c59cf4442c04eeefd07cd6c1c76d93cb2c6ba63c51326d8e1c317e760bf7bbf7506f43ca923a105c04a
+DIST patron-0.9.1.gem 59904 SHA256 
6d5d2e89ab551d081dce572d2fbfed4e98ee7e7dccc144a69bcc17c7ad955ef3 SHA512 
649ee01517369d44009ccf5af4ac5f758893df84259b604be2f5015f9a9015a20a60eb2d6de9873ffa800c49a080e458d2a451222af4783261991c6c134785f7
 WHIRLPOOL 
c10234d797e3a52e49fb25a9be6c468066e3792bedd00fe14165b514e91712a9b19accc4a1d5c1741da2ba5cc6541f25e4f62ccab77248fcfd9bac5ec55daf19

diff --git a/dev-ruby/patron/patron-0.9.1.ebuild 
b/dev-ruby/patron/patron-0.9.1.ebuild
new file mode 100644
index 000..aad086404b0
--- /dev/null
+++ b/dev-ruby/patron/patron-0.9.1.ebuild
@@ -0,0 +1,44 @@
+# Copyright 1999-2017 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+USE_RUBY="ruby21 ruby22 ruby23 ruby24"
+
+RUBY_FAKEGEM_RECIPE_TEST="rspec3"
+RUBY_FAKEGEM_RECIPE_DOC="rdoc"
+RUBY_FAKEGEM_EXTRADOC="README.md"
+
+inherit multilib ruby-fakegem
+
+DESCRIPTION="Patron is a Ruby HTTP client library based on libcurl"
+HOMEPAGE="https://toland.github.com/patron/;
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="~amd64 ~arm ~arm64 ~ppc ~ppc64 ~x86 ~amd64-linux ~x86-linux 
~ppc-macos ~x64-macos ~x86-macos ~x64-solaris ~x86-solaris"
+IUSE=""
+
+DEPEND+=" net-misc/curl"
+RDEPEND+=" net-misc/curl"
+
+all_ruby_prepare() {
+   # Fix Rakefile
+   sed -i -e 's:rake/rdoctask:rdoc/task:' \
+   -e 's/README.txt/README.md/' \
+   -e '/bundler/I s:^:#:' \
+   -e '/extensiontask/ s:^:#:' \
+   -e '/ExtensionTask/,/^end/ s:^:#:' \
+   Rakefile || die
+
+   # Avoid specs with failures. We were not running any specs before.
+   rm spec/session_ssl_spec.rb spec/session_spec.rb spec/response_spec.rb 
|| die
+}
+
+each_ruby_configure() {
+   ${RUBY} -Cext/patron extconf.rb || die
+}
+
+each_ruby_compile() {
+   emake -Cext/patron V=1
+   cp ext/patron/session_ext$(get_modname) lib/patron/ || die "Unable to 
cp shared object file"
+}



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

2017-07-19 Thread Hans de Graaff
commit: 4c630178325f064caf26ce79865fdadfec72ea29
Author: Hans de Graaff  gentoo  org>
AuthorDate: Wed Jul 19 05:19:12 2017 +
Commit: Hans de Graaff  gentoo  org>
CommitDate: Wed Jul 19 05:19:12 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4c630178

dev-ruby/patron: move ~ppc keyword forward

Package-Manager: Portage-2.3.6, Repoman-2.3.2

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

diff --git a/dev-ruby/patron/patron-0.8.0.ebuild 
b/dev-ruby/patron/patron-0.8.0.ebuild
index f3351b157ed..3e80646fee9 100644
--- a/dev-ruby/patron/patron-0.8.0.ebuild
+++ b/dev-ruby/patron/patron-0.8.0.ebuild
@@ -15,7 +15,7 @@ HOMEPAGE="https://toland.github.com/patron/;
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="~amd64 ~arm ~arm64 ~ppc64 ~x86 ~amd64-linux ~x86-linux ~ppc-macos 
~x64-macos ~x86-macos ~x64-solaris ~x86-solaris"
+KEYWORDS="~amd64 ~arm ~arm64 ~ppc ~ppc64 ~x86 ~amd64-linux ~x86-linux 
~ppc-macos ~x64-macos ~x86-macos ~x64-solaris ~x86-solaris"
 IUSE=""
 
 DEPEND+=" net-misc/curl"



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

2017-05-07 Thread Hans de Graaff
commit: a74f0f5b4d7a5ab17dc54749a04503a557d91cf0
Author: Hans de Graaff  gentoo  org>
AuthorDate: Mon May  8 05:26:10 2017 +
Commit: Hans de Graaff  gentoo  org>
CommitDate: Mon May  8 05:26:10 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a74f0f5b

dev-ruby/patron: cleanup

Package-Manager: Portage-2.3.5, Repoman-2.3.1

 dev-ruby/patron/Manifest |  4 
 dev-ruby/patron/patron-0.4.20.ebuild | 43 ---
 dev-ruby/patron/patron-0.5.1.ebuild  | 43 ---
 dev-ruby/patron/patron-0.6.5.ebuild  | 44 
 dev-ruby/patron/patron-0.7.1.ebuild  | 44 
 5 files changed, 178 deletions(-)

diff --git a/dev-ruby/patron/Manifest b/dev-ruby/patron/Manifest
index 3fe134b1d25..c9ccbd3d312 100644
--- a/dev-ruby/patron/Manifest
+++ b/dev-ruby/patron/Manifest
@@ -1,7 +1,3 @@
 DIST patron-0.4.18.gem 35840 SHA256 
700ffba09ea854bc26fdde08998d8310ed59b0721098d4a7dc9a85845c71bd81 SHA512 
0069f42378b0dfe03e6f86003b7927b099fd15be4d4b5eeba51958774380bf7a9ddbd8a83b30942d02e95b923f9ae0a1c1abf5bcda8ca8490671208e0ae8ecb4
 WHIRLPOOL 
c709bcd65033288fc55d8d5c044c001afa8ac34d098466e017c5adc3a08314897e86f021a09f61abcc5153893152518dc1843ba7dfa79fc271067b708283b75c
-DIST patron-0.4.20.gem 42496 SHA256 
eb1782f38f280a9975fc97435920c29fd10a0c2e05b6f7a7549652ffbf92af71 SHA512 
78cb97e7d7a35fb97ed7da4c767937a543c1f979c7dd1dff0d3b055024b37aa50238163af4680ba464a28523c0f5879f0d6e372276774dfdac726a5493c202e5
 WHIRLPOOL 
a4158ac99edd2d302e59420be6d75b368e9d9d04ecd9b5051a53eb22639f3f32fa541061f28444cb716deab906c3055ddbc26c4f5289fa0c00c134517ac9ffdd
 DIST patron-0.5.0.gem 44032 SHA256 
6abf431b05f560afc8c479685bb3869797522290777a1ae8510ef5c8b3208c63 SHA512 
84c4cbb4ebeac3a9320915b35e4afefda5637f1bed96e83b8c2345dfd08ba02e07806b13a87c5067dd842ccddb67928c7f60889687676c0683d4e09373d8c2a7
 WHIRLPOOL 
df34adeb59ea45d5d84a6ad1aef3e0fbf4781720443be2ba37450ddf2e51ac3b2c969bb2798fe78bb476cde79f4ccc3d3c1f6511a20dc2deda5a750ec9d03139
-DIST patron-0.5.1.gem 45056 SHA256 
45776b937ee788343ce4d24817460138989b1a65ad9d8d87130cf8804133444e SHA512 
d47549ae1712f25e0d15bc2e1e32de6ad3084da4f0149013c4cf50dd92ccb7c01024831ef6df7c4acb78ed3923cde95e3f36a5ef8430d3f103ebb7f5906dd0fd
 WHIRLPOOL 
b766263104b67ad1ba9009e101ac027e509ed017f0b93461d8f4c9f51b8b5586dc4da080b1685b72bad837bf690ea02f709fab7a7611f7450ea0e8994fca
-DIST patron-0.6.5.gem 54272 SHA256 
eb7ec133b4fedb240543fa96061ee52fa9ede2bcf6351d13b5cc057d6fec6935 SHA512 
ffb2681b7ca062f78931d288314e563f265c9e584b3cb82af16529e8c9b578cca4d57c6e2afc506562cc946def736814b1da13a2630273551e7bf179786516cc
 WHIRLPOOL 
cda9b38b74efc0593de4c89dc4efc91ac1431b12293cd83fee32cd7aff1c85c1fcdc7b8c16f54fb0aa4dacc3901cbb37b3dfa2a9d4dd8b4f1011d1c55965efcd
-DIST patron-0.7.1.gem 54784 SHA256 
aa75525e6f0064d82aacf86241f8ff381c5d8116d4199113d042b1ac8ff4b91d SHA512 
bb95c98d28cc09157c05d3f39694df2b165cb72a46d54d41ca03eca992b94f579a62c081692bf81685852d46668c363e975726142622932d74fd73521414556a
 WHIRLPOOL 
f4575d4315c76425963194105b6be2b65ad498f457167312517f70f7497a0a87274466e717cc6bf1dbac9f35796ff7c484f5a147f6201347e202d5ad5db34290
 DIST patron-0.8.0.gem 57856 SHA256 
954db224e16421c78c55d190b2310c3201c68e72767908faead76a9c5a5159df SHA512 
43d6ae99aa3db3c5dabd2c3ec7fe5371a204d6e6ccec2c50b0cc126878b0db583e8a266b2b8e0f3ce7cdfde046bd36622e26d653e7ccae7b493ec924021b5f16
 WHIRLPOOL 
b176ced2464b52c3a1bd4412e8c5d0ca7c3c8ee6da2c7c59cf4442c04eeefd07cd6c1c76d93cb2c6ba63c51326d8e1c317e760bf7bbf7506f43ca923a105c04a

diff --git a/dev-ruby/patron/patron-0.4.20.ebuild 
b/dev-ruby/patron/patron-0.4.20.ebuild
deleted file mode 100644
index 2b09b1df207..000
--- a/dev-ruby/patron/patron-0.4.20.ebuild
+++ /dev/null
@@ -1,43 +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"
-
-RUBY_FAKEGEM_RECIPE_TEST="rspec3"
-RUBY_FAKEGEM_EXTRADOC="README.md"
-
-inherit multilib ruby-fakegem
-
-DESCRIPTION="Patron is a Ruby HTTP client library based on libcurl"
-HOMEPAGE="https://toland.github.com/patron/;
-
-LICENSE="MIT"
-SLOT="0"
-KEYWORDS="~amd64 ~ppc ~ppc64 ~x86 ~amd64-linux ~x86-linux ~ppc-macos 
~x64-macos ~x86-macos ~x64-solaris ~x86-solaris"
-IUSE=""
-
-DEPEND+=" net-misc/curl"
-RDEPEND+=" net-misc/curl"
-
-all_ruby_prepare() {
-   # Fix Rakefile
-   sed -i -e 's:rake/rdoctask:rdoc/task:' \
-   -e 's/README.txt/README.md/' \
-   -e '/bundler/I s:^:#:' \
-   -e '/extensiontask/ s:^:#:' \
-   -e '/ExtensionTask/,/^end/ s:^:#:' \
-   Rakefile || die
-
-   # Avoid specs with failures. We were not running any specs before.
-   rm spec/session_ssl_spec.rb spec/session_spec.rb spec/response_spec.rb 
|| die
-}
-
-each_ruby_configure() {
-   ${RUBY} -Cext/patron extconf.rb || die
-}
-

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

2017-05-07 Thread Hans de Graaff
commit: ab7ae4cff7aaf276c443341be8df9674615cf5d2
Author: Hans de Graaff  gentoo  org>
AuthorDate: Mon May  8 05:25:06 2017 +
Commit: Hans de Graaff  gentoo  org>
CommitDate: Mon May  8 05:25:06 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ab7ae4cf

dev-ruby/patron: add ruby24

Package-Manager: Portage-2.3.5, Repoman-2.3.1

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

diff --git a/dev-ruby/patron/patron-0.8.0.ebuild 
b/dev-ruby/patron/patron-0.8.0.ebuild
index 6e3f11d58ab..f5ae5699bc4 100644
--- a/dev-ruby/patron/patron-0.8.0.ebuild
+++ b/dev-ruby/patron/patron-0.8.0.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 ruby22 ruby23"
+USE_RUBY="ruby21 ruby22 ruby23 ruby24"
 
 RUBY_FAKEGEM_RECIPE_TEST="rspec3"
 RUBY_FAKEGEM_RECIPE_DOC="rdoc"



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

2016-09-06 Thread Hans de Graaff
commit: 5ac28ca2b70a3757ee47b0beb3f4bbf5660a493e
Author: Hans de Graaff  gentoo  org>
AuthorDate: Wed Sep  7 04:47:42 2016 +
Commit: Hans de Graaff  gentoo  org>
CommitDate: Wed Sep  7 04:47:42 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5ac28ca2

dev-ruby/patron: add 0.8.0

Package-Manager: portage-2.2.28

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

diff --git a/dev-ruby/patron/Manifest b/dev-ruby/patron/Manifest
index 879977f..3fe134b 100644
--- a/dev-ruby/patron/Manifest
+++ b/dev-ruby/patron/Manifest
@@ -4,3 +4,4 @@ DIST patron-0.5.0.gem 44032 SHA256 
6abf431b05f560afc8c479685bb3869797522290777a1
 DIST patron-0.5.1.gem 45056 SHA256 
45776b937ee788343ce4d24817460138989b1a65ad9d8d87130cf8804133444e SHA512 
d47549ae1712f25e0d15bc2e1e32de6ad3084da4f0149013c4cf50dd92ccb7c01024831ef6df7c4acb78ed3923cde95e3f36a5ef8430d3f103ebb7f5906dd0fd
 WHIRLPOOL 
b766263104b67ad1ba9009e101ac027e509ed017f0b93461d8f4c9f51b8b5586dc4da080b1685b72bad837bf690ea02f709fab7a7611f7450ea0e8994fca
 DIST patron-0.6.5.gem 54272 SHA256 
eb7ec133b4fedb240543fa96061ee52fa9ede2bcf6351d13b5cc057d6fec6935 SHA512 
ffb2681b7ca062f78931d288314e563f265c9e584b3cb82af16529e8c9b578cca4d57c6e2afc506562cc946def736814b1da13a2630273551e7bf179786516cc
 WHIRLPOOL 
cda9b38b74efc0593de4c89dc4efc91ac1431b12293cd83fee32cd7aff1c85c1fcdc7b8c16f54fb0aa4dacc3901cbb37b3dfa2a9d4dd8b4f1011d1c55965efcd
 DIST patron-0.7.1.gem 54784 SHA256 
aa75525e6f0064d82aacf86241f8ff381c5d8116d4199113d042b1ac8ff4b91d SHA512 
bb95c98d28cc09157c05d3f39694df2b165cb72a46d54d41ca03eca992b94f579a62c081692bf81685852d46668c363e975726142622932d74fd73521414556a
 WHIRLPOOL 
f4575d4315c76425963194105b6be2b65ad498f457167312517f70f7497a0a87274466e717cc6bf1dbac9f35796ff7c484f5a147f6201347e202d5ad5db34290
+DIST patron-0.8.0.gem 57856 SHA256 
954db224e16421c78c55d190b2310c3201c68e72767908faead76a9c5a5159df SHA512 
43d6ae99aa3db3c5dabd2c3ec7fe5371a204d6e6ccec2c50b0cc126878b0db583e8a266b2b8e0f3ce7cdfde046bd36622e26d653e7ccae7b493ec924021b5f16
 WHIRLPOOL 
b176ced2464b52c3a1bd4412e8c5d0ca7c3c8ee6da2c7c59cf4442c04eeefd07cd6c1c76d93cb2c6ba63c51326d8e1c317e760bf7bbf7506f43ca923a105c04a

diff --git a/dev-ruby/patron/patron-0.8.0.ebuild 
b/dev-ruby/patron/patron-0.8.0.ebuild
new file mode 100644
index ..14a12a4
--- /dev/null
+++ b/dev-ruby/patron/patron-0.8.0.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 ruby23"
+
+RUBY_FAKEGEM_RECIPE_TEST="rspec3"
+RUBY_FAKEGEM_RECIPE_DOC="rdoc"
+RUBY_FAKEGEM_EXTRADOC="README.md"
+
+inherit multilib ruby-fakegem
+
+DESCRIPTION="Patron is a Ruby HTTP client library based on libcurl"
+HOMEPAGE="https://toland.github.com/patron/;
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="~amd64 ~arm ~ppc64 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos 
~x86-macos ~x64-solaris ~x86-solaris"
+IUSE=""
+
+DEPEND+=" net-misc/curl"
+RDEPEND+=" net-misc/curl"
+
+all_ruby_prepare() {
+   # Fix Rakefile
+   sed -i -e 's:rake/rdoctask:rdoc/task:' \
+   -e 's/README.txt/README.md/' \
+   -e '/bundler/I s:^:#:' \
+   -e '/extensiontask/ s:^:#:' \
+   -e '/ExtensionTask/,/^end/ s:^:#:' \
+   Rakefile || die
+
+   # Avoid specs with failures. We were not running any specs before.
+   rm spec/session_ssl_spec.rb spec/session_spec.rb spec/response_spec.rb 
|| die
+}
+
+each_ruby_configure() {
+   ${RUBY} -Cext/patron extconf.rb || die
+}
+
+each_ruby_compile() {
+   emake -Cext/patron V=1
+   cp ext/patron/session_ext$(get_modname) lib/patron/ || die "Unable to 
cp shared object file"
+}



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

2016-09-02 Thread Hans de Graaff
commit: 9c491a97f256a6d997c23f0e1e6af56378a31dd6
Author: Hans de Graaff  gentoo  org>
AuthorDate: Fri Sep  2 06:10:36 2016 +
Commit: Hans de Graaff  gentoo  org>
CommitDate: Fri Sep  2 06:10:36 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9c491a97

dev-ruby/patron: cleanup

Package-Manager: portage-2.2.28

 dev-ruby/patron/Manifest|  3 ---
 dev-ruby/patron/patron-0.6.0.ebuild | 44 
 dev-ruby/patron/patron-0.6.3.ebuild | 45 -
 dev-ruby/patron/patron-0.6.4.ebuild | 45 -
 4 files changed, 137 deletions(-)

diff --git a/dev-ruby/patron/Manifest b/dev-ruby/patron/Manifest
index e2a96cf..0329866 100644
--- a/dev-ruby/patron/Manifest
+++ b/dev-ruby/patron/Manifest
@@ -2,7 +2,4 @@ DIST patron-0.4.18.gem 35840 SHA256 
700ffba09ea854bc26fdde08998d8310ed59b0721098
 DIST patron-0.4.20.gem 42496 SHA256 
eb1782f38f280a9975fc97435920c29fd10a0c2e05b6f7a7549652ffbf92af71 SHA512 
78cb97e7d7a35fb97ed7da4c767937a543c1f979c7dd1dff0d3b055024b37aa50238163af4680ba464a28523c0f5879f0d6e372276774dfdac726a5493c202e5
 WHIRLPOOL 
a4158ac99edd2d302e59420be6d75b368e9d9d04ecd9b5051a53eb22639f3f32fa541061f28444cb716deab906c3055ddbc26c4f5289fa0c00c134517ac9ffdd
 DIST patron-0.5.0.gem 44032 SHA256 
6abf431b05f560afc8c479685bb3869797522290777a1ae8510ef5c8b3208c63 SHA512 
84c4cbb4ebeac3a9320915b35e4afefda5637f1bed96e83b8c2345dfd08ba02e07806b13a87c5067dd842ccddb67928c7f60889687676c0683d4e09373d8c2a7
 WHIRLPOOL 
df34adeb59ea45d5d84a6ad1aef3e0fbf4781720443be2ba37450ddf2e51ac3b2c969bb2798fe78bb476cde79f4ccc3d3c1f6511a20dc2deda5a750ec9d03139
 DIST patron-0.5.1.gem 45056 SHA256 
45776b937ee788343ce4d24817460138989b1a65ad9d8d87130cf8804133444e SHA512 
d47549ae1712f25e0d15bc2e1e32de6ad3084da4f0149013c4cf50dd92ccb7c01024831ef6df7c4acb78ed3923cde95e3f36a5ef8430d3f103ebb7f5906dd0fd
 WHIRLPOOL 
b766263104b67ad1ba9009e101ac027e509ed017f0b93461d8f4c9f51b8b5586dc4da080b1685b72bad837bf690ea02f709fab7a7611f7450ea0e8994fca
-DIST patron-0.6.0.gem 45568 SHA256 
af7c51bd680ad0965ff20d5742579f3f985b4ed8e3a6ecd9b2f4976753ee1eb1 SHA512 
5dba0cd4945389b50b747ebc0797b4c1c2d9a1adae6565d9228a72700b15720f9252b4e78c6e52c66159139d0ec621bb3f343e5856bdde05686e019e45ddb30a
 WHIRLPOOL 
c8fcf8c8e966f52c739193f6e34eb674f36cf2fb000245ff08be4f2f22306cc9c09a225b584bf851528e1987540b306173a035c26f5d4b6b34a2d16bd50dc918
-DIST patron-0.6.3.gem 49664 SHA256 
f62786700b3f4cc6a3285fdfbe7eb6c5d0c7847de9df30fbb2fa0acbc356cdea SHA512 
ab1d48f7a19265c3dce786da872cb7dcaf181a9f942bc23428a2fbe26c8405a23fe6f0380709bcfe8062dd51e71a22849452df2322130f40306c5042642ab117
 WHIRLPOOL 
6add22c07987eacbe016b110eec524889665d81e6505d654b72615c967cb1425d1ada78cf09df402e6478107c043467f48e19d5bcb1f5310622b960e10e6ae93
-DIST patron-0.6.4.gem 53760 SHA256 
32ff389a5f1b805d0b4ae99c27d9b3bed5b0a8054f1aab67611a56d552aa731e SHA512 
db8a5068ea7a1d227dba33c54b5a015014015832b1378f1f89a6b02e2effe033bc39ebc94d865e5e46748ac0ce2c561e7c4082ee9cbf648eb4096e8e951c540e
 WHIRLPOOL 
4592df82f082395aaf9f8d173b44614202dc2bedb5eed2c98b0dcf2e11f1d5086bbfa8564817d747bed1a839fff87eeeafbadf26661a9d3ca2696d387f81066e
 DIST patron-0.6.5.gem 54272 SHA256 
eb7ec133b4fedb240543fa96061ee52fa9ede2bcf6351d13b5cc057d6fec6935 SHA512 
ffb2681b7ca062f78931d288314e563f265c9e584b3cb82af16529e8c9b578cca4d57c6e2afc506562cc946def736814b1da13a2630273551e7bf179786516cc
 WHIRLPOOL 
cda9b38b74efc0593de4c89dc4efc91ac1431b12293cd83fee32cd7aff1c85c1fcdc7b8c16f54fb0aa4dacc3901cbb37b3dfa2a9d4dd8b4f1011d1c55965efcd

diff --git a/dev-ruby/patron/patron-0.6.0.ebuild 
b/dev-ruby/patron/patron-0.6.0.ebuild
deleted file mode 100644
index 623eee2..
--- a/dev-ruby/patron/patron-0.6.0.ebuild
+++ /dev/null
@@ -1,44 +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 ruby23"
-
-RUBY_FAKEGEM_RECIPE_TEST="rspec3"
-RUBY_FAKEGEM_EXTRADOC="README.md"
-
-inherit multilib ruby-fakegem
-
-DESCRIPTION="Patron is a Ruby HTTP client library based on libcurl"
-HOMEPAGE="https://toland.github.com/patron/;
-
-LICENSE="MIT"
-SLOT="0"
-KEYWORDS="~amd64 ~arm ~ppc64 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos 
~x86-macos ~x64-solaris ~x86-solaris"
-IUSE=""
-
-DEPEND+=" net-misc/curl"
-RDEPEND+=" net-misc/curl"
-
-all_ruby_prepare() {
-   # Fix Rakefile
-   sed -i -e 's:rake/rdoctask:rdoc/task:' \
-   -e 's/README.txt/README.md/' \
-   -e '/bundler/I s:^:#:' \
-   -e '/extensiontask/ s:^:#:' \
-   -e '/ExtensionTask/,/^end/ s:^:#:' \
-   Rakefile || die
-
-   # Avoid specs with failures. We were not running any specs before.
-   rm spec/session_ssl_spec.rb spec/session_spec.rb spec/response_spec.rb 
|| die
-}
-
-each_ruby_configure() {
-   ${RUBY} -Cext/patron extconf.rb || die
-}
-
-each_ruby_compile() {
-   emake 

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

2016-09-02 Thread Hans de Graaff
commit: 114beb9d6d5b452e77ff3fdea9b1d66c8d61b428
Author: Hans de Graaff  gentoo  org>
AuthorDate: Fri Sep  2 06:14:21 2016 +
Commit: Hans de Graaff  gentoo  org>
CommitDate: Fri Sep  2 06:14:21 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=114beb9d

dev-ruby/patron: add 0.7.1

Package-Manager: portage-2.2.28

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

diff --git a/dev-ruby/patron/Manifest b/dev-ruby/patron/Manifest
index 0329866..879977f 100644
--- a/dev-ruby/patron/Manifest
+++ b/dev-ruby/patron/Manifest
@@ -3,3 +3,4 @@ DIST patron-0.4.20.gem 42496 SHA256 
eb1782f38f280a9975fc97435920c29fd10a0c2e05b6
 DIST patron-0.5.0.gem 44032 SHA256 
6abf431b05f560afc8c479685bb3869797522290777a1ae8510ef5c8b3208c63 SHA512 
84c4cbb4ebeac3a9320915b35e4afefda5637f1bed96e83b8c2345dfd08ba02e07806b13a87c5067dd842ccddb67928c7f60889687676c0683d4e09373d8c2a7
 WHIRLPOOL 
df34adeb59ea45d5d84a6ad1aef3e0fbf4781720443be2ba37450ddf2e51ac3b2c969bb2798fe78bb476cde79f4ccc3d3c1f6511a20dc2deda5a750ec9d03139
 DIST patron-0.5.1.gem 45056 SHA256 
45776b937ee788343ce4d24817460138989b1a65ad9d8d87130cf8804133444e SHA512 
d47549ae1712f25e0d15bc2e1e32de6ad3084da4f0149013c4cf50dd92ccb7c01024831ef6df7c4acb78ed3923cde95e3f36a5ef8430d3f103ebb7f5906dd0fd
 WHIRLPOOL 
b766263104b67ad1ba9009e101ac027e509ed017f0b93461d8f4c9f51b8b5586dc4da080b1685b72bad837bf690ea02f709fab7a7611f7450ea0e8994fca
 DIST patron-0.6.5.gem 54272 SHA256 
eb7ec133b4fedb240543fa96061ee52fa9ede2bcf6351d13b5cc057d6fec6935 SHA512 
ffb2681b7ca062f78931d288314e563f265c9e584b3cb82af16529e8c9b578cca4d57c6e2afc506562cc946def736814b1da13a2630273551e7bf179786516cc
 WHIRLPOOL 
cda9b38b74efc0593de4c89dc4efc91ac1431b12293cd83fee32cd7aff1c85c1fcdc7b8c16f54fb0aa4dacc3901cbb37b3dfa2a9d4dd8b4f1011d1c55965efcd
+DIST patron-0.7.1.gem 54784 SHA256 
aa75525e6f0064d82aacf86241f8ff381c5d8116d4199113d042b1ac8ff4b91d SHA512 
bb95c98d28cc09157c05d3f39694df2b165cb72a46d54d41ca03eca992b94f579a62c081692bf81685852d46668c363e975726142622932d74fd73521414556a
 WHIRLPOOL 
f4575d4315c76425963194105b6be2b65ad498f457167312517f70f7497a0a87274466e717cc6bf1dbac9f35796ff7c484f5a147f6201347e202d5ad5db34290

diff --git a/dev-ruby/patron/patron-0.7.1.ebuild 
b/dev-ruby/patron/patron-0.7.1.ebuild
new file mode 100644
index ..14a12a4
--- /dev/null
+++ b/dev-ruby/patron/patron-0.7.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 ruby23"
+
+RUBY_FAKEGEM_RECIPE_TEST="rspec3"
+RUBY_FAKEGEM_RECIPE_DOC="rdoc"
+RUBY_FAKEGEM_EXTRADOC="README.md"
+
+inherit multilib ruby-fakegem
+
+DESCRIPTION="Patron is a Ruby HTTP client library based on libcurl"
+HOMEPAGE="https://toland.github.com/patron/;
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="~amd64 ~arm ~ppc64 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos 
~x86-macos ~x64-solaris ~x86-solaris"
+IUSE=""
+
+DEPEND+=" net-misc/curl"
+RDEPEND+=" net-misc/curl"
+
+all_ruby_prepare() {
+   # Fix Rakefile
+   sed -i -e 's:rake/rdoctask:rdoc/task:' \
+   -e 's/README.txt/README.md/' \
+   -e '/bundler/I s:^:#:' \
+   -e '/extensiontask/ s:^:#:' \
+   -e '/ExtensionTask/,/^end/ s:^:#:' \
+   Rakefile || die
+
+   # Avoid specs with failures. We were not running any specs before.
+   rm spec/session_ssl_spec.rb spec/session_spec.rb spec/response_spec.rb 
|| die
+}
+
+each_ruby_configure() {
+   ${RUBY} -Cext/patron extconf.rb || die
+}
+
+each_ruby_compile() {
+   emake -Cext/patron V=1
+   cp ext/patron/session_ext$(get_modname) lib/patron/ || die "Unable to 
cp shared object file"
+}



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

2016-06-13 Thread Hans de Graaff
commit: f76bfe4a42f00831806a847378d00e2a745ff32e
Author: Hans de Graaff  gentoo  org>
AuthorDate: Tue Jun 14 04:28:23 2016 +
Commit: Hans de Graaff  gentoo  org>
CommitDate: Tue Jun 14 04:51:09 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f76bfe4a

dev-ruby/patron: add 0.6.5

Package-Manager: portage-2.2.28

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

diff --git a/dev-ruby/patron/Manifest b/dev-ruby/patron/Manifest
index f970f35..e2a96cf 100644
--- a/dev-ruby/patron/Manifest
+++ b/dev-ruby/patron/Manifest
@@ -5,3 +5,4 @@ DIST patron-0.5.1.gem 45056 SHA256 
45776b937ee788343ce4d24817460138989b1a65ad9d8
 DIST patron-0.6.0.gem 45568 SHA256 
af7c51bd680ad0965ff20d5742579f3f985b4ed8e3a6ecd9b2f4976753ee1eb1 SHA512 
5dba0cd4945389b50b747ebc0797b4c1c2d9a1adae6565d9228a72700b15720f9252b4e78c6e52c66159139d0ec621bb3f343e5856bdde05686e019e45ddb30a
 WHIRLPOOL 
c8fcf8c8e966f52c739193f6e34eb674f36cf2fb000245ff08be4f2f22306cc9c09a225b584bf851528e1987540b306173a035c26f5d4b6b34a2d16bd50dc918
 DIST patron-0.6.3.gem 49664 SHA256 
f62786700b3f4cc6a3285fdfbe7eb6c5d0c7847de9df30fbb2fa0acbc356cdea SHA512 
ab1d48f7a19265c3dce786da872cb7dcaf181a9f942bc23428a2fbe26c8405a23fe6f0380709bcfe8062dd51e71a22849452df2322130f40306c5042642ab117
 WHIRLPOOL 
6add22c07987eacbe016b110eec524889665d81e6505d654b72615c967cb1425d1ada78cf09df402e6478107c043467f48e19d5bcb1f5310622b960e10e6ae93
 DIST patron-0.6.4.gem 53760 SHA256 
32ff389a5f1b805d0b4ae99c27d9b3bed5b0a8054f1aab67611a56d552aa731e SHA512 
db8a5068ea7a1d227dba33c54b5a015014015832b1378f1f89a6b02e2effe033bc39ebc94d865e5e46748ac0ce2c561e7c4082ee9cbf648eb4096e8e951c540e
 WHIRLPOOL 
4592df82f082395aaf9f8d173b44614202dc2bedb5eed2c98b0dcf2e11f1d5086bbfa8564817d747bed1a839fff87eeeafbadf26661a9d3ca2696d387f81066e
+DIST patron-0.6.5.gem 54272 SHA256 
eb7ec133b4fedb240543fa96061ee52fa9ede2bcf6351d13b5cc057d6fec6935 SHA512 
ffb2681b7ca062f78931d288314e563f265c9e584b3cb82af16529e8c9b578cca4d57c6e2afc506562cc946def736814b1da13a2630273551e7bf179786516cc
 WHIRLPOOL 
cda9b38b74efc0593de4c89dc4efc91ac1431b12293cd83fee32cd7aff1c85c1fcdc7b8c16f54fb0aa4dacc3901cbb37b3dfa2a9d4dd8b4f1011d1c55965efcd

diff --git a/dev-ruby/patron/patron-0.6.5.ebuild 
b/dev-ruby/patron/patron-0.6.5.ebuild
new file mode 100644
index 000..14a12a4
--- /dev/null
+++ b/dev-ruby/patron/patron-0.6.5.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 ruby23"
+
+RUBY_FAKEGEM_RECIPE_TEST="rspec3"
+RUBY_FAKEGEM_RECIPE_DOC="rdoc"
+RUBY_FAKEGEM_EXTRADOC="README.md"
+
+inherit multilib ruby-fakegem
+
+DESCRIPTION="Patron is a Ruby HTTP client library based on libcurl"
+HOMEPAGE="https://toland.github.com/patron/;
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="~amd64 ~arm ~ppc64 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos 
~x86-macos ~x64-solaris ~x86-solaris"
+IUSE=""
+
+DEPEND+=" net-misc/curl"
+RDEPEND+=" net-misc/curl"
+
+all_ruby_prepare() {
+   # Fix Rakefile
+   sed -i -e 's:rake/rdoctask:rdoc/task:' \
+   -e 's/README.txt/README.md/' \
+   -e '/bundler/I s:^:#:' \
+   -e '/extensiontask/ s:^:#:' \
+   -e '/ExtensionTask/,/^end/ s:^:#:' \
+   Rakefile || die
+
+   # Avoid specs with failures. We were not running any specs before.
+   rm spec/session_ssl_spec.rb spec/session_spec.rb spec/response_spec.rb 
|| die
+}
+
+each_ruby_configure() {
+   ${RUBY} -Cext/patron extconf.rb || die
+}
+
+each_ruby_compile() {
+   emake -Cext/patron V=1
+   cp ext/patron/session_ext$(get_modname) lib/patron/ || die "Unable to 
cp shared object file"
+}



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

2016-06-02 Thread Hans de Graaff
commit: 3a55ccbe1847356e5c806cfaefee563e4e70435a
Author: Hans de Graaff  gentoo  org>
AuthorDate: Fri Jun  3 05:13:16 2016 +
Commit: Hans de Graaff  gentoo  org>
CommitDate: Fri Jun  3 05:13:16 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3a55ccbe

dev-ruby/patron: add 0.6.4

Package-Manager: portage-2.2.28

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

diff --git a/dev-ruby/patron/Manifest b/dev-ruby/patron/Manifest
index d460d3e..f970f35 100644
--- a/dev-ruby/patron/Manifest
+++ b/dev-ruby/patron/Manifest
@@ -4,3 +4,4 @@ DIST patron-0.5.0.gem 44032 SHA256 
6abf431b05f560afc8c479685bb3869797522290777a1
 DIST patron-0.5.1.gem 45056 SHA256 
45776b937ee788343ce4d24817460138989b1a65ad9d8d87130cf8804133444e SHA512 
d47549ae1712f25e0d15bc2e1e32de6ad3084da4f0149013c4cf50dd92ccb7c01024831ef6df7c4acb78ed3923cde95e3f36a5ef8430d3f103ebb7f5906dd0fd
 WHIRLPOOL 
b766263104b67ad1ba9009e101ac027e509ed017f0b93461d8f4c9f51b8b5586dc4da080b1685b72bad837bf690ea02f709fab7a7611f7450ea0e8994fca
 DIST patron-0.6.0.gem 45568 SHA256 
af7c51bd680ad0965ff20d5742579f3f985b4ed8e3a6ecd9b2f4976753ee1eb1 SHA512 
5dba0cd4945389b50b747ebc0797b4c1c2d9a1adae6565d9228a72700b15720f9252b4e78c6e52c66159139d0ec621bb3f343e5856bdde05686e019e45ddb30a
 WHIRLPOOL 
c8fcf8c8e966f52c739193f6e34eb674f36cf2fb000245ff08be4f2f22306cc9c09a225b584bf851528e1987540b306173a035c26f5d4b6b34a2d16bd50dc918
 DIST patron-0.6.3.gem 49664 SHA256 
f62786700b3f4cc6a3285fdfbe7eb6c5d0c7847de9df30fbb2fa0acbc356cdea SHA512 
ab1d48f7a19265c3dce786da872cb7dcaf181a9f942bc23428a2fbe26c8405a23fe6f0380709bcfe8062dd51e71a22849452df2322130f40306c5042642ab117
 WHIRLPOOL 
6add22c07987eacbe016b110eec524889665d81e6505d654b72615c967cb1425d1ada78cf09df402e6478107c043467f48e19d5bcb1f5310622b960e10e6ae93
+DIST patron-0.6.4.gem 53760 SHA256 
32ff389a5f1b805d0b4ae99c27d9b3bed5b0a8054f1aab67611a56d552aa731e SHA512 
db8a5068ea7a1d227dba33c54b5a015014015832b1378f1f89a6b02e2effe033bc39ebc94d865e5e46748ac0ce2c561e7c4082ee9cbf648eb4096e8e951c540e
 WHIRLPOOL 
4592df82f082395aaf9f8d173b44614202dc2bedb5eed2c98b0dcf2e11f1d5086bbfa8564817d747bed1a839fff87eeeafbadf26661a9d3ca2696d387f81066e

diff --git a/dev-ruby/patron/patron-0.6.4.ebuild 
b/dev-ruby/patron/patron-0.6.4.ebuild
new file mode 100644
index 000..14a12a4
--- /dev/null
+++ b/dev-ruby/patron/patron-0.6.4.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 ruby23"
+
+RUBY_FAKEGEM_RECIPE_TEST="rspec3"
+RUBY_FAKEGEM_RECIPE_DOC="rdoc"
+RUBY_FAKEGEM_EXTRADOC="README.md"
+
+inherit multilib ruby-fakegem
+
+DESCRIPTION="Patron is a Ruby HTTP client library based on libcurl"
+HOMEPAGE="https://toland.github.com/patron/;
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="~amd64 ~arm ~ppc64 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos 
~x86-macos ~x64-solaris ~x86-solaris"
+IUSE=""
+
+DEPEND+=" net-misc/curl"
+RDEPEND+=" net-misc/curl"
+
+all_ruby_prepare() {
+   # Fix Rakefile
+   sed -i -e 's:rake/rdoctask:rdoc/task:' \
+   -e 's/README.txt/README.md/' \
+   -e '/bundler/I s:^:#:' \
+   -e '/extensiontask/ s:^:#:' \
+   -e '/ExtensionTask/,/^end/ s:^:#:' \
+   Rakefile || die
+
+   # Avoid specs with failures. We were not running any specs before.
+   rm spec/session_ssl_spec.rb spec/session_spec.rb spec/response_spec.rb 
|| die
+}
+
+each_ruby_configure() {
+   ${RUBY} -Cext/patron extconf.rb || die
+}
+
+each_ruby_compile() {
+   emake -Cext/patron V=1
+   cp ext/patron/session_ext$(get_modname) lib/patron/ || die "Unable to 
cp shared object file"
+}



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

2016-05-29 Thread Hans de Graaff
commit: a603a20fa2f2b5d456bf497d8e3c11746c05f47e
Author: Hans de Graaff  gentoo  org>
AuthorDate: Mon May 30 05:33:00 2016 +
Commit: Hans de Graaff  gentoo  org>
CommitDate: Mon May 30 05:33:00 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a603a20f

dev-ruby/patron: drop ruby19

Package-Manager: portage-2.2.28

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

diff --git a/dev-ruby/patron/patron-0.4.20.ebuild 
b/dev-ruby/patron/patron-0.4.20.ebuild
index 1731d1a..a236bbb 100644
--- a/dev-ruby/patron/patron-0.4.20.ebuild
+++ b/dev-ruby/patron/patron-0.4.20.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_RECIPE_TEST="rspec3"
 RUBY_FAKEGEM_EXTRADOC="README.md"



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

2016-05-04 Thread Hans de Graaff
commit: db5a925cc05d587e14dca41dbdfe80dd56cab091
Author: Hans de Graaff  gentoo  org>
AuthorDate: Thu May  5 05:06:31 2016 +
Commit: Hans de Graaff  gentoo  org>
CommitDate: Thu May  5 05:06:31 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=db5a925c

dev-ruby/patron: add 0.6.3

Package-Manager: portage-2.2.26

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

diff --git a/dev-ruby/patron/Manifest b/dev-ruby/patron/Manifest
index 4648bba..d460d3e 100644
--- a/dev-ruby/patron/Manifest
+++ b/dev-ruby/patron/Manifest
@@ -3,3 +3,4 @@ DIST patron-0.4.20.gem 42496 SHA256 
eb1782f38f280a9975fc97435920c29fd10a0c2e05b6
 DIST patron-0.5.0.gem 44032 SHA256 
6abf431b05f560afc8c479685bb3869797522290777a1ae8510ef5c8b3208c63 SHA512 
84c4cbb4ebeac3a9320915b35e4afefda5637f1bed96e83b8c2345dfd08ba02e07806b13a87c5067dd842ccddb67928c7f60889687676c0683d4e09373d8c2a7
 WHIRLPOOL 
df34adeb59ea45d5d84a6ad1aef3e0fbf4781720443be2ba37450ddf2e51ac3b2c969bb2798fe78bb476cde79f4ccc3d3c1f6511a20dc2deda5a750ec9d03139
 DIST patron-0.5.1.gem 45056 SHA256 
45776b937ee788343ce4d24817460138989b1a65ad9d8d87130cf8804133444e SHA512 
d47549ae1712f25e0d15bc2e1e32de6ad3084da4f0149013c4cf50dd92ccb7c01024831ef6df7c4acb78ed3923cde95e3f36a5ef8430d3f103ebb7f5906dd0fd
 WHIRLPOOL 
b766263104b67ad1ba9009e101ac027e509ed017f0b93461d8f4c9f51b8b5586dc4da080b1685b72bad837bf690ea02f709fab7a7611f7450ea0e8994fca
 DIST patron-0.6.0.gem 45568 SHA256 
af7c51bd680ad0965ff20d5742579f3f985b4ed8e3a6ecd9b2f4976753ee1eb1 SHA512 
5dba0cd4945389b50b747ebc0797b4c1c2d9a1adae6565d9228a72700b15720f9252b4e78c6e52c66159139d0ec621bb3f343e5856bdde05686e019e45ddb30a
 WHIRLPOOL 
c8fcf8c8e966f52c739193f6e34eb674f36cf2fb000245ff08be4f2f22306cc9c09a225b584bf851528e1987540b306173a035c26f5d4b6b34a2d16bd50dc918
+DIST patron-0.6.3.gem 49664 SHA256 
f62786700b3f4cc6a3285fdfbe7eb6c5d0c7847de9df30fbb2fa0acbc356cdea SHA512 
ab1d48f7a19265c3dce786da872cb7dcaf181a9f942bc23428a2fbe26c8405a23fe6f0380709bcfe8062dd51e71a22849452df2322130f40306c5042642ab117
 WHIRLPOOL 
6add22c07987eacbe016b110eec524889665d81e6505d654b72615c967cb1425d1ada78cf09df402e6478107c043467f48e19d5bcb1f5310622b960e10e6ae93

diff --git a/dev-ruby/patron/patron-0.6.3.ebuild 
b/dev-ruby/patron/patron-0.6.3.ebuild
new file mode 100644
index 000..14a12a4
--- /dev/null
+++ b/dev-ruby/patron/patron-0.6.3.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 ruby23"
+
+RUBY_FAKEGEM_RECIPE_TEST="rspec3"
+RUBY_FAKEGEM_RECIPE_DOC="rdoc"
+RUBY_FAKEGEM_EXTRADOC="README.md"
+
+inherit multilib ruby-fakegem
+
+DESCRIPTION="Patron is a Ruby HTTP client library based on libcurl"
+HOMEPAGE="https://toland.github.com/patron/;
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="~amd64 ~arm ~ppc64 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos 
~x86-macos ~x64-solaris ~x86-solaris"
+IUSE=""
+
+DEPEND+=" net-misc/curl"
+RDEPEND+=" net-misc/curl"
+
+all_ruby_prepare() {
+   # Fix Rakefile
+   sed -i -e 's:rake/rdoctask:rdoc/task:' \
+   -e 's/README.txt/README.md/' \
+   -e '/bundler/I s:^:#:' \
+   -e '/extensiontask/ s:^:#:' \
+   -e '/ExtensionTask/,/^end/ s:^:#:' \
+   Rakefile || die
+
+   # Avoid specs with failures. We were not running any specs before.
+   rm spec/session_ssl_spec.rb spec/session_spec.rb spec/response_spec.rb 
|| die
+}
+
+each_ruby_configure() {
+   ${RUBY} -Cext/patron extconf.rb || die
+}
+
+each_ruby_compile() {
+   emake -Cext/patron V=1
+   cp ext/patron/session_ext$(get_modname) lib/patron/ || die "Unable to 
cp shared object file"
+}



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

2016-04-10 Thread Hans de Graaff
commit: 77ef8424477b50261f6293104d342a92f3a254b2
Author: Hans de Graaff  gentoo  org>
AuthorDate: Mon Apr 11 04:52:04 2016 +
Commit: Hans de Graaff  gentoo  org>
CommitDate: Mon Apr 11 05:12:06 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=77ef8424

dev-ruby/patron: add 0.6.0

Package-Manager: portage-2.2.26

 dev-ruby/patron/Manifest|  1 +
 dev-ruby/patron/patron-0.6.0.ebuild | 44 +
 2 files changed, 45 insertions(+)

diff --git a/dev-ruby/patron/Manifest b/dev-ruby/patron/Manifest
index b9ee895..4648bba 100644
--- a/dev-ruby/patron/Manifest
+++ b/dev-ruby/patron/Manifest
@@ -2,3 +2,4 @@ DIST patron-0.4.18.gem 35840 SHA256 
700ffba09ea854bc26fdde08998d8310ed59b0721098
 DIST patron-0.4.20.gem 42496 SHA256 
eb1782f38f280a9975fc97435920c29fd10a0c2e05b6f7a7549652ffbf92af71 SHA512 
78cb97e7d7a35fb97ed7da4c767937a543c1f979c7dd1dff0d3b055024b37aa50238163af4680ba464a28523c0f5879f0d6e372276774dfdac726a5493c202e5
 WHIRLPOOL 
a4158ac99edd2d302e59420be6d75b368e9d9d04ecd9b5051a53eb22639f3f32fa541061f28444cb716deab906c3055ddbc26c4f5289fa0c00c134517ac9ffdd
 DIST patron-0.5.0.gem 44032 SHA256 
6abf431b05f560afc8c479685bb3869797522290777a1ae8510ef5c8b3208c63 SHA512 
84c4cbb4ebeac3a9320915b35e4afefda5637f1bed96e83b8c2345dfd08ba02e07806b13a87c5067dd842ccddb67928c7f60889687676c0683d4e09373d8c2a7
 WHIRLPOOL 
df34adeb59ea45d5d84a6ad1aef3e0fbf4781720443be2ba37450ddf2e51ac3b2c969bb2798fe78bb476cde79f4ccc3d3c1f6511a20dc2deda5a750ec9d03139
 DIST patron-0.5.1.gem 45056 SHA256 
45776b937ee788343ce4d24817460138989b1a65ad9d8d87130cf8804133444e SHA512 
d47549ae1712f25e0d15bc2e1e32de6ad3084da4f0149013c4cf50dd92ccb7c01024831ef6df7c4acb78ed3923cde95e3f36a5ef8430d3f103ebb7f5906dd0fd
 WHIRLPOOL 
b766263104b67ad1ba9009e101ac027e509ed017f0b93461d8f4c9f51b8b5586dc4da080b1685b72bad837bf690ea02f709fab7a7611f7450ea0e8994fca
+DIST patron-0.6.0.gem 45568 SHA256 
af7c51bd680ad0965ff20d5742579f3f985b4ed8e3a6ecd9b2f4976753ee1eb1 SHA512 
5dba0cd4945389b50b747ebc0797b4c1c2d9a1adae6565d9228a72700b15720f9252b4e78c6e52c66159139d0ec621bb3f343e5856bdde05686e019e45ddb30a
 WHIRLPOOL 
c8fcf8c8e966f52c739193f6e34eb674f36cf2fb000245ff08be4f2f22306cc9c09a225b584bf851528e1987540b306173a035c26f5d4b6b34a2d16bd50dc918

diff --git a/dev-ruby/patron/patron-0.6.0.ebuild 
b/dev-ruby/patron/patron-0.6.0.ebuild
new file mode 100644
index 000..623eee2
--- /dev/null
+++ b/dev-ruby/patron/patron-0.6.0.ebuild
@@ -0,0 +1,44 @@
+# Copyright 1999-2016 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=5
+USE_RUBY="ruby20 ruby21 ruby22 ruby23"
+
+RUBY_FAKEGEM_RECIPE_TEST="rspec3"
+RUBY_FAKEGEM_EXTRADOC="README.md"
+
+inherit multilib ruby-fakegem
+
+DESCRIPTION="Patron is a Ruby HTTP client library based on libcurl"
+HOMEPAGE="https://toland.github.com/patron/;
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="~amd64 ~arm ~ppc64 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos 
~x86-macos ~x64-solaris ~x86-solaris"
+IUSE=""
+
+DEPEND+=" net-misc/curl"
+RDEPEND+=" net-misc/curl"
+
+all_ruby_prepare() {
+   # Fix Rakefile
+   sed -i -e 's:rake/rdoctask:rdoc/task:' \
+   -e 's/README.txt/README.md/' \
+   -e '/bundler/I s:^:#:' \
+   -e '/extensiontask/ s:^:#:' \
+   -e '/ExtensionTask/,/^end/ s:^:#:' \
+   Rakefile || die
+
+   # Avoid specs with failures. We were not running any specs before.
+   rm spec/session_ssl_spec.rb spec/session_spec.rb spec/response_spec.rb 
|| die
+}
+
+each_ruby_configure() {
+   ${RUBY} -Cext/patron extconf.rb || die
+}
+
+each_ruby_compile() {
+   emake -Cext/patron V=1
+   cp ext/patron/session_ext$(get_modname) lib/patron/ || die "Unable to 
cp shared object file"
+}



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

2016-04-10 Thread Hans de Graaff
commit: 27e99743e54d127ec750ba8ebfc5c546cb27893d
Author: Hans de Graaff  gentoo  org>
AuthorDate: Mon Apr 11 04:54:18 2016 +
Commit: Hans de Graaff  gentoo  org>
CommitDate: Mon Apr 11 05:12:08 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=27e99743

dev-ruby/patron: mark ruby21 revision stable

Package-Manager: portage-2.2.26

 dev-ruby/patron/patron-0.4.18-r2.ebuild | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/dev-ruby/patron/patron-0.4.18-r2.ebuild 
b/dev-ruby/patron/patron-0.4.18-r2.ebuild
index 48d6013..cdb11f9 100644
--- a/dev-ruby/patron/patron-0.4.18-r2.ebuild
+++ b/dev-ruby/patron/patron-0.4.18-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 ruby22"
+USE_RUBY="ruby20 ruby21 ruby22"
 
 RUBY_FAKEGEM_TASK_TEST="spec"
 RUBY_FAKEGEM_EXTRADOC="README.txt"
@@ -15,7 +15,7 @@ HOMEPAGE="https://toland.github.com/patron/;
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="~amd64 ~ppc ~ppc64 ~x86 ~amd64-linux ~x86-linux ~ppc-macos 
~x64-macos ~x86-macos ~x64-solaris ~x86-solaris"
+KEYWORDS="amd64 ~ppc ~ppc64 x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos 
~x86-macos ~x64-solaris ~x86-solaris"
 IUSE=""
 
 #ruby_add_bdepend "test? ( dev-ruby/rspec:2 )"



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

2016-04-10 Thread Hans de Graaff
commit: 86e86867c02dad902ef0c22d81cafcf1bc5ff18b
Author: Hans de Graaff  gentoo  org>
AuthorDate: Mon Apr 11 04:54:51 2016 +
Commit: Hans de Graaff  gentoo  org>
CommitDate: Mon Apr 11 05:12:11 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=86e86867

dev-ruby/patron: cleanup

Package-Manager: portage-2.2.26

 dev-ruby/patron/patron-0.4.18-r1.ebuild | 36 -
 1 file changed, 36 deletions(-)

diff --git a/dev-ruby/patron/patron-0.4.18-r1.ebuild 
b/dev-ruby/patron/patron-0.4.18-r1.ebuild
deleted file mode 100644
index 9698e76..000
--- a/dev-ruby/patron/patron-0.4.18-r1.ebuild
+++ /dev/null
@@ -1,36 +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_TASK_TEST="spec"
-RUBY_FAKEGEM_EXTRADOC="README.txt"
-
-inherit multilib ruby-fakegem
-
-DESCRIPTION="Patron is a Ruby HTTP client library based on libcurl"
-HOMEPAGE="https://toland.github.com/patron/;
-
-LICENSE="MIT"
-SLOT="0"
-KEYWORDS="amd64 ~ppc ~ppc64 x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos 
~x86-macos ~x64-solaris ~x86-solaris"
-IUSE=""
-
-#ruby_add_bdepend "test? ( dev-ruby/rspec:2 )"
-
-DEPEND+=" net-misc/curl"
-RDEPEND+=" net-misc/curl"
-
-# Tests require a live web service that is not included in the distribution.
-RESTRICT="test"
-
-each_ruby_configure() {
-   ${RUBY} -Cext/patron extconf.rb || die
-}
-
-each_ruby_compile() {
-   emake -Cext/patron V=1
-   cp ext/patron/session_ext$(get_modname) lib/patron/ || die "Unable to 
cp shared object file"
-}



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

2016-03-14 Thread Hans de Graaff
commit: a9e327e97eef9c1b39adeb9edb6e38336c32011d
Author: Hans de Graaff  gentoo  org>
AuthorDate: Tue Mar 15 05:47:53 2016 +
Commit: Hans de Graaff  gentoo  org>
CommitDate: Tue Mar 15 05:47:53 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a9e327e9

dev-ruby/patron: add 0.5.1

Drop ppc, x86 keywords due to missing keywords on rspec dependency, bug 562452

Package-Manager: portage-2.2.26

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

diff --git a/dev-ruby/patron/Manifest b/dev-ruby/patron/Manifest
index 05217b3..b9ee895 100644
--- a/dev-ruby/patron/Manifest
+++ b/dev-ruby/patron/Manifest
@@ -1,3 +1,4 @@
 DIST patron-0.4.18.gem 35840 SHA256 
700ffba09ea854bc26fdde08998d8310ed59b0721098d4a7dc9a85845c71bd81 SHA512 
0069f42378b0dfe03e6f86003b7927b099fd15be4d4b5eeba51958774380bf7a9ddbd8a83b30942d02e95b923f9ae0a1c1abf5bcda8ca8490671208e0ae8ecb4
 WHIRLPOOL 
c709bcd65033288fc55d8d5c044c001afa8ac34d098466e017c5adc3a08314897e86f021a09f61abcc5153893152518dc1843ba7dfa79fc271067b708283b75c
 DIST patron-0.4.20.gem 42496 SHA256 
eb1782f38f280a9975fc97435920c29fd10a0c2e05b6f7a7549652ffbf92af71 SHA512 
78cb97e7d7a35fb97ed7da4c767937a543c1f979c7dd1dff0d3b055024b37aa50238163af4680ba464a28523c0f5879f0d6e372276774dfdac726a5493c202e5
 WHIRLPOOL 
a4158ac99edd2d302e59420be6d75b368e9d9d04ecd9b5051a53eb22639f3f32fa541061f28444cb716deab906c3055ddbc26c4f5289fa0c00c134517ac9ffdd
 DIST patron-0.5.0.gem 44032 SHA256 
6abf431b05f560afc8c479685bb3869797522290777a1ae8510ef5c8b3208c63 SHA512 
84c4cbb4ebeac3a9320915b35e4afefda5637f1bed96e83b8c2345dfd08ba02e07806b13a87c5067dd842ccddb67928c7f60889687676c0683d4e09373d8c2a7
 WHIRLPOOL 
df34adeb59ea45d5d84a6ad1aef3e0fbf4781720443be2ba37450ddf2e51ac3b2c969bb2798fe78bb476cde79f4ccc3d3c1f6511a20dc2deda5a750ec9d03139
+DIST patron-0.5.1.gem 45056 SHA256 
45776b937ee788343ce4d24817460138989b1a65ad9d8d87130cf8804133444e SHA512 
d47549ae1712f25e0d15bc2e1e32de6ad3084da4f0149013c4cf50dd92ccb7c01024831ef6df7c4acb78ed3923cde95e3f36a5ef8430d3f103ebb7f5906dd0fd
 WHIRLPOOL 
b766263104b67ad1ba9009e101ac027e509ed017f0b93461d8f4c9f51b8b5586dc4da080b1685b72bad837bf690ea02f709fab7a7611f7450ea0e8994fca

diff --git a/dev-ruby/patron/patron-0.5.1.ebuild 
b/dev-ruby/patron/patron-0.5.1.ebuild
new file mode 100644
index 000..623eee2
--- /dev/null
+++ b/dev-ruby/patron/patron-0.5.1.ebuild
@@ -0,0 +1,44 @@
+# Copyright 1999-2016 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=5
+USE_RUBY="ruby20 ruby21 ruby22 ruby23"
+
+RUBY_FAKEGEM_RECIPE_TEST="rspec3"
+RUBY_FAKEGEM_EXTRADOC="README.md"
+
+inherit multilib ruby-fakegem
+
+DESCRIPTION="Patron is a Ruby HTTP client library based on libcurl"
+HOMEPAGE="https://toland.github.com/patron/;
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="~amd64 ~arm ~ppc64 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos 
~x86-macos ~x64-solaris ~x86-solaris"
+IUSE=""
+
+DEPEND+=" net-misc/curl"
+RDEPEND+=" net-misc/curl"
+
+all_ruby_prepare() {
+   # Fix Rakefile
+   sed -i -e 's:rake/rdoctask:rdoc/task:' \
+   -e 's/README.txt/README.md/' \
+   -e '/bundler/I s:^:#:' \
+   -e '/extensiontask/ s:^:#:' \
+   -e '/ExtensionTask/,/^end/ s:^:#:' \
+   Rakefile || die
+
+   # Avoid specs with failures. We were not running any specs before.
+   rm spec/session_ssl_spec.rb spec/session_spec.rb spec/response_spec.rb 
|| die
+}
+
+each_ruby_configure() {
+   ${RUBY} -Cext/patron extconf.rb || die
+}
+
+each_ruby_compile() {
+   emake -Cext/patron V=1
+   cp ext/patron/session_ext$(get_modname) lib/patron/ || die "Unable to 
cp shared object file"
+}



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

2016-01-02 Thread Richard Farina
commit: 898e461bb60818ffb51e52784487ea204e4e4455
Author: Zero_Chaos  gentoo  org>
AuthorDate: Sun Jan  3 05:37:36 2016 +
Commit: Richard Farina  gentoo  org>
CommitDate: Sun Jan  3 05:37:36 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=898e461b

dev-ruby/patron: adding ~arm

Package-Manager: portage-2.2.26

 dev-ruby/patron/{patron-0.5.0.ebuild => patron-0.5.0-r1.ebuild} | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/dev-ruby/patron/patron-0.5.0.ebuild 
b/dev-ruby/patron/patron-0.5.0-r1.ebuild
similarity index 83%
rename from dev-ruby/patron/patron-0.5.0.ebuild
rename to dev-ruby/patron/patron-0.5.0-r1.ebuild
index 1731d1a..ca677e1 100644
--- a/dev-ruby/patron/patron-0.5.0.ebuild
+++ b/dev-ruby/patron/patron-0.5.0-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_RECIPE_TEST="rspec3"
 RUBY_FAKEGEM_EXTRADOC="README.md"
@@ -15,7 +15,7 @@ HOMEPAGE="https://toland.github.com/patron/;
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="~amd64 ~ppc ~ppc64 ~x86 ~amd64-linux ~x86-linux ~ppc-macos 
~x64-macos ~x86-macos ~x64-solaris ~x86-solaris"
+KEYWORDS="~amd64 ~arm ~ppc ~ppc64 ~x86 ~amd64-linux ~x86-linux ~ppc-macos 
~x64-macos ~x86-macos ~x64-solaris ~x86-solaris"
 IUSE=""
 
 DEPEND+=" net-misc/curl"



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

2015-09-07 Thread Hans de Graaff
commit: 816135edb6f54cd46a7867f92122636e926fd307
Author: Hans de Graaff  gentoo  org>
AuthorDate: Tue Sep  8 05:20:01 2015 +
Commit: Hans de Graaff  gentoo  org>
CommitDate: Tue Sep  8 05:35:25 2015 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=816135ed

dev-ruby/patron: version bump

Package-Manager: portage-2.2.20.1

 dev-ruby/patron/Manifest|  1 +
 dev-ruby/patron/patron-0.5.0.ebuild | 44 +
 2 files changed, 45 insertions(+)

diff --git a/dev-ruby/patron/Manifest b/dev-ruby/patron/Manifest
index 3322660..05217b3 100644
--- a/dev-ruby/patron/Manifest
+++ b/dev-ruby/patron/Manifest
@@ -1,2 +1,3 @@
 DIST patron-0.4.18.gem 35840 SHA256 
700ffba09ea854bc26fdde08998d8310ed59b0721098d4a7dc9a85845c71bd81 SHA512 
0069f42378b0dfe03e6f86003b7927b099fd15be4d4b5eeba51958774380bf7a9ddbd8a83b30942d02e95b923f9ae0a1c1abf5bcda8ca8490671208e0ae8ecb4
 WHIRLPOOL 
c709bcd65033288fc55d8d5c044c001afa8ac34d098466e017c5adc3a08314897e86f021a09f61abcc5153893152518dc1843ba7dfa79fc271067b708283b75c
 DIST patron-0.4.20.gem 42496 SHA256 
eb1782f38f280a9975fc97435920c29fd10a0c2e05b6f7a7549652ffbf92af71 SHA512 
78cb97e7d7a35fb97ed7da4c767937a543c1f979c7dd1dff0d3b055024b37aa50238163af4680ba464a28523c0f5879f0d6e372276774dfdac726a5493c202e5
 WHIRLPOOL 
a4158ac99edd2d302e59420be6d75b368e9d9d04ecd9b5051a53eb22639f3f32fa541061f28444cb716deab906c3055ddbc26c4f5289fa0c00c134517ac9ffdd
+DIST patron-0.5.0.gem 44032 SHA256 
6abf431b05f560afc8c479685bb3869797522290777a1ae8510ef5c8b3208c63 SHA512 
84c4cbb4ebeac3a9320915b35e4afefda5637f1bed96e83b8c2345dfd08ba02e07806b13a87c5067dd842ccddb67928c7f60889687676c0683d4e09373d8c2a7
 WHIRLPOOL 
df34adeb59ea45d5d84a6ad1aef3e0fbf4781720443be2ba37450ddf2e51ac3b2c969bb2798fe78bb476cde79f4ccc3d3c1f6511a20dc2deda5a750ec9d03139

diff --git a/dev-ruby/patron/patron-0.5.0.ebuild 
b/dev-ruby/patron/patron-0.5.0.ebuild
new file mode 100644
index 000..1731d1a
--- /dev/null
+++ b/dev-ruby/patron/patron-0.5.0.ebuild
@@ -0,0 +1,44 @@
+# 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_RECIPE_TEST="rspec3"
+RUBY_FAKEGEM_EXTRADOC="README.md"
+
+inherit multilib ruby-fakegem
+
+DESCRIPTION="Patron is a Ruby HTTP client library based on libcurl"
+HOMEPAGE="https://toland.github.com/patron/;
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="~amd64 ~ppc ~ppc64 ~x86 ~amd64-linux ~x86-linux ~ppc-macos 
~x64-macos ~x86-macos ~x64-solaris ~x86-solaris"
+IUSE=""
+
+DEPEND+=" net-misc/curl"
+RDEPEND+=" net-misc/curl"
+
+all_ruby_prepare() {
+   # Fix Rakefile
+   sed -i -e 's:rake/rdoctask:rdoc/task:' \
+   -e 's/README.txt/README.md/' \
+   -e '/bundler/I s:^:#:' \
+   -e '/extensiontask/ s:^:#:' \
+   -e '/ExtensionTask/,/^end/ s:^:#:' \
+   Rakefile || die
+
+   # Avoid specs with failures. We were not running any specs before.
+   rm spec/session_ssl_spec.rb spec/session_spec.rb spec/response_spec.rb 
|| die
+}
+
+each_ruby_configure() {
+   ${RUBY} -Cext/patron extconf.rb || die
+}
+
+each_ruby_compile() {
+   emake -Cext/patron V=1
+   cp ext/patron/session_ext$(get_modname) lib/patron/ || die "Unable to 
cp shared object file"
+}