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 600FF59CAB for ; Thu, 31 Mar 2016 06:10:08 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 8AAC721C034; Thu, 31 Mar 2016 06:10:02 +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 8818021C032 for ; Thu, 31 Mar 2016 06:10:01 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (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 BED1C340D6E for ; Thu, 31 Mar 2016 06:10:00 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id F2F32876 for ; Thu, 31 Mar 2016 06:09:56 +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: <1459404530.31c27f085bcf3011b69c4c05b19735ac1136d49d.graaff@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-ruby/fcgi/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-ruby/fcgi/fcgi-0.9.2.1.ebuild X-VCS-Directories: dev-ruby/fcgi/ X-VCS-Committer: graaff X-VCS-Committer-Name: Hans de Graaff X-VCS-Revision: 31c27f085bcf3011b69c4c05b19735ac1136d49d X-VCS-Branch: master Date: Thu, 31 Mar 2016 06:09:56 +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: f1e09ece-e282-4ca5-9e0e-b88b1e7d427c X-Archives-Hash: f768feb227fba7fdc80ff3f45a8fc92f commit: 31c27f085bcf3011b69c4c05b19735ac1136d49d Author: Hans de Graaff gentoo org> AuthorDate: Thu Mar 31 05:55:08 2016 +0000 Commit: Hans de Graaff gentoo org> CommitDate: Thu Mar 31 06:08:50 2016 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=31c27f08 dev-ruby/fcgi: cleanup Package-Manager: portage-2.2.26 dev-ruby/fcgi/fcgi-0.9.2.1.ebuild | 42 --------------------------------------- 1 file changed, 42 deletions(-) diff --git a/dev-ruby/fcgi/fcgi-0.9.2.1.ebuild b/dev-ruby/fcgi/fcgi-0.9.2.1.ebuild deleted file mode 100644 index c44ce31..0000000 --- a/dev-ruby/fcgi/fcgi-0.9.2.1.ebuild +++ /dev/null @@ -1,42 +0,0 @@ -# Copyright 1999-2014 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Id$ - -EAPI=5 -USE_RUBY="ruby19 ruby20" - -RUBY_FAKEGEM_TASK_TEST="" -RUBY_FAKEGEM_TASK_DOC="" - -RUBY_FAKEGEM_EXTRADOC="README.rdoc README.signals" - -inherit multilib ruby-fakegem - -DESCRIPTION="FastCGI library for Ruby" -HOMEPAGE="https://github.com/alphallc/ruby-fcgi-ng" - -KEYWORDS="alpha amd64 arm hppa ia64 ppc ppc64 sparc x86 ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos" -LICENSE="Ruby" - -DEPEND+=" dev-libs/fcgi" -RDEPEND+=" dev-libs/fcgi" - -IUSE="" -SLOT="0" - -each_ruby_configure() { - case ${RUBY} in - *ruby19|*ruby20) - ${RUBY} -C ext/fcgi extconf.rb || die "extconf failed" - ;; - esac -} - -each_ruby_compile() { - case ${RUBY} in - *ruby19|*ruby20) - emake V=1 -C ext/fcgi - cp ext/fcgi/fcgi$(get_modname) lib || die - ;; - esac -}