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/narray/
Date: Thu, 25 Nov 2021 06:38:24
Message-Id: 1637822248.216ff8dcb546bb9d10aa820ce7f99fed9815aece.graaff@gentoo
1 commit: 216ff8dcb546bb9d10aa820ce7f99fed9815aece
2 Author: Hans de Graaff <graaff <AT> gentoo <DOT> org>
3 AuthorDate: Thu Nov 25 06:26:44 2021 +0000
4 Commit: Hans de Graaff <graaff <AT> gentoo <DOT> org>
5 CommitDate: Thu Nov 25 06:37:28 2021 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=216ff8dc
7
8 dev-ruby/narray: cleanup
9
10 Package-Manager: Portage-3.0.28, Repoman-3.0.3
11 Signed-off-by: Hans de Graaff <graaff <AT> gentoo.org>
12
13 dev-ruby/narray/narray-0.6.1.2.ebuild | 49 -----------------------------------
14 1 file changed, 49 deletions(-)
15
16 diff --git a/dev-ruby/narray/narray-0.6.1.2.ebuild b/dev-ruby/narray/narray-0.6.1.2.ebuild
17 deleted file mode 100644
18 index 34ca5260bb13..000000000000
19 --- a/dev-ruby/narray/narray-0.6.1.2.ebuild
20 +++ /dev/null
21 @@ -1,49 +0,0 @@
22 -# Copyright 1999-2021 Gentoo Authors
23 -# Distributed under the terms of the GNU General Public License v2
24 -
25 -EAPI=5
26 -
27 -USE_RUBY="ruby24 ruby25 ruby26 ruby27"
28 -
29 -RUBY_FAKEGEM_TASK_TEST=""
30 -RUBY_FAKEGEM_TASK_DOC=""
31 -
32 -RUBY_FAKEGEM_EXTRADOC="ChangeLog README.md README.ja.md SPEC.en.txt SPEC.ja.txt"
33 -
34 -RUBY_FAKEGEM_VERSION="${PV/_p/.}"
35 -
36 -inherit multilib ruby-fakegem
37 -
38 -DESCRIPTION="Numerical N-dimensional Array class"
39 -HOMEPAGE="https://masa16.github.io/narray/"
40 -SRC_URI="https://github.com/masa16/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
41 -
42 -LICENSE="Ruby"
43 -SLOT="0"
44 -KEYWORDS="amd64 ~arm64 ~hppa ~mips ppc ~ppc64 x86"
45 -
46 -IUSE=""
47 -
48 -all_ruby_prepare() {
49 - # the tests aren't really written to be a testsuite, so the
50 - # failure cases will literally fail; ignore all of those and
51 - # instead expect that the rest won't fail.
52 - sed -i -e '/[fF]ollowing will fail/,$ s:^:#:' \
53 - -e '/next will fail/,$ s:^:#:' \
54 - test/*.rb || die "sed failed"
55 -}
56 -
57 -each_ruby_configure() {
58 - ${RUBY} extconf.rb || die "extconf.rb failed"
59 -}
60 -
61 -each_ruby_compile() {
62 - emake V=1 CFLAGS="${CFLAGS} -fPIC" archflag="${LDFLAGS}"
63 - cp -l ${PN}$(get_modname) ${PN}.h ${PN}_config.h lib/ || die "copy of ${PN}$(get_modname) failed"
64 -}
65 -
66 -each_ruby_test() {
67 - for unit in test/*; do
68 - ${RUBY} -Ilib ${unit} || die "test ${unit} failed"
69 - done
70 -}