diff options
author | Sam James <sam@gentoo.org> | 2023-03-29 02:14:54 +0100 |
---|---|---|
committer | Sam James <sam@gentoo.org> | 2023-03-29 13:56:05 +0100 |
commit | a6da27be9a5fce809c0b5d2b3b9375cfed272775 (patch) | |
tree | 62c9e7be7558aacd7303bc2278a9540472afb542 /dev-ruby/highline | |
parent | dev-ruby/rdiscount: drop 2.2.0.2-r1, 2.2.0.2-r2 (diff) | |
download | gentoo-a6da27be9a5fce809c0b5d2b3b9375cfed272775.tar.gz gentoo-a6da27be9a5fce809c0b5d2b3b9375cfed272775.tar.bz2 gentoo-a6da27be9a5fce809c0b5d2b3b9375cfed272775.zip |
dev-ruby/highline: drop 2.0.3
Signed-off-by: Sam James <sam@gentoo.org>
Diffstat (limited to 'dev-ruby/highline')
-rw-r--r-- | dev-ruby/highline/highline-2.0.3.ebuild | 34 |
1 files changed, 0 insertions, 34 deletions
diff --git a/dev-ruby/highline/highline-2.0.3.ebuild b/dev-ruby/highline/highline-2.0.3.ebuild deleted file mode 100644 index 686dc2856dbb..000000000000 --- a/dev-ruby/highline/highline-2.0.3.ebuild +++ /dev/null @@ -1,34 +0,0 @@ -# Copyright 1999-2022 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 - -USE_RUBY="ruby25 ruby26 ruby27 ruby30" - -RUBY_FAKEGEM_EXTRADOC="Changelog.md README.md TODO" - -RUBY_FAKEGEM_GEMSPEC="highline.gemspec" - -inherit ruby-fakegem - -DESCRIPTION="Highline is a high-level command-line IO library for ruby" -HOMEPAGE="https://github.com/JEG2/highline" -SRC_URI="https://github.com/JEG2/highline/archive/v${PV}.tar.gz -> ${P}.tar.gz" - -IUSE="" -LICENSE="|| ( GPL-2 Ruby-BSD )" -SLOT="$(ver_cut 1)" -KEYWORDS="amd64 ~hppa ppc ppc64 sparc x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x64-solaris ~x86-solaris" - -all_ruby_prepare() { - # fix up gemspec file not to call git - sed -i -e 's/git ls-files -z/find -print0/' highline.gemspec || die - - # Avoid unneeded dependencies - sed -i -e '/\(bundler\|code_statistics\)/ s:^:#:' \ - -e '/PackageTask/,/end/ s:^:#:' Rakefile || die - sed -i -e '/simplecov/ s:^:#:' test/test_helper.rb || die - - # Remove almost empty doc directory to allow rdoc recipe to work - rm -rf doc || die -} |