commit:     60402cdeecdc475863768073dc23bf21e97618a0
Author:     Hans de Graaff <graaff <AT> gentoo <DOT> org>
AuthorDate: Sat Dec 24 09:35:31 2022 +0000
Commit:     Hans de Graaff <graaff <AT> gentoo <DOT> org>
CommitDate: Sat Dec 24 15:00:34 2022 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=60402cde

dev-ruby/racc: drop 1.4.16-r1, 1.5.2-r2

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

 dev-ruby/racc/Manifest              |  2 --
 dev-ruby/racc/racc-1.4.16-r1.ebuild | 68 -------------------------------------
 dev-ruby/racc/racc-1.5.2-r2.ebuild  | 60 --------------------------------
 3 files changed, 130 deletions(-)

diff --git a/dev-ruby/racc/Manifest b/dev-ruby/racc/Manifest
index 81ac3cf76a3f..b29d78385b1d 100644
--- a/dev-ruby/racc/Manifest
+++ b/dev-ruby/racc/Manifest
@@ -1,5 +1,3 @@
-DIST racc-1.4.16.tar.gz 451711 BLAKE2B 
d3bcb72a69df255d5468054541c281bf7bd3225eb3ba1997fccd6dcd219d3a8890e3df7b43fe106ffa3fc63a8d8079cab83e7096b0737f5bbacf816b7c3bbfb2
 SHA512 
7cdf6a62449e8f39984a8b27706045e509828a93a72d112b22a4c467184a63ee23b4b2048ef7017846053fb2ff4021aa43d96a6147fa271257df584ab3d66f38
-DIST racc-1.5.2.tar.gz 434903 BLAKE2B 
cfbaa09c1b2e233e82228075cf979c54688e51e702cade072d42b2952100b74a53e536d904cbbf15cb04ffc74018b48e5b27a5773adf6240614c815250d47119
 SHA512 
73c68dd75fa35727fd93a76886dd77afbb7032271e535c6e885a4ede6822052a93a610dec8a1f84daf24903c749b30a185831ec96d651588db2a2524f3dcd477
 DIST racc-1.6.0.tar.gz 470565 BLAKE2B 
482b17723630dfb1d6e010c3eeb7da5a9f7b97f544d1a5020195134cd5446d28eff9a75b6c392a75970ddf024f560d2c7135abc4a2de76b581aa835c0901b524
 SHA512 
c19b7444bfafa0dfe3448600d10a1a09319702c37632e19569aeb947e7c035cc4067da040d45ede0dab35eaa197a55eac394715aae520fba41ed6e0c01c95e3d
 DIST racc-1.6.1.tar.gz 470769 BLAKE2B 
285959593b60a5883c6f6ed119832c027a28fe43238721eb2365c1871635d781be73ea5a8d53593e288745906f068a8a5e9f568181b210374cc943cc35da5b7b
 SHA512 
bbd592eee9c015ece87c555d4546a36d2a60bd6b9559ae1f3ca4d1cff887738bee46dbb32010d87d71fe4dbe0a13d00fb392db540f6c4b64688f9a8387ca20c7
 DIST racc-1.6.2.tar.gz 470740 BLAKE2B 
c21e01cd7a11573774218ba97de3f58ebdbc4b138def4dfb2620b626d68e71a72f66a7e7f7644707942d4ec5f387b848aa00aa1d7dd81fc98f50b1c23ce118cb
 SHA512 
ef577d0da440361702d15cf2127142e57d5af4146f120cd9d94ee8c8b4380810c8913c373a9969f09b50e0850a8ac04ffd22729c4abdab0670765c7379b549f6

