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

2024-04-29 Thread Hans de Graaff
commit: 29f86b39da1473160a3d16579b622fe875724cec
Author: Hans de Graaff  gentoo  org>
AuthorDate: Tue Apr 30 05:31:55 2024 +
Commit: Hans de Graaff  gentoo  org>
CommitDate: Tue Apr 30 05:49:02 2024 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=29f86b39

dev-ruby/httparty: add 0.22.0

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

 dev-ruby/httparty/Manifest   |  1 +
 dev-ruby/httparty/httparty-0.22.0.ebuild | 65 
 2 files changed, 66 insertions(+)

diff --git a/dev-ruby/httparty/Manifest b/dev-ruby/httparty/Manifest
index 701567b8a496..b02f3c6b006b 100644
--- a/dev-ruby/httparty/Manifest
+++ b/dev-ruby/httparty/Manifest
@@ -1 +1,2 @@
 DIST httparty-0.21.0.tar.gz 102735 BLAKE2B 
131c4f3a5a403b609391ececaf079de5ed5c57ea4660fc1d1041832d8baa27b8beaf11ac2743aa6059005904d787259afec27597744bb5e35e56c3b035ca4b1b
 SHA512 
afd50de88a6b1e1cac8c90d6e1458c41ef122b4542c3a14274aacb052f9ceafad868d1b2582d45eedd212a8037fac13238ac05c2e661c9ba9196a00ef3a0a634
+DIST httparty-0.22.0.tar.gz 102950 BLAKE2B 
76dfd04997674b8932a854af72cd0be8f9c20f8835e9bbd3fa54842f2bd7b483105ec1e32e4a6bc9c9e9672c2bdd99952e57dfd6091bb0530d5900634cb94bc0
 SHA512 
b29b6988fc618b17b9c3d82f7450341591bb849191ee973ee6fd0d433bff79c0d95ab180d4edc24b1d7211e0b4d6fd1115ba41605282dbea6c2cea739f7dbf72

