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, 26 Apr 2018 04:57:17
Message-Id: 1524718542.c1b9fca64d7aceee94c46b1138b35975228296a2.graaff@gentoo
1 commit: c1b9fca64d7aceee94c46b1138b35975228296a2
2 Author: Hans de Graaff <graaff <AT> gentoo <DOT> org>
3 AuthorDate: Thu Apr 26 04:55:42 2018 +0000
4 Commit: Hans de Graaff <graaff <AT> gentoo <DOT> org>
5 CommitDate: Thu Apr 26 04:55:42 2018 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c1b9fca6
7
8 dev-ruby/narray: cleanup
9
10 Package-Manager: Portage-2.3.24, Repoman-2.3.6
11
12 dev-ruby/narray/Manifest | 1 -
13 dev-ruby/narray/narray-0.6.1.1.ebuild | 50 -----------------------------------
14 2 files changed, 51 deletions(-)
15
16 diff --git a/dev-ruby/narray/Manifest b/dev-ruby/narray/Manifest
17 index 444710dc4d5..2cd737d4b67 100644
18 --- a/dev-ruby/narray/Manifest
19 +++ b/dev-ruby/narray/Manifest
20 @@ -1,2 +1 @@
21 -DIST narray-0.6.1.1.tar.gz 68536 BLAKE2B 07aaa85ed719da6e5d78f1783e93bf5a46574e2fc8461a75f7a20aad56234c973ec3e5267888e94b505baab2401a210368f93bd003db2e57ac41d4ac5f54875f SHA512 1c9983d29c774cb61b7f8ec53290d427c123b648d88407ff4a2e2aef1a289267050d4846adfc00c075629cb228ed5b3d4f9f5ded4cded0b84ec1a5532cbb49ff
22 DIST narray-0.6.1.2.tar.gz 68621 BLAKE2B c4e48b81fb0d79cc49e32ed8204d9cac3f483eb44e1207f422f5b272bb8891836d81cd83c090f4d643677b1159801c13d15580504e6ca244a2a75d4b6dfb3204 SHA512 51e9bec0b711e79e268b73496ad742b80bb46a6e9ea6aab9a2535a700b6efc8f7ae2e854f5772d434e3d385d81275744dbc796ebec4d3de73f2ec0546bd2339a
23
24 diff --git a/dev-ruby/narray/narray-0.6.1.1.ebuild b/dev-ruby/narray/narray-0.6.1.1.ebuild
25 deleted file mode 100644
26 index 6ea4f1b4bc1..00000000000
27 --- a/dev-ruby/narray/narray-0.6.1.1.ebuild
28 +++ /dev/null
29 @@ -1,50 +0,0 @@
30 -# Copyright 1999-2016 Gentoo Foundation
31 -# Distributed under the terms of the GNU General Public License v2
32 -
33 -EAPI=5
34 -
35 -# jruby → native extension
36 -USE_RUBY="ruby20 ruby21 ruby22"
37 -
38 -RUBY_FAKEGEM_TASK_TEST=""
39 -RUBY_FAKEGEM_TASK_DOC=""
40 -
41 -RUBY_FAKEGEM_EXTRADOC="ChangeLog README.md README.ja.md SPEC.en.txt SPEC.ja.txt"
42 -
43 -RUBY_FAKEGEM_VERSION="${PV/_p/.}"
44 -
45 -inherit multilib ruby-fakegem
46 -
47 -DESCRIPTION="Numerical N-dimensional Array class"
48 -HOMEPAGE="http://www.ir.isas.ac.jp/~masa/ruby/index-e.html"
49 -SRC_URI="https://github.com/masa16/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
50 -
51 -LICENSE="Ruby"
52 -SLOT="0"
53 -KEYWORDS="amd64 hppa ~mips ppc ~ppc64 x86"
54 -
55 -IUSE=""
56 -
57 -all_ruby_prepare() {
58 - # the tests aren't really written to be a testsuite, so the
59 - # failure cases will literally fail; ignore all of those and
60 - # instead expect that the rest won't fail.
61 - sed -i -e '/[fF]ollowing will fail/,$ s:^:#:' \
62 - -e '/next will fail/,$ s:^:#:' \
63 - test/*.rb || die "sed failed"
64 -}
65 -
66 -each_ruby_configure() {
67 - ${RUBY} extconf.rb || die "extconf.rb failed"
68 -}
69 -
70 -each_ruby_compile() {
71 - emake V=1 CFLAGS="${CFLAGS} -fPIC" archflag="${LDFLAGS}"
72 - cp -l ${PN}$(get_modname) ${PN}.h ${PN}_config.h lib/ || die "copy of ${PN}$(get_modname) failed"
73 -}
74 -
75 -each_ruby_test() {
76 - for unit in test/*; do
77 - ${RUBY} -Ilib ${unit} || die "test ${unit} failed"
78 - done
79 -}