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/ruby-opengl/
Date: Sat, 02 Dec 2017 06:30:58
Message-Id: 1512196231.b18a72c2048859594cb89f7847842fa8b86a54e5.graaff@gentoo
1 commit: b18a72c2048859594cb89f7847842fa8b86a54e5
2 Author: Hans de Graaff <graaff <AT> gentoo <DOT> org>
3 AuthorDate: Sun Nov 26 10:06:54 2017 +0000
4 Commit: Hans de Graaff <graaff <AT> gentoo <DOT> org>
5 CommitDate: Sat Dec 2 06:30:31 2017 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b18a72c2
7
8 dev-ruby/ruby-opengl: cleanup; drop hppa stable, bug 626570
9
10 Package-Manager: Portage-2.3.13, Repoman-2.3.3
11
12 dev-ruby/ruby-opengl/Manifest | 3 +-
13 dev-ruby/ruby-opengl/ruby-opengl-0.9.2.ebuild | 49 ---------------------------
14 2 files changed, 1 insertion(+), 51 deletions(-)
15
16 diff --git a/dev-ruby/ruby-opengl/Manifest b/dev-ruby/ruby-opengl/Manifest
17 index e8c0e7e8254..98ec49dcf54 100644
18 --- a/dev-ruby/ruby-opengl/Manifest
19 +++ b/dev-ruby/ruby-opengl/Manifest
20 @@ -1,2 +1 @@
21 -DIST opengl-0.10.0.gem 565248 SHA256 e3bc0fa92dafe5ece8858259ccc47f156edab3b6671786a75873ae1d05355a89 SHA512 8d85d7f8a25e429b18245a10c186d07a85fdc8dc4e158b0001cde2b6e4bacfe4b09552a3b3fba5e14439d2fdbe000ad23bba89563f58f612f79958283b588dde WHIRLPOOL 53c3ed2ca848e7a10a2089e40a2875aa800cad69143a3a5356805d08a1787b4f8fa8b1a6fb765c71fe1f4bb236531286aecd22b8545abab1cf4981676941bad5
22 -DIST opengl-0.9.2.gem 444416 SHA256 cf421841af7c8beb9768aaf755124e17a09f726ea7c91af0f8cd92941036f2cb SHA512 0a7fe8d064e90df5b0507d667d30c3158671861c944086660470f23950606bb821e431735067dfbb2f9b97ebf68041b4937d4330907c4aa3daeb21d5b7e61c37 WHIRLPOOL 7d014cbfa7c0b3eaa206ad9a3c29e78f1cb03f170a10aa5a537fc8504176e794144591131b2ff0db029907b2ba9204b6a47c59ce733d6f2a4c7c8667a08743f4
23 +DIST opengl-0.10.0.gem 565248 BLAKE2B e427590865e7ff13110d22a21d04a936cbdc7e559e80b37be94938a4b15c71ca6341d72bc093a45ca10e7cf419fe720e7c68866724a3c99ddc44314a4b054414 SHA512 8d85d7f8a25e429b18245a10c186d07a85fdc8dc4e158b0001cde2b6e4bacfe4b09552a3b3fba5e14439d2fdbe000ad23bba89563f58f612f79958283b588dde
24
25 diff --git a/dev-ruby/ruby-opengl/ruby-opengl-0.9.2.ebuild b/dev-ruby/ruby-opengl/ruby-opengl-0.9.2.ebuild
26 deleted file mode 100644
27 index 0416b28c3f4..00000000000
28 --- a/dev-ruby/ruby-opengl/ruby-opengl-0.9.2.ebuild
29 +++ /dev/null
30 @@ -1,49 +0,0 @@
31 -# Copyright 1999-2016 Gentoo Foundation
32 -# Distributed under the terms of the GNU General Public License v2
33 -
34 -EAPI=5
35 -USE_RUBY="ruby20 ruby21 ruby22"
36 -
37 -RUBY_FAKEGEM_TASK_DOC=""
38 -
39 -# Two tests fails but the README already indicates that this may not
40 -# work. Additionally these tests require access to video devices such as
41 -# /dev/nvidiactl.
42 -RUBY_FAKEGEM_TASK_TEST=""
43 -
44 -RUBY_FAKEGEM_NAME="opengl"
45 -
46 -RUBY_FAKEGEM_EXTRADOC="History.rdoc README.rdoc"
47 -
48 -inherit multilib ruby-fakegem
49 -
50 -DESCRIPTION="OpenGL / GLUT bindings for ruby"
51 -HOMEPAGE="https://github.com/larskanis/opengl"
52 -
53 -LICENSE="MIT"
54 -SLOT="0"
55 -KEYWORDS="amd64 hppa ppc ppc64 x86"
56 -
57 -IUSE=""
58 -
59 -DEPEND+=" virtual/opengl
60 - media-libs/freeglut"
61 -RDEPEND+=" virtual/opengl
62 - media-libs/freeglut"
63 -
64 -each_ruby_configure() {
65 - ${RUBY} -Cext/opengl extconf.rb || die
66 -}
67 -
68 -each_ruby_compile() {
69 - emake -C ext/opengl V=1
70 -
71 - cp ext/*/*$(get_modname) lib/ || die
72 -}
73 -
74 -all_ruby_install() {
75 - all_fakegem_install
76 -
77 - insinto /usr/share/doc/${PF}/examples
78 - doins -r examples/*
79 -}