From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id EA92D158020 for ; Sat, 3 Dec 2022 09:14:25 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id D0BD5E0B89; Sat, 3 Dec 2022 09:14:24 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [140.211.166.183]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id B512CE0B89 for ; Sat, 3 Dec 2022 09:14:24 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id A2FB63413F7 for ; Sat, 3 Dec 2022 09:14:23 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 089EF703 for ; Sat, 3 Dec 2022 09:14:22 +0000 (UTC) From: "Hans de Graaff" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Hans de Graaff" Message-ID: <1670058763.b23a6e683c23ccdf083866dcdc0c163e6606284f.graaff@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-ruby/racc/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-ruby/racc/racc-1.5.2-r1.ebuild dev-ruby/racc/racc-1.5.2.ebuild X-VCS-Directories: dev-ruby/racc/ X-VCS-Committer: graaff X-VCS-Committer-Name: Hans de Graaff X-VCS-Revision: b23a6e683c23ccdf083866dcdc0c163e6606284f X-VCS-Branch: master Date: Sat, 3 Dec 2022 09:14:22 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: 364f20ab-e5a0-451a-80a0-9b49cbb3da10 X-Archives-Hash: 5eec08962f59f79e685ec3bcb1b02148 commit: b23a6e683c23ccdf083866dcdc0c163e6606284f Author: Hans de Graaff gentoo org> AuthorDate: Sat Dec 3 07:47:00 2022 +0000 Commit: Hans de Graaff gentoo org> CommitDate: Sat Dec 3 09:12:43 2022 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b23a6e68 dev-ruby/racc: drop 1.5.2, 1.5.2-r1 Signed-off-by: Hans de Graaff gentoo.org> dev-ruby/racc/racc-1.5.2-r1.ebuild | 60 -------------------------------- dev-ruby/racc/racc-1.5.2.ebuild | 70 -------------------------------------- 2 files changed, 130 deletions(-) diff --git a/dev-ruby/racc/racc-1.5.2-r1.ebuild b/dev-ruby/racc/racc-1.5.2-r1.ebuild deleted file mode 100644 index 08e9adde6cb4..000000000000 --- a/dev-ruby/racc/racc-1.5.2-r1.ebuild +++ /dev/null @@ -1,60 +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 ruby30" - -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 -} diff --git a/dev-ruby/racc/racc-1.5.2.ebuild b/dev-ruby/racc/racc-1.5.2.ebuild deleted file mode 100644 index 1d3aadcec5a1..000000000000 --- a/dev-ruby/racc/racc-1.5.2.ebuild +++ /dev/null @@ -1,70 +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 ruby30" - -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" - - 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_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 -}