diff options
author | Hans de Graaff <graaff@gentoo.org> | 2021-10-23 08:59:34 +0200 |
---|---|---|
committer | Hans de Graaff <graaff@gentoo.org> | 2021-10-23 09:05:38 +0200 |
commit | bdf03ad4c95b7a0f057ed811729a947c1febc4c3 (patch) | |
tree | 3f1c11be240bff9897c6f50e1bd6c4140a706f34 /dev-ruby/patron | |
parent | dev-ruby/gruff: cleanup (diff) | |
download | gentoo-bdf03ad4c95b7a0f057ed811729a947c1febc4c3.tar.gz gentoo-bdf03ad4c95b7a0f057ed811729a947c1febc4c3.tar.bz2 gentoo-bdf03ad4c95b7a0f057ed811729a947c1febc4c3.zip |
dev-ruby/patron: cleanup
Package-Manager: Portage-3.0.20, Repoman-3.0.3
Signed-off-by: Hans de Graaff <graaff@gentoo.org>
Diffstat (limited to 'dev-ruby/patron')
-rw-r--r-- | dev-ruby/patron/Manifest | 1 | ||||
-rw-r--r-- | dev-ruby/patron/patron-0.13.1-r1.ebuild | 46 |
2 files changed, 0 insertions, 47 deletions
diff --git a/dev-ruby/patron/Manifest b/dev-ruby/patron/Manifest index b22add4d380b..9eafcd30ce72 100644 --- a/dev-ruby/patron/Manifest +++ b/dev-ruby/patron/Manifest @@ -1,2 +1 @@ -DIST patron-0.13.1.gem 64512 BLAKE2B 14f691cb0fd1c863a1ef634ba8aee94751095138e940f13bf09860e9e0061872fe14fa33416f59f82d4adc53963721d653936a3f058b27654ea7593d6068d0b7 SHA512 7b082ff7442c2635c38b37132cd61f6cd18d4792d41cbf3bed1201fb7371b75bb628a295f4e3dd173c23e086d3c1f54f0217df3f7d1a30c1031fcca86269e1e7 DIST patron-0.13.3.gem 65024 BLAKE2B 87aa69aab49978d14a80ed9e09d74d7853da3512875cc3aecd3f387d1523b85c84625b57a5826e5f5f999cec4feaae58c1aaae96582144a5c9dc537c9d5a4224 SHA512 afbbbd9570e338a5d1b97b4ebeda76ac95a22c29d908629723d345a47400183c2ccee67ebcaf5b6f9ecb032eb3b847e70ec9eebff75b33045a3665c215abfbd0 diff --git a/dev-ruby/patron/patron-0.13.1-r1.ebuild b/dev-ruby/patron/patron-0.13.1-r1.ebuild deleted file mode 100644 index 8564423a8572..000000000000 --- a/dev-ruby/patron/patron-0.13.1-r1.ebuild +++ /dev/null @@ -1,46 +0,0 @@ -# Copyright 1999-2021 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=6 -USE_RUBY="ruby23 ruby24 ruby25 ruby26" - -RUBY_FAKEGEM_RECIPE_TEST="rspec3" -RUBY_FAKEGEM_RECIPE_DOC="rdoc" -RUBY_FAKEGEM_EXTRADOC="README.md" - -inherit multilib ruby-fakegem - -DESCRIPTION="Patron is a Ruby HTTP client library based on libcurl" -HOMEPAGE="https://toland.github.com/patron/" - -LICENSE="MIT" -SLOT="0" -KEYWORDS="amd64 ~arm ~arm64 ~hppa ~ppc ~ppc64 x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x64-solaris ~x86-solaris" -IUSE="" - -DEPEND+=" net-misc/curl" -RDEPEND+=" net-misc/curl" - -ruby_add_bdepend "test? ( www-servers/puma )" - -all_ruby_prepare() { - # Fix Rakefile - sed -i -e 's:rake/rdoctask:rdoc/task:' \ - -e 's/README.txt/README.md/' \ - -e '/bundler/I s:^:#:' \ - -e '/extensiontask/ s:^:#:' \ - -e '/ExtensionTask/,/^end/ s:^:#:' \ - Rakefile || die - - # Avoid specs with failures. We were not running any specs before. - rm spec/session_ssl_spec.rb spec/session_spec.rb spec/response_spec.rb || die -} - -each_ruby_configure() { - ${RUBY} -Cext/patron extconf.rb || die -} - -each_ruby_compile() { - emake -Cext/patron V=1 - cp ext/patron/session_ext$(get_modname) lib/patron/ || die "Unable to cp shared object file" -} |