summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorHans de Graaff <graaff@gentoo.org>2024-03-29 10:13:10 +0100
committerHans de Graaff <graaff@gentoo.org>2024-03-29 10:19:46 +0100
commitaa7a521d61f6f05f89412b7168488c233cd32382 (patch)
treee809ff7640b44c0f351de68a8f37bb7ebada967d /dev-ruby
parentmedia-gfx/exiv2: Stabilize 0.28.2 ppc64, #928075 (diff)
downloadgentoo-aa7a521d61f6f05f89412b7168488c233cd32382.tar.gz
gentoo-aa7a521d61f6f05f89412b7168488c233cd32382.tar.bz2
gentoo-aa7a521d61f6f05f89412b7168488c233cd32382.zip
dev-ruby/irb: drop 1.7.4, 1.8.3, 1.11.0
Signed-off-by: Hans de Graaff <graaff@gentoo.org>
Diffstat (limited to 'dev-ruby')
-rw-r--r--dev-ruby/irb/Manifest3
-rw-r--r--dev-ruby/irb/irb-1.11.0.ebuild53
-rw-r--r--dev-ruby/irb/irb-1.7.4.ebuild53
-rw-r--r--dev-ruby/irb/irb-1.8.3.ebuild53
4 files changed, 0 insertions, 162 deletions
diff --git a/dev-ruby/irb/Manifest b/dev-ruby/irb/Manifest
index 2b4510c68a31..bd873c1e4ebf 100644
--- a/dev-ruby/irb/Manifest
+++ b/dev-ruby/irb/Manifest
@@ -1,4 +1 @@
-DIST irb-1.11.0.tar.gz 127838 BLAKE2B a5786dad54f50d146086950c44d5e48029e6528ef647266199061415b67c7378d12237b002a3afdbe0ae555b52c7bf58156702402881d22e6d390dbc4ea8c50d SHA512 60f6a80ed29278fd41a8874de8b1a6d977f5c92ab6cf769052676eb12c8baae48454243602f047ff2749e7a63cbed1766bf05f4793574e7c0a922e8de3689926
DIST irb-1.11.1.tar.gz 128341 BLAKE2B ec2ebfd31b7d784668ed043d32b86bc0f77481b250170911332f4b9810f0ee5245ec65aac4d2fa4fc94f49c5d3fa59dd7c3a709f712d9f7f4c1ed6ddd7f0e2b3 SHA512 6b8eaf41410d43f4ab47961b56ce054f93e134e5cba51a08294baaa6de149a209e243a9cf649091f3176adfd0c22943fe222b61b0ab1215e0822d7007c154f17
-DIST irb-1.7.4.tar.gz 115221 BLAKE2B 8905dbad13363fff33ae719258673d1818e3eb7dfd508254d3f2bbb28e315be2fe15614ea63cef7718a2da4a7c4ef99dc9bc76d270b5219203751dc06a7161de SHA512 562ca1deb78223f6b0b9534d9d1756d8eaffe8dfb7f550238a4afabfb42622109716ccabdef805d8aa2c14dbb73abad8a32c0261c04064281216d40bc57b87ad
-DIST irb-1.8.3.tar.gz 112981 BLAKE2B 513d62f33969e26861da18c1e73140894422ac47fd1943f1360e12732473872e9d06ac00b115ad39d7cbee36dbbea691f2e6e19970adb2677051371c4ae0ede1 SHA512 7b3cb2659cfde36bebd370cc4ac2648ac7b8672e6f9edc0fe3bcbe0a8a0ce9e75aa1b6bae3139e77975bd53cf874bb5e180044467bf17a865e73a3f5ab6b2abb
diff --git a/dev-ruby/irb/irb-1.11.0.ebuild b/dev-ruby/irb/irb-1.11.0.ebuild
deleted file mode 100644
index 8aa1bfe33ab7..000000000000
--- a/dev-ruby/irb/irb-1.11.0.ebuild
+++ /dev/null
@@ -1,53 +0,0 @@
-# Copyright 1999-2023 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-USE_RUBY="ruby31 ruby32 ruby33"
-
-RUBY_FAKEGEM_BINDIR="exe"
-RUBY_FAKEGEM_EXTRADOC="README.md"
-RUBY_FAKEGEM_GEMSPEC="irb.gemspec"
-RUBY_FAKEGEM_RECIPE_DOC="none"
-
-inherit ruby-fakegem
-
-DESCRIPTION="Interactive Ruby command-line tool for REPL (Read Eval Print Loop)"
-HOMEPAGE="https://github.com/ruby/irb"
-SRC_URI="https://github.com/ruby/irb/archive/v${PV}.tar.gz -> ${P}.tar.gz"
-
-LICENSE="BSD-2"
-SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~loong ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x64-solaris"
-IUSE=""
-
-# Ensure a new enough eselect-ruby is present to avoid clobbering the
-# irb bin and man page.
-ruby_add_rdepend "
- dev-ruby/rdoc
- >=dev-ruby/reline-0.3.8
- !<app-eselect/eselect-ruby-20231008
-"
-
-ruby_add_bdepend "test? ( dev-ruby/bundler dev-ruby/test-unit dev-ruby/test-unit-ruby-core )"
-
-all_ruby_prepare() {
- sed -e 's:_relative ":"./:' \
- -i ${RUBY_FAKEGEM_GEMSPEC} || die
-
- # Skip test requiring specific character set
- sed -e '/test_raise_exception_with_different_encoding_containing_invalid_byte_sequence/aomit "charset"' \
- -i test/irb/test_raise_exception.rb || die
-
- # Skip tests requiring a working console
- rm -f test/irb/test_debug_cmd.rb || die
-}
-
-each_ruby_test() {
- RUBYLIB=lib ${RUBY} -S rake test || die
-}
-
-all_ruby_install() {
- all_fakegem_install
-
- doman man/irb.1
-}
diff --git a/dev-ruby/irb/irb-1.7.4.ebuild b/dev-ruby/irb/irb-1.7.4.ebuild
deleted file mode 100644
index 9fe1c976ddcc..000000000000
--- a/dev-ruby/irb/irb-1.7.4.ebuild
+++ /dev/null
@@ -1,53 +0,0 @@
-# Copyright 1999-2023 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-USE_RUBY="ruby31 ruby32"
-
-RUBY_FAKEGEM_BINDIR="exe"
-RUBY_FAKEGEM_EXTRADOC="README.md"
-RUBY_FAKEGEM_GEMSPEC="irb.gemspec"
-RUBY_FAKEGEM_RECIPE_DOC="none"
-
-inherit ruby-fakegem
-
-DESCRIPTION="Interactive Ruby command-line tool for REPL (Read Eval Print Loop)"
-HOMEPAGE="https://github.com/ruby/irb"
-SRC_URI="https://github.com/ruby/irb/archive/v${PV}.tar.gz -> ${P}.tar.gz"
-
-LICENSE="BSD-2"
-SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~loong ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos"
-IUSE=""
-
-# Ensure a new enough eselect-ruby is present to avoid clobbering the
-# irb bin and man page.
-ruby_add_rdepend "
- >=dev-ruby/rdoc-6.5:0
- >=dev-ruby/reline-0.3.6
- !<app-eselect/eselect-ruby-20231008
-"
-
-ruby_add_bdepend "test? ( dev-ruby/bundler )"
-
-all_ruby_prepare() {
- sed -e 's:_relative ":"./:' \
- -i ${RUBY_FAKEGEM_GEMSPEC} || die
-
- # Skip test requiring specific character set
- sed -e '/test_raise_exception_with_different_encoding_containing_invalid_byte_sequence/aomit "charset"' \
- -i test/irb/test_raise_no_backtrace_exception.rb || die
-
- # Skip tests requiring a working console
- rm -f test/irb/test_debug_cmd.rb || die
-}
-
-each_ruby_test() {
- RUBYLIB=lib ${RUBY} -S rake test || die
-}
-
-all_ruby_install() {
- all_fakegem_install
-
- doman man/irb.1
-}
diff --git a/dev-ruby/irb/irb-1.8.3.ebuild b/dev-ruby/irb/irb-1.8.3.ebuild
deleted file mode 100644
index 9414ac9f48ea..000000000000
--- a/dev-ruby/irb/irb-1.8.3.ebuild
+++ /dev/null
@@ -1,53 +0,0 @@
-# Copyright 1999-2023 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-USE_RUBY="ruby31 ruby32"
-
-RUBY_FAKEGEM_BINDIR="exe"
-RUBY_FAKEGEM_EXTRADOC="README.md"
-RUBY_FAKEGEM_GEMSPEC="irb.gemspec"
-RUBY_FAKEGEM_RECIPE_DOC="none"
-
-inherit ruby-fakegem
-
-DESCRIPTION="Interactive Ruby command-line tool for REPL (Read Eval Print Loop)"
-HOMEPAGE="https://github.com/ruby/irb"
-SRC_URI="https://github.com/ruby/irb/archive/v${PV}.tar.gz -> ${P}.tar.gz"
-
-LICENSE="BSD-2"
-SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~loong ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x64-solaris"
-IUSE=""
-
-# Ensure a new enough eselect-ruby is present to avoid clobbering the
-# irb bin and man page.
-ruby_add_rdepend "
- dev-ruby/rdoc
- >=dev-ruby/reline-0.3.8
- !<app-eselect/eselect-ruby-20231008
-"
-
-ruby_add_bdepend "test? ( dev-ruby/bundler dev-ruby/test-unit dev-ruby/test-unit-ruby-core )"
-
-all_ruby_prepare() {
- sed -e 's:_relative ":"./:' \
- -i ${RUBY_FAKEGEM_GEMSPEC} || die
-
- # Skip test requiring specific character set
- sed -e '/test_raise_exception_with_different_encoding_containing_invalid_byte_sequence/aomit "charset"' \
- -i test/irb/test_raise_no_backtrace_exception.rb || die
-
- # Skip tests requiring a working console
- rm -f test/irb/test_debug_cmd.rb || die
-}
-
-each_ruby_test() {
- RUBYLIB=lib ${RUBY} -S rake test || die
-}
-
-all_ruby_install() {
- all_fakegem_install
-
- doman man/irb.1
-}