summaryrefslogtreecommitdiff
path: root/dev-ruby/narray
diff options
context:
space:
mode:
Diffstat (limited to 'dev-ruby/narray')
-rw-r--r--dev-ruby/narray/Manifest1
-rw-r--r--dev-ruby/narray/metadata.xml11
-rw-r--r--dev-ruby/narray/narray-0.6.1.2-r2.ebuild53
3 files changed, 0 insertions, 65 deletions
diff --git a/dev-ruby/narray/Manifest b/dev-ruby/narray/Manifest
deleted file mode 100644
index 2cd737d4b671..000000000000
--- a/dev-ruby/narray/Manifest
+++ /dev/null
@@ -1 +0,0 @@
-DIST narray-0.6.1.2.tar.gz 68621 BLAKE2B c4e48b81fb0d79cc49e32ed8204d9cac3f483eb44e1207f422f5b272bb8891836d81cd83c090f4d643677b1159801c13d15580504e6ca244a2a75d4b6dfb3204 SHA512 51e9bec0b711e79e268b73496ad742b80bb46a6e9ea6aab9a2535a700b6efc8f7ae2e854f5772d434e3d385d81275744dbc796ebec4d3de73f2ec0546bd2339a
diff --git a/dev-ruby/narray/metadata.xml b/dev-ruby/narray/metadata.xml
deleted file mode 100644
index cdfa4b570c03..000000000000
--- a/dev-ruby/narray/metadata.xml
+++ /dev/null
@@ -1,11 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<!DOCTYPE pkgmetadata SYSTEM "https://www.gentoo.org/dtd/metadata.dtd">
-<pkgmetadata>
- <maintainer type="project">
- <email>ruby@gentoo.org</email>
- <name>Gentoo Ruby Project</name>
- </maintainer>
- <upstream>
- <remote-id type="github">masa16/narray</remote-id>
- </upstream>
-</pkgmetadata>
diff --git a/dev-ruby/narray/narray-0.6.1.2-r2.ebuild b/dev-ruby/narray/narray-0.6.1.2-r2.ebuild
deleted file mode 100644
index c26dea6ee868..000000000000
--- a/dev-ruby/narray/narray-0.6.1.2-r2.ebuild
+++ /dev/null
@@ -1,53 +0,0 @@
-# Copyright 1999-2026 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-USE_RUBY="ruby32 ruby33 ruby34 ruby40"
-
-RUBY_FAKEGEM_TASK_TEST=""
-RUBY_FAKEGEM_TASK_DOC=""
-
-RUBY_FAKEGEM_EXTRADOC="ChangeLog README.md README.ja.md SPEC.en.txt SPEC.ja.txt"
-
-RUBY_FAKEGEM_GEMSPEC="narray.gemspec"
-RUBY_FAKEGEM_VERSION="${PV/_p/.}"
-
-RUBY_FAKEGEM_EXTENSIONS=(./extconf.rb)
-
-inherit flag-o-matic ruby-fakegem
-
-DESCRIPTION="Numerical N-dimensional Array class"
-HOMEPAGE="https://masa16.github.io/narray/"
-SRC_URI="https://github.com/masa16/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
-
-LICENSE="Ruby-BSD"
-SLOT="0"
-KEYWORDS="amd64 ~arm64 ~hppa ~mips ppc ~ppc64 x86"
-
-all_ruby_prepare() {
- # the tests aren't really written to be a testsuite, so the
- # failure cases will literally fail; ignore all of those and
- # instead expect that the rest won't fail.
- sed -i -e '/[fF]ollowing will fail/,$ s:^:#:' \
- -e '/next will fail/,$ s:^:#:' \
- test/*.rb || die "sed failed"
-
- sed -i -e 's:src/narray.h:narray.h:' ${RUBY_FAKEGEM_GEMSPEC} || die
-
- sed -e '/CFLAGS/ s/^#//' \
- -i extconf.rb || die
-}
-
-each_ruby_configure() {
- append-flags -std=gnu17
- filter-flags -std=gnu23
-
- each_fakegem_configure
-}
-
-each_ruby_test() {
- for unit in test/*; do
- ${RUBY} -Ilib ${unit} || die "test ${unit} failed"
- done
-}