From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) by finch.gentoo.org (Postfix) with ESMTP id 64B71138222 for ; Wed, 4 May 2016 05:23:56 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 1012B21C0EA; Wed, 4 May 2016 05:23:55 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 73F7621C0E9 for ; Wed, 4 May 2016 05:23:54 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 3C890340817 for ; Wed, 4 May 2016 05:23:53 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id B9DA8342 for ; Wed, 4 May 2016 05:23:50 +0000 (UTC) From: "Hans de Graaff" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Hans de Graaff" Message-ID: <1462339407.b2dd9e57c334618e2d7db47479d3b9d0b1fa1f02.graaff@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-ruby/ruby-termios/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-ruby/ruby-termios/ruby-termios-1.0.0.ebuild X-VCS-Directories: dev-ruby/ruby-termios/ X-VCS-Committer: graaff X-VCS-Committer-Name: Hans de Graaff X-VCS-Revision: b2dd9e57c334618e2d7db47479d3b9d0b1fa1f02 X-VCS-Branch: master Date: Wed, 4 May 2016 05:23:50 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Archives-Salt: 9ac63bd0-b397-4975-878b-93c44b994f7e X-Archives-Hash: 9ae21210f1a6cfbde33d307472736f26 commit: b2dd9e57c334618e2d7db47479d3b9d0b1fa1f02 Author: Hans de Graaff gentoo org> AuthorDate: Wed May 4 05:06:59 2016 +0000 Commit: Hans de Graaff gentoo org> CommitDate: Wed May 4 05:23:27 2016 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b2dd9e57 dev-ruby/ruby-termios: cleanup Package-Manager: portage-2.2.26 dev-ruby/ruby-termios/ruby-termios-1.0.0.ebuild | 46 ------------------------- 1 file changed, 46 deletions(-) diff --git a/dev-ruby/ruby-termios/ruby-termios-1.0.0.ebuild b/dev-ruby/ruby-termios/ruby-termios-1.0.0.ebuild deleted file mode 100644 index 09157e2..0000000 --- a/dev-ruby/ruby-termios/ruby-termios-1.0.0.ebuild +++ /dev/null @@ -1,46 +0,0 @@ -# Copyright 1999-2016 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Id$ - -EAPI=5 -USE_RUBY="ruby20" - -inherit multilib ruby-ng - -DESCRIPTION="A Ruby interface to termios" -HOMEPAGE="http://arika.org/ruby/termios" -SRC_URI="https://github.com/arika/ruby-termios/archive/version_${PV//./_}.tar.gz -> ${P}.tar.gz" -LICENSE="Ruby" -SLOT="0" -KEYWORDS="amd64 ~hppa ~mips ~ppc x86 ~x86-macos" -IUSE="" - -RUBY_S="${PN}-version_${PV//./_}" - -# Tests require a normal TTY, bug 340575. They should all pass when run -# manually. -RESTRICT=test - -each_ruby_configure() { - ${RUBY} -Cext extconf.rb || die -} - -each_ruby_compile() { - emake -Cext V=1 - cp ext/termios$(get_modname) lib/ || die -} - -each_ruby_test() { - ${RUBY} -Ilib test/test0.rb || die "tests failed" -} - -each_ruby_install() { - emake V=1 -Cext DESTDIR="${D}" install -} - -all_ruby_install() { - dodoc ChangeLog README termios.rd - - insinto /usr/share/doc/${PF}/examples - doins examples/* -}