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-termios/
Date: Wed, 04 May 2016 05:23:56
Message-Id: 1462339407.b2dd9e57c334618e2d7db47479d3b9d0b1fa1f02.graaff@gentoo
1 commit: b2dd9e57c334618e2d7db47479d3b9d0b1fa1f02
2 Author: Hans de Graaff <graaff <AT> gentoo <DOT> org>
3 AuthorDate: Wed May 4 05:06:59 2016 +0000
4 Commit: Hans de Graaff <graaff <AT> gentoo <DOT> org>
5 CommitDate: Wed May 4 05:23:27 2016 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b2dd9e57
7
8 dev-ruby/ruby-termios: cleanup
9
10 Package-Manager: portage-2.2.26
11
12 dev-ruby/ruby-termios/ruby-termios-1.0.0.ebuild | 46 -------------------------
13 1 file changed, 46 deletions(-)
14
15 diff --git a/dev-ruby/ruby-termios/ruby-termios-1.0.0.ebuild b/dev-ruby/ruby-termios/ruby-termios-1.0.0.ebuild
16 deleted file mode 100644
17 index 09157e2..0000000
18 --- a/dev-ruby/ruby-termios/ruby-termios-1.0.0.ebuild
19 +++ /dev/null
20 @@ -1,46 +0,0 @@
21 -# Copyright 1999-2016 Gentoo Foundation
22 -# Distributed under the terms of the GNU General Public License v2
23 -# $Id$
24 -
25 -EAPI=5
26 -USE_RUBY="ruby20"
27 -
28 -inherit multilib ruby-ng
29 -
30 -DESCRIPTION="A Ruby interface to termios"
31 -HOMEPAGE="http://arika.org/ruby/termios"
32 -SRC_URI="https://github.com/arika/ruby-termios/archive/version_${PV//./_}.tar.gz -> ${P}.tar.gz"
33 -LICENSE="Ruby"
34 -SLOT="0"
35 -KEYWORDS="amd64 ~hppa ~mips ~ppc x86 ~x86-macos"
36 -IUSE=""
37 -
38 -RUBY_S="${PN}-version_${PV//./_}"
39 -
40 -# Tests require a normal TTY, bug 340575. They should all pass when run
41 -# manually.
42 -RESTRICT=test
43 -
44 -each_ruby_configure() {
45 - ${RUBY} -Cext extconf.rb || die
46 -}
47 -
48 -each_ruby_compile() {
49 - emake -Cext V=1
50 - cp ext/termios$(get_modname) lib/ || die
51 -}
52 -
53 -each_ruby_test() {
54 - ${RUBY} -Ilib test/test0.rb || die "tests failed"
55 -}
56 -
57 -each_ruby_install() {
58 - emake V=1 -Cext DESTDIR="${D}" install
59 -}
60 -
61 -all_ruby_install() {
62 - dodoc ChangeLog README termios.rd
63 -
64 - insinto /usr/share/doc/${PF}/examples
65 - doins examples/*
66 -}