diff --git a/dev-ruby/racc/racc-1.4.16-r1.ebuild 
b/dev-ruby/racc/racc-1.4.16-r1.ebuild
deleted file mode 100644
index 991d3f4dd44f..000000000000
--- a/dev-ruby/racc/racc-1.4.16-r1.ebuild
+++ /dev/null
@@ -1,68 +0,0 @@
-# Copyright 1999-2021 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-USE_RUBY="ruby24 ruby25 ruby26 ruby27"
-
-RUBY_FAKEGEM_TASK_DOC="docs"
-RUBY_FAKEGEM_EXTRADOC="README.rdoc README.ja.rdoc TODO ChangeLog"
-
-RUBY_FAKEGEM_GEMSPEC="racc.gemspec"
-
-inherit multilib ruby-fakegem
-
-DESCRIPTION="A LALR(1) parser generator for Ruby"
-HOMEPAGE="https://github.com/tenderlove/racc";
-SRC_URI="https://github.com/tenderlove/racc/archive/v${PV}.tar.gz -> 
${P}.tar.gz"
-
-LICENSE="LGPL-2.1"
-SLOT="0"
-
-KEYWORDS="~alpha amd64 arm arm64 hppa ~mips ppc ppc64 ~s390 sparc x86 
~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~sparc-solaris ~sparc64-solaris 
~x64-solaris ~x86-solaris"
-IUSE="doc test"
-
-ruby_add_rdepend "virtual/ruby-ssl"
-
-ruby_add_bdepend "dev-ruby/rake
-       test? ( dev-ruby/minitest )"
-
-all_ruby_prepare() {
-       sed -i -e 's|/tmp/out|${TMPDIR:-/tmp}/out|' test/helper.rb || die 
"tests fix failed"
-
-       # Avoid depending on rake-compiler since we don't use it to compile
-       # the extension.
-       sed -i -e '/rake-compiler/ s:^:#:' -e '/extensiontask/ s:^:#:' Rakefile
-       sed -i -e '/ExtensionTask/,/^  end/ s:^:#:' Rakefile
-       # Which means we need to generate the parser file here
-       rake lib/racc/parser-text.rb || die
-
-       # Avoid isolation since dependencies are not properly declared.
-       sed -i -e 's/, :isolate//' Rakefile || die
-}
-
-each_ruby_prepare() {
-       ${RUBY} -Cext/racc/cparse extconf.rb || die
-}
-
-each_ruby_compile() {
-       emake V=1 -Cext/racc/cparse
-       # Copy over the file here so that we don't have to do
-       # special ruby install for JRuby and the other
-       # implementations.
-       mkdir -p lib/racc/cparse || die
-       cp -l ext/racc/cparse/cparse$(get_modname) 
lib/racc/cparse/cparse$(get_modname) || die
-}
-
-each_ruby_test() {
-       PATH="bin:${PATH}" ${RUBY} -Ilib:. -e "Dir['test/test_*.rb'].each{|f| 
require f}" || die
-}
-
-all_ruby_install() {
-       all_fakegem_install
-
-       dodoc -r rdoc
-
-       docinto examples
-       dodoc -r sample
-}

diff --git a/dev-ruby/racc/racc-1.5.2-r2.ebuild 
b/dev-ruby/racc/racc-1.5.2-r2.ebuild
deleted file mode 100644
index 223c5c03648e..000000000000
--- a/dev-ruby/racc/racc-1.5.2-r2.ebuild
+++ /dev/null
@@ -1,60 +0,0 @@
-# Copyright 1999-2022 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-USE_RUBY="ruby26 ruby27 ruby30 ruby31"
-
-RUBY_FAKEGEM_TASK_DOC="docs"
-RUBY_FAKEGEM_EXTRADOC="README.rdoc README.ja.rdoc TODO ChangeLog"
-
-RUBY_FAKEGEM_GEMSPEC="racc.gemspec"
-
-RUBY_FAKEGEM_EXTENSIONS=(ext/racc/cparse/extconf.rb)
-RUBY_FAKEGEM_EXTENSION_LIBDIR="lib/racc/cparse"
-
-inherit multilib ruby-fakegem
-
-DESCRIPTION="A LALR(1) parser generator for Ruby"
-HOMEPAGE="https://github.com/tenderlove/racc";
-SRC_URI="https://github.com/tenderlove/racc/archive/v${PV}.tar.gz -> 
${P}.tar.gz"
-
-LICENSE="LGPL-2.1"
-SLOT="0"
-
-KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~mips ~ppc ~ppc64 ~riscv ~s390 
~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~sparc-solaris 
~sparc64-solaris ~x64-solaris ~x86-solaris"
-IUSE="doc test"
-
-ruby_add_rdepend "virtual/ruby-ssl"
-
-ruby_add_bdepend "dev-ruby/rake
-       test? ( dev-ruby/minitest )"
-
-all_ruby_prepare() {
-       sed -i -e 's|/tmp/out|${TMPDIR:-/tmp}/out|' test/helper.rb || die 
"tests fix failed"
-
-       sed -i -e 's/, :isolate//' Rakefile || die
-       sed -i -e '/bundler/ s:^:#:' -e '/rdoc/,/^end/ s:^:#:' Rakefile || die
-
-       # Avoid depending on rake-compiler since we don't use it to compile
-       # the extension.
-       sed -i -e '/rake-compiler/ s:^:#:' -e '/extensiontask/ s:^:#:' Rakefile
-       sed -i -e '/ExtensionTask/,/^  end/ s:^:#:' Rakefile
-       # Which means we need to generate the parser file here
-       rake lib/racc/parser-text.rb || die
-
-       sed -i -e 's:_relative ": "./:' ${RUBY_FAKEGEM_GEMSPEC} || die
-}
-
-each_ruby_test() {
-       PATH="bin:${PATH}" ${RUBY} -Ilib:. -e "Dir['test/test_*.rb'].each{|f| 
require f}" || die
-}
-
-all_ruby_install() {
-       all_fakegem_install
-
-       dodoc -r rdoc
-
-       docinto examples
-       dodoc -r sample
-}

Reply via email to