diff options
author | Hans de Graaff <graaff@gentoo.org> | 2019-12-22 07:18:06 +0100 |
---|---|---|
committer | Hans de Graaff <graaff@gentoo.org> | 2019-12-22 07:18:06 +0100 |
commit | 175dbb8748ceb17cd517506ae7abe3e95bfb69ce (patch) | |
tree | b8bf8ab6c82828b521cb891f8e6afc365a724529 /dev-ruby/racc/racc-1.4.16-r1.ebuild | |
parent | net-p2p/cpuminer-opt: 3.10.5 version bump (diff) | |
download | gentoo-175dbb8748ceb17cd517506ae7abe3e95bfb69ce.tar.gz gentoo-175dbb8748ceb17cd517506ae7abe3e95bfb69ce.tar.bz2 gentoo-175dbb8748ceb17cd517506ae7abe3e95bfb69ce.zip |
dev-ruby/racc: fix parser-text installation
We now use upstream git where this file is not pre-packaged.
Closes: https://bugs.gentoo.org/703416
Package-Manager: Portage-2.3.79, Repoman-2.3.16
Signed-off-by: Hans de Graaff <graaff@gentoo.org>
Diffstat (limited to 'dev-ruby/racc/racc-1.4.16-r1.ebuild')
-rw-r--r-- | dev-ruby/racc/racc-1.4.16-r1.ebuild | 66 |
1 files changed, 66 insertions, 0 deletions
diff --git a/dev-ruby/racc/racc-1.4.16-r1.ebuild b/dev-ruby/racc/racc-1.4.16-r1.ebuild new file mode 100644 index 000000000000..36ea4bf0529f --- /dev/null +++ b/dev-ruby/racc/racc-1.4.16-r1.ebuild @@ -0,0 +1,66 @@ +# Copyright 1999-2019 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +USE_RUBY="ruby24 ruby25 ruby26" + +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 ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris" +IUSE="doc test" + +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 +} |