Gentoo Archives: gentoo-commits

From: Hans de Graaff <graaff@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-ruby/racc/
Date: Mon, 28 Dec 2020 07:46:58
Message-Id: 1609141605.401d1bd06912757a8e606e4089b48b6d9c1d0065.graaff@gentoo
1 commit: 401d1bd06912757a8e606e4089b48b6d9c1d0065
2 Author: Hans de Graaff <graaff <AT> gentoo <DOT> org>
3 AuthorDate: Mon Dec 28 07:40:17 2020 +0000
4 Commit: Hans de Graaff <graaff <AT> gentoo <DOT> org>
5 CommitDate: Mon Dec 28 07:46:45 2020 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=401d1bd0
7
8 dev-ruby/racc: add 1.5.2
9
10 Package-Manager: Portage-3.0.9, Repoman-3.0.2
11 Signed-off-by: Hans de Graaff <graaff <AT> gentoo.org>
12
13 dev-ruby/racc/Manifest | 1 +
14 dev-ruby/racc/racc-1.5.2.ebuild | 70 +++++++++++++++++++++++++++++++++++++++++
15 2 files changed, 71 insertions(+)
16
17 diff --git a/dev-ruby/racc/Manifest b/dev-ruby/racc/Manifest
18 index 66ddc05f7fc..d70c87d37a8 100644
19 --- a/dev-ruby/racc/Manifest
20 +++ b/dev-ruby/racc/Manifest
21 @@ -1,2 +1,3 @@
22 DIST racc-1.4.14.gem 116224 BLAKE2B 67abd0e9bed46d7c589c62426943c8594d3b119328cd08576247727b11beb9e32ea45c54d0aadefc26691972fc40aad1b009c55bcd90a5b89aaf37e37a1097c1 SHA512 7401ad1722c92101c24f881226e44bd8b21033c7bae8b13cbf329f9b426c312ce61d14ce584b4f94d6863b77f30d6ebccf26f9fca2de724f8e0659f0e2d2173f
23 DIST racc-1.4.16.tar.gz 451711 BLAKE2B d3bcb72a69df255d5468054541c281bf7bd3225eb3ba1997fccd6dcd219d3a8890e3df7b43fe106ffa3fc63a8d8079cab83e7096b0737f5bbacf816b7c3bbfb2 SHA512 7cdf6a62449e8f39984a8b27706045e509828a93a72d112b22a4c467184a63ee23b4b2048ef7017846053fb2ff4021aa43d96a6147fa271257df584ab3d66f38
24 +DIST racc-1.5.2.tar.gz 434903 BLAKE2B cfbaa09c1b2e233e82228075cf979c54688e51e702cade072d42b2952100b74a53e536d904cbbf15cb04ffc74018b48e5b27a5773adf6240614c815250d47119 SHA512 73c68dd75fa35727fd93a76886dd77afbb7032271e535c6e885a4ede6822052a93a610dec8a1f84daf24903c749b30a185831ec96d651588db2a2524f3dcd477
25
26 diff --git a/dev-ruby/racc/racc-1.5.2.ebuild b/dev-ruby/racc/racc-1.5.2.ebuild
27 new file mode 100644
28 index 00000000000..b7494318c8d
29 --- /dev/null
30 +++ b/dev-ruby/racc/racc-1.5.2.ebuild
31 @@ -0,0 +1,70 @@
32 +# Copyright 1999-2020 Gentoo Authors
33 +# Distributed under the terms of the GNU General Public License v2
34 +
35 +EAPI=7
36 +
37 +USE_RUBY="ruby25 ruby26 ruby27 ruby30"
38 +
39 +RUBY_FAKEGEM_TASK_DOC="docs"
40 +RUBY_FAKEGEM_EXTRADOC="README.rdoc README.ja.rdoc TODO ChangeLog"
41 +
42 +RUBY_FAKEGEM_GEMSPEC="racc.gemspec"
43 +
44 +inherit multilib ruby-fakegem
45 +
46 +DESCRIPTION="A LALR(1) parser generator for Ruby"
47 +HOMEPAGE="https://github.com/tenderlove/racc"
48 +SRC_URI="https://github.com/tenderlove/racc/archive/v${PV}.tar.gz -> ${P}.tar.gz"
49 +
50 +LICENSE="LGPL-2.1"
51 +SLOT="0"
52 +
53 +KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~mips ~ppc ~ppc64 ~s390 ~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
54 +IUSE="doc test"
55 +
56 +ruby_add_rdepend "virtual/ruby-ssl"
57 +
58 +ruby_add_bdepend "dev-ruby/rake
59 + test? ( dev-ruby/minitest )"
60 +
61 +all_ruby_prepare() {
62 + sed -i -e 's|/tmp/out|${TMPDIR:-/tmp}/out|' test/helper.rb || die "tests fix failed"
63 +
64 + # Avoid depending on rake-compiler since we don't use it to compile
65 + # the extension.
66 + sed -i -e '/rake-compiler/ s:^:#:' -e '/extensiontask/ s:^:#:' Rakefile
67 + sed -i -e '/ExtensionTask/,/^ end/ s:^:#:' Rakefile
68 + # Which means we need to generate the parser file here
69 + rake lib/racc/parser-text.rb || die
70 +
71 + # Avoid isolation since dependencies are not properly declared.
72 + sed -i -e 's/, :isolate//' Rakefile || die
73 +
74 + sed -i -e 's:_relative ": "./:' ${RUBY_FAKEGEM_GEMSPEC} || die
75 +}
76 +
77 +each_ruby_prepare() {
78 + ${RUBY} -Cext/racc/cparse extconf.rb || die
79 +}
80 +
81 +each_ruby_compile() {
82 + emake V=1 -Cext/racc/cparse
83 + # Copy over the file here so that we don't have to do
84 + # special ruby install for JRuby and the other
85 + # implementations.
86 + mkdir -p lib/racc/cparse || die
87 + cp -l ext/racc/cparse/cparse$(get_modname) lib/racc/cparse/cparse$(get_modname) || die
88 +}
89 +
90 +each_ruby_test() {
91 + PATH="bin:${PATH}" ${RUBY} -Ilib:. -e "Dir['test/test_*.rb'].each{|f| require f}" || die
92 +}
93 +
94 +all_ruby_install() {
95 + all_fakegem_install
96 +
97 + dodoc -r rdoc
98 +
99 + docinto examples
100 + dodoc -r sample
101 +}