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: Sun, 02 Oct 2016 17:56:22
Message-Id: 1475430968.47f29159ef6141834b7ede3db73a36a2e6714303.graaff@gentoo
1 commit: 47f29159ef6141834b7ede3db73a36a2e6714303
2 Author: Hans de Graaff <graaff <AT> gentoo <DOT> org>
3 AuthorDate: Sun Oct 2 09:08:18 2016 +0000
4 Commit: Hans de Graaff <graaff <AT> gentoo <DOT> org>
5 CommitDate: Sun Oct 2 17:56:08 2016 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=47f29159
7
8 dev-ruby/narray: cleanup
9
10 Package-Manager: portage-2.3.0
11
12 dev-ruby/narray/Manifest | 1 -
13 dev-ruby/narray/narray-0.6.0.8-r1.ebuild | 57 --------------------------------
14 2 files changed, 58 deletions(-)
15
16 diff --git a/dev-ruby/narray/Manifest b/dev-ruby/narray/Manifest
17 index 80a0c69..bd810e9 100644
18 --- a/dev-ruby/narray/Manifest
19 +++ b/dev-ruby/narray/Manifest
20 @@ -1,3 +1,2 @@
21 -DIST narray-0.6.0.8.tar.gz 68519 SHA256 0e7ec5d8554ad273ef74b3513d297e60769373fd8b258cfb2afcdd7b8320d642 SHA512 a2f194c0baea7c561d1ef70554e6d568876dd7192506c1e5432bcaccabae03a3e842e73d9cbccd110ac8924d86d18c559109244e302a4ad8aaa3acf304dd4618 WHIRLPOOL 8f722ac74f66759521bf467db3d5266538ab99b959ccbaa1c53d3ef26dab365996d34b37e65c49c739b1b0fecaeb72b0974bd7db897b3132caf3a29600ff8573
22 DIST narray-0.6.1.1.tar.gz 68536 SHA256 7c2f415666c834d982cba97de3bbda9160e76358c62f8f754cd0d11e90e95ed6 SHA512 1c9983d29c774cb61b7f8ec53290d427c123b648d88407ff4a2e2aef1a289267050d4846adfc00c075629cb228ed5b3d4f9f5ded4cded0b84ec1a5532cbb49ff WHIRLPOOL cdfdc8050daafb10629228bac4bc146a2d8b3461d3c365207ee1112e5f226da82183450f28b98fce98719ae10fbfd31c76ec6567d40e0cf63efe89f018c5db8a
23 DIST narray-0.6.1.2.tar.gz 68621 SHA256 7ac717a8690ad5c85ae528102ef42ea50128c979a383abd35585db68cfd31f76 SHA512 51e9bec0b711e79e268b73496ad742b80bb46a6e9ea6aab9a2535a700b6efc8f7ae2e854f5772d434e3d385d81275744dbc796ebec4d3de73f2ec0546bd2339a WHIRLPOOL 8c339a8377dbdc5ee61a4d09085de40cdcbe30ecaaae091dd62c6348e7579174ad0620d6b4c0175a9f90c224b9d9fa49d818f1455f3303d71f4d5d8bc50b92aa
24
25 diff --git a/dev-ruby/narray/narray-0.6.0.8-r1.ebuild b/dev-ruby/narray/narray-0.6.0.8-r1.ebuild
26 deleted file mode 100644
27 index 0562cb6..00000000
28 --- a/dev-ruby/narray/narray-0.6.0.8-r1.ebuild
29 +++ /dev/null
30 @@ -1,57 +0,0 @@
31 -# Copyright 1999-2016 Gentoo Foundation
32 -# Distributed under the terms of the GNU General Public License v2
33 -# $Id$
34 -
35 -EAPI=5
36 -
37 -# jruby → native extension
38 -USE_RUBY="ruby20"
39 -
40 -RUBY_FAKEGEM_TASK_TEST=""
41 -RUBY_FAKEGEM_TASK_DOC=""
42 -
43 -RUBY_FAKEGEM_EXTRADOC="ChangeLog README.en README.ja SPEC.en SPEC.ja"
44 -
45 -RUBY_FAKEGEM_VERSION="${PV/_p/.}"
46 -
47 -inherit multilib ruby-fakegem
48 -
49 -DESCRIPTION="Numerical N-dimensional Array class"
50 -HOMEPAGE="http://www.ir.isas.ac.jp/~masa/ruby/index-e.html"
51 -SRC_URI="https://github.com/masa16/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
52 -
53 -LICENSE="Ruby"
54 -SLOT="0"
55 -KEYWORDS="amd64 hppa ~mips ppc ~ppc64 x86"
56 -
57 -IUSE=""
58 -
59 -RUBY_PATCHES=( "${FILESDIR}"/${P}-fix-tests.patch )
60 -
61 -all_ruby_prepare() {
62 - # the tests aren't really written to be a testsuite, so the
63 - # failure cases will literally fail; ignore all of those ad
64 - # instead expect that the rest won't fail.
65 - sed -i -e '/[fF]ollowing will fail/,$ s:^:#:' \
66 - -e '/next will fail/,$ s:^:#:' \
67 - test/*.rb || die "sed failed"
68 -}
69 -
70 -each_ruby_configure() {
71 - ${RUBY} extconf.rb || die "extconf.rb failed"
72 -}
73 -
74 -each_ruby_compile() {
75 - emake CFLAGS="${CFLAGS} -fPIC" archflag="${LDFLAGS}"
76 - cp -l ${PN}$(get_modname) ${PN}.h ${PN}_config.h lib/ || die "copy of ${PN}$(get_modname) failed"
77 -}
78 -
79 -each_ruby_test() {
80 - for unit in test/*; do
81 - # Skip over the FFTW test because it needs a package we don't
82 - # have in tree.
83 - [[ ${unit} == test/testfftw.rb ]] && continue
84 -
85 - ${RUBY} -Ilib ${unit} || die "test ${unit} failed"
86 - done
87 -}