diff --git a/dev-ruby/httparty/httparty-0.22.0.ebuild 
b/dev-ruby/httparty/httparty-0.22.0.ebuild
new file mode 100644
index ..d232a62e274d
--- /dev/null
+++ b/dev-ruby/httparty/httparty-0.22.0.ebuild
@@ -0,0 +1,65 @@
+# 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_RECIPE_DOC="none"
+RUBY_FAKEGEM_EXTRADOC="Changelog.md README.md"
+
+RUBY_FAKEGEM_GEMSPEC="httparty.gemspec"
+
+inherit ruby-fakegem
+
+DESCRIPTION="Makes http fun! Also, makes consuming restful web services dead 
easy"
+HOMEPAGE="https://www.johnnunemaker.com/httparty/;
+SRC_URI="https://github.com/jnunemaker/httparty/archive/v${PV}.tar.gz -> 
${P}.tar.gz"
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE="test"
+
+ruby_add_rdepend "
+   dev-ruby/csv
+   >=dev-ruby/mini_mime-1.0.0
+   >=dev-ruby/multi_xml-0.5.2
+"
+
+ruby_add_bdepend 'test? ( dev-ruby/webmock )'
+
+all_ruby_prepare() {
+   sed -i -e 's/git ls-files \?-\?-\?/find/' ${RUBY_FAKEGEM_GEMSPEC} || die
+
+   # Remove bundler
+   rm Gemfile || die
+   sed -i -e '/[Bb]undler/ s:^:#:' Rakefile || die
+
+   # Avoid test dependency on cucumber. We can't run the features since
+   # they depend on mongrel which is no longer packaged.
+   sed -i -e '/cucumber/I s:^:#:' Rakefile || die
+
+   # Avoid test dependency on simplecov
+   sed -i -e '/simplecov/I s:^:#:' \
+   -e '/pry/ s:^:#:' \
+   -e '1i require "cgi"; require "delegate"' spec/spec_helper.rb 
|| die
+
+   # Avoid test that works standalone but fails in the suite
+   #sed -i -e '/calls block given to perform with each redirect/,/^
end/ s:^:#:' spec/httparty/request_spec.rb
+
+   # Avoid test that is not fully compatible with newer multi_xml
+   sed -i -e '/should be able parse response type xml automatically/askip 
"multi_xml"' spec/httparty_spec.rb || die
+
+   # Avoid test that fails due to unicode normalization differences
+   sed -i -e '/handles international domains/askip "unicode differences"' 
spec/httparty_spec.rb || die
+}
+
+all_ruby_install() {
+   all_fakegem_install
+
+   docinto examples
+   dodoc examples/*
+}



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

2024-02-11 Thread Hans de Graaff
commit: d4e3bdd8a9a2991f0d602caada1f947132488c11
Author: Hans de Graaff  gentoo  org>
AuthorDate: Mon Feb 12 07:32:25 2024 +
Commit: Hans de Graaff  gentoo  org>
CommitDate: Mon Feb 12 07:32:25 2024 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d4e3bdd8

dev-ruby/httparty: enable ruby33

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

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

diff --git a/dev-ruby/httparty/httparty-0.21.0.ebuild 
b/dev-ruby/httparty/httparty-0.21.0.ebuild
index 76793979e7e9..7a2dbc6be66d 100644
--- a/dev-ruby/httparty/httparty-0.21.0.ebuild
+++ b/dev-ruby/httparty/httparty-0.21.0.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="ruby30 ruby31 ruby32"
+USE_RUBY="ruby31 ruby32 ruby33"
 
 RUBY_FAKEGEM_RECIPE_TEST="rspec3"
 



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

2023-08-29 Thread Hans de Graaff
commit: 6dff87c4c5e0a04a981b2575159d1f9b3de2daa4
Author: Hans de Graaff  gentoo  org>
AuthorDate: Tue Aug 29 17:09:34 2023 +
Commit: Hans de Graaff  gentoo  org>
CommitDate: Tue Aug 29 17:09:34 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6dff87c4

dev-ruby/httparty: enable ruby32

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

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

diff --git a/dev-ruby/httparty/httparty-0.21.0.ebuild 
b/dev-ruby/httparty/httparty-0.21.0.ebuild
index df40dbd3e058..76793979e7e9 100644
--- a/dev-ruby/httparty/httparty-0.21.0.ebuild
+++ b/dev-ruby/httparty/httparty-0.21.0.ebuild
@@ -3,7 +3,7 @@
 
 EAPI=8
 
-USE_RUBY="ruby27 ruby30 ruby31"
+USE_RUBY="ruby30 ruby31 ruby32"
 
 RUBY_FAKEGEM_RECIPE_TEST="rspec3"
 



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

2023-04-10 Thread Sam James
commit: 5aa192a648b0a0f104f4288e035906622e1ede25
Author: Sam James  gentoo  org>
AuthorDate: Mon Apr 10 22:13:16 2023 +
Commit: Sam James  gentoo  org>
CommitDate: Mon Apr 10 22:13:16 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5aa192a6

dev-ruby/httparty: update *.github.com HOMEPAGEs

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

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

diff --git a/dev-ruby/httparty/httparty-0.21.0.ebuild 
b/dev-ruby/httparty/httparty-0.21.0.ebuild
index 2abec03edc73..df40dbd3e058 100644
--- a/dev-ruby/httparty/httparty-0.21.0.ebuild
+++ b/dev-ruby/httparty/httparty-0.21.0.ebuild
@@ -15,7 +15,7 @@ RUBY_FAKEGEM_GEMSPEC="httparty.gemspec"
 inherit ruby-fakegem
 
 DESCRIPTION="Makes http fun! Also, makes consuming restful web services dead 
easy"
-HOMEPAGE="https://jnunemaker.github.com/httparty;
+HOMEPAGE="https://www.johnnunemaker.com/httparty/;
 SRC_URI="https://github.com/jnunemaker/httparty/archive/v${PV}.tar.gz -> 
${P}.tar.gz"
 
 LICENSE="MIT"



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

2023-03-28 Thread Sam James
commit: a01d8f695e439769c8bf220d92f42890961f8419
Author: Sam James  gentoo  org>
AuthorDate: Tue Mar 28 21:49:33 2023 +
Commit: Sam James  gentoo  org>
CommitDate: Tue Mar 28 21:49:33 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a01d8f69

dev-ruby/httparty: add github upstream metadata

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

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

diff --git a/dev-ruby/httparty/metadata.xml b/dev-ruby/httparty/metadata.xml
index 658c72b1920d..ba99179f2314 100644
--- a/dev-ruby/httparty/metadata.xml
+++ b/dev-ruby/httparty/metadata.xml
@@ -5,4 +5,7 @@
r...@gentoo.org
Gentoo Ruby Project
 
+
+   jnunemaker/httparty
+
 



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

2023-03-28 Thread Sam James
commit: 2053441fbf1835ca062933585af20562b415a828
Author: Sam James  gentoo  org>
AuthorDate: Tue Mar 28 21:48:27 2023 +
Commit: Sam James  gentoo  org>
CommitDate: Tue Mar 28 21:48:27 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2053441f

dev-ruby/httparty: Stabilize 0.21.0 amd64, #903461

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

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

diff --git a/dev-ruby/httparty/httparty-0.21.0.ebuild 
b/dev-ruby/httparty/httparty-0.21.0.ebuild
index bc2ccb2f5ffe..2abec03edc73 100644
--- a/dev-ruby/httparty/httparty-0.21.0.ebuild
+++ b/dev-ruby/httparty/httparty-0.21.0.ebuild
@@ -20,7 +20,7 @@ 
SRC_URI="https://github.com/jnunemaker/httparty/archive/v${PV}.tar.gz -> ${P}.ta
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="~amd64 ~x86"
+KEYWORDS="amd64 ~x86"
 IUSE=""
 
 ruby_add_rdepend '>=dev-ruby/mini_mime-1.0.0 >=dev-ruby/multi_xml-0.5.2'



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

2023-01-01 Thread Hans de Graaff
commit: 25ad41c9cdad5eb264f181ca1b8de38566fe3b16
Author: Hans de Graaff  gentoo  org>
AuthorDate: Mon Jan  2 06:58:45 2023 +
Commit: Hans de Graaff  gentoo  org>
CommitDate: Mon Jan  2 06:59:19 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=25ad41c9

dev-ruby/httparty: add 0.21.0

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

 dev-ruby/httparty/Manifest   |  1 +
 dev-ruby/httparty/httparty-0.21.0.ebuild | 61 
 2 files changed, 62 insertions(+)

diff --git a/dev-ruby/httparty/Manifest b/dev-ruby/httparty/Manifest
index bdc9e4a01f1e..5cd616b80b71 100644
--- a/dev-ruby/httparty/Manifest
+++ b/dev-ruby/httparty/Manifest
@@ -1 +1,2 @@
 DIST httparty-0.20.0.tar.gz 101975 BLAKE2B 
f15eb837a4bbc98de501e6dcca5a17bb0906e8ea6671c55a85d665659ab60bcee5e84d9dafad6b2450e22cedfaf5a86e10e077e52b1120ff9ae2613a1176a651
 SHA512 
f5770d5a64be2e80aa70334dad899fb723b08088a673a788ca1402285b77ae6b3cef21e3ed263d9618a32879711c9183f2dc82ff7b50bcf6439a8e6bb7a2eb4e
+DIST httparty-0.21.0.tar.gz 102735 BLAKE2B 
131c4f3a5a403b609391ececaf079de5ed5c57ea4660fc1d1041832d8baa27b8beaf11ac2743aa6059005904d787259afec27597744bb5e35e56c3b035ca4b1b
 SHA512 
afd50de88a6b1e1cac8c90d6e1458c41ef122b4542c3a14274aacb052f9ceafad868d1b2582d45eedd212a8037fac13238ac05c2e661c9ba9196a00ef3a0a634

diff --git a/dev-ruby/httparty/httparty-0.21.0.ebuild 
b/dev-ruby/httparty/httparty-0.21.0.ebuild
new file mode 100644
index ..bc2ccb2f5ffe
--- /dev/null
+++ b/dev-ruby/httparty/httparty-0.21.0.ebuild
@@ -0,0 +1,61 @@
+# Copyright 1999-2023 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+USE_RUBY="ruby27 ruby30 ruby31"
+
+RUBY_FAKEGEM_RECIPE_TEST="rspec3"
+
+RUBY_FAKEGEM_RECIPE_DOC="none"
+RUBY_FAKEGEM_EXTRADOC="Changelog.md README.md"
+
+RUBY_FAKEGEM_GEMSPEC="httparty.gemspec"
+
+inherit ruby-fakegem
+
+DESCRIPTION="Makes http fun! Also, makes consuming restful web services dead 
easy"
+HOMEPAGE="https://jnunemaker.github.com/httparty;
+SRC_URI="https://github.com/jnunemaker/httparty/archive/v${PV}.tar.gz -> 
${P}.tar.gz"
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE=""
+
+ruby_add_rdepend '>=dev-ruby/mini_mime-1.0.0 >=dev-ruby/multi_xml-0.5.2'
+
+ruby_add_bdepend 'test? ( dev-ruby/webmock )'
+
+all_ruby_prepare() {
+   sed -i -e 's/git ls-files \?-\?-\?/find/' ${RUBY_FAKEGEM_GEMSPEC} || die
+
+   # Remove bundler
+   rm Gemfile || die
+   sed -i -e '/[Bb]undler/ s:^:#:' Rakefile || die
+
+   # Avoid test dependency on cucumber. We can't run the features since
+   # they depend on mongrel which is no longer packaged.
+   sed -i -e '/cucumber/I s:^:#:' Rakefile || die
+
+   # Avoid test dependency on simplecov
+   sed -i -e '/simplecov/I s:^:#:' \
+   -e '/pry/ s:^:#:' \
+   -e '1i require "cgi"; require "delegate"' spec/spec_helper.rb 
|| die
+
+   # Avoid test that works standalone but fails in the suite
+   #sed -i -e '/calls block given to perform with each redirect/,/^
end/ s:^:#:' spec/httparty/request_spec.rb
+
+   # Avoid test that is not fully compatible with newer multi_xml
+   sed -i -e '/should be able parse response type xml automatically/askip 
"multi_xml"' spec/httparty_spec.rb || die
+
+   # Avoid test that fails due to unicode normalization differences
+   sed -i -e '/handles international domains/askip "unicode differences"' 
spec/httparty_spec.rb || die
+}
+
+all_ruby_install() {
+   all_fakegem_install
+
+   docinto examples
+   dodoc examples/*
+}



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

2022-07-28 Thread Hans de Graaff
commit: b367d053f89416414e24c26c645c98982d7ac365
Author: Hans de Graaff  gentoo  org>
AuthorDate: Fri Jul 29 05:38:03 2022 +
Commit: Hans de Graaff  gentoo  org>
CommitDate: Fri Jul 29 05:38:26 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b367d053

dev-ruby/httparty: enable ruby31

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

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

diff --git a/dev-ruby/httparty/httparty-0.20.0.ebuild 
b/dev-ruby/httparty/httparty-0.20.0.ebuild
index bb9bf6443921..9620611e560c 100644
--- a/dev-ruby/httparty/httparty-0.20.0.ebuild
+++ b/dev-ruby/httparty/httparty-0.20.0.ebuild
@@ -3,7 +3,7 @@
 
 EAPI=8
 
-USE_RUBY="ruby26 ruby27 ruby30"
+USE_RUBY="ruby26 ruby27 ruby30 ruby31"
 
 RUBY_FAKEGEM_RECIPE_TEST="rspec3"
 



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

2022-06-26 Thread Hans de Graaff
commit: 1a4df6d07c14d8312dab9d19b6a71e6f49e4ef09
Author: Hans de Graaff  gentoo  org>
AuthorDate: Sun Jun 26 06:19:09 2022 +
Commit: Hans de Graaff  gentoo  org>
CommitDate: Sun Jun 26 06:19:09 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1a4df6d0

dev-ruby/httparty: drop 0.18.1, 0.19.0

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

 dev-ruby/httparty/Manifest   |  2 --
 dev-ruby/httparty/httparty-0.18.1.ebuild | 61 
 dev-ruby/httparty/httparty-0.19.0.ebuild | 61 
 3 files changed, 124 deletions(-)

diff --git a/dev-ruby/httparty/Manifest b/dev-ruby/httparty/Manifest
index 178a5d0ea0fb..bdc9e4a01f1e 100644
--- a/dev-ruby/httparty/Manifest
+++ b/dev-ruby/httparty/Manifest
@@ -1,3 +1 @@
-DIST httparty-0.18.1.tar.gz 97813 BLAKE2B 
3192ad5f1e8c292456710529f4e1595ea5b70ae4ad61695d6d0b036872d40b2afbc0c958ffb25b0c1222ba8004593d20c4d3954c530d6c836e915b87150d954a
 SHA512 
fca9de534199fbf6a058c39c3ebe28587c34df2bffee313a0e05204258fb6b6b6643bd0a28deca9d0b42de21c90c54dab058124349e4774489578fb23e8bacf5
-DIST httparty-0.19.0.tar.gz 101070 BLAKE2B 
921858ad7d2daf080f041b08b28b69c29b01bdbf4b399616d46fdd43570a1ec4799c61a9edbd04bcc6c6d60e59fd2a3d6a25a40808f7f294f316d644fb3c4998
 SHA512 
dcdb66b1940e709c58cd1dbc925a3be44db2d01e0a30992b924aa90554405f1608c3c32e8658b2754e20c822a465202e4ee382e37078e871acbbc37465971011
 DIST httparty-0.20.0.tar.gz 101975 BLAKE2B 
f15eb837a4bbc98de501e6dcca5a17bb0906e8ea6671c55a85d665659ab60bcee5e84d9dafad6b2450e22cedfaf5a86e10e077e52b1120ff9ae2613a1176a651
 SHA512 
f5770d5a64be2e80aa70334dad899fb723b08088a673a788ca1402285b77ae6b3cef21e3ed263d9618a32879711c9183f2dc82ff7b50bcf6439a8e6bb7a2eb4e

diff --git a/dev-ruby/httparty/httparty-0.18.1.ebuild 
b/dev-ruby/httparty/httparty-0.18.1.ebuild
deleted file mode 100644
index a4fb9eb7a56d..
--- a/dev-ruby/httparty/httparty-0.18.1.ebuild
+++ /dev/null
@@ -1,61 +0,0 @@
-# Copyright 1999-2021 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-USE_RUBY="ruby25 ruby26 ruby27"
-
-RUBY_FAKEGEM_RECIPE_TEST="rspec3"
-
-RUBY_FAKEGEM_RECIPE_DOC="none"
-RUBY_FAKEGEM_EXTRADOC="Changelog.md README.md"
-
-RUBY_FAKEGEM_GEMSPEC="httparty.gemspec"
-
-inherit ruby-fakegem
-
-DESCRIPTION="Makes http fun! Also, makes consuming restful web services dead 
easy"
-HOMEPAGE="https://jnunemaker.github.com/httparty;
-SRC_URI="https://github.com/jnunemaker/httparty/archive/v${PV}.tar.gz -> 
${P}.tar.gz"
-
-LICENSE="MIT"
-SLOT="0"
-KEYWORDS="amd64 ~x86"
-IUSE=""
-
-ruby_add_rdepend 'dev-ruby/mime-types:3 >=dev-ruby/multi_xml-0.5.2'
-
-ruby_add_bdepend 'test? ( dev-ruby/webmock )'
-
-all_ruby_prepare() {
-   sed -i -e 's/git ls-files \?-\?-\?/find/' ${RUBY_FAKEGEM_GEMSPEC} || die
-
-   # Remove bundler
-   rm Gemfile || die
-   sed -i -e '/[Bb]undler/ s:^:#:' Rakefile || die
-
-   # Avoid test dependency on cucumber. We can't run the features since
-   # they depend on mongrel which is no longer packaged.
-   sed -i -e '/cucumber/I s:^:#:' Rakefile || die
-
-   # Avoid test dependency on simplecov
-   sed -i -e '/simplecov/I s:^:#:' \
-   -e '/pry/ s:^:#:' \
-   -e '1i require "cgi"; require "delegate"' spec/spec_helper.rb 
|| die
-
-   # Avoid test that works standalone but fails in the suite
-   #sed -i -e '/calls block given to perform with each redirect/,/^
end/ s:^:#:' spec/httparty/request_spec.rb
-
-   # Avoid test that is not fully compatible with newer multi_xml
-   sed -i -e '/should be able parse response type xml automatically/askip 
"multi_xml"' spec/httparty_spec.rb || die
-
-   # Avoid test that fails due to unicode normalization differences
-   sed -i -e '/handles international domains/askip "unicode differences"' 
spec/httparty_spec.rb || die
-}
-
-all_ruby_install() {
-   all_fakegem_install
-
-   docinto examples
-   dodoc examples/*
-}

diff --git a/dev-ruby/httparty/httparty-0.19.0.ebuild 
b/dev-ruby/httparty/httparty-0.19.0.ebuild
deleted file mode 100644
index 6db437819a69..
--- a/dev-ruby/httparty/httparty-0.19.0.ebuild
+++ /dev/null
@@ -1,61 +0,0 @@
-# Copyright 1999-2021 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-USE_RUBY="ruby26 ruby27"
-
-RUBY_FAKEGEM_RECIPE_TEST="rspec3"
-
-RUBY_FAKEGEM_RECIPE_DOC="none"
-RUBY_FAKEGEM_EXTRADOC="Changelog.md README.md"
-
-RUBY_FAKEGEM_GEMSPEC="httparty.gemspec"
-
-inherit ruby-fakegem
-
-DESCRIPTION="Makes http fun! Also, makes consuming restful web services dead 
easy"
-HOMEPAGE="https://jnunemaker.github.com/httparty;
-SRC_URI="https://github.com/jnunemaker/httparty/archive/v${PV}.tar.gz -> 
${P}.tar.gz"
-
-LICENSE="MIT"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-IUSE=""
-
-ruby_add_rdepend 'dev-ruby/mime-types:3 >=dev-ruby/multi_xml-0.5.2'
-
-ruby_add_bdepend 'test? ( dev-ruby/webmock 

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

2022-05-06 Thread Hans de Graaff
commit: 9da0434640e59366767ffb2c54df4187f9789d52
Author: Hans de Graaff  gentoo  org>
AuthorDate: Fri May  6 06:25:45 2022 +
Commit: Hans de Graaff  gentoo  org>
CommitDate: Fri May  6 06:53:55 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9da04346

dev-ruby/httparty: stabilize 0.20.0 for amd64

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

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

diff --git a/dev-ruby/httparty/httparty-0.20.0.ebuild 
b/dev-ruby/httparty/httparty-0.20.0.ebuild
index a56e46d2aa14..bb9bf6443921 100644
--- a/dev-ruby/httparty/httparty-0.20.0.ebuild
+++ b/dev-ruby/httparty/httparty-0.20.0.ebuild
@@ -20,7 +20,7 @@ 
SRC_URI="https://github.com/jnunemaker/httparty/archive/v${PV}.tar.gz -> ${P}.ta
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="~amd64 ~x86"
+KEYWORDS="amd64 ~x86"
 IUSE=""
 
 ruby_add_rdepend 'dev-ruby/mime-types:3 >=dev-ruby/multi_xml-0.5.2'



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

2022-05-06 Thread Hans de Graaff
commit: 61e9a60ddd63a096678489d66246e60f8c7ec716
Author: Hans de Graaff  gentoo  org>
AuthorDate: Fri May  6 06:25:06 2022 +
Commit: Hans de Graaff  gentoo  org>
CommitDate: Fri May  6 06:53:55 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=61e9a60d

dev-ruby/httparty: enable ruby30

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

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

diff --git a/dev-ruby/httparty/httparty-0.20.0.ebuild 
b/dev-ruby/httparty/httparty-0.20.0.ebuild
index 6db437819a69..a56e46d2aa14 100644
--- a/dev-ruby/httparty/httparty-0.20.0.ebuild
+++ b/dev-ruby/httparty/httparty-0.20.0.ebuild
@@ -1,9 +1,9 @@
-# Copyright 1999-2021 Gentoo Authors
+# Copyright 1999-2022 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=8
 
-USE_RUBY="ruby26 ruby27"
+USE_RUBY="ruby26 ruby27 ruby30"
 
 RUBY_FAKEGEM_RECIPE_TEST="rspec3"
 



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

2021-10-04 Thread Hans de Graaff
commit: 3712f489d87c896f1c12eb7d4749a3483812eebb
Author: Hans de Graaff  gentoo  org>
AuthorDate: Tue Oct  5 05:35:49 2021 +
Commit: Hans de Graaff  gentoo  org>
CommitDate: Tue Oct  5 05:42:23 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3712f489

dev-ruby/httparty: add 0.20.0

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

 dev-ruby/httparty/Manifest   |  1 +
 dev-ruby/httparty/httparty-0.20.0.ebuild | 61 
 2 files changed, 62 insertions(+)

diff --git a/dev-ruby/httparty/Manifest b/dev-ruby/httparty/Manifest
index b57bd12401f..178a5d0ea0f 100644
--- a/dev-ruby/httparty/Manifest
+++ b/dev-ruby/httparty/Manifest
@@ -1,2 +1,3 @@
 DIST httparty-0.18.1.tar.gz 97813 BLAKE2B 
3192ad5f1e8c292456710529f4e1595ea5b70ae4ad61695d6d0b036872d40b2afbc0c958ffb25b0c1222ba8004593d20c4d3954c530d6c836e915b87150d954a
 SHA512 
fca9de534199fbf6a058c39c3ebe28587c34df2bffee313a0e05204258fb6b6b6643bd0a28deca9d0b42de21c90c54dab058124349e4774489578fb23e8bacf5
 DIST httparty-0.19.0.tar.gz 101070 BLAKE2B 
921858ad7d2daf080f041b08b28b69c29b01bdbf4b399616d46fdd43570a1ec4799c61a9edbd04bcc6c6d60e59fd2a3d6a25a40808f7f294f316d644fb3c4998
 SHA512 
dcdb66b1940e709c58cd1dbc925a3be44db2d01e0a30992b924aa90554405f1608c3c32e8658b2754e20c822a465202e4ee382e37078e871acbbc37465971011
+DIST httparty-0.20.0.tar.gz 101975 BLAKE2B 
f15eb837a4bbc98de501e6dcca5a17bb0906e8ea6671c55a85d665659ab60bcee5e84d9dafad6b2450e22cedfaf5a86e10e077e52b1120ff9ae2613a1176a651
 SHA512 
f5770d5a64be2e80aa70334dad899fb723b08088a673a788ca1402285b77ae6b3cef21e3ed263d9618a32879711c9183f2dc82ff7b50bcf6439a8e6bb7a2eb4e

diff --git a/dev-ruby/httparty/httparty-0.20.0.ebuild 
b/dev-ruby/httparty/httparty-0.20.0.ebuild
new file mode 100644
index 000..6db437819a6
--- /dev/null
+++ b/dev-ruby/httparty/httparty-0.20.0.ebuild
@@ -0,0 +1,61 @@
+# Copyright 1999-2021 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+USE_RUBY="ruby26 ruby27"
+
+RUBY_FAKEGEM_RECIPE_TEST="rspec3"
+
+RUBY_FAKEGEM_RECIPE_DOC="none"
+RUBY_FAKEGEM_EXTRADOC="Changelog.md README.md"
+
+RUBY_FAKEGEM_GEMSPEC="httparty.gemspec"
+
+inherit ruby-fakegem
+
+DESCRIPTION="Makes http fun! Also, makes consuming restful web services dead 
easy"
+HOMEPAGE="https://jnunemaker.github.com/httparty;
+SRC_URI="https://github.com/jnunemaker/httparty/archive/v${PV}.tar.gz -> 
${P}.tar.gz"
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE=""
+
+ruby_add_rdepend 'dev-ruby/mime-types:3 >=dev-ruby/multi_xml-0.5.2'
+
+ruby_add_bdepend 'test? ( dev-ruby/webmock )'
+
+all_ruby_prepare() {
+   sed -i -e 's/git ls-files \?-\?-\?/find/' ${RUBY_FAKEGEM_GEMSPEC} || die
+
+   # Remove bundler
+   rm Gemfile || die
+   sed -i -e '/[Bb]undler/ s:^:#:' Rakefile || die
+
+   # Avoid test dependency on cucumber. We can't run the features since
+   # they depend on mongrel which is no longer packaged.
+   sed -i -e '/cucumber/I s:^:#:' Rakefile || die
+
+   # Avoid test dependency on simplecov
+   sed -i -e '/simplecov/I s:^:#:' \
+   -e '/pry/ s:^:#:' \
+   -e '1i require "cgi"; require "delegate"' spec/spec_helper.rb 
|| die
+
+   # Avoid test that works standalone but fails in the suite
+   #sed -i -e '/calls block given to perform with each redirect/,/^
end/ s:^:#:' spec/httparty/request_spec.rb
+
+   # Avoid test that is not fully compatible with newer multi_xml
+   sed -i -e '/should be able parse response type xml automatically/askip 
"multi_xml"' spec/httparty_spec.rb || die
+
+   # Avoid test that fails due to unicode normalization differences
+   sed -i -e '/handles international domains/askip "unicode differences"' 
spec/httparty_spec.rb || die
+}
+
+all_ruby_install() {
+   all_fakegem_install
+
+   docinto examples
+   dodoc examples/*
+}



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

2021-09-09 Thread Hans de Graaff
commit: 4c7b087142a28dfa488ba56a6a41e5669125112e
Author: Hans de Graaff  gentoo  org>
AuthorDate: Fri Sep 10 05:39:08 2021 +
Commit: Hans de Graaff  gentoo  org>
CommitDate: Fri Sep 10 05:47:28 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4c7b0871

dev-ruby/httparty: add 0.19.0

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

 dev-ruby/httparty/Manifest   |  1 +
 dev-ruby/httparty/httparty-0.19.0.ebuild | 61 
 2 files changed, 62 insertions(+)

diff --git a/dev-ruby/httparty/Manifest b/dev-ruby/httparty/Manifest
index cedcfd14cf7..b57bd12401f 100644
--- a/dev-ruby/httparty/Manifest
+++ b/dev-ruby/httparty/Manifest
@@ -1 +1,2 @@
 DIST httparty-0.18.1.tar.gz 97813 BLAKE2B 
3192ad5f1e8c292456710529f4e1595ea5b70ae4ad61695d6d0b036872d40b2afbc0c958ffb25b0c1222ba8004593d20c4d3954c530d6c836e915b87150d954a
 SHA512 
fca9de534199fbf6a058c39c3ebe28587c34df2bffee313a0e05204258fb6b6b6643bd0a28deca9d0b42de21c90c54dab058124349e4774489578fb23e8bacf5
+DIST httparty-0.19.0.tar.gz 101070 BLAKE2B 
921858ad7d2daf080f041b08b28b69c29b01bdbf4b399616d46fdd43570a1ec4799c61a9edbd04bcc6c6d60e59fd2a3d6a25a40808f7f294f316d644fb3c4998
 SHA512 
dcdb66b1940e709c58cd1dbc925a3be44db2d01e0a30992b924aa90554405f1608c3c32e8658b2754e20c822a465202e4ee382e37078e871acbbc37465971011

diff --git a/dev-ruby/httparty/httparty-0.19.0.ebuild 
b/dev-ruby/httparty/httparty-0.19.0.ebuild
new file mode 100644
index 000..6db437819a6
--- /dev/null
+++ b/dev-ruby/httparty/httparty-0.19.0.ebuild
@@ -0,0 +1,61 @@
+# Copyright 1999-2021 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+USE_RUBY="ruby26 ruby27"
+
+RUBY_FAKEGEM_RECIPE_TEST="rspec3"
+
+RUBY_FAKEGEM_RECIPE_DOC="none"
+RUBY_FAKEGEM_EXTRADOC="Changelog.md README.md"
+
+RUBY_FAKEGEM_GEMSPEC="httparty.gemspec"
+
+inherit ruby-fakegem
+
+DESCRIPTION="Makes http fun! Also, makes consuming restful web services dead 
easy"
+HOMEPAGE="https://jnunemaker.github.com/httparty;
+SRC_URI="https://github.com/jnunemaker/httparty/archive/v${PV}.tar.gz -> 
${P}.tar.gz"
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE=""
+
+ruby_add_rdepend 'dev-ruby/mime-types:3 >=dev-ruby/multi_xml-0.5.2'
+
+ruby_add_bdepend 'test? ( dev-ruby/webmock )'
+
+all_ruby_prepare() {
+   sed -i -e 's/git ls-files \?-\?-\?/find/' ${RUBY_FAKEGEM_GEMSPEC} || die
+
+   # Remove bundler
+   rm Gemfile || die
+   sed -i -e '/[Bb]undler/ s:^:#:' Rakefile || die
+
+   # Avoid test dependency on cucumber. We can't run the features since
+   # they depend on mongrel which is no longer packaged.
+   sed -i -e '/cucumber/I s:^:#:' Rakefile || die
+
+   # Avoid test dependency on simplecov
+   sed -i -e '/simplecov/I s:^:#:' \
+   -e '/pry/ s:^:#:' \
+   -e '1i require "cgi"; require "delegate"' spec/spec_helper.rb 
|| die
+
+   # Avoid test that works standalone but fails in the suite
+   #sed -i -e '/calls block given to perform with each redirect/,/^
end/ s:^:#:' spec/httparty/request_spec.rb
+
+   # Avoid test that is not fully compatible with newer multi_xml
+   sed -i -e '/should be able parse response type xml automatically/askip 
"multi_xml"' spec/httparty_spec.rb || die
+
+   # Avoid test that fails due to unicode normalization differences
+   sed -i -e '/handles international domains/askip "unicode differences"' 
spec/httparty_spec.rb || die
+}
+
+all_ruby_install() {
+   all_fakegem_install
+
+   docinto examples
+   dodoc examples/*
+}



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

2021-07-17 Thread Hans de Graaff
commit: 6421c6e54027f76823bb67efe8e3dc16590a4ea7
Author: Hans de Graaff  gentoo  org>
AuthorDate: Sun Jul 18 05:07:19 2021 +
Commit: Hans de Graaff  gentoo  org>
CommitDate: Sun Jul 18 05:40:35 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6421c6e5

dev-ruby/httparty: cleanup

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

 dev-ruby/httparty/Manifest   |  1 -
 dev-ruby/httparty/httparty-0.17.3.ebuild | 57 
 2 files changed, 58 deletions(-)

diff --git a/dev-ruby/httparty/Manifest b/dev-ruby/httparty/Manifest
index 30c970db374..cedcfd14cf7 100644
--- a/dev-ruby/httparty/Manifest
+++ b/dev-ruby/httparty/Manifest
@@ -1,2 +1 @@
-DIST httparty-0.17.3.tar.gz 97444 BLAKE2B 
773e40fc35ca44cd3b14a30e7a7ea5783c0c158cdb8488b34ffa36af5a572d5f6eef697cab147c5be1448906c35071284947ba598409be35af54a20846f4d98c
 SHA512 
c06aa4456c692e2a32f8e44b2316d46f664c4e2c8efb370607796f6801d96e989a54e61bdf125cff679b8c5f5abb1557b87aef48d8f3a392c1942ac4821db84d
 DIST httparty-0.18.1.tar.gz 97813 BLAKE2B 
3192ad5f1e8c292456710529f4e1595ea5b70ae4ad61695d6d0b036872d40b2afbc0c958ffb25b0c1222ba8004593d20c4d3954c530d6c836e915b87150d954a
 SHA512 
fca9de534199fbf6a058c39c3ebe28587c34df2bffee313a0e05204258fb6b6b6643bd0a28deca9d0b42de21c90c54dab058124349e4774489578fb23e8bacf5

diff --git a/dev-ruby/httparty/httparty-0.17.3.ebuild 
b/dev-ruby/httparty/httparty-0.17.3.ebuild
deleted file mode 100644
index 568d1d50706..000
--- a/dev-ruby/httparty/httparty-0.17.3.ebuild
+++ /dev/null
@@ -1,57 +0,0 @@
-# Copyright 1999-2020 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-USE_RUBY="ruby24 ruby25 ruby26"
-
-RUBY_FAKEGEM_RECIPE_TEST="rspec3"
-
-RUBY_FAKEGEM_RECIPE_DOC="none"
-RUBY_FAKEGEM_EXTRADOC="Changelog.md README.md"
-
-RUBY_FAKEGEM_GEMSPEC="httparty.gemspec"
-
-inherit ruby-fakegem
-
-DESCRIPTION="Makes http fun! Also, makes consuming restful web services dead 
easy"
-HOMEPAGE="https://jnunemaker.github.com/httparty;
-SRC_URI="https://github.com/jnunemaker/httparty/archive/v${PV}.tar.gz -> 
${P}.tar.gz"
-
-LICENSE="MIT"
-SLOT="0"
-KEYWORDS="amd64 ~x86"
-IUSE=""
-
-ruby_add_rdepend 'dev-ruby/mime-types:3 >=dev-ruby/multi_xml-0.5.2'
-
-ruby_add_bdepend 'test? ( dev-ruby/webmock )'
-
-all_ruby_prepare() {
-   sed -i -e 's/git ls-files \?-\?-\?/find/' ${RUBY_FAKEGEM_GEMSPEC} || die
-
-   # Remove bundler
-   rm Gemfile || die
-   sed -i -e '/[Bb]undler/ s:^:#:' Rakefile || die
-
-   # Avoid test dependency on cucumber. We can't run the features since
-   # they depend on mongrel which is no longer packaged.
-   sed -i -e '/cucumber/I s:^:#:' Rakefile || die
-
-   # Avoid test dependency on simplecov
-   sed -i -e '/simplecov/I s:^:#:' \
-   -e '1i require "cgi"; require "delegate"' spec/spec_helper.rb 
|| die
-
-   # Avoid test that works standalone but fails in the suite
-   sed -i -e '/calls block given to perform with each redirect/,/^
end/ s:^:#:' spec/httparty/request_spec.rb
-
-   # Avoid test that is not fully compatible with newer multi_xml
-   sed -i -e '/should be able parse response type xml automatically/askip 
"multi_xml"' spec/httparty_spec.rb || die
-}
-
-all_ruby_install() {
-   all_fakegem_install
-
-   docinto examples
-   dodoc examples/*
-}



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

2021-07-07 Thread Hans de Graaff
commit: 91d4d785f4bb63721461a23e4a8eabd363bbc195
Author: Hans de Graaff  gentoo  org>
AuthorDate: Wed Jul  7 08:26:48 2021 +
Commit: Hans de Graaff  gentoo  org>
CommitDate: Wed Jul  7 08:31:02 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=91d4d785

dev-ruby/httparty: amd64 stable

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

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

diff --git a/dev-ruby/httparty/httparty-0.18.1.ebuild 
b/dev-ruby/httparty/httparty-0.18.1.ebuild
index 0ce0a25a872..a4fb9eb7a56 100644
--- a/dev-ruby/httparty/httparty-0.18.1.ebuild
+++ b/dev-ruby/httparty/httparty-0.18.1.ebuild
@@ -20,7 +20,7 @@ 
SRC_URI="https://github.com/jnunemaker/httparty/archive/v${PV}.tar.gz -> ${P}.ta
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="~amd64 ~x86"
+KEYWORDS="amd64 ~x86"
 IUSE=""
 
 ruby_add_rdepend 'dev-ruby/mime-types:3 >=dev-ruby/multi_xml-0.5.2'



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

2021-02-21 Thread Hans de Graaff
commit: 95c42b54e71d5b31c055b50eaf08802fab3c29ad
Author: Hans de Graaff  gentoo  org>
AuthorDate: Mon Feb 22 06:45:13 2021 +
Commit: Hans de Graaff  gentoo  org>
CommitDate: Mon Feb 22 06:48:08 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=95c42b54

dev-ruby/httparty: add ruby27

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

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

diff --git a/dev-ruby/httparty/httparty-0.18.1.ebuild 
b/dev-ruby/httparty/httparty-0.18.1.ebuild
index c7782d5184c..0ce0a25a872 100644
--- a/dev-ruby/httparty/httparty-0.18.1.ebuild
+++ b/dev-ruby/httparty/httparty-0.18.1.ebuild
@@ -1,9 +1,9 @@
-# Copyright 1999-2020 Gentoo Authors
+# Copyright 1999-2021 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=7
 
-USE_RUBY="ruby24 ruby25 ruby26"
+USE_RUBY="ruby25 ruby26 ruby27"
 
 RUBY_FAKEGEM_RECIPE_TEST="rspec3"
 



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

2020-09-14 Thread Hans de Graaff
commit: be63bb31f0e22a10df6715744262736dd72b64bd
Author: Hans de Graaff  gentoo  org>
AuthorDate: Sun Sep 13 06:34:59 2020 +
Commit: Hans de Graaff  gentoo  org>
CommitDate: Mon Sep 14 06:09:26 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=be63bb31

dev-ruby/httparty: cleanup

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

 dev-ruby/httparty/Manifest   |  2 --
 dev-ruby/httparty/httparty-0.17.1.ebuild | 57 ---
 dev-ruby/httparty/httparty-0.18.0.ebuild | 58 
 3 files changed, 117 deletions(-)

diff --git a/dev-ruby/httparty/Manifest b/dev-ruby/httparty/Manifest
index bc1e2745411..30c970db374 100644
--- a/dev-ruby/httparty/Manifest
+++ b/dev-ruby/httparty/Manifest
@@ -1,4 +1,2 @@
-DIST httparty-0.17.1.tar.gz 97249 BLAKE2B 
044a074c0a11c02d5fd929585b1dd6853871bdbfcf9be0f16b92999ac5e9ad7b0fb60a403a24d4e3ae3901f8fdb119f51e3decfc61e9ddf61419fa50581c1970
 SHA512 
2e92573e164575c462afceec26234731e8eb4472f127374503ee1361d8399116c78f900f88485629ca7ddb51a6383c963a5b1e21d9d5b0acbcc8544ce3f37465
 DIST httparty-0.17.3.tar.gz 97444 BLAKE2B 
773e40fc35ca44cd3b14a30e7a7ea5783c0c158cdb8488b34ffa36af5a572d5f6eef697cab147c5be1448906c35071284947ba598409be35af54a20846f4d98c
 SHA512 
c06aa4456c692e2a32f8e44b2316d46f664c4e2c8efb370607796f6801d96e989a54e61bdf125cff679b8c5f5abb1557b87aef48d8f3a392c1942ac4821db84d
-DIST httparty-0.18.0.tar.gz 97667 BLAKE2B 
8c4086c3186152944a7ae9a57b679bba6ed803067ec849d9fac8323cdef41a45a44f2454ca83a6aecff7fc1e9795793a2fb035f1bf46c5c998703fc5d7425a44
 SHA512 
a208bfd411de6fc080221410d5730f37db074fca25ff0f71b796e4a73ac3a595ca57dde1f415327f710ed23ebed6bbf0f671d0e5940ce60073e6727ac8963580
 DIST httparty-0.18.1.tar.gz 97813 BLAKE2B 
3192ad5f1e8c292456710529f4e1595ea5b70ae4ad61695d6d0b036872d40b2afbc0c958ffb25b0c1222ba8004593d20c4d3954c530d6c836e915b87150d954a
 SHA512 
fca9de534199fbf6a058c39c3ebe28587c34df2bffee313a0e05204258fb6b6b6643bd0a28deca9d0b42de21c90c54dab058124349e4774489578fb23e8bacf5

diff --git a/dev-ruby/httparty/httparty-0.17.1.ebuild 
b/dev-ruby/httparty/httparty-0.17.1.ebuild
deleted file mode 100644
index f63c2861267..000
--- a/dev-ruby/httparty/httparty-0.17.1.ebuild
+++ /dev/null
@@ -1,57 +0,0 @@
-# Copyright 1999-2019 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-USE_RUBY="ruby24 ruby25 ruby26"
-
-RUBY_FAKEGEM_RECIPE_TEST="rspec3"
-
-RUBY_FAKEGEM_RECIPE_DOC="none"
-RUBY_FAKEGEM_EXTRADOC="Changelog.md README.md"
-
-RUBY_FAKEGEM_GEMSPEC="httparty.gemspec"
-
-inherit ruby-fakegem
-
-DESCRIPTION="Makes http fun! Also, makes consuming restful web services dead 
easy"
-HOMEPAGE="https://jnunemaker.github.com/httparty;
-SRC_URI="https://github.com/jnunemaker/httparty/archive/v${PV}.tar.gz -> 
${P}.tar.gz"
-
-LICENSE="MIT"
-SLOT="0"
-KEYWORDS="amd64 ~x86"
-IUSE=""
-
-ruby_add_rdepend 'dev-ruby/mime-types:3 >=dev-ruby/multi_xml-0.5.2'
-
-ruby_add_bdepend 'test? ( dev-ruby/webmock )'
-
-all_ruby_prepare() {
-   sed -i -e 's/git ls-files \?-\?-\?/find/' ${RUBY_FAKEGEM_GEMSPEC} || die
-
-   # Remove bundler
-   rm Gemfile || die
-   sed -i -e '/[Bb]undler/ s:^:#:' Rakefile || die
-
-   # Avoid test dependency on cucumber. We can't run the features since
-   # they depend on mongrel which is no longer packaged.
-   sed -i -e '/cucumber/I s:^:#:' Rakefile || die
-
-   # Avoid test dependency on simplecov
-   sed -i -e '/simplecov/I s:^:#:' \
-   -e '1i require "cgi"; require "delegate"' spec/spec_helper.rb 
|| die
-
-   # Avoid test that works standalone but fails in the suite
-   sed -i -e '/calls block given to perform with each redirect/,/^
end/ s:^:#:' spec/httparty/request_spec.rb
-
-   # Avoid test that is not fully compatible with newer multi_xml
-   sed -i -e '/should be able parse response type xml automatically/askip 
"multi_xml"' spec/httparty_spec.rb || die
-}
-
-all_ruby_install() {
-   all_fakegem_install
-
-   docinto examples
-   dodoc examples/*
-}

diff --git a/dev-ruby/httparty/httparty-0.18.0.ebuild 
b/dev-ruby/httparty/httparty-0.18.0.ebuild
deleted file mode 100644
index 54637324e24..000
--- a/dev-ruby/httparty/httparty-0.18.0.ebuild
+++ /dev/null
@@ -1,58 +0,0 @@
-# Copyright 1999-2020 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-USE_RUBY="ruby24 ruby25 ruby26"
-
-RUBY_FAKEGEM_RECIPE_TEST="rspec3"
-
-RUBY_FAKEGEM_RECIPE_DOC="none"
-RUBY_FAKEGEM_EXTRADOC="Changelog.md README.md"
-
-RUBY_FAKEGEM_GEMSPEC="httparty.gemspec"
-
-inherit ruby-fakegem
-
-DESCRIPTION="Makes http fun! Also, makes consuming restful web services dead 
easy"
-HOMEPAGE="https://jnunemaker.github.com/httparty;
-SRC_URI="https://github.com/jnunemaker/httparty/archive/v${PV}.tar.gz -> 
${P}.tar.gz"
-
-LICENSE="MIT"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"

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

2020-06-11 Thread Hans de Graaff
commit: e20b4277b334a0926a3431dffcadc67a0fe17403
Author: Hans de Graaff  gentoo  org>
AuthorDate: Fri Jun 12 05:42:55 2020 +
Commit: Hans de Graaff  gentoo  org>
CommitDate: Fri Jun 12 05:42:55 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e20b4277

dev-ruby/httparty: add 0.18.1

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

 dev-ruby/httparty/Manifest   |  1 +
 dev-ruby/httparty/httparty-0.18.1.ebuild | 61 
 2 files changed, 62 insertions(+)

diff --git a/dev-ruby/httparty/Manifest b/dev-ruby/httparty/Manifest
index f8c2ce6f645..bc1e2745411 100644
--- a/dev-ruby/httparty/Manifest
+++ b/dev-ruby/httparty/Manifest
@@ -1,3 +1,4 @@
 DIST httparty-0.17.1.tar.gz 97249 BLAKE2B 
044a074c0a11c02d5fd929585b1dd6853871bdbfcf9be0f16b92999ac5e9ad7b0fb60a403a24d4e3ae3901f8fdb119f51e3decfc61e9ddf61419fa50581c1970
 SHA512 
2e92573e164575c462afceec26234731e8eb4472f127374503ee1361d8399116c78f900f88485629ca7ddb51a6383c963a5b1e21d9d5b0acbcc8544ce3f37465
 DIST httparty-0.17.3.tar.gz 97444 BLAKE2B 
773e40fc35ca44cd3b14a30e7a7ea5783c0c158cdb8488b34ffa36af5a572d5f6eef697cab147c5be1448906c35071284947ba598409be35af54a20846f4d98c
 SHA512 
c06aa4456c692e2a32f8e44b2316d46f664c4e2c8efb370607796f6801d96e989a54e61bdf125cff679b8c5f5abb1557b87aef48d8f3a392c1942ac4821db84d
 DIST httparty-0.18.0.tar.gz 97667 BLAKE2B 
8c4086c3186152944a7ae9a57b679bba6ed803067ec849d9fac8323cdef41a45a44f2454ca83a6aecff7fc1e9795793a2fb035f1bf46c5c998703fc5d7425a44
 SHA512 
a208bfd411de6fc080221410d5730f37db074fca25ff0f71b796e4a73ac3a595ca57dde1f415327f710ed23ebed6bbf0f671d0e5940ce60073e6727ac8963580
+DIST httparty-0.18.1.tar.gz 97813 BLAKE2B 
3192ad5f1e8c292456710529f4e1595ea5b70ae4ad61695d6d0b036872d40b2afbc0c958ffb25b0c1222ba8004593d20c4d3954c530d6c836e915b87150d954a
 SHA512 
fca9de534199fbf6a058c39c3ebe28587c34df2bffee313a0e05204258fb6b6b6643bd0a28deca9d0b42de21c90c54dab058124349e4774489578fb23e8bacf5

diff --git a/dev-ruby/httparty/httparty-0.18.1.ebuild 
b/dev-ruby/httparty/httparty-0.18.1.ebuild
new file mode 100644
index 000..c7782d5184c
--- /dev/null
+++ b/dev-ruby/httparty/httparty-0.18.1.ebuild
@@ -0,0 +1,61 @@
+# Copyright 1999-2020 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+USE_RUBY="ruby24 ruby25 ruby26"
+
+RUBY_FAKEGEM_RECIPE_TEST="rspec3"
+
+RUBY_FAKEGEM_RECIPE_DOC="none"
+RUBY_FAKEGEM_EXTRADOC="Changelog.md README.md"
+
+RUBY_FAKEGEM_GEMSPEC="httparty.gemspec"
+
+inherit ruby-fakegem
+
+DESCRIPTION="Makes http fun! Also, makes consuming restful web services dead 
easy"
+HOMEPAGE="https://jnunemaker.github.com/httparty;
+SRC_URI="https://github.com/jnunemaker/httparty/archive/v${PV}.tar.gz -> 
${P}.tar.gz"
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE=""
+
+ruby_add_rdepend 'dev-ruby/mime-types:3 >=dev-ruby/multi_xml-0.5.2'
+
+ruby_add_bdepend 'test? ( dev-ruby/webmock )'
+
+all_ruby_prepare() {
+   sed -i -e 's/git ls-files \?-\?-\?/find/' ${RUBY_FAKEGEM_GEMSPEC} || die
+
+   # Remove bundler
+   rm Gemfile || die
+   sed -i -e '/[Bb]undler/ s:^:#:' Rakefile || die
+
+   # Avoid test dependency on cucumber. We can't run the features since
+   # they depend on mongrel which is no longer packaged.
+   sed -i -e '/cucumber/I s:^:#:' Rakefile || die
+
+   # Avoid test dependency on simplecov
+   sed -i -e '/simplecov/I s:^:#:' \
+   -e '/pry/ s:^:#:' \
+   -e '1i require "cgi"; require "delegate"' spec/spec_helper.rb 
|| die
+
+   # Avoid test that works standalone but fails in the suite
+   #sed -i -e '/calls block given to perform with each redirect/,/^
end/ s:^:#:' spec/httparty/request_spec.rb
+
+   # Avoid test that is not fully compatible with newer multi_xml
+   sed -i -e '/should be able parse response type xml automatically/askip 
"multi_xml"' spec/httparty_spec.rb || die
+
+   # Avoid test that fails due to unicode normalization differences
+   sed -i -e '/handles international domains/askip "unicode differences"' 
spec/httparty_spec.rb || die
+}
+
+all_ruby_install() {
+   all_fakegem_install
+
+   docinto examples
+   dodoc examples/*
+}



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

2020-06-11 Thread Hans de Graaff
commit: 5e31d034924339304252ee61b8c4302fa9f18fb1
Author: Hans de Graaff  gentoo  org>
AuthorDate: Fri Jun 12 05:34:18 2020 +
Commit: Hans de Graaff  gentoo  org>
CommitDate: Fri Jun 12 05:34:18 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5e31d034

dev-ruby/httparty: amd64 stable

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

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

diff --git a/dev-ruby/httparty/httparty-0.17.3.ebuild 
b/dev-ruby/httparty/httparty-0.17.3.ebuild
index 418e319afe6..568d1d50706 100644
--- a/dev-ruby/httparty/httparty-0.17.3.ebuild
+++ b/dev-ruby/httparty/httparty-0.17.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=7
@@ -20,7 +20,7 @@ 
SRC_URI="https://github.com/jnunemaker/httparty/archive/v${PV}.tar.gz -> ${P}.ta
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="~amd64 ~x86"
+KEYWORDS="amd64 ~x86"
 IUSE=""
 
 ruby_add_rdepend 'dev-ruby/mime-types:3 >=dev-ruby/multi_xml-0.5.2'



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

2020-02-19 Thread Hans de Graaff
commit: ff9abbc8cf49ef8d1b4e682bfa2308c187f9d963
Author: Hans de Graaff  gentoo  org>
AuthorDate: Wed Feb 19 19:20:00 2020 +
Commit: Hans de Graaff  gentoo  org>
CommitDate: Wed Feb 19 19:20:13 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ff9abbc8

dev-ruby/httparty: add 0.18.0

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

 dev-ruby/httparty/Manifest   |  1 +
 dev-ruby/httparty/httparty-0.18.0.ebuild | 58 
 2 files changed, 59 insertions(+)

diff --git a/dev-ruby/httparty/Manifest b/dev-ruby/httparty/Manifest
index a7fc96da801..f8c2ce6f645 100644
--- a/dev-ruby/httparty/Manifest
+++ b/dev-ruby/httparty/Manifest
@@ -1,2 +1,3 @@
 DIST httparty-0.17.1.tar.gz 97249 BLAKE2B 
044a074c0a11c02d5fd929585b1dd6853871bdbfcf9be0f16b92999ac5e9ad7b0fb60a403a24d4e3ae3901f8fdb119f51e3decfc61e9ddf61419fa50581c1970
 SHA512 
2e92573e164575c462afceec26234731e8eb4472f127374503ee1361d8399116c78f900f88485629ca7ddb51a6383c963a5b1e21d9d5b0acbcc8544ce3f37465
 DIST httparty-0.17.3.tar.gz 97444 BLAKE2B 
773e40fc35ca44cd3b14a30e7a7ea5783c0c158cdb8488b34ffa36af5a572d5f6eef697cab147c5be1448906c35071284947ba598409be35af54a20846f4d98c
 SHA512 
c06aa4456c692e2a32f8e44b2316d46f664c4e2c8efb370607796f6801d96e989a54e61bdf125cff679b8c5f5abb1557b87aef48d8f3a392c1942ac4821db84d
+DIST httparty-0.18.0.tar.gz 97667 BLAKE2B 
8c4086c3186152944a7ae9a57b679bba6ed803067ec849d9fac8323cdef41a45a44f2454ca83a6aecff7fc1e9795793a2fb035f1bf46c5c998703fc5d7425a44
 SHA512 
a208bfd411de6fc080221410d5730f37db074fca25ff0f71b796e4a73ac3a595ca57dde1f415327f710ed23ebed6bbf0f671d0e5940ce60073e6727ac8963580

diff --git a/dev-ruby/httparty/httparty-0.18.0.ebuild 
b/dev-ruby/httparty/httparty-0.18.0.ebuild
new file mode 100644
index 000..54637324e24
--- /dev/null
+++ b/dev-ruby/httparty/httparty-0.18.0.ebuild
@@ -0,0 +1,58 @@
+# Copyright 1999-2020 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+USE_RUBY="ruby24 ruby25 ruby26"
+
+RUBY_FAKEGEM_RECIPE_TEST="rspec3"
+
+RUBY_FAKEGEM_RECIPE_DOC="none"
+RUBY_FAKEGEM_EXTRADOC="Changelog.md README.md"
+
+RUBY_FAKEGEM_GEMSPEC="httparty.gemspec"
+
+inherit ruby-fakegem
+
+DESCRIPTION="Makes http fun! Also, makes consuming restful web services dead 
easy"
+HOMEPAGE="https://jnunemaker.github.com/httparty;
+SRC_URI="https://github.com/jnunemaker/httparty/archive/v${PV}.tar.gz -> 
${P}.tar.gz"
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE=""
+
+ruby_add_rdepend 'dev-ruby/mime-types:3 >=dev-ruby/multi_xml-0.5.2'
+
+ruby_add_bdepend 'test? ( dev-ruby/webmock )'
+
+all_ruby_prepare() {
+   sed -i -e 's/git ls-files \?-\?-\?/find/' ${RUBY_FAKEGEM_GEMSPEC} || die
+
+   # Remove bundler
+   rm Gemfile || die
+   sed -i -e '/[Bb]undler/ s:^:#:' Rakefile || die
+
+   # Avoid test dependency on cucumber. We can't run the features since
+   # they depend on mongrel which is no longer packaged.
+   sed -i -e '/cucumber/I s:^:#:' Rakefile || die
+
+   # Avoid test dependency on simplecov
+   sed -i -e '/simplecov/I s:^:#:' \
+   -e '/pry/ s:^:#:' \
+   -e '1i require "cgi"; require "delegate"' spec/spec_helper.rb 
|| die
+
+   # Avoid test that works standalone but fails in the suite
+   sed -i -e '/calls block given to perform with each redirect/,/^
end/ s:^:#:' spec/httparty/request_spec.rb
+
+   # Avoid test that is not fully compatible with newer multi_xml
+   sed -i -e '/should be able parse response type xml automatically/askip 
"multi_xml"' spec/httparty_spec.rb || die
+}
+
+all_ruby_install() {
+   all_fakegem_install
+
+   docinto examples
+   dodoc examples/*
+}



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

2019-12-17 Thread Hans de Graaff
commit: c7b9425866648e95910ed90767661a207adb09ea
Author: Hans de Graaff  gentoo  org>
AuthorDate: Wed Dec 18 06:33:24 2019 +
Commit: Hans de Graaff  gentoo  org>
CommitDate: Wed Dec 18 06:33:24 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c7b94258

dev-ruby/httparty: cleanup

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

 dev-ruby/httparty/Manifest   |  1 -
 dev-ruby/httparty/httparty-0.17.0.ebuild | 52 
 2 files changed, 53 deletions(-)

diff --git a/dev-ruby/httparty/Manifest b/dev-ruby/httparty/Manifest
index a903972298d..a7fc96da801 100644
--- a/dev-ruby/httparty/Manifest
+++ b/dev-ruby/httparty/Manifest
@@ -1,3 +1,2 @@
-DIST httparty-0.17.0.gem 100352 BLAKE2B 
49cdb05a5f0f0e6c6e31eae6541333892042227e29b53761636ebf608bca32665ecd0cc538cbc1baca3b0745b89b43a81fff8620e2d96017a60518f46fd9f303
 SHA512 
9aefaadf364dfe68e8d41cadc4652d0b40ef395d6b0506243a35e771106ca2cc0e9947e1676db39e6f034fd31bde16cc4fb759b78287830681d049ab39178cfb
 DIST httparty-0.17.1.tar.gz 97249 BLAKE2B 
044a074c0a11c02d5fd929585b1dd6853871bdbfcf9be0f16b92999ac5e9ad7b0fb60a403a24d4e3ae3901f8fdb119f51e3decfc61e9ddf61419fa50581c1970
 SHA512 
2e92573e164575c462afceec26234731e8eb4472f127374503ee1361d8399116c78f900f88485629ca7ddb51a6383c963a5b1e21d9d5b0acbcc8544ce3f37465
 DIST httparty-0.17.3.tar.gz 97444 BLAKE2B 
773e40fc35ca44cd3b14a30e7a7ea5783c0c158cdb8488b34ffa36af5a572d5f6eef697cab147c5be1448906c35071284947ba598409be35af54a20846f4d98c
 SHA512 
c06aa4456c692e2a32f8e44b2316d46f664c4e2c8efb370607796f6801d96e989a54e61bdf125cff679b8c5f5abb1557b87aef48d8f3a392c1942ac4821db84d

diff --git a/dev-ruby/httparty/httparty-0.17.0.ebuild 
b/dev-ruby/httparty/httparty-0.17.0.ebuild
deleted file mode 100644
index 6a35a79fd15..000
--- a/dev-ruby/httparty/httparty-0.17.0.ebuild
+++ /dev/null
@@ -1,52 +0,0 @@
-# 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_TASK_DOC=""
-RUBY_FAKEGEM_EXTRADOC="Changelog.md README.md"
-
-inherit ruby-fakegem
-
-DESCRIPTION="Makes http fun! Also, makes consuming restful web services dead 
easy"
-HOMEPAGE="https://jnunemaker.github.com/httparty;
-
-LICENSE="MIT"
-SLOT="0"
-KEYWORDS="amd64 ~x86"
-IUSE=""
-
-ruby_add_rdepend 'dev-ruby/mime-types:3 >=dev-ruby/multi_xml-0.5.2'
-
-ruby_add_bdepend 'test? ( dev-ruby/webmock )'
-
-all_ruby_prepare() {
-   # Remove bundler
-   rm Gemfile || die
-   sed -i -e '/[Bb]undler/ s:^:#:' Rakefile || die
-
-   # Avoid test dependency on cucumber. We can't run the features since
-   # they depend on mongrel which is no longer packaged.
-   sed -i -e '/cucumber/I s:^:#:' Rakefile || die
-
-   # Avoid test dependency on simplecov
-   sed -i -e '/simplecov/I s:^:#:' \
-   -e '1i require "cgi"; require "delegate"' spec/spec_helper.rb 
|| die
-
-   # Avoid test that works standalone but fails in the suite
-   sed -i -e '/calls block given to perform with each redirect/,/^
end/ s:^:#:' spec/httparty/request_spec.rb
-
-   # Avoid test that is not fully compatible with newer multi_xml
-   sed -i -e '/should be able parse response type xml automatically/askip 
"multi_xml"' spec/httparty_spec.rb || die
-}
-
-all_ruby_install() {
-   all_fakegem_install
-
-   docinto examples
-   dodoc examples/*
-}



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

2019-12-17 Thread Hans de Graaff
commit: 4e72ef8e722781754e15f1ee51b1881e6488e5cb
Author: Hans de Graaff  gentoo  org>
AuthorDate: Wed Dec 18 06:33:00 2019 +
Commit: Hans de Graaff  gentoo  org>
CommitDate: Wed Dec 18 06:33:00 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4e72ef8e

dev-ruby/httparty: add 0.17.3

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

 dev-ruby/httparty/Manifest   |  1 +
 dev-ruby/httparty/httparty-0.17.3.ebuild | 57 
 2 files changed, 58 insertions(+)

diff --git a/dev-ruby/httparty/Manifest b/dev-ruby/httparty/Manifest
index 11d381e9ff9..a903972298d 100644
--- a/dev-ruby/httparty/Manifest
+++ b/dev-ruby/httparty/Manifest
@@ -1,2 +1,3 @@
 DIST httparty-0.17.0.gem 100352 BLAKE2B 
49cdb05a5f0f0e6c6e31eae6541333892042227e29b53761636ebf608bca32665ecd0cc538cbc1baca3b0745b89b43a81fff8620e2d96017a60518f46fd9f303
 SHA512 
9aefaadf364dfe68e8d41cadc4652d0b40ef395d6b0506243a35e771106ca2cc0e9947e1676db39e6f034fd31bde16cc4fb759b78287830681d049ab39178cfb
 DIST httparty-0.17.1.tar.gz 97249 BLAKE2B 
044a074c0a11c02d5fd929585b1dd6853871bdbfcf9be0f16b92999ac5e9ad7b0fb60a403a24d4e3ae3901f8fdb119f51e3decfc61e9ddf61419fa50581c1970
 SHA512 
2e92573e164575c462afceec26234731e8eb4472f127374503ee1361d8399116c78f900f88485629ca7ddb51a6383c963a5b1e21d9d5b0acbcc8544ce3f37465
+DIST httparty-0.17.3.tar.gz 97444 BLAKE2B 
773e40fc35ca44cd3b14a30e7a7ea5783c0c158cdb8488b34ffa36af5a572d5f6eef697cab147c5be1448906c35071284947ba598409be35af54a20846f4d98c
 SHA512 
c06aa4456c692e2a32f8e44b2316d46f664c4e2c8efb370607796f6801d96e989a54e61bdf125cff679b8c5f5abb1557b87aef48d8f3a392c1942ac4821db84d

diff --git a/dev-ruby/httparty/httparty-0.17.3.ebuild 
b/dev-ruby/httparty/httparty-0.17.3.ebuild
new file mode 100644
index 000..418e319afe6
--- /dev/null
+++ b/dev-ruby/httparty/httparty-0.17.3.ebuild
@@ -0,0 +1,57 @@
+# Copyright 1999-2019 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+USE_RUBY="ruby24 ruby25 ruby26"
+
+RUBY_FAKEGEM_RECIPE_TEST="rspec3"
+
+RUBY_FAKEGEM_RECIPE_DOC="none"
+RUBY_FAKEGEM_EXTRADOC="Changelog.md README.md"
+
+RUBY_FAKEGEM_GEMSPEC="httparty.gemspec"
+
+inherit ruby-fakegem
+
+DESCRIPTION="Makes http fun! Also, makes consuming restful web services dead 
easy"
+HOMEPAGE="https://jnunemaker.github.com/httparty;
+SRC_URI="https://github.com/jnunemaker/httparty/archive/v${PV}.tar.gz -> 
${P}.tar.gz"
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE=""
+
+ruby_add_rdepend 'dev-ruby/mime-types:3 >=dev-ruby/multi_xml-0.5.2'
+
+ruby_add_bdepend 'test? ( dev-ruby/webmock )'
+
+all_ruby_prepare() {
+   sed -i -e 's/git ls-files \?-\?-\?/find/' ${RUBY_FAKEGEM_GEMSPEC} || die
+
+   # Remove bundler
+   rm Gemfile || die
+   sed -i -e '/[Bb]undler/ s:^:#:' Rakefile || die
+
+   # Avoid test dependency on cucumber. We can't run the features since
+   # they depend on mongrel which is no longer packaged.
+   sed -i -e '/cucumber/I s:^:#:' Rakefile || die
+
+   # Avoid test dependency on simplecov
+   sed -i -e '/simplecov/I s:^:#:' \
+   -e '1i require "cgi"; require "delegate"' spec/spec_helper.rb 
|| die
+
+   # Avoid test that works standalone but fails in the suite
+   sed -i -e '/calls block given to perform with each redirect/,/^
end/ s:^:#:' spec/httparty/request_spec.rb
+
+   # Avoid test that is not fully compatible with newer multi_xml
+   sed -i -e '/should be able parse response type xml automatically/askip 
"multi_xml"' spec/httparty_spec.rb || die
+}
+
+all_ruby_install() {
+   all_fakegem_install
+
+   docinto examples
+   dodoc examples/*
+}



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

2019-11-16 Thread Hans de Graaff
commit: 61266692f92fa3ec9950cd5ec031e8753287e84f
Author: Hans de Graaff  gentoo  org>
AuthorDate: Sat Nov 16 07:26:17 2019 +
Commit: Hans de Graaff  gentoo  org>
CommitDate: Sat Nov 16 09:13:46 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=61266692

dev-ruby/httparty: amd64 stable

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

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

diff --git a/dev-ruby/httparty/httparty-0.17.1.ebuild 
b/dev-ruby/httparty/httparty-0.17.1.ebuild
index 418e319afe6..f63c2861267 100644
--- a/dev-ruby/httparty/httparty-0.17.1.ebuild
+++ b/dev-ruby/httparty/httparty-0.17.1.ebuild
@@ -20,7 +20,7 @@ 
SRC_URI="https://github.com/jnunemaker/httparty/archive/v${PV}.tar.gz -> ${P}.ta
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="~amd64 ~x86"
+KEYWORDS="amd64 ~x86"
 IUSE=""
 
 ruby_add_rdepend 'dev-ruby/mime-types:3 >=dev-ruby/multi_xml-0.5.2'



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

2019-11-16 Thread Hans de Graaff
commit: af5d7601725b52db210998615d47329d2b7a10ac
Author: Hans de Graaff  gentoo  org>
AuthorDate: Sat Nov 16 07:24:21 2019 +
Commit: Hans de Graaff  gentoo  org>
CommitDate: Sat Nov 16 09:13:45 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=af5d7601

dev-ruby/httparty: cleanup

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

 dev-ruby/httparty/Manifest   |  1 -
 dev-ruby/httparty/httparty-0.16.4.ebuild | 52 
 2 files changed, 53 deletions(-)

diff --git a/dev-ruby/httparty/Manifest b/dev-ruby/httparty/Manifest
index 619975fa917..11d381e9ff9 100644
--- a/dev-ruby/httparty/Manifest
+++ b/dev-ruby/httparty/Manifest
@@ -1,3 +1,2 @@
-DIST httparty-0.16.4.gem 91136 BLAKE2B 
07988ebd768d826753780d1ac0e1cbf26dd592f131af690b8873787dcb00a48553fb5abb8962eb948ed7a877e38faab3103d9be90ee9c9867cc304b7b1a709e0
 SHA512 
a3465234cdc6118396b385c482a44a0c6aabf37cb81d00186c4f004e63d7c692bf8783c72dad5702d347d2dbf5bd0b54e78fb4852c149851b27d65f886c3525a
 DIST httparty-0.17.0.gem 100352 BLAKE2B 
49cdb05a5f0f0e6c6e31eae6541333892042227e29b53761636ebf608bca32665ecd0cc538cbc1baca3b0745b89b43a81fff8620e2d96017a60518f46fd9f303
 SHA512 
9aefaadf364dfe68e8d41cadc4652d0b40ef395d6b0506243a35e771106ca2cc0e9947e1676db39e6f034fd31bde16cc4fb759b78287830681d049ab39178cfb
 DIST httparty-0.17.1.tar.gz 97249 BLAKE2B 
044a074c0a11c02d5fd929585b1dd6853871bdbfcf9be0f16b92999ac5e9ad7b0fb60a403a24d4e3ae3901f8fdb119f51e3decfc61e9ddf61419fa50581c1970
 SHA512 
2e92573e164575c462afceec26234731e8eb4472f127374503ee1361d8399116c78f900f88485629ca7ddb51a6383c963a5b1e21d9d5b0acbcc8544ce3f37465

diff --git a/dev-ruby/httparty/httparty-0.16.4.ebuild 
b/dev-ruby/httparty/httparty-0.16.4.ebuild
deleted file mode 100644
index dfd2e3b99d9..000
--- a/dev-ruby/httparty/httparty-0.16.4.ebuild
+++ /dev/null
@@ -1,52 +0,0 @@
-# Copyright 1999-2019 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-
-USE_RUBY="ruby23 ruby24 ruby25"
-
-RUBY_FAKEGEM_RECIPE_TEST="rspec3"
-
-RUBY_FAKEGEM_TASK_DOC=""
-RUBY_FAKEGEM_EXTRADOC="Changelog.md README.md"
-
-inherit ruby-fakegem
-
-DESCRIPTION="Makes http fun! Also, makes consuming restful web services dead 
easy"
-HOMEPAGE="https://jnunemaker.github.com/httparty;
-
-LICENSE="MIT"
-SLOT="0"
-KEYWORDS="amd64 ~x86"
-IUSE=""
-
-ruby_add_rdepend 'dev-ruby/mime-types:3 >=dev-ruby/multi_xml-0.5.2'
-
-ruby_add_bdepend 'test? ( dev-ruby/webmock )'
-
-all_ruby_prepare() {
-   # Remove bundler
-   rm Gemfile || die
-   sed -i -e '/[Bb]undler/ s:^:#:' Rakefile || die
-
-   # Avoid test dependency on cucumber. We can't run the features since
-   # they depend on mongrel which is no longer packaged.
-   sed -i -e '/cucumber/I s:^:#:' Rakefile || die
-
-   # Avoid test dependency on simplecov
-   sed -i -e '/simplecov/I s:^:#:' \
-   -e '1i require "cgi"; require "delegate"' spec/spec_helper.rb 
|| die
-
-   # Avoid test that works standalone but fails in the suite
-   sed -i -e '/calls block given to perform with each redirect/,/^
end/ s:^:#:' spec/httparty/request_spec.rb
-
-   # Avoid test that is not fully compatible with newer multi_xml
-   sed -i -e '/should be able parse response type xml automatically/askip 
"multi_xml"' spec/httparty_spec.rb || die
-}
-
-all_ruby_install() {
-   all_fakegem_install
-
-   docinto examples
-   dodoc examples/*
-}



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

2019-09-19 Thread Hans de Graaff
commit: daf9ccb9c99e6c4cfa082160151ad000c31ff984
Author: Hans de Graaff  gentoo  org>
AuthorDate: Thu Sep 19 05:02:54 2019 +
Commit: Hans de Graaff  gentoo  org>
CommitDate: Thu Sep 19 06:03:54 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=daf9ccb9

dev-ruby/httparty: amd64 stable

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

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

diff --git a/dev-ruby/httparty/httparty-0.17.0.ebuild 
b/dev-ruby/httparty/httparty-0.17.0.ebuild
index 572fb718f92..6a35a79fd15 100644
--- a/dev-ruby/httparty/httparty-0.17.0.ebuild
+++ b/dev-ruby/httparty/httparty-0.17.0.ebuild
@@ -17,7 +17,7 @@ HOMEPAGE="https://jnunemaker.github.com/httparty;
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="~amd64 ~x86"
+KEYWORDS="amd64 ~x86"
 IUSE=""
 
 ruby_add_rdepend 'dev-ruby/mime-types:3 >=dev-ruby/multi_xml-0.5.2'



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

2019-09-19 Thread Hans de Graaff
commit: e0a2f980408a659e226fcdba2bc0c2319f964a78
Author: Hans de Graaff  gentoo  org>
AuthorDate: Thu Sep 19 05:01:55 2019 +
Commit: Hans de Graaff  gentoo  org>
CommitDate: Thu Sep 19 06:03:53 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e0a2f980

dev-ruby/httparty: add 0.17.1

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

 dev-ruby/httparty/Manifest   |  1 +
 dev-ruby/httparty/httparty-0.17.1.ebuild | 55 
 2 files changed, 56 insertions(+)

diff --git a/dev-ruby/httparty/Manifest b/dev-ruby/httparty/Manifest
index cf04c2c3bca..619975fa917 100644
--- a/dev-ruby/httparty/Manifest
+++ b/dev-ruby/httparty/Manifest
@@ -1,2 +1,3 @@
 DIST httparty-0.16.4.gem 91136 BLAKE2B 
07988ebd768d826753780d1ac0e1cbf26dd592f131af690b8873787dcb00a48553fb5abb8962eb948ed7a877e38faab3103d9be90ee9c9867cc304b7b1a709e0
 SHA512 
a3465234cdc6118396b385c482a44a0c6aabf37cb81d00186c4f004e63d7c692bf8783c72dad5702d347d2dbf5bd0b54e78fb4852c149851b27d65f886c3525a
 DIST httparty-0.17.0.gem 100352 BLAKE2B 
49cdb05a5f0f0e6c6e31eae6541333892042227e29b53761636ebf608bca32665ecd0cc538cbc1baca3b0745b89b43a81fff8620e2d96017a60518f46fd9f303
 SHA512 
9aefaadf364dfe68e8d41cadc4652d0b40ef395d6b0506243a35e771106ca2cc0e9947e1676db39e6f034fd31bde16cc4fb759b78287830681d049ab39178cfb
+DIST httparty-0.17.1.tar.gz 97249 BLAKE2B 
044a074c0a11c02d5fd929585b1dd6853871bdbfcf9be0f16b92999ac5e9ad7b0fb60a403a24d4e3ae3901f8fdb119f51e3decfc61e9ddf61419fa50581c1970
 SHA512 
2e92573e164575c462afceec26234731e8eb4472f127374503ee1361d8399116c78f900f88485629ca7ddb51a6383c963a5b1e21d9d5b0acbcc8544ce3f37465

diff --git a/dev-ruby/httparty/httparty-0.17.1.ebuild 
b/dev-ruby/httparty/httparty-0.17.1.ebuild
new file mode 100644
index 000..91c3eb58c40
--- /dev/null
+++ b/dev-ruby/httparty/httparty-0.17.1.ebuild
@@ -0,0 +1,55 @@
+# Copyright 1999-2019 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+USE_RUBY="ruby24 ruby25 ruby26"
+
+RUBY_FAKEGEM_RECIPE_TEST="rspec3"
+
+RUBY_FAKEGEM_RECIPE_DOC="none"
+RUBY_FAKEGEM_EXTRADOC="Changelog.md README.md"
+
+RUBY_FAKEGEM_GEMSPEC="httparty.gemspec"
+
+inherit ruby-fakegem
+
+DESCRIPTION="Makes http fun! Also, makes consuming restful web services dead 
easy"
+HOMEPAGE="https://jnunemaker.github.com/httparty;
+SRC_URI="https://github.com/jnunemaker/httparty/archive/v${PV}.tar.gz -> 
${P}.tar.gz"
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE=""
+
+ruby_add_rdepend 'dev-ruby/mime-types:3 >=dev-ruby/multi_xml-0.5.2'
+
+ruby_add_bdepend 'test? ( dev-ruby/webmock )'
+
+all_ruby_prepare() {
+   # Remove bundler
+   rm Gemfile || die
+   sed -i -e '/[Bb]undler/ s:^:#:' Rakefile || die
+
+   # Avoid test dependency on cucumber. We can't run the features since
+   # they depend on mongrel which is no longer packaged.
+   sed -i -e '/cucumber/I s:^:#:' Rakefile || die
+
+   # Avoid test dependency on simplecov
+   sed -i -e '/simplecov/I s:^:#:' \
+   -e '1i require "cgi"; require "delegate"' spec/spec_helper.rb 
|| die
+
+   # Avoid test that works standalone but fails in the suite
+   sed -i -e '/calls block given to perform with each redirect/,/^
end/ s:^:#:' spec/httparty/request_spec.rb
+
+   # Avoid test that is not fully compatible with newer multi_xml
+   sed -i -e '/should be able parse response type xml automatically/askip 
"multi_xml"' spec/httparty_spec.rb || die
+}
+
+all_ruby_install() {
+   all_fakegem_install
+
+   docinto examples
+   dodoc examples/*
+}



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

2019-09-19 Thread Hans de Graaff
commit: e2858097f753a5ae5eeda0e6019ba47b82195188
Author: Hans de Graaff  gentoo  org>
AuthorDate: Thu Sep 19 05:55:14 2019 +
Commit: Hans de Graaff  gentoo  org>
CommitDate: Thu Sep 19 06:03:56 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e2858097

dev-ruby/httparty: fix gemspec generation

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

 dev-ruby/httparty/httparty-0.17.1.ebuild | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/dev-ruby/httparty/httparty-0.17.1.ebuild 
b/dev-ruby/httparty/httparty-0.17.1.ebuild
index 91c3eb58c40..418e319afe6 100644
--- a/dev-ruby/httparty/httparty-0.17.1.ebuild
+++ b/dev-ruby/httparty/httparty-0.17.1.ebuild
@@ -28,6 +28,8 @@ ruby_add_rdepend 'dev-ruby/mime-types:3 
>=dev-ruby/multi_xml-0.5.2'
 ruby_add_bdepend 'test? ( dev-ruby/webmock )'
 
 all_ruby_prepare() {
+   sed -i -e 's/git ls-files \?-\?-\?/find/' ${RUBY_FAKEGEM_GEMSPEC} || die
+
# Remove bundler
rm Gemfile || die
sed -i -e '/[Bb]undler/ s:^:#:' Rakefile || die



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

2019-05-13 Thread Hans de Graaff
commit: aeeeb165d136f9a4469039898da47bd76ac5959e
Author: Hans de Graaff  gentoo  org>
AuthorDate: Mon May 13 18:31:57 2019 +
Commit: Hans de Graaff  gentoo  org>
CommitDate: Mon May 13 18:39:17 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=aeeeb165

dev-ruby/httparty: cleanup

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

 dev-ruby/httparty/Manifest   |  1 -
 dev-ruby/httparty/httparty-0.16.2.ebuild | 52 
 2 files changed, 53 deletions(-)

diff --git a/dev-ruby/httparty/Manifest b/dev-ruby/httparty/Manifest
index d9cb7cb7cb8..cf04c2c3bca 100644
--- a/dev-ruby/httparty/Manifest
+++ b/dev-ruby/httparty/Manifest
@@ -1,3 +1,2 @@
-DIST httparty-0.16.2.gem 89600 BLAKE2B 
581b5fcadf59bb50864b2fa6d1aae220ff9881bba53363601c6e70c3291dc2cee351a8f42b1946ad516cdcab5a85b832e4260f04394e54255e0cd76bc6860d5e
 SHA512 
13efbacb9ee0325fbb185279ca9f7ffcc0131189ccf98d9889c6a1b6bcfa04fd7cbc6d1393bffe69a5a813a2f54f70b5926e176305fa70480dd0902968c894d0
 DIST httparty-0.16.4.gem 91136 BLAKE2B 
07988ebd768d826753780d1ac0e1cbf26dd592f131af690b8873787dcb00a48553fb5abb8962eb948ed7a877e38faab3103d9be90ee9c9867cc304b7b1a709e0
 SHA512 
a3465234cdc6118396b385c482a44a0c6aabf37cb81d00186c4f004e63d7c692bf8783c72dad5702d347d2dbf5bd0b54e78fb4852c149851b27d65f886c3525a
 DIST httparty-0.17.0.gem 100352 BLAKE2B 
49cdb05a5f0f0e6c6e31eae6541333892042227e29b53761636ebf608bca32665ecd0cc538cbc1baca3b0745b89b43a81fff8620e2d96017a60518f46fd9f303
 SHA512 
9aefaadf364dfe68e8d41cadc4652d0b40ef395d6b0506243a35e771106ca2cc0e9947e1676db39e6f034fd31bde16cc4fb759b78287830681d049ab39178cfb

diff --git a/dev-ruby/httparty/httparty-0.16.2.ebuild 
b/dev-ruby/httparty/httparty-0.16.2.ebuild
deleted file mode 100644
index 926f0900a96..000
--- a/dev-ruby/httparty/httparty-0.16.2.ebuild
+++ /dev/null
@@ -1,52 +0,0 @@
-# Copyright 1999-2018 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-
-USE_RUBY="ruby23 ruby24 ruby25"
-
-RUBY_FAKEGEM_RECIPE_TEST="rspec3"
-
-RUBY_FAKEGEM_TASK_DOC=""
-RUBY_FAKEGEM_EXTRADOC="Changelog.md README.md"
-
-inherit ruby-fakegem
-
-DESCRIPTION="Makes http fun! Also, makes consuming restful web services dead 
easy"
-HOMEPAGE="https://jnunemaker.github.com/httparty;
-
-LICENSE="MIT"
-SLOT="0"
-KEYWORDS="amd64 ~x86"
-IUSE=""
-
-ruby_add_rdepend '>=dev-ruby/multi_xml-0.5.2'
-
-ruby_add_bdepend 'test? ( dev-ruby/webmock )'
-
-all_ruby_prepare() {
-   # Remove bundler
-   rm Gemfile || die
-   sed -i -e '/[Bb]undler/ s:^:#:' Rakefile || die
-
-   # Avoid test dependency on cucumber. We can't run the features since
-   # they depend on mongrel which is no longer packaged.
-   sed -i -e '/cucumber/I s:^:#:' Rakefile || die
-
-   # Avoid test dependency on simplecov
-   sed -i -e '/simplecov/I s:^:#:' \
-   -e '1i require "cgi"; require "delegate"' spec/spec_helper.rb 
|| die
-
-   # Avoid test that works standalone but fails in the suite
-   sed -i -e '/calls block given to perform with each redirect/,/^
end/ s:^:#:' spec/httparty/request_spec.rb
-
-   # Avoid test that is not fully compatible with newer multi_xml
-   sed -i -e '/should be able parse response type xml automatically/askip 
"multi_xml"' spec/httparty_spec.rb || die
-}
-
-all_ruby_install() {
-   all_fakegem_install
-
-   docinto examples
-   dodoc examples/*
-}



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

2019-05-13 Thread Hans de Graaff
commit: e874eb66719848793b745b0f1ca8b20934934b9a
Author: Hans de Graaff  gentoo  org>
AuthorDate: Mon May 13 18:33:07 2019 +
Commit: Hans de Graaff  gentoo  org>
CommitDate: Mon May 13 18:39:18 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e874eb66

dev-ruby/httparty: add ruby26

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

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

diff --git a/dev-ruby/httparty/httparty-0.17.0.ebuild 
b/dev-ruby/httparty/httparty-0.17.0.ebuild
index 2e236d4eb46..572fb718f92 100644
--- a/dev-ruby/httparty/httparty-0.17.0.ebuild
+++ b/dev-ruby/httparty/httparty-0.17.0.ebuild
@@ -3,7 +3,7 @@
 
 EAPI=6
 
-USE_RUBY="ruby24 ruby25"
+USE_RUBY="ruby24 ruby25 ruby26"
 
 RUBY_FAKEGEM_RECIPE_TEST="rspec3"
 



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

2019-04-20 Thread Hans de Graaff
commit: 4e6f41b9ab2bda5a325b30ec858e2a5b7046b0ad
Author: Hans de Graaff  gentoo  org>
AuthorDate: Sun Apr 21 05:53:10 2019 +
Commit: Hans de Graaff  gentoo  org>
CommitDate: Sun Apr 21 05:54:15 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4e6f41b9

dev-ruby/httparty: add 0.17.0

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

 dev-ruby/httparty/Manifest   |  1 +
 dev-ruby/httparty/httparty-0.17.0.ebuild | 52 
 2 files changed, 53 insertions(+)

diff --git a/dev-ruby/httparty/Manifest b/dev-ruby/httparty/Manifest
index 88c326c6cf5..d9cb7cb7cb8 100644
--- a/dev-ruby/httparty/Manifest
+++ b/dev-ruby/httparty/Manifest
@@ -1,2 +1,3 @@
 DIST httparty-0.16.2.gem 89600 BLAKE2B 
581b5fcadf59bb50864b2fa6d1aae220ff9881bba53363601c6e70c3291dc2cee351a8f42b1946ad516cdcab5a85b832e4260f04394e54255e0cd76bc6860d5e
 SHA512 
13efbacb9ee0325fbb185279ca9f7ffcc0131189ccf98d9889c6a1b6bcfa04fd7cbc6d1393bffe69a5a813a2f54f70b5926e176305fa70480dd0902968c894d0
 DIST httparty-0.16.4.gem 91136 BLAKE2B 
07988ebd768d826753780d1ac0e1cbf26dd592f131af690b8873787dcb00a48553fb5abb8962eb948ed7a877e38faab3103d9be90ee9c9867cc304b7b1a709e0
 SHA512 
a3465234cdc6118396b385c482a44a0c6aabf37cb81d00186c4f004e63d7c692bf8783c72dad5702d347d2dbf5bd0b54e78fb4852c149851b27d65f886c3525a
+DIST httparty-0.17.0.gem 100352 BLAKE2B 
49cdb05a5f0f0e6c6e31eae6541333892042227e29b53761636ebf608bca32665ecd0cc538cbc1baca3b0745b89b43a81fff8620e2d96017a60518f46fd9f303
 SHA512 
9aefaadf364dfe68e8d41cadc4652d0b40ef395d6b0506243a35e771106ca2cc0e9947e1676db39e6f034fd31bde16cc4fb759b78287830681d049ab39178cfb

diff --git a/dev-ruby/httparty/httparty-0.17.0.ebuild 
b/dev-ruby/httparty/httparty-0.17.0.ebuild
new file mode 100644
index 000..2e236d4eb46
--- /dev/null
+++ b/dev-ruby/httparty/httparty-0.17.0.ebuild
@@ -0,0 +1,52 @@
+# Copyright 1999-2019 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+
+USE_RUBY="ruby24 ruby25"
+
+RUBY_FAKEGEM_RECIPE_TEST="rspec3"
+
+RUBY_FAKEGEM_TASK_DOC=""
+RUBY_FAKEGEM_EXTRADOC="Changelog.md README.md"
+
+inherit ruby-fakegem
+
+DESCRIPTION="Makes http fun! Also, makes consuming restful web services dead 
easy"
+HOMEPAGE="https://jnunemaker.github.com/httparty;
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE=""
+
+ruby_add_rdepend 'dev-ruby/mime-types:3 >=dev-ruby/multi_xml-0.5.2'
+
+ruby_add_bdepend 'test? ( dev-ruby/webmock )'
+
+all_ruby_prepare() {
+   # Remove bundler
+   rm Gemfile || die
+   sed -i -e '/[Bb]undler/ s:^:#:' Rakefile || die
+
+   # Avoid test dependency on cucumber. We can't run the features since
+   # they depend on mongrel which is no longer packaged.
+   sed -i -e '/cucumber/I s:^:#:' Rakefile || die
+
+   # Avoid test dependency on simplecov
+   sed -i -e '/simplecov/I s:^:#:' \
+   -e '1i require "cgi"; require "delegate"' spec/spec_helper.rb 
|| die
+
+   # Avoid test that works standalone but fails in the suite
+   sed -i -e '/calls block given to perform with each redirect/,/^
end/ s:^:#:' spec/httparty/request_spec.rb
+
+   # Avoid test that is not fully compatible with newer multi_xml
+   sed -i -e '/should be able parse response type xml automatically/askip 
"multi_xml"' spec/httparty_spec.rb || die
+}
+
+all_ruby_install() {
+   all_fakegem_install
+
+   docinto examples
+   dodoc examples/*
+}



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

2019-04-20 Thread Hans de Graaff
commit: ab7e34de609c7d95eb8f7909964f62d1f3e73119
Author: Hans de Graaff  gentoo  org>
AuthorDate: Sun Apr 21 05:48:34 2019 +
Commit: Hans de Graaff  gentoo  org>
CommitDate: Sun Apr 21 05:54:14 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ab7e34de

dev-ruby/httparty: amd64 stable

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

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

diff --git a/dev-ruby/httparty/httparty-0.16.4.ebuild 
b/dev-ruby/httparty/httparty-0.16.4.ebuild
index 164c944481e..dfd2e3b99d9 100644
--- a/dev-ruby/httparty/httparty-0.16.4.ebuild
+++ b/dev-ruby/httparty/httparty-0.16.4.ebuild
@@ -17,7 +17,7 @@ HOMEPAGE="https://jnunemaker.github.com/httparty;
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="~amd64 ~x86"
+KEYWORDS="amd64 ~x86"
 IUSE=""
 
 ruby_add_rdepend 'dev-ruby/mime-types:3 >=dev-ruby/multi_xml-0.5.2'



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

2019-04-20 Thread Hans de Graaff
commit: e5aead9f3148a722572fd6acef94b7b04d94623e
Author: Hans de Graaff  gentoo  org>
AuthorDate: Sun Apr 21 05:27:59 2019 +
Commit: Hans de Graaff  gentoo  org>
CommitDate: Sun Apr 21 05:54:08 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e5aead9f

dev-ruby/httparty: cleanup

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

 dev-ruby/httparty/Manifest   |  1 -
 dev-ruby/httparty/httparty-0.16.3.ebuild | 52 
 2 files changed, 53 deletions(-)

diff --git a/dev-ruby/httparty/Manifest b/dev-ruby/httparty/Manifest
index 61e78aa35d0..88c326c6cf5 100644
--- a/dev-ruby/httparty/Manifest
+++ b/dev-ruby/httparty/Manifest
@@ -1,3 +1,2 @@
 DIST httparty-0.16.2.gem 89600 BLAKE2B 
581b5fcadf59bb50864b2fa6d1aae220ff9881bba53363601c6e70c3291dc2cee351a8f42b1946ad516cdcab5a85b832e4260f04394e54255e0cd76bc6860d5e
 SHA512 
13efbacb9ee0325fbb185279ca9f7ffcc0131189ccf98d9889c6a1b6bcfa04fd7cbc6d1393bffe69a5a813a2f54f70b5926e176305fa70480dd0902968c894d0
-DIST httparty-0.16.3.gem 92672 BLAKE2B 
d32f0da8eb2c5e9f2e094c1c8971c53a8e6eab4b0a7b98014d04b27a644d1c2142cf6c97f4db5cd1274f35c8e80ce332f86cae8ee4adba2d0636aabb7f40bea5
 SHA512 
26916c635fe4cc01a38132ab5970487aef4529239e922d196f5922187eb466d24ead0e2e15889d721a37f6358b65570ca022b78e166bd49ed08c7150acec816a
 DIST httparty-0.16.4.gem 91136 BLAKE2B 
07988ebd768d826753780d1ac0e1cbf26dd592f131af690b8873787dcb00a48553fb5abb8962eb948ed7a877e38faab3103d9be90ee9c9867cc304b7b1a709e0
 SHA512 
a3465234cdc6118396b385c482a44a0c6aabf37cb81d00186c4f004e63d7c692bf8783c72dad5702d347d2dbf5bd0b54e78fb4852c149851b27d65f886c3525a

diff --git a/dev-ruby/httparty/httparty-0.16.3.ebuild 
b/dev-ruby/httparty/httparty-0.16.3.ebuild
deleted file mode 100644
index 4b5fde1500a..000
--- a/dev-ruby/httparty/httparty-0.16.3.ebuild
+++ /dev/null
@@ -1,52 +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_TASK_DOC=""
-RUBY_FAKEGEM_EXTRADOC="Changelog.md README.md"
-
-inherit ruby-fakegem
-
-DESCRIPTION="Makes http fun! Also, makes consuming restful web services dead 
easy"
-HOMEPAGE="https://jnunemaker.github.com/httparty;
-
-LICENSE="MIT"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-IUSE=""
-
-ruby_add_rdepend 'dev-ruby/mime-types:3 >=dev-ruby/multi_xml-0.5.2'
-
-ruby_add_bdepend 'test? ( dev-ruby/webmock )'
-
-all_ruby_prepare() {
-   # Remove bundler
-   rm Gemfile || die
-   sed -i -e '/[Bb]undler/ s:^:#:' Rakefile || die
-
-   # Avoid test dependency on cucumber. We can't run the features since
-   # they depend on mongrel which is no longer packaged.
-   sed -i -e '/cucumber/I s:^:#:' Rakefile || die
-
-   # Avoid test dependency on simplecov
-   sed -i -e '/simplecov/I s:^:#:' \
-   -e '1i require "cgi"; require "delegate"' spec/spec_helper.rb 
|| die
-
-   # Avoid test that works standalone but fails in the suite
-   sed -i -e '/calls block given to perform with each redirect/,/^
end/ s:^:#:' spec/httparty/request_spec.rb
-
-   # Avoid test that is not fully compatible with newer multi_xml
-   sed -i -e '/should be able parse response type xml automatically/askip 
"multi_xml"' spec/httparty_spec.rb || die
-}
-
-all_ruby_install() {
-   all_fakegem_install
-
-   docinto examples
-   dodoc examples/*
-}



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

2019-02-05 Thread Hans de Graaff
commit: ee2012d91e81760b179c4815bba837b8a77c1549
Author: Hans de Graaff  gentoo  org>
AuthorDate: Wed Feb  6 06:27:11 2019 +
Commit: Hans de Graaff  gentoo  org>
CommitDate: Wed Feb  6 06:27:11 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ee2012d9

dev-ruby/httparty: add 0.16.4

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

 dev-ruby/httparty/Manifest   |  1 +
 dev-ruby/httparty/httparty-0.16.4.ebuild | 52 
 2 files changed, 53 insertions(+)

diff --git a/dev-ruby/httparty/Manifest b/dev-ruby/httparty/Manifest
index aaca75ffd64..61e78aa35d0 100644
--- a/dev-ruby/httparty/Manifest
+++ b/dev-ruby/httparty/Manifest
@@ -1,2 +1,3 @@
 DIST httparty-0.16.2.gem 89600 BLAKE2B 
581b5fcadf59bb50864b2fa6d1aae220ff9881bba53363601c6e70c3291dc2cee351a8f42b1946ad516cdcab5a85b832e4260f04394e54255e0cd76bc6860d5e
 SHA512 
13efbacb9ee0325fbb185279ca9f7ffcc0131189ccf98d9889c6a1b6bcfa04fd7cbc6d1393bffe69a5a813a2f54f70b5926e176305fa70480dd0902968c894d0
 DIST httparty-0.16.3.gem 92672 BLAKE2B 
d32f0da8eb2c5e9f2e094c1c8971c53a8e6eab4b0a7b98014d04b27a644d1c2142cf6c97f4db5cd1274f35c8e80ce332f86cae8ee4adba2d0636aabb7f40bea5
 SHA512 
26916c635fe4cc01a38132ab5970487aef4529239e922d196f5922187eb466d24ead0e2e15889d721a37f6358b65570ca022b78e166bd49ed08c7150acec816a
+DIST httparty-0.16.4.gem 91136 BLAKE2B 
07988ebd768d826753780d1ac0e1cbf26dd592f131af690b8873787dcb00a48553fb5abb8962eb948ed7a877e38faab3103d9be90ee9c9867cc304b7b1a709e0
 SHA512 
a3465234cdc6118396b385c482a44a0c6aabf37cb81d00186c4f004e63d7c692bf8783c72dad5702d347d2dbf5bd0b54e78fb4852c149851b27d65f886c3525a

diff --git a/dev-ruby/httparty/httparty-0.16.4.ebuild 
b/dev-ruby/httparty/httparty-0.16.4.ebuild
new file mode 100644
index 000..164c944481e
--- /dev/null
+++ b/dev-ruby/httparty/httparty-0.16.4.ebuild
@@ -0,0 +1,52 @@
+# Copyright 1999-2019 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_TASK_DOC=""
+RUBY_FAKEGEM_EXTRADOC="Changelog.md README.md"
+
+inherit ruby-fakegem
+
+DESCRIPTION="Makes http fun! Also, makes consuming restful web services dead 
easy"
+HOMEPAGE="https://jnunemaker.github.com/httparty;
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE=""
+
+ruby_add_rdepend 'dev-ruby/mime-types:3 >=dev-ruby/multi_xml-0.5.2'
+
+ruby_add_bdepend 'test? ( dev-ruby/webmock )'
+
+all_ruby_prepare() {
+   # Remove bundler
+   rm Gemfile || die
+   sed -i -e '/[Bb]undler/ s:^:#:' Rakefile || die
+
+   # Avoid test dependency on cucumber. We can't run the features since
+   # they depend on mongrel which is no longer packaged.
+   sed -i -e '/cucumber/I s:^:#:' Rakefile || die
+
+   # Avoid test dependency on simplecov
+   sed -i -e '/simplecov/I s:^:#:' \
+   -e '1i require "cgi"; require "delegate"' spec/spec_helper.rb 
|| die
+
+   # Avoid test that works standalone but fails in the suite
+   sed -i -e '/calls block given to perform with each redirect/,/^
end/ s:^:#:' spec/httparty/request_spec.rb
+
+   # Avoid test that is not fully compatible with newer multi_xml
+   sed -i -e '/should be able parse response type xml automatically/askip 
"multi_xml"' spec/httparty_spec.rb || die
+}
+
+all_ruby_install() {
+   all_fakegem_install
+
+   docinto examples
+   dodoc examples/*
+}



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

2018-11-14 Thread Hans de Graaff
commit: 10265cbb65eac3f3d2889931af946ef2970b8d26
Author: Hans de Graaff  gentoo  org>
AuthorDate: Thu Nov 15 06:14:17 2018 +
Commit: Hans de Graaff  gentoo  org>
CommitDate: Thu Nov 15 07:23:57 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=10265cbb

dev-ruby/httparty: cleanup

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

 dev-ruby/httparty/Manifest   |  1 -
 dev-ruby/httparty/httparty-0.16.0.ebuild | 49 
 2 files changed, 50 deletions(-)

diff --git a/dev-ruby/httparty/Manifest b/dev-ruby/httparty/Manifest
index 57372b1397b..c11e7ed56b2 100644
--- a/dev-ruby/httparty/Manifest
+++ b/dev-ruby/httparty/Manifest
@@ -1,2 +1 @@
-DIST httparty-0.16.0.gem 89088 BLAKE2B 
27715c6760a9adeec289a005f89de219b32e6ad5c3f937478ad4187df895096f9375b0d20a4b33c1c62b96de6313017a713a036247756a96fe9366e7c1e77247
 SHA512 
c523ab3555d0a86e2df53e800be57b88f40bb680e7df31e754ddc3e76728eb2228e6ddbe9a3e580c4c604a126ebcd33be79dfde3758faf99aadbba4d30d9508d
 DIST httparty-0.16.2.gem 89600 BLAKE2B 
581b5fcadf59bb50864b2fa6d1aae220ff9881bba53363601c6e70c3291dc2cee351a8f42b1946ad516cdcab5a85b832e4260f04394e54255e0cd76bc6860d5e
 SHA512 
13efbacb9ee0325fbb185279ca9f7ffcc0131189ccf98d9889c6a1b6bcfa04fd7cbc6d1393bffe69a5a813a2f54f70b5926e176305fa70480dd0902968c894d0

diff --git a/dev-ruby/httparty/httparty-0.16.0.ebuild 
b/dev-ruby/httparty/httparty-0.16.0.ebuild
deleted file mode 100644
index 472d30ad10f..000
--- a/dev-ruby/httparty/httparty-0.16.0.ebuild
+++ /dev/null
@@ -1,49 +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_TASK_DOC=""
-RUBY_FAKEGEM_EXTRADOC="Changelog.md README.md"
-
-inherit ruby-fakegem
-
-DESCRIPTION="Makes http fun! Also, makes consuming restful web services dead 
easy"
-HOMEPAGE="https://jnunemaker.github.com/httparty;
-
-LICENSE="MIT"
-SLOT="0"
-KEYWORDS="amd64 ~x86"
-IUSE=""
-
-ruby_add_rdepend '>=dev-ruby/multi_xml-0.5.2'
-
-ruby_add_bdepend 'test? ( dev-ruby/webmock )'
-
-all_ruby_prepare() {
-   # Remove bundler
-   rm Gemfile || die
-   sed -i -e '/[Bb]undler/ s:^:#:' Rakefile || die
-
-   # Avoid test dependency on cucumber. We can't run the features since
-   # they depend on mongrel which is no longer packaged.
-   sed -i -e '/cucumber/I s:^:#:' Rakefile || die
-
-   # Avoid test dependency on simplecov
-   sed -i -e '/simplecov/I s:^:#:' \
-   -e '1i require "cgi"; require "delegate"' spec/spec_helper.rb 
|| die
-
-   # Avoid test that works standalone but fails in the suite
-   sed -i -e '/calls block given to perform with each redirect/,/^
end/ s:^:#:' spec/httparty/request_spec.rb
-}
-
-all_ruby_install() {
-   all_fakegem_install
-
-   docinto examples
-   dodoc examples/*
-}



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

2018-11-14 Thread Hans de Graaff
commit: e5723b8f7259e028fdf71989148ca1c8086fec2e
Author: Hans de Graaff  gentoo  org>
AuthorDate: Thu Nov 15 06:16:11 2018 +
Commit: Hans de Graaff  gentoo  org>
CommitDate: Thu Nov 15 07:23:59 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e5723b8f

dev-ruby/httparty: add 0.16.3

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

 dev-ruby/httparty/Manifest   |  1 +
 dev-ruby/httparty/httparty-0.16.3.ebuild | 52 
 2 files changed, 53 insertions(+)

diff --git a/dev-ruby/httparty/Manifest b/dev-ruby/httparty/Manifest
index c11e7ed56b2..aaca75ffd64 100644
--- a/dev-ruby/httparty/Manifest
+++ b/dev-ruby/httparty/Manifest
@@ -1 +1,2 @@
 DIST httparty-0.16.2.gem 89600 BLAKE2B 
581b5fcadf59bb50864b2fa6d1aae220ff9881bba53363601c6e70c3291dc2cee351a8f42b1946ad516cdcab5a85b832e4260f04394e54255e0cd76bc6860d5e
 SHA512 
13efbacb9ee0325fbb185279ca9f7ffcc0131189ccf98d9889c6a1b6bcfa04fd7cbc6d1393bffe69a5a813a2f54f70b5926e176305fa70480dd0902968c894d0
+DIST httparty-0.16.3.gem 92672 BLAKE2B 
d32f0da8eb2c5e9f2e094c1c8971c53a8e6eab4b0a7b98014d04b27a644d1c2142cf6c97f4db5cd1274f35c8e80ce332f86cae8ee4adba2d0636aabb7f40bea5
 SHA512 
26916c635fe4cc01a38132ab5970487aef4529239e922d196f5922187eb466d24ead0e2e15889d721a37f6358b65570ca022b78e166bd49ed08c7150acec816a

diff --git a/dev-ruby/httparty/httparty-0.16.3.ebuild 
b/dev-ruby/httparty/httparty-0.16.3.ebuild
new file mode 100644
index 000..4b5fde1500a
--- /dev/null
+++ b/dev-ruby/httparty/httparty-0.16.3.ebuild
@@ -0,0 +1,52 @@
+# 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_TASK_DOC=""
+RUBY_FAKEGEM_EXTRADOC="Changelog.md README.md"
+
+inherit ruby-fakegem
+
+DESCRIPTION="Makes http fun! Also, makes consuming restful web services dead 
easy"
+HOMEPAGE="https://jnunemaker.github.com/httparty;
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE=""
+
+ruby_add_rdepend 'dev-ruby/mime-types:3 >=dev-ruby/multi_xml-0.5.2'
+
+ruby_add_bdepend 'test? ( dev-ruby/webmock )'
+
+all_ruby_prepare() {
+   # Remove bundler
+   rm Gemfile || die
+   sed -i -e '/[Bb]undler/ s:^:#:' Rakefile || die
+
+   # Avoid test dependency on cucumber. We can't run the features since
+   # they depend on mongrel which is no longer packaged.
+   sed -i -e '/cucumber/I s:^:#:' Rakefile || die
+
+   # Avoid test dependency on simplecov
+   sed -i -e '/simplecov/I s:^:#:' \
+   -e '1i require "cgi"; require "delegate"' spec/spec_helper.rb 
|| die
+
+   # Avoid test that works standalone but fails in the suite
+   sed -i -e '/calls block given to perform with each redirect/,/^
end/ s:^:#:' spec/httparty/request_spec.rb
+
+   # Avoid test that is not fully compatible with newer multi_xml
+   sed -i -e '/should be able parse response type xml automatically/askip 
"multi_xml"' spec/httparty_spec.rb || die
+}
+
+all_ruby_install() {
+   all_fakegem_install
+
+   docinto examples
+   dodoc examples/*
+}



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

2018-08-25 Thread Hans de Graaff
commit: bd21aad135714504219498f2c459ab77439ff5c9
Author: Hans de Graaff  gentoo  org>
AuthorDate: Sat Aug 25 06:34:50 2018 +
Commit: Hans de Graaff  gentoo  org>
CommitDate: Sat Aug 25 07:31:47 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=bd21aad1

dev-ruby/httparty: amd64 stable

Package-Manager: Portage-2.3.40, Repoman-2.3.9

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

diff --git a/dev-ruby/httparty/httparty-0.16.2.ebuild 
b/dev-ruby/httparty/httparty-0.16.2.ebuild
index b173eb0fcdb..926f0900a96 100644
--- a/dev-ruby/httparty/httparty-0.16.2.ebuild
+++ b/dev-ruby/httparty/httparty-0.16.2.ebuild
@@ -17,7 +17,7 @@ HOMEPAGE="https://jnunemaker.github.com/httparty;
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="~amd64 ~x86"
+KEYWORDS="amd64 ~x86"
 IUSE=""
 
 ruby_add_rdepend '>=dev-ruby/multi_xml-0.5.2'



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

2018-07-14 Thread Hans de Graaff
commit: ab8d8d5b344771f4032a33b6acbebf48af60859d
Author: Hans de Graaff  gentoo  org>
AuthorDate: Sat Jul 14 15:43:05 2018 +
Commit: Hans de Graaff  gentoo  org>
CommitDate: Sat Jul 14 15:46:38 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ab8d8d5b

dev-ruby/httparty: add ruby25, ignore failing test

Package-Manager: Portage-2.3.40, Repoman-2.3.9

 dev-ruby/httparty/httparty-0.16.2.ebuild | 5 -
 1 file changed, 4 insertions(+), 1 deletion(-)

diff --git a/dev-ruby/httparty/httparty-0.16.2.ebuild 
b/dev-ruby/httparty/httparty-0.16.2.ebuild
index b65c830b1ec..b173eb0fcdb 100644
--- a/dev-ruby/httparty/httparty-0.16.2.ebuild
+++ b/dev-ruby/httparty/httparty-0.16.2.ebuild
@@ -3,7 +3,7 @@
 
 EAPI=6
 
-USE_RUBY="ruby22 ruby23 ruby24"
+USE_RUBY="ruby23 ruby24 ruby25"
 
 RUBY_FAKEGEM_RECIPE_TEST="rspec3"
 
@@ -39,6 +39,9 @@ all_ruby_prepare() {
 
# Avoid test that works standalone but fails in the suite
sed -i -e '/calls block given to perform with each redirect/,/^
end/ s:^:#:' spec/httparty/request_spec.rb
+
+   # Avoid test that is not fully compatible with newer multi_xml
+   sed -i -e '/should be able parse response type xml automatically/askip 
"multi_xml"' spec/httparty_spec.rb || die
 }
 
 all_ruby_install() {



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

2018-06-05 Thread Hans de Graaff
commit: 8862e7fa6dc37d07cddf367f74cbec72f91fcc44
Author: Hans de Graaff  gentoo  org>
AuthorDate: Wed Jun  6 04:37:44 2018 +
Commit: Hans de Graaff  gentoo  org>
CommitDate: Wed Jun  6 04:37:44 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8862e7fa

dev-ruby/httparty: cleanup

Package-Manager: Portage-2.3.40, Repoman-2.3.9

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

diff --git a/dev-ruby/httparty/Manifest b/dev-ruby/httparty/Manifest
index 7a0be90aff2..57372b1397b 100644
--- a/dev-ruby/httparty/Manifest
+++ b/dev-ruby/httparty/Manifest
@@ -1,3 +1,2 @@
-DIST httparty-0.14.0.gem 84992 BLAKE2B 
5fdb305a01c6c16bd8c9ea7bd11f0dddcb39a4bc3113b1e7ca83965f44b3462a41acaf1020e12e91b323d16ce27b65f2ea6f7d9e62722fbcecadc4d61dfd433c
 SHA512 
db04caaeff3277c071a2d3914f782f9151597d601a2f8817e704c977b95b149144c47df73284f83396ce1099f75f7fdc3caaa17385a515878366e2b3fcb84b04
 DIST httparty-0.16.0.gem 89088 BLAKE2B 
27715c6760a9adeec289a005f89de219b32e6ad5c3f937478ad4187df895096f9375b0d20a4b33c1c62b96de6313017a713a036247756a96fe9366e7c1e77247
 SHA512 
c523ab3555d0a86e2df53e800be57b88f40bb680e7df31e754ddc3e76728eb2228e6ddbe9a3e580c4c604a126ebcd33be79dfde3758faf99aadbba4d30d9508d
 DIST httparty-0.16.2.gem 89600 BLAKE2B 
581b5fcadf59bb50864b2fa6d1aae220ff9881bba53363601c6e70c3291dc2cee351a8f42b1946ad516cdcab5a85b832e4260f04394e54255e0cd76bc6860d5e
 SHA512 
13efbacb9ee0325fbb185279ca9f7ffcc0131189ccf98d9889c6a1b6bcfa04fd7cbc6d1393bffe69a5a813a2f54f70b5926e176305fa70480dd0902968c894d0

diff --git a/dev-ruby/httparty/httparty-0.14.0-r1.ebuild 
b/dev-ruby/httparty/httparty-0.14.0-r1.ebuild
deleted file mode 100644
index 7ebb0f7343c..000
--- a/dev-ruby/httparty/httparty-0.14.0-r1.ebuild
+++ /dev/null
@@ -1,46 +0,0 @@
-# Copyright 1999-2016 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=5
-
-USE_RUBY="ruby21 ruby22 ruby23"
-
-RUBY_FAKEGEM_RECIPE_TEST="rspec3"
-
-RUBY_FAKEGEM_TASK_DOC=""
-RUBY_FAKEGEM_EXTRADOC="README.md History"
-
-inherit ruby-fakegem
-
-DESCRIPTION="Makes http fun! Also, makes consuming restful web services dead 
easy"
-HOMEPAGE="https://jnunemaker.github.com/httparty;
-
-LICENSE="MIT"
-SLOT="0"
-KEYWORDS="amd64 ~x86"
-IUSE=""
-
-ruby_add_rdepend '>=dev-ruby/multi_xml-0.5.2'
-
-ruby_add_bdepend 'test? ( dev-ruby/fakeweb )'
-
-all_ruby_prepare() {
-   # Remove bundler
-   rm Gemfile || die
-   sed -i -e '/[Bb]undler/ s:^:#:' Rakefile || die
-
-   # Avoid test dependency on cucumber. We can't run the features since
-   # they depend on mongrel which is no longer packaged.
-   sed -i -e '/cucumber/I s:^:#:' Rakefile || die
-
-   # Avoid test dependency on simplecov
-   sed -i -e '/simplecov/I s:^:#:' \
-   -e '1i require "cgi"' spec/spec_helper.rb || die
-}
-
-all_ruby_install() {
-   all_fakegem_install
-
-   docinto examples
-   dodoc examples/*
-}



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

2018-04-30 Thread Hans de Graaff
commit: 0d00deedd364daa05172eeb1a18cc9ac1c935f84
Author: Hans de Graaff  gentoo  org>
AuthorDate: Mon Apr 30 19:36:16 2018 +
Commit: Hans de Graaff  gentoo  org>
CommitDate: Mon Apr 30 20:10:47 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0d00deed

dev-ruby/httparty: amd64 stable

Package-Manager: Portage-2.3.24, Repoman-2.3.6

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

diff --git a/dev-ruby/httparty/httparty-0.16.0.ebuild 
b/dev-ruby/httparty/httparty-0.16.0.ebuild
index b65c830b1ec..472d30ad10f 100644
--- a/dev-ruby/httparty/httparty-0.16.0.ebuild
+++ b/dev-ruby/httparty/httparty-0.16.0.ebuild
@@ -17,7 +17,7 @@ HOMEPAGE="https://jnunemaker.github.com/httparty;
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="~amd64 ~x86"
+KEYWORDS="amd64 ~x86"
 IUSE=""
 
 ruby_add_rdepend '>=dev-ruby/multi_xml-0.5.2'



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

2018-04-30 Thread Hans de Graaff
commit: 59cdd2d1551a7b01b491c29b0ac26e4ae3f6b5ed
Author: Hans de Graaff  gentoo  org>
AuthorDate: Mon Apr 30 19:32:37 2018 +
Commit: Hans de Graaff  gentoo  org>
CommitDate: Mon Apr 30 20:10:45 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=59cdd2d1

dev-ruby/httparty: cleanup

Package-Manager: Portage-2.3.24, Repoman-2.3.6

 dev-ruby/httparty/Manifest   |  1 -
 dev-ruby/httparty/httparty-0.15.7.ebuild | 49 
 2 files changed, 50 deletions(-)

diff --git a/dev-ruby/httparty/Manifest b/dev-ruby/httparty/Manifest
index 94361812cf8..7a0be90aff2 100644
--- a/dev-ruby/httparty/Manifest
+++ b/dev-ruby/httparty/Manifest
@@ -1,4 +1,3 @@
 DIST httparty-0.14.0.gem 84992 BLAKE2B 
5fdb305a01c6c16bd8c9ea7bd11f0dddcb39a4bc3113b1e7ca83965f44b3462a41acaf1020e12e91b323d16ce27b65f2ea6f7d9e62722fbcecadc4d61dfd433c
 SHA512 
db04caaeff3277c071a2d3914f782f9151597d601a2f8817e704c977b95b149144c47df73284f83396ce1099f75f7fdc3caaa17385a515878366e2b3fcb84b04
-DIST httparty-0.15.7.gem 87552 BLAKE2B 
d7a0907d1c24113c129493a57ca900f45026e1ed7cc4407ac367d8ba5afa615af31496a2003755951d52672bdecd0646aaaf407b3c47d4856c9c492e7ec5cac7
 SHA512 
6bdf5946bc0f22afed346091078dd43dd62cb6190b3d01bc0de5c9732c611474e207c38b4c6eca5f3cc1e2139880c2eac19554d359dac861de33c5c5ceb28c5e
 DIST httparty-0.16.0.gem 89088 BLAKE2B 
27715c6760a9adeec289a005f89de219b32e6ad5c3f937478ad4187df895096f9375b0d20a4b33c1c62b96de6313017a713a036247756a96fe9366e7c1e77247
 SHA512 
c523ab3555d0a86e2df53e800be57b88f40bb680e7df31e754ddc3e76728eb2228e6ddbe9a3e580c4c604a126ebcd33be79dfde3758faf99aadbba4d30d9508d
 DIST httparty-0.16.2.gem 89600 BLAKE2B 
581b5fcadf59bb50864b2fa6d1aae220ff9881bba53363601c6e70c3291dc2cee351a8f42b1946ad516cdcab5a85b832e4260f04394e54255e0cd76bc6860d5e
 SHA512 
13efbacb9ee0325fbb185279ca9f7ffcc0131189ccf98d9889c6a1b6bcfa04fd7cbc6d1393bffe69a5a813a2f54f70b5926e176305fa70480dd0902968c894d0

diff --git a/dev-ruby/httparty/httparty-0.15.7.ebuild 
b/dev-ruby/httparty/httparty-0.15.7.ebuild
deleted file mode 100644
index b65c830b1ec..000
--- a/dev-ruby/httparty/httparty-0.15.7.ebuild
+++ /dev/null
@@ -1,49 +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_TASK_DOC=""
-RUBY_FAKEGEM_EXTRADOC="Changelog.md README.md"
-
-inherit ruby-fakegem
-
-DESCRIPTION="Makes http fun! Also, makes consuming restful web services dead 
easy"
-HOMEPAGE="https://jnunemaker.github.com/httparty;
-
-LICENSE="MIT"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-IUSE=""
-
-ruby_add_rdepend '>=dev-ruby/multi_xml-0.5.2'
-
-ruby_add_bdepend 'test? ( dev-ruby/webmock )'
-
-all_ruby_prepare() {
-   # Remove bundler
-   rm Gemfile || die
-   sed -i -e '/[Bb]undler/ s:^:#:' Rakefile || die
-
-   # Avoid test dependency on cucumber. We can't run the features since
-   # they depend on mongrel which is no longer packaged.
-   sed -i -e '/cucumber/I s:^:#:' Rakefile || die
-
-   # Avoid test dependency on simplecov
-   sed -i -e '/simplecov/I s:^:#:' \
-   -e '1i require "cgi"; require "delegate"' spec/spec_helper.rb 
|| die
-
-   # Avoid test that works standalone but fails in the suite
-   sed -i -e '/calls block given to perform with each redirect/,/^
end/ s:^:#:' spec/httparty/request_spec.rb
-}
-
-all_ruby_install() {
-   all_fakegem_install
-
-   docinto examples
-   dodoc examples/*
-}



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

2018-04-03 Thread Hans de Graaff
commit: 8b831fbbd623865154606644c442acd1feb8b106
Author: Hans de Graaff  gentoo  org>
AuthorDate: Wed Apr  4 03:49:38 2018 +
Commit: Hans de Graaff  gentoo  org>
CommitDate: Wed Apr  4 03:53:28 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8b831fbb

dev-ruby/httparty: add 0.16.2

Package-Manager: Portage-2.3.24, Repoman-2.3.6

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

diff --git a/dev-ruby/httparty/Manifest b/dev-ruby/httparty/Manifest
index a6de901a060..94361812cf8 100644
--- a/dev-ruby/httparty/Manifest
+++ b/dev-ruby/httparty/Manifest
@@ -1,3 +1,4 @@
 DIST httparty-0.14.0.gem 84992 BLAKE2B 
5fdb305a01c6c16bd8c9ea7bd11f0dddcb39a4bc3113b1e7ca83965f44b3462a41acaf1020e12e91b323d16ce27b65f2ea6f7d9e62722fbcecadc4d61dfd433c
 SHA512 
db04caaeff3277c071a2d3914f782f9151597d601a2f8817e704c977b95b149144c47df73284f83396ce1099f75f7fdc3caaa17385a515878366e2b3fcb84b04
 DIST httparty-0.15.7.gem 87552 BLAKE2B 
d7a0907d1c24113c129493a57ca900f45026e1ed7cc4407ac367d8ba5afa615af31496a2003755951d52672bdecd0646aaaf407b3c47d4856c9c492e7ec5cac7
 SHA512 
6bdf5946bc0f22afed346091078dd43dd62cb6190b3d01bc0de5c9732c611474e207c38b4c6eca5f3cc1e2139880c2eac19554d359dac861de33c5c5ceb28c5e
 DIST httparty-0.16.0.gem 89088 BLAKE2B 
27715c6760a9adeec289a005f89de219b32e6ad5c3f937478ad4187df895096f9375b0d20a4b33c1c62b96de6313017a713a036247756a96fe9366e7c1e77247
 SHA512 
c523ab3555d0a86e2df53e800be57b88f40bb680e7df31e754ddc3e76728eb2228e6ddbe9a3e580c4c604a126ebcd33be79dfde3758faf99aadbba4d30d9508d
+DIST httparty-0.16.2.gem 89600 BLAKE2B 
581b5fcadf59bb50864b2fa6d1aae220ff9881bba53363601c6e70c3291dc2cee351a8f42b1946ad516cdcab5a85b832e4260f04394e54255e0cd76bc6860d5e
 SHA512 
13efbacb9ee0325fbb185279ca9f7ffcc0131189ccf98d9889c6a1b6bcfa04fd7cbc6d1393bffe69a5a813a2f54f70b5926e176305fa70480dd0902968c894d0

diff --git a/dev-ruby/httparty/httparty-0.16.2.ebuild 
b/dev-ruby/httparty/httparty-0.16.2.ebuild
new file mode 100644
index 000..b65c830b1ec
--- /dev/null
+++ b/dev-ruby/httparty/httparty-0.16.2.ebuild
@@ -0,0 +1,49 @@
+# 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_TASK_DOC=""
+RUBY_FAKEGEM_EXTRADOC="Changelog.md README.md"
+
+inherit ruby-fakegem
+
+DESCRIPTION="Makes http fun! Also, makes consuming restful web services dead 
easy"
+HOMEPAGE="https://jnunemaker.github.com/httparty;
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE=""
+
+ruby_add_rdepend '>=dev-ruby/multi_xml-0.5.2'
+
+ruby_add_bdepend 'test? ( dev-ruby/webmock )'
+
+all_ruby_prepare() {
+   # Remove bundler
+   rm Gemfile || die
+   sed -i -e '/[Bb]undler/ s:^:#:' Rakefile || die
+
+   # Avoid test dependency on cucumber. We can't run the features since
+   # they depend on mongrel which is no longer packaged.
+   sed -i -e '/cucumber/I s:^:#:' Rakefile || die
+
+   # Avoid test dependency on simplecov
+   sed -i -e '/simplecov/I s:^:#:' \
+   -e '1i require "cgi"; require "delegate"' spec/spec_helper.rb 
|| die
+
+   # Avoid test that works standalone but fails in the suite
+   sed -i -e '/calls block given to perform with each redirect/,/^
end/ s:^:#:' spec/httparty/request_spec.rb
+}
+
+all_ruby_install() {
+   all_fakegem_install
+
+   docinto examples
+   dodoc examples/*
+}



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

2018-04-03 Thread Hans de Graaff
commit: d8697f9e6ce4c353e7845a9c34533f7bf3a9afa1
Author: Hans de Graaff  gentoo  org>
AuthorDate: Wed Apr  4 03:47:34 2018 +
Commit: Hans de Graaff  gentoo  org>
CommitDate: Wed Apr  4 03:53:26 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d8697f9e

dev-ruby/httparty: cleanup

Package-Manager: Portage-2.3.24, Repoman-2.3.6

 dev-ruby/httparty/Manifest  |  2 --
 dev-ruby/httparty/httparty-0.15.5.ebuild| 49 -
 dev-ruby/httparty/httparty-0.15.6-r1.ebuild | 49 -
 dev-ruby/httparty/httparty-0.15.6.ebuild| 49 -
 4 files changed, 149 deletions(-)

diff --git a/dev-ruby/httparty/Manifest b/dev-ruby/httparty/Manifest
index b0f617d42a3..a6de901a060 100644
--- a/dev-ruby/httparty/Manifest
+++ b/dev-ruby/httparty/Manifest
@@ -1,5 +1,3 @@
 DIST httparty-0.14.0.gem 84992 BLAKE2B 
5fdb305a01c6c16bd8c9ea7bd11f0dddcb39a4bc3113b1e7ca83965f44b3462a41acaf1020e12e91b323d16ce27b65f2ea6f7d9e62722fbcecadc4d61dfd433c
 SHA512 
db04caaeff3277c071a2d3914f782f9151597d601a2f8817e704c977b95b149144c47df73284f83396ce1099f75f7fdc3caaa17385a515878366e2b3fcb84b04
-DIST httparty-0.15.5.gem 87552 BLAKE2B 
b5505b08ec91986da860d998a49b277e86151cb4a044a58d8c392bff65549170fb31ab3d7055772d18dcda690ce40962f9b8fce66a5c933093add93fc8364894
 SHA512 
c325a1b927e2b472c17b0895f322399e14f4beafe21626b4221a4a37ceb68cd3e92d801675a559d18cebc299f6317096b58bddecc59f687546ed88f284789459
-DIST httparty-0.15.6.gem 87552 BLAKE2B 
edbaf27c17d423e8bcc13744f7b567953c4486e41fbd91442261bc2981a46385dcbcbf10b62c63a6ed713cf5ffb38287be6afcc1af1ebbde8365e1920eec9341
 SHA512 
2c38cd0a20cccd03c33e521ca683c4c2eaf487acef00d4cab244898bb227bf05e21e5f01a9641869635391ad052fc1d79d63c46fce0e09a96908b4e5aa8ec571
 DIST httparty-0.15.7.gem 87552 BLAKE2B 
d7a0907d1c24113c129493a57ca900f45026e1ed7cc4407ac367d8ba5afa615af31496a2003755951d52672bdecd0646aaaf407b3c47d4856c9c492e7ec5cac7
 SHA512 
6bdf5946bc0f22afed346091078dd43dd62cb6190b3d01bc0de5c9732c611474e207c38b4c6eca5f3cc1e2139880c2eac19554d359dac861de33c5c5ceb28c5e
 DIST httparty-0.16.0.gem 89088 BLAKE2B 
27715c6760a9adeec289a005f89de219b32e6ad5c3f937478ad4187df895096f9375b0d20a4b33c1c62b96de6313017a713a036247756a96fe9366e7c1e77247
 SHA512 
c523ab3555d0a86e2df53e800be57b88f40bb680e7df31e754ddc3e76728eb2228e6ddbe9a3e580c4c604a126ebcd33be79dfde3758faf99aadbba4d30d9508d

diff --git a/dev-ruby/httparty/httparty-0.15.5.ebuild 
b/dev-ruby/httparty/httparty-0.15.5.ebuild
deleted file mode 100644
index 0dc694c51ef..000
--- a/dev-ruby/httparty/httparty-0.15.5.ebuild
+++ /dev/null
@@ -1,49 +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"
-
-RUBY_FAKEGEM_RECIPE_TEST="rspec3"
-
-RUBY_FAKEGEM_TASK_DOC=""
-RUBY_FAKEGEM_EXTRADOC="Changelog.md README.md"
-
-inherit ruby-fakegem
-
-DESCRIPTION="Makes http fun! Also, makes consuming restful web services dead 
easy"
-HOMEPAGE="https://jnunemaker.github.com/httparty;
-
-LICENSE="MIT"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-IUSE=""
-
-ruby_add_rdepend '>=dev-ruby/multi_xml-0.5.2'
-
-ruby_add_bdepend 'test? ( dev-ruby/fakeweb )'
-
-all_ruby_prepare() {
-   # Remove bundler
-   rm Gemfile || die
-   sed -i -e '/[Bb]undler/ s:^:#:' Rakefile || die
-
-   # Avoid test dependency on cucumber. We can't run the features since
-   # they depend on mongrel which is no longer packaged.
-   sed -i -e '/cucumber/I s:^:#:' Rakefile || die
-
-   # Avoid test dependency on simplecov
-   sed -i -e '/simplecov/I s:^:#:' \
-   -e '1i require "cgi"; require "delegate"' spec/spec_helper.rb 
|| die
-
-   # Avoid test that works standalone but fails in the suite
-   sed -i -e '/calls block given to perform with each redirect/,/^
end/ s:^:#:' spec/httparty/request_spec.rb
-}
-
-all_ruby_install() {
-   all_fakegem_install
-
-   docinto examples
-   dodoc examples/*
-}

diff --git a/dev-ruby/httparty/httparty-0.15.6-r1.ebuild 
b/dev-ruby/httparty/httparty-0.15.6-r1.ebuild
deleted file mode 100644
index 8d3f9cac055..000
--- a/dev-ruby/httparty/httparty-0.15.6-r1.ebuild
+++ /dev/null
@@ -1,49 +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_TASK_DOC=""
-RUBY_FAKEGEM_EXTRADOC="Changelog.md README.md"
-
-inherit ruby-fakegem
-
-DESCRIPTION="Makes http fun! Also, makes consuming restful web services dead 
easy"
-HOMEPAGE="https://jnunemaker.github.com/httparty;
-
-LICENSE="MIT"
-SLOT="0"
-KEYWORDS="~amd64"
-IUSE=""
-
-ruby_add_rdepend '>=dev-ruby/multi_xml-0.5.2'
-
-ruby_add_bdepend 'test? ( dev-ruby/webmock )'
-
-all_ruby_prepare() {
-   # Remove bundler
-   rm Gemfile || die
-   sed -i -e '/[Bb]undler/ s:^:#:' 

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

2018-03-01 Thread Hans de Graaff
commit: ac9f386ac7f7078733a8ddefd413759271bfb3b9
Author: Hans de Graaff  gentoo  org>
AuthorDate: Fri Mar  2 06:38:17 2018 +
Commit: Hans de Graaff  gentoo  org>
CommitDate: Fri Mar  2 06:39:13 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ac9f386a

dev-ruby/httparty: add 0.16.0

Package-Manager: Portage-2.3.19, Repoman-2.3.6

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

diff --git a/dev-ruby/httparty/Manifest b/dev-ruby/httparty/Manifest
index 8e7fee683be..b0f617d42a3 100644
--- a/dev-ruby/httparty/Manifest
+++ b/dev-ruby/httparty/Manifest
@@ -2,3 +2,4 @@ DIST httparty-0.14.0.gem 84992 BLAKE2B 
5fdb305a01c6c16bd8c9ea7bd11f0dddcb39a4bc3
 DIST httparty-0.15.5.gem 87552 BLAKE2B 
b5505b08ec91986da860d998a49b277e86151cb4a044a58d8c392bff65549170fb31ab3d7055772d18dcda690ce40962f9b8fce66a5c933093add93fc8364894
 SHA512 
c325a1b927e2b472c17b0895f322399e14f4beafe21626b4221a4a37ceb68cd3e92d801675a559d18cebc299f6317096b58bddecc59f687546ed88f284789459
 DIST httparty-0.15.6.gem 87552 BLAKE2B 
edbaf27c17d423e8bcc13744f7b567953c4486e41fbd91442261bc2981a46385dcbcbf10b62c63a6ed713cf5ffb38287be6afcc1af1ebbde8365e1920eec9341
 SHA512 
2c38cd0a20cccd03c33e521ca683c4c2eaf487acef00d4cab244898bb227bf05e21e5f01a9641869635391ad052fc1d79d63c46fce0e09a96908b4e5aa8ec571
 DIST httparty-0.15.7.gem 87552 BLAKE2B 
d7a0907d1c24113c129493a57ca900f45026e1ed7cc4407ac367d8ba5afa615af31496a2003755951d52672bdecd0646aaaf407b3c47d4856c9c492e7ec5cac7
 SHA512 
6bdf5946bc0f22afed346091078dd43dd62cb6190b3d01bc0de5c9732c611474e207c38b4c6eca5f3cc1e2139880c2eac19554d359dac861de33c5c5ceb28c5e
+DIST httparty-0.16.0.gem 89088 BLAKE2B 
27715c6760a9adeec289a005f89de219b32e6ad5c3f937478ad4187df895096f9375b0d20a4b33c1c62b96de6313017a713a036247756a96fe9366e7c1e77247
 SHA512 
c523ab3555d0a86e2df53e800be57b88f40bb680e7df31e754ddc3e76728eb2228e6ddbe9a3e580c4c604a126ebcd33be79dfde3758faf99aadbba4d30d9508d

diff --git a/dev-ruby/httparty/httparty-0.16.0.ebuild 
b/dev-ruby/httparty/httparty-0.16.0.ebuild
new file mode 100644
index 000..b65c830b1ec
--- /dev/null
+++ b/dev-ruby/httparty/httparty-0.16.0.ebuild
@@ -0,0 +1,49 @@
+# 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_TASK_DOC=""
+RUBY_FAKEGEM_EXTRADOC="Changelog.md README.md"
+
+inherit ruby-fakegem
+
+DESCRIPTION="Makes http fun! Also, makes consuming restful web services dead 
easy"
+HOMEPAGE="https://jnunemaker.github.com/httparty;
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE=""
+
+ruby_add_rdepend '>=dev-ruby/multi_xml-0.5.2'
+
+ruby_add_bdepend 'test? ( dev-ruby/webmock )'
+
+all_ruby_prepare() {
+   # Remove bundler
+   rm Gemfile || die
+   sed -i -e '/[Bb]undler/ s:^:#:' Rakefile || die
+
+   # Avoid test dependency on cucumber. We can't run the features since
+   # they depend on mongrel which is no longer packaged.
+   sed -i -e '/cucumber/I s:^:#:' Rakefile || die
+
+   # Avoid test dependency on simplecov
+   sed -i -e '/simplecov/I s:^:#:' \
+   -e '1i require "cgi"; require "delegate"' spec/spec_helper.rb 
|| die
+
+   # Avoid test that works standalone but fails in the suite
+   sed -i -e '/calls block given to perform with each redirect/,/^
end/ s:^:#:' spec/httparty/request_spec.rb
+}
+
+all_ruby_install() {
+   all_fakegem_install
+
+   docinto examples
+   dodoc examples/*
+}



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

2018-02-08 Thread Hans de Graaff
commit: 0bf7ed790bf01ec22c0b1ce79f996e8fe879cda5
Author: Hans de Graaff  gentoo  org>
AuthorDate: Fri Feb  9 06:09:06 2018 +
Commit: Hans de Graaff  gentoo  org>
CommitDate: Fri Feb  9 06:56:16 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0bf7ed79

dev-ruby/httparty: add 0.15.7

Package-Manager: Portage-2.3.19, Repoman-2.3.6

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

diff --git a/dev-ruby/httparty/Manifest b/dev-ruby/httparty/Manifest
index a81e625fcf8..8e7fee683be 100644
--- a/dev-ruby/httparty/Manifest
+++ b/dev-ruby/httparty/Manifest
@@ -1,3 +1,4 @@
 DIST httparty-0.14.0.gem 84992 BLAKE2B 
5fdb305a01c6c16bd8c9ea7bd11f0dddcb39a4bc3113b1e7ca83965f44b3462a41acaf1020e12e91b323d16ce27b65f2ea6f7d9e62722fbcecadc4d61dfd433c
 SHA512 
db04caaeff3277c071a2d3914f782f9151597d601a2f8817e704c977b95b149144c47df73284f83396ce1099f75f7fdc3caaa17385a515878366e2b3fcb84b04
 DIST httparty-0.15.5.gem 87552 BLAKE2B 
b5505b08ec91986da860d998a49b277e86151cb4a044a58d8c392bff65549170fb31ab3d7055772d18dcda690ce40962f9b8fce66a5c933093add93fc8364894
 SHA512 
c325a1b927e2b472c17b0895f322399e14f4beafe21626b4221a4a37ceb68cd3e92d801675a559d18cebc299f6317096b58bddecc59f687546ed88f284789459
 DIST httparty-0.15.6.gem 87552 BLAKE2B 
edbaf27c17d423e8bcc13744f7b567953c4486e41fbd91442261bc2981a46385dcbcbf10b62c63a6ed713cf5ffb38287be6afcc1af1ebbde8365e1920eec9341
 SHA512 
2c38cd0a20cccd03c33e521ca683c4c2eaf487acef00d4cab244898bb227bf05e21e5f01a9641869635391ad052fc1d79d63c46fce0e09a96908b4e5aa8ec571
+DIST httparty-0.15.7.gem 87552 BLAKE2B 
d7a0907d1c24113c129493a57ca900f45026e1ed7cc4407ac367d8ba5afa615af31496a2003755951d52672bdecd0646aaaf407b3c47d4856c9c492e7ec5cac7
 SHA512 
6bdf5946bc0f22afed346091078dd43dd62cb6190b3d01bc0de5c9732c611474e207c38b4c6eca5f3cc1e2139880c2eac19554d359dac861de33c5c5ceb28c5e

diff --git a/dev-ruby/httparty/httparty-0.15.7.ebuild 
b/dev-ruby/httparty/httparty-0.15.7.ebuild
new file mode 100644
index 000..b65c830b1ec
--- /dev/null
+++ b/dev-ruby/httparty/httparty-0.15.7.ebuild
@@ -0,0 +1,49 @@
+# 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_TASK_DOC=""
+RUBY_FAKEGEM_EXTRADOC="Changelog.md README.md"
+
+inherit ruby-fakegem
+
+DESCRIPTION="Makes http fun! Also, makes consuming restful web services dead 
easy"
+HOMEPAGE="https://jnunemaker.github.com/httparty;
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE=""
+
+ruby_add_rdepend '>=dev-ruby/multi_xml-0.5.2'
+
+ruby_add_bdepend 'test? ( dev-ruby/webmock )'
+
+all_ruby_prepare() {
+   # Remove bundler
+   rm Gemfile || die
+   sed -i -e '/[Bb]undler/ s:^:#:' Rakefile || die
+
+   # Avoid test dependency on cucumber. We can't run the features since
+   # they depend on mongrel which is no longer packaged.
+   sed -i -e '/cucumber/I s:^:#:' Rakefile || die
+
+   # Avoid test dependency on simplecov
+   sed -i -e '/simplecov/I s:^:#:' \
+   -e '1i require "cgi"; require "delegate"' spec/spec_helper.rb 
|| die
+
+   # Avoid test that works standalone but fails in the suite
+   sed -i -e '/calls block given to perform with each redirect/,/^
end/ s:^:#:' spec/httparty/request_spec.rb
+}
+
+all_ruby_install() {
+   all_fakegem_install
+
+   docinto examples
+   dodoc examples/*
+}



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

2018-01-22 Thread Hans de Graaff
commit: f4da08a9c7a64ea6af6c5acf781814e709553be2
Author: Hans de Graaff  gentoo  org>
AuthorDate: Mon Jan 22 21:22:56 2018 +
Commit: Hans de Graaff  gentoo  org>
CommitDate: Mon Jan 22 21:23:17 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f4da08a9

dev-ruby/httparty: add ruby24, fix test dependency

Package-Manager: Portage-2.3.19, Repoman-2.3.6

 dev-ruby/httparty/httparty-0.15.6-r1.ebuild | 49 +
 1 file changed, 49 insertions(+)

diff --git a/dev-ruby/httparty/httparty-0.15.6-r1.ebuild 
b/dev-ruby/httparty/httparty-0.15.6-r1.ebuild
new file mode 100644
index 000..8d3f9cac055
--- /dev/null
+++ b/dev-ruby/httparty/httparty-0.15.6-r1.ebuild
@@ -0,0 +1,49 @@
+# 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_TASK_DOC=""
+RUBY_FAKEGEM_EXTRADOC="Changelog.md README.md"
+
+inherit ruby-fakegem
+
+DESCRIPTION="Makes http fun! Also, makes consuming restful web services dead 
easy"
+HOMEPAGE="https://jnunemaker.github.com/httparty;
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="~amd64"
+IUSE=""
+
+ruby_add_rdepend '>=dev-ruby/multi_xml-0.5.2'
+
+ruby_add_bdepend 'test? ( dev-ruby/webmock )'
+
+all_ruby_prepare() {
+   # Remove bundler
+   rm Gemfile || die
+   sed -i -e '/[Bb]undler/ s:^:#:' Rakefile || die
+
+   # Avoid test dependency on cucumber. We can't run the features since
+   # they depend on mongrel which is no longer packaged.
+   sed -i -e '/cucumber/I s:^:#:' Rakefile || die
+
+   # Avoid test dependency on simplecov
+   sed -i -e '/simplecov/I s:^:#:' \
+   -e '1i require "cgi"; require "delegate"' spec/spec_helper.rb 
|| die
+
+   # Avoid test that works standalone but fails in the suite
+   sed -i -e '/calls block given to perform with each redirect/,/^
end/ s:^:#:' spec/httparty/request_spec.rb
+}
+
+all_ruby_install() {
+   all_fakegem_install
+
+   docinto examples
+   dodoc examples/*
+}



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

2017-07-22 Thread Hans de Graaff
commit: bf9fa388aa4013b63edfe5f43f201007566ce632
Author: Hans de Graaff  gentoo  org>
AuthorDate: Sat Jul 22 05:37:31 2017 +
Commit: Hans de Graaff  gentoo  org>
CommitDate: Sat Jul 22 05:37:31 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=bf9fa388

dev-ruby/httparty: add 0.15.6

Package-Manager: Portage-2.3.6, Repoman-2.3.2

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

diff --git a/dev-ruby/httparty/Manifest b/dev-ruby/httparty/Manifest
index cbeb015e66e..0dee25939a2 100644
--- a/dev-ruby/httparty/Manifest
+++ b/dev-ruby/httparty/Manifest
@@ -1,2 +1,3 @@
 DIST httparty-0.14.0.gem 84992 SHA256 
86bfb7688fce74992a2ab91329a4855b25f71e0f31112823095b530647104ad7 SHA512 
db04caaeff3277c071a2d3914f782f9151597d601a2f8817e704c977b95b149144c47df73284f83396ce1099f75f7fdc3caaa17385a515878366e2b3fcb84b04
 WHIRLPOOL 
b50a3cc72cf1cc271d3e61b677d3df0173f926a4d7e389ec5e53ae1ac128fe5a28ed39fa2678737b052d5af6de45ca3f96abf75d03b69c830b8c7abc4958e362
 DIST httparty-0.15.5.gem 87552 SHA256 
1bb3dc5d1c9df9401f5eb3a41ed7f58647b203924ae17e57ed62458ec98b6dd1 SHA512 
c325a1b927e2b472c17b0895f322399e14f4beafe21626b4221a4a37ceb68cd3e92d801675a559d18cebc299f6317096b58bddecc59f687546ed88f284789459
 WHIRLPOOL 
a39e56185ef9e75eb79be94f7de7d6c2e99b657b2d4e77b017dbac11c452d841deda8f904867accf0213c28c6677b5dce0c9e70bbe4c3837e0298b3d0edd
+DIST httparty-0.15.6.gem 87552 SHA256 
fbe0cde25a5325a4e248d4225640529552e6b49622289bdc7110fe294f5f7e2a SHA512 
2c38cd0a20cccd03c33e521ca683c4c2eaf487acef00d4cab244898bb227bf05e21e5f01a9641869635391ad052fc1d79d63c46fce0e09a96908b4e5aa8ec571
 WHIRLPOOL 
8f2a469e7c7402a0d39df0eaf4dc74c8b1ae3b210f9aa1d0d85d5664add82da698e6f91d2900d2f7002a7977d2ded2082731340f85098b3adc807200b77108e7

diff --git a/dev-ruby/httparty/httparty-0.15.6.ebuild 
b/dev-ruby/httparty/httparty-0.15.6.ebuild
new file mode 100644
index 000..0dc694c51ef
--- /dev/null
+++ b/dev-ruby/httparty/httparty-0.15.6.ebuild
@@ -0,0 +1,49 @@
+# Copyright 1999-2017 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+
+USE_RUBY="ruby21 ruby22 ruby23"
+
+RUBY_FAKEGEM_RECIPE_TEST="rspec3"
+
+RUBY_FAKEGEM_TASK_DOC=""
+RUBY_FAKEGEM_EXTRADOC="Changelog.md README.md"
+
+inherit ruby-fakegem
+
+DESCRIPTION="Makes http fun! Also, makes consuming restful web services dead 
easy"
+HOMEPAGE="https://jnunemaker.github.com/httparty;
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE=""
+
+ruby_add_rdepend '>=dev-ruby/multi_xml-0.5.2'
+
+ruby_add_bdepend 'test? ( dev-ruby/fakeweb )'
+
+all_ruby_prepare() {
+   # Remove bundler
+   rm Gemfile || die
+   sed -i -e '/[Bb]undler/ s:^:#:' Rakefile || die
+
+   # Avoid test dependency on cucumber. We can't run the features since
+   # they depend on mongrel which is no longer packaged.
+   sed -i -e '/cucumber/I s:^:#:' Rakefile || die
+
+   # Avoid test dependency on simplecov
+   sed -i -e '/simplecov/I s:^:#:' \
+   -e '1i require "cgi"; require "delegate"' spec/spec_helper.rb 
|| die
+
+   # Avoid test that works standalone but fails in the suite
+   sed -i -e '/calls block given to perform with each redirect/,/^
end/ s:^:#:' spec/httparty/request_spec.rb
+}
+
+all_ruby_install() {
+   all_fakegem_install
+
+   docinto examples
+   dodoc examples/*
+}



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

2017-07-18 Thread Hans de Graaff
commit: ae1485ad444f3435f1c05d9f618085ee4e91f20a
Author: Hans de Graaff  gentoo  org>
AuthorDate: Tue Jul 18 05:31:06 2017 +
Commit: Hans de Graaff  gentoo  org>
CommitDate: Tue Jul 18 06:45:04 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ae1485ad

dev-ruby/httparty: add 0.15.5

Package-Manager: Portage-2.3.6, Repoman-2.3.2

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

diff --git a/dev-ruby/httparty/Manifest b/dev-ruby/httparty/Manifest
index d7f8b72217e..cbeb015e66e 100644
--- a/dev-ruby/httparty/Manifest
+++ b/dev-ruby/httparty/Manifest
@@ -1 +1,2 @@
 DIST httparty-0.14.0.gem 84992 SHA256 
86bfb7688fce74992a2ab91329a4855b25f71e0f31112823095b530647104ad7 SHA512 
db04caaeff3277c071a2d3914f782f9151597d601a2f8817e704c977b95b149144c47df73284f83396ce1099f75f7fdc3caaa17385a515878366e2b3fcb84b04
 WHIRLPOOL 
b50a3cc72cf1cc271d3e61b677d3df0173f926a4d7e389ec5e53ae1ac128fe5a28ed39fa2678737b052d5af6de45ca3f96abf75d03b69c830b8c7abc4958e362
+DIST httparty-0.15.5.gem 87552 SHA256 
1bb3dc5d1c9df9401f5eb3a41ed7f58647b203924ae17e57ed62458ec98b6dd1 SHA512 
c325a1b927e2b472c17b0895f322399e14f4beafe21626b4221a4a37ceb68cd3e92d801675a559d18cebc299f6317096b58bddecc59f687546ed88f284789459
 WHIRLPOOL 
a39e56185ef9e75eb79be94f7de7d6c2e99b657b2d4e77b017dbac11c452d841deda8f904867accf0213c28c6677b5dce0c9e70bbe4c3837e0298b3d0edd

diff --git a/dev-ruby/httparty/httparty-0.15.5.ebuild 
b/dev-ruby/httparty/httparty-0.15.5.ebuild
new file mode 100644
index 000..0dc694c51ef
--- /dev/null
+++ b/dev-ruby/httparty/httparty-0.15.5.ebuild
@@ -0,0 +1,49 @@
+# Copyright 1999-2017 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+
+USE_RUBY="ruby21 ruby22 ruby23"
+
+RUBY_FAKEGEM_RECIPE_TEST="rspec3"
+
+RUBY_FAKEGEM_TASK_DOC=""
+RUBY_FAKEGEM_EXTRADOC="Changelog.md README.md"
+
+inherit ruby-fakegem
+
+DESCRIPTION="Makes http fun! Also, makes consuming restful web services dead 
easy"
+HOMEPAGE="https://jnunemaker.github.com/httparty;
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE=""
+
+ruby_add_rdepend '>=dev-ruby/multi_xml-0.5.2'
+
+ruby_add_bdepend 'test? ( dev-ruby/fakeweb )'
+
+all_ruby_prepare() {
+   # Remove bundler
+   rm Gemfile || die
+   sed -i -e '/[Bb]undler/ s:^:#:' Rakefile || die
+
+   # Avoid test dependency on cucumber. We can't run the features since
+   # they depend on mongrel which is no longer packaged.
+   sed -i -e '/cucumber/I s:^:#:' Rakefile || die
+
+   # Avoid test dependency on simplecov
+   sed -i -e '/simplecov/I s:^:#:' \
+   -e '1i require "cgi"; require "delegate"' spec/spec_helper.rb 
|| die
+
+   # Avoid test that works standalone but fails in the suite
+   sed -i -e '/calls block given to perform with each redirect/,/^
end/ s:^:#:' spec/httparty/request_spec.rb
+}
+
+all_ruby_install() {
+   all_fakegem_install
+
+   docinto examples
+   dodoc examples/*
+}



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

2017-05-13 Thread Hans de Graaff
commit: 78523b4998d711efcacad75759803e97b5d66a5f
Author: Hans de Graaff  gentoo  org>
AuthorDate: Sun May 14 05:28:29 2017 +
Commit: Hans de Graaff  gentoo  org>
CommitDate: Sun May 14 05:28:29 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=78523b49

dev-ruby/httparty: cleanup

Package-Manager: Portage-2.3.5, Repoman-2.3.1

 dev-ruby/httparty/httparty-0.14.0.ebuild | 46 
 1 file changed, 46 deletions(-)

diff --git a/dev-ruby/httparty/httparty-0.14.0.ebuild 
b/dev-ruby/httparty/httparty-0.14.0.ebuild
deleted file mode 100644
index f18e99be126..000
--- a/dev-ruby/httparty/httparty-0.14.0.ebuild
+++ /dev/null
@@ -1,46 +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_TASK_DOC=""
-RUBY_FAKEGEM_EXTRADOC="README.md History"
-
-inherit ruby-fakegem
-
-DESCRIPTION="Makes http fun! Also, makes consuming restful web services dead 
easy"
-HOMEPAGE="https://jnunemaker.github.com/httparty;
-
-LICENSE="MIT"
-SLOT="0"
-KEYWORDS="~amd64 ~ppc ~x86"
-IUSE=""
-
-ruby_add_rdepend '>=dev-ruby/multi_xml-0.5.2'
-
-ruby_add_bdepend 'test? ( dev-ruby/fakeweb )'
-
-all_ruby_prepare() {
-   # Remove bundler
-   rm Gemfile || die
-   sed -i -e '/[Bb]undler/ s:^:#:' Rakefile || die
-
-   # Avoid test dependency on cucumber. We can't run the features since
-   # they depend on mongrel which is no longer packaged.
-   sed -i -e '/cucumber/I s:^:#:' Rakefile || die
-
-   # Avoid test dependency on simplecov
-   sed -i -e '/simplecov/I s:^:#:' \
-   -e '1i require "cgi"' spec/spec_helper.rb || die
-}
-
-all_ruby_install() {
-   all_fakegem_install
-
-   docinto examples
-   dodoc examples/*
-}



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

2017-04-18 Thread Hans de Graaff
commit: 59c04918fc00078ca12029e7b99028000bd1b0ea
Author: Hans de Graaff  gentoo  org>
AuthorDate: Wed Apr 19 04:45:14 2017 +
Commit: Hans de Graaff  gentoo  org>
CommitDate: Wed Apr 19 04:45:14 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=59c04918

dev-ruby/httparty: cleanup

Package-Manager: Portage-2.3.3, Repoman-2.3.1

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

diff --git a/dev-ruby/httparty/Manifest b/dev-ruby/httparty/Manifest
index cc0318e9a6d..d7f8b72217e 100644
--- a/dev-ruby/httparty/Manifest
+++ b/dev-ruby/httparty/Manifest
@@ -1,2 +1 @@
-DIST httparty-0.13.7.gem 81920 SHA256 
22c3f4d2681aeb083d4703405799fbc96453ff0d38c3ae3c1e5070dcccdb2f31 SHA512 
85402542aceb438d5da3759d06cbe51f3e86301bb28ee3e77587a4eb0918efdda4f97f49271db62b5a9f21431dcdcdc1389d0940629c5f664f694e45b939a567
 WHIRLPOOL 
8f4855de98a5938e78ca4b989809f2a3cb32d93aa53000e2364def26294d7f3c8ac481f25c8ffdb061774bab6a34a5796dd270f1eaed5374eb439e310c086dc9
 DIST httparty-0.14.0.gem 84992 SHA256 
86bfb7688fce74992a2ab91329a4855b25f71e0f31112823095b530647104ad7 SHA512 
db04caaeff3277c071a2d3914f782f9151597d601a2f8817e704c977b95b149144c47df73284f83396ce1099f75f7fdc3caaa17385a515878366e2b3fcb84b04
 WHIRLPOOL 
b50a3cc72cf1cc271d3e61b677d3df0173f926a4d7e389ec5e53ae1ac128fe5a28ed39fa2678737b052d5af6de45ca3f96abf75d03b69c830b8c7abc4958e362

diff --git a/dev-ruby/httparty/httparty-0.13.7.ebuild 
b/dev-ruby/httparty/httparty-0.13.7.ebuild
deleted file mode 100644
index 8611f719ac7..000
--- a/dev-ruby/httparty/httparty-0.13.7.ebuild
+++ /dev/null
@@ -1,46 +0,0 @@
-# Copyright 1999-2016 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=5
-
-USE_RUBY="ruby20 ruby21"
-
-RUBY_FAKEGEM_RECIPE_TEST="rspec3"
-
-RUBY_FAKEGEM_TASK_DOC=""
-RUBY_FAKEGEM_EXTRADOC="README.md History"
-
-inherit ruby-fakegem
-
-DESCRIPTION="Makes http fun! Also, makes consuming restful web services dead 
easy"
-HOMEPAGE="https://jnunemaker.github.com/httparty;
-
-LICENSE="MIT"
-SLOT="0"
-KEYWORDS="~amd64 ~ppc ~x86"
-IUSE=""
-
-ruby_add_rdepend '>=dev-ruby/json-1.8:0 >=dev-ruby/multi_xml-0.5.2'
-
-ruby_add_bdepend 'test? ( dev-ruby/fakeweb )'
-
-all_ruby_prepare() {
-   # Remove bundler
-   rm Gemfile || die
-   sed -i -e '/[Bb]undler/ s:^:#:' Rakefile || die
-
-   # Avoid test dependency on cucumber. We can't run the features since
-   # they depend on mongrel which is no longer packaged.
-   sed -i -e '/cucumber/I s:^:#:' Rakefile || die
-
-   # Avoid test dependency on simplecov
-   sed -i -e '/simplecov/I s:^:#:' \
-   -e '1i require "cgi"' spec/spec_helper.rb || die
-}
-
-all_ruby_install() {
-   all_fakegem_install
-
-   docinto examples
-   dodoc examples/*
-}



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

2016-12-30 Thread Agostino Sarubbo
commit: 3130d048be9d268fd312d6898efc45caa4149c78
Author: Agostino Sarubbo  gentoo  org>
AuthorDate: Fri Dec 30 16:47:22 2016 +
Commit: Agostino Sarubbo  gentoo  org>
CommitDate: Fri Dec 30 16:47:22 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3130d048

dev-ruby/httparty: amd64 stable wrt bug #543242

Package-Manager: portage-2.3.0
RepoMan-Options: --include-arches="amd64"
Signed-off-by: Agostino Sarubbo  gentoo.org>

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

diff --git a/dev-ruby/httparty/httparty-0.14.0-r1.ebuild 
b/dev-ruby/httparty/httparty-0.14.0-r1.ebuild
index 2824629..bc560ad 100644
--- a/dev-ruby/httparty/httparty-0.14.0-r1.ebuild
+++ b/dev-ruby/httparty/httparty-0.14.0-r1.ebuild
@@ -18,7 +18,7 @@ HOMEPAGE="https://jnunemaker.github.com/httparty;
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="~amd64 ~x86"
+KEYWORDS="amd64 ~x86"
 IUSE=""
 
 ruby_add_rdepend '>=dev-ruby/multi_xml-0.5.2'



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

2016-12-19 Thread Manuel Rüger
commit: 6896f940b1a342bfc384a410f9fa194725441528
Author: Manuel Rüger  gentoo  org>
AuthorDate: Tue Dec 20 01:43:54 2016 +
Commit: Manuel Rüger  gentoo  org>
CommitDate: Tue Dec 20 01:43:54 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6896f940

dev-ruby/httparty: Add ruby23, drop ppc

Package-Manager: portage-2.3.3

 dev-ruby/httparty/httparty-0.14.0-r1.ebuild | 47 +
 1 file changed, 47 insertions(+)

diff --git a/dev-ruby/httparty/httparty-0.14.0-r1.ebuild 
b/dev-ruby/httparty/httparty-0.14.0-r1.ebuild
new file mode 100644
index ..2824629
--- /dev/null
+++ b/dev-ruby/httparty/httparty-0.14.0-r1.ebuild
@@ -0,0 +1,47 @@
+# Copyright 1999-2016 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=5
+
+USE_RUBY="ruby21 ruby22 ruby23"
+
+RUBY_FAKEGEM_RECIPE_TEST="rspec3"
+
+RUBY_FAKEGEM_TASK_DOC=""
+RUBY_FAKEGEM_EXTRADOC="README.md History"
+
+inherit ruby-fakegem
+
+DESCRIPTION="Makes http fun! Also, makes consuming restful web services dead 
easy"
+HOMEPAGE="https://jnunemaker.github.com/httparty;
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE=""
+
+ruby_add_rdepend '>=dev-ruby/multi_xml-0.5.2'
+
+ruby_add_bdepend 'test? ( dev-ruby/fakeweb )'
+
+all_ruby_prepare() {
+   # Remove bundler
+   rm Gemfile || die
+   sed -i -e '/[Bb]undler/ s:^:#:' Rakefile || die
+
+   # Avoid test dependency on cucumber. We can't run the features since
+   # they depend on mongrel which is no longer packaged.
+   sed -i -e '/cucumber/I s:^:#:' Rakefile || die
+
+   # Avoid test dependency on simplecov
+   sed -i -e '/simplecov/I s:^:#:' \
+   -e '1i require "cgi"' spec/spec_helper.rb || die
+}
+
+all_ruby_install() {
+   all_fakegem_install
+
+   docinto examples
+   dodoc examples/*
+}



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

2016-11-03 Thread Hans de Graaff
commit: 321522e7e8ce91980d40318ab239eafd8418c183
Author: Hans de Graaff  gentoo  org>
AuthorDate: Thu Nov  3 07:03:24 2016 +
Commit: Hans de Graaff  gentoo  org>
CommitDate: Thu Nov  3 07:03:24 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=321522e7

dev-ruby/httparty: add ruby22

Package-Manager: portage-2.3.0

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

diff --git a/dev-ruby/httparty/httparty-0.14.0.ebuild 
b/dev-ruby/httparty/httparty-0.14.0.ebuild
index 53409ae..6216c4f 100644
--- a/dev-ruby/httparty/httparty-0.14.0.ebuild
+++ b/dev-ruby/httparty/httparty-0.14.0.ebuild
@@ -4,7 +4,7 @@
 
 EAPI=5
 
-USE_RUBY="ruby20 ruby21"
+USE_RUBY="ruby20 ruby21 ruby22"
 
 RUBY_FAKEGEM_RECIPE_TEST="rspec3"
 



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

2016-07-26 Thread Hans de Graaff
commit: 3062d700bd14e438de76c51e6df0aa5964388269
Author: Hans de Graaff  gentoo  org>
AuthorDate: Wed Jul 27 05:23:55 2016 +
Commit: Hans de Graaff  gentoo  org>
CommitDate: Wed Jul 27 05:23:55 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3062d700

dev-ruby/httparty: add 0.14.0

Package-Manager: portage-2.2.28

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

diff --git a/dev-ruby/httparty/Manifest b/dev-ruby/httparty/Manifest
index 3723447..cc0318e 100644
--- a/dev-ruby/httparty/Manifest
+++ b/dev-ruby/httparty/Manifest
@@ -1 +1,2 @@
 DIST httparty-0.13.7.gem 81920 SHA256 
22c3f4d2681aeb083d4703405799fbc96453ff0d38c3ae3c1e5070dcccdb2f31 SHA512 
85402542aceb438d5da3759d06cbe51f3e86301bb28ee3e77587a4eb0918efdda4f97f49271db62b5a9f21431dcdcdc1389d0940629c5f664f694e45b939a567
 WHIRLPOOL 
8f4855de98a5938e78ca4b989809f2a3cb32d93aa53000e2364def26294d7f3c8ac481f25c8ffdb061774bab6a34a5796dd270f1eaed5374eb439e310c086dc9
+DIST httparty-0.14.0.gem 84992 SHA256 
86bfb7688fce74992a2ab91329a4855b25f71e0f31112823095b530647104ad7 SHA512 
db04caaeff3277c071a2d3914f782f9151597d601a2f8817e704c977b95b149144c47df73284f83396ce1099f75f7fdc3caaa17385a515878366e2b3fcb84b04
 WHIRLPOOL 
b50a3cc72cf1cc271d3e61b677d3df0173f926a4d7e389ec5e53ae1ac128fe5a28ed39fa2678737b052d5af6de45ca3f96abf75d03b69c830b8c7abc4958e362

diff --git a/dev-ruby/httparty/httparty-0.14.0.ebuild 
b/dev-ruby/httparty/httparty-0.14.0.ebuild
new file mode 100644
index 000..53409ae
--- /dev/null
+++ b/dev-ruby/httparty/httparty-0.14.0.ebuild
@@ -0,0 +1,47 @@
+# Copyright 1999-2016 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=5
+
+USE_RUBY="ruby20 ruby21"
+
+RUBY_FAKEGEM_RECIPE_TEST="rspec3"
+
+RUBY_FAKEGEM_TASK_DOC=""
+RUBY_FAKEGEM_EXTRADOC="README.md History"
+
+inherit ruby-fakegem
+
+DESCRIPTION="Makes http fun! Also, makes consuming restful web services dead 
easy"
+HOMEPAGE="https://jnunemaker.github.com/httparty;
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="~amd64 ~ppc ~x86"
+IUSE=""
+
+ruby_add_rdepend '>=dev-ruby/multi_xml-0.5.2'
+
+ruby_add_bdepend 'test? ( dev-ruby/fakeweb )'
+
+all_ruby_prepare() {
+   # Remove bundler
+   rm Gemfile || die
+   sed -i -e '/[Bb]undler/ s:^:#:' Rakefile || die
+
+   # Avoid test dependency on cucumber. We can't run the features since
+   # they depend on mongrel which is no longer packaged.
+   sed -i -e '/cucumber/I s:^:#:' Rakefile || die
+
+   # Avoid test dependency on simplecov
+   sed -i -e '/simplecov/I s:^:#:' \
+   -e '1i require "cgi"' spec/spec_helper.rb || die
+}
+
+all_ruby_install() {
+   all_fakegem_install
+
+   docinto examples
+   dodoc examples/*
+}



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

2016-03-19 Thread Manuel Rüger
commit: a5b1da01e092460fbf2fdd58081c62711e3b941a
Author: Manuel Rüger  gentoo  org>
AuthorDate: Thu Mar 17 00:30:20 2016 +
Commit: Manuel Rüger  gentoo  org>
CommitDate: Thu Mar 17 00:30:20 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a5b1da01

dev-ruby/httparty: Remove ruby19

Package-Manager: portage-2.2.28

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

diff --git a/dev-ruby/httparty/httparty-0.13.7.ebuild 
b/dev-ruby/httparty/httparty-0.13.7.ebuild
index a48ad9d..fc93f56 100644
--- a/dev-ruby/httparty/httparty-0.13.7.ebuild
+++ b/dev-ruby/httparty/httparty-0.13.7.ebuild
@@ -1,10 +1,10 @@
-# Copyright 1999-2015 Gentoo Foundation
+# Copyright 1999-2016 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 # $Id$
 
 EAPI=5
 
-USE_RUBY="ruby19 ruby20 ruby21"
+USE_RUBY="ruby20 ruby21"
 
 RUBY_FAKEGEM_RECIPE_TEST="rspec3"
 



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

2016-03-02 Thread Manuel Rüger
commit: 404908dc88809c43dfc9589bd9f4dadf0b4b97e6
Author: Manuel Rüger  gentoo  org>
AuthorDate: Wed Mar  2 21:58:37 2016 +
Commit: Manuel Rüger  gentoo  org>
CommitDate: Wed Mar  2 21:58:37 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=404908dc

dev-ruby/httparty: Remove old

Package-Manager: portage-2.2.27

 dev-ruby/httparty/Manifest   |  2 --
 dev-ruby/httparty/httparty-0.13.4.ebuild | 49 -
 dev-ruby/httparty/httparty-0.13.5.ebuild | 53 
 3 files changed, 104 deletions(-)

diff --git a/dev-ruby/httparty/Manifest b/dev-ruby/httparty/Manifest
index 7ed069c..3723447 100644
--- a/dev-ruby/httparty/Manifest
+++ b/dev-ruby/httparty/Manifest
@@ -1,3 +1 @@
-DIST httparty-0.13.4.gem 78848 SHA256 
5dea492ff272e8417fc89730c5166944d0a4b41293d7344c1a0de9e804ef9cde SHA512 
7f544c3df689e413bfa47798ccc9bea295d00c084ed15da32f105e68ae40bc12c49f3e90e4cde0d147037a94f88f4130143d164e3afd3a069fa8e7b8bb2f8265
 WHIRLPOOL 
e7ac75dce16b3b5e558d58b9519f8fb617265c883e60f780a9abb0c6e31983685990a9b589287fd3cf128be29ee26f70fe305385443487beb3c9d2d1ff93d589
-DIST httparty-0.13.5.gem 78848 SHA256 
c9b9a31d80af2e5bc5e2a7c37efc5d8aad4c8d9c58b82f18e4ff37cfef7223d5 SHA512 
d8408ea085d71d1a3b80519834173618e283c806ecef25f0a2c6029eee23a0f8e07218ac018dbb884a78e9b0e4e91bad11228112811cefb39e2b8a517fce1880
 WHIRLPOOL 
e7b7b8d299ef4d1cb4dd45189044dbdfa357159f01f9743f35664d1820c9309fac96d6e803ed9bd09f626e5411438ff310dfe3c0bc4803973c53c1808a13e4a3
 DIST httparty-0.13.7.gem 81920 SHA256 
22c3f4d2681aeb083d4703405799fbc96453ff0d38c3ae3c1e5070dcccdb2f31 SHA512 
85402542aceb438d5da3759d06cbe51f3e86301bb28ee3e77587a4eb0918efdda4f97f49271db62b5a9f21431dcdcdc1389d0940629c5f664f694e45b939a567
 WHIRLPOOL 
8f4855de98a5938e78ca4b989809f2a3cb32d93aa53000e2364def26294d7f3c8ac481f25c8ffdb061774bab6a34a5796dd270f1eaed5374eb439e310c086dc9

diff --git a/dev-ruby/httparty/httparty-0.13.4.ebuild 
b/dev-ruby/httparty/httparty-0.13.4.ebuild
deleted file mode 100644
index eacb6e2..000
--- a/dev-ruby/httparty/httparty-0.13.4.ebuild
+++ /dev/null
@@ -1,49 +0,0 @@
-# Copyright 1999-2015 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-EAPI=5
-
-USE_RUBY="ruby19 ruby20 ruby21"
-
-# We have a custom test function, but don't null this out so that the
-# deps are still added
-RUBY_FAKEGEM_TASK_TEST="none"
-
-RUBY_FAKEGEM_TASK_DOC=""
-RUBY_FAKEGEM_EXTRADOC="README.md History"
-
-inherit ruby-fakegem
-
-DESCRIPTION="Makes http fun! Also, makes consuming restful web services dead 
easy"
-HOMEPAGE="https://jnunemaker.github.com/httparty;
-
-LICENSE="MIT"
-SLOT="0"
-KEYWORDS="~amd64 ~ppc ~x86"
-IUSE=""
-
-ruby_add_rdepend '>=dev-ruby/json-1.8:0 >=dev-ruby/multi_xml-0.5.2'
-
-ruby_add_bdepend 'dev-ruby/rspec:3 dev-ruby/fakeweb'
-
-all_ruby_prepare() {
-   # Remove bundler
-   rm Gemfile || die
-   sed -i -e '/[Bb]undler/ s:^:#:' Rakefile || die
-
-   # Avoid test dependency on cucumber. We can't run the features since
-   # they depend on mongrel which is no longer packaged.
-   sed -i -e '/cucumber/I s:^:#:' Rakefile || die
-}
-
-each_ruby_test() {
-   ${RUBY} -S rake spec || die
-}
-
-all_ruby_install() {
-   all_fakegem_install
-
-   docinto examples
-   dodoc examples/*
-}

diff --git a/dev-ruby/httparty/httparty-0.13.5.ebuild 
b/dev-ruby/httparty/httparty-0.13.5.ebuild
deleted file mode 100644
index a26eba9..000
--- a/dev-ruby/httparty/httparty-0.13.5.ebuild
+++ /dev/null
@@ -1,53 +0,0 @@
-# Copyright 1999-2015 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-EAPI=5
-
-USE_RUBY="ruby19 ruby20 ruby21"
-
-# We have a custom test function, but don't null this out so that the
-# deps are still added
-RUBY_FAKEGEM_TASK_TEST="none"
-
-RUBY_FAKEGEM_TASK_DOC=""
-RUBY_FAKEGEM_EXTRADOC="README.md History"
-
-inherit ruby-fakegem
-
-DESCRIPTION="Makes http fun! Also, makes consuming restful web services dead 
easy"
-HOMEPAGE="https://jnunemaker.github.com/httparty;
-
-LICENSE="MIT"
-SLOT="0"
-KEYWORDS="~amd64 ~ppc ~x86"
-IUSE=""
-
-ruby_add_rdepend '>=dev-ruby/json-1.8:0 >=dev-ruby/multi_xml-0.5.2'
-
-ruby_add_bdepend 'dev-ruby/rspec:3 dev-ruby/fakeweb'
-
-all_ruby_prepare() {
-   # Remove bundler
-   rm Gemfile || die
-   sed -i -e '/[Bb]undler/ s:^:#:' Rakefile || die
-
-   # Avoid test dependency on cucumber. We can't run the features since
-   # they depend on mongrel which is no longer packaged.
-   sed -i -e '/cucumber/I s:^:#:' Rakefile || die
-
-   # Avoid test dependency on simplecov
-   sed -i -e '/simplecov/I s:^:#:' \
-   -e '1i require "cgi"' spec/spec_helper.rb || die
-}
-
-each_ruby_test() {
-   ${RUBY} -S rake spec || die
-}
-
-all_ruby_install() {
-   all_fakegem_install
-
-   docinto examples
-   dodoc examples/*
-}



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

2015-12-05 Thread Hans de Graaff
commit: d0bc3dac8d503ed73d7608a320830fb3cf444b2f
Author: Hans de Graaff  gentoo  org>
AuthorDate: Sat Dec  5 09:12:28 2015 +
Commit: Hans de Graaff  gentoo  org>
CommitDate: Sat Dec  5 09:12:59 2015 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d0bc3dac

dev-ruby/httparty: use rspec3 recipe for tests

This also makes rspec a USE=test dependency rather
than a generic build dependency.

Package-Manager: portage-2.2.20.1

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

diff --git a/dev-ruby/httparty/httparty-0.13.7.ebuild 
b/dev-ruby/httparty/httparty-0.13.7.ebuild
index a26eba9..a48ad9d 100644
--- a/dev-ruby/httparty/httparty-0.13.7.ebuild
+++ b/dev-ruby/httparty/httparty-0.13.7.ebuild
@@ -6,9 +6,7 @@ EAPI=5
 
 USE_RUBY="ruby19 ruby20 ruby21"
 
-# We have a custom test function, but don't null this out so that the
-# deps are still added
-RUBY_FAKEGEM_TASK_TEST="none"
+RUBY_FAKEGEM_RECIPE_TEST="rspec3"
 
 RUBY_FAKEGEM_TASK_DOC=""
 RUBY_FAKEGEM_EXTRADOC="README.md History"
@@ -25,7 +23,7 @@ IUSE=""
 
 ruby_add_rdepend '>=dev-ruby/json-1.8:0 >=dev-ruby/multi_xml-0.5.2'
 
-ruby_add_bdepend 'dev-ruby/rspec:3 dev-ruby/fakeweb'
+ruby_add_bdepend 'test? ( dev-ruby/fakeweb )'
 
 all_ruby_prepare() {
# Remove bundler
@@ -41,10 +39,6 @@ all_ruby_prepare() {
-e '1i require "cgi"' spec/spec_helper.rb || die
 }
 
-each_ruby_test() {
-   ${RUBY} -S rake spec || die
-}
-
 all_ruby_install() {
all_fakegem_install
 



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

2015-09-25 Thread Manuel Rüger
commit: 58362c035562a7d83aa2e85285c77f67dfdd9ca4
Author: Manuel Rüger  gentoo  org>
AuthorDate: Sat Sep 26 00:42:35 2015 +
Commit: Manuel Rüger  gentoo  org>
CommitDate: Sat Sep 26 00:42:35 2015 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=58362c03

dev-ruby/httparty: Version bump

Package-Manager: portage-2.2.22

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

diff --git a/dev-ruby/httparty/Manifest b/dev-ruby/httparty/Manifest
index ac9190a..7ed069c 100644
--- a/dev-ruby/httparty/Manifest
+++ b/dev-ruby/httparty/Manifest
@@ -1,2 +1,3 @@
 DIST httparty-0.13.4.gem 78848 SHA256 
5dea492ff272e8417fc89730c5166944d0a4b41293d7344c1a0de9e804ef9cde SHA512 
7f544c3df689e413bfa47798ccc9bea295d00c084ed15da32f105e68ae40bc12c49f3e90e4cde0d147037a94f88f4130143d164e3afd3a069fa8e7b8bb2f8265
 WHIRLPOOL 
e7ac75dce16b3b5e558d58b9519f8fb617265c883e60f780a9abb0c6e31983685990a9b589287fd3cf128be29ee26f70fe305385443487beb3c9d2d1ff93d589
 DIST httparty-0.13.5.gem 78848 SHA256 
c9b9a31d80af2e5bc5e2a7c37efc5d8aad4c8d9c58b82f18e4ff37cfef7223d5 SHA512 
d8408ea085d71d1a3b80519834173618e283c806ecef25f0a2c6029eee23a0f8e07218ac018dbb884a78e9b0e4e91bad11228112811cefb39e2b8a517fce1880
 WHIRLPOOL 
e7b7b8d299ef4d1cb4dd45189044dbdfa357159f01f9743f35664d1820c9309fac96d6e803ed9bd09f626e5411438ff310dfe3c0bc4803973c53c1808a13e4a3
+DIST httparty-0.13.7.gem 81920 SHA256 
22c3f4d2681aeb083d4703405799fbc96453ff0d38c3ae3c1e5070dcccdb2f31 SHA512 
85402542aceb438d5da3759d06cbe51f3e86301bb28ee3e77587a4eb0918efdda4f97f49271db62b5a9f21431dcdcdc1389d0940629c5f664f694e45b939a567
 WHIRLPOOL 
8f4855de98a5938e78ca4b989809f2a3cb32d93aa53000e2364def26294d7f3c8ac481f25c8ffdb061774bab6a34a5796dd270f1eaed5374eb439e310c086dc9

diff --git a/dev-ruby/httparty/httparty-0.13.7.ebuild 
b/dev-ruby/httparty/httparty-0.13.7.ebuild
new file mode 100644
index 000..a26eba9
--- /dev/null
+++ b/dev-ruby/httparty/httparty-0.13.7.ebuild
@@ -0,0 +1,53 @@
+# Copyright 1999-2015 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=5
+
+USE_RUBY="ruby19 ruby20 ruby21"
+
+# We have a custom test function, but don't null this out so that the
+# deps are still added
+RUBY_FAKEGEM_TASK_TEST="none"
+
+RUBY_FAKEGEM_TASK_DOC=""
+RUBY_FAKEGEM_EXTRADOC="README.md History"
+
+inherit ruby-fakegem
+
+DESCRIPTION="Makes http fun! Also, makes consuming restful web services dead 
easy"
+HOMEPAGE="https://jnunemaker.github.com/httparty;
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="~amd64 ~ppc ~x86"
+IUSE=""
+
+ruby_add_rdepend '>=dev-ruby/json-1.8:0 >=dev-ruby/multi_xml-0.5.2'
+
+ruby_add_bdepend 'dev-ruby/rspec:3 dev-ruby/fakeweb'
+
+all_ruby_prepare() {
+   # Remove bundler
+   rm Gemfile || die
+   sed -i -e '/[Bb]undler/ s:^:#:' Rakefile || die
+
+   # Avoid test dependency on cucumber. We can't run the features since
+   # they depend on mongrel which is no longer packaged.
+   sed -i -e '/cucumber/I s:^:#:' Rakefile || die
+
+   # Avoid test dependency on simplecov
+   sed -i -e '/simplecov/I s:^:#:' \
+   -e '1i require "cgi"' spec/spec_helper.rb || die
+}
+
+each_ruby_test() {
+   ${RUBY} -S rake spec || die
+}
+
+all_ruby_install() {
+   all_fakegem_install
+
+   docinto examples
+   dodoc examples/*
+}



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

2015-08-10 Thread Hans de Graaff
commit: fd24cacdd0c0b4501416b2effd43732c0c52bc7f
Author: Hans de Graaff graaff AT gentoo DOT org
AuthorDate: Tue Aug 11 05:18:13 2015 +
Commit: Hans de Graaff graaff AT gentoo DOT org
CommitDate: Tue Aug 11 05:18:13 2015 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=fd24cacd

dev-ruby/httparty: avoid dependency on simplecov

Package-Manager: portage-2.2.20

 dev-ruby/httparty/httparty-0.13.5.ebuild | 4 
 1 file changed, 4 insertions(+)

diff --git a/dev-ruby/httparty/httparty-0.13.5.ebuild 
b/dev-ruby/httparty/httparty-0.13.5.ebuild
index 111bb8a..f7bb43d 100644
--- a/dev-ruby/httparty/httparty-0.13.5.ebuild
+++ b/dev-ruby/httparty/httparty-0.13.5.ebuild
@@ -35,6 +35,10 @@ all_ruby_prepare() {
# Avoid test dependency on cucumber. We can't run the features since
# they depend on mongrel which is no longer packaged.
sed -i -e '/cucumber/I s:^:#:' Rakefile || die
+
+   # Avoid test dependency on simplecov
+   sed -i -e '/simplecov/I s:^:#:' \
+   -e '1i require cgi' spec/spec_helper.rb || die
 }
 
 each_ruby_test() {