From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 18E6D138334 for ; Sat, 14 Jul 2018 06:10:40 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id D3E25E09AE; Sat, 14 Jul 2018 06:10:38 +0000 (UTC) Received: from smtp.gentoo.org (dev.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 84954E09AE for ; Sat, 14 Jul 2018 06:10:38 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 541F9335C94 for ; Sat, 14 Jul 2018 06:10:36 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 64741366 for ; Sat, 14 Jul 2018 06:10:34 +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: <1531548196.d8dc01725b3a750b6d161d3259719231ee6a1c15.graaff@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-ruby/kpeg/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-ruby/kpeg/kpeg-1.1.0.ebuild X-VCS-Directories: dev-ruby/kpeg/ X-VCS-Committer: graaff X-VCS-Committer-Name: Hans de Graaff X-VCS-Revision: d8dc01725b3a750b6d161d3259719231ee6a1c15 X-VCS-Branch: master Date: Sat, 14 Jul 2018 06:10:34 +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: e8c6523e-bcaa-4894-b259-48557733e222 X-Archives-Hash: 9daacc879e5de3c22a3d1a631ed4f456 commit: d8dc01725b3a750b6d161d3259719231ee6a1c15 Author: Hans de Graaff gentoo org> AuthorDate: Sat Jul 14 06:03:16 2018 +0000 Commit: Hans de Graaff gentoo org> CommitDate: Sat Jul 14 06:03:16 2018 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d8dc0172 dev-ruby/kpeg: cleanup Package-Manager: Portage-2.3.40, Repoman-2.3.9 dev-ruby/kpeg/kpeg-1.1.0.ebuild | 23 ----------------------- 1 file changed, 23 deletions(-) diff --git a/dev-ruby/kpeg/kpeg-1.1.0.ebuild b/dev-ruby/kpeg/kpeg-1.1.0.ebuild deleted file mode 100644 index 98ea6e99fa5..00000000000 --- a/dev-ruby/kpeg/kpeg-1.1.0.ebuild +++ /dev/null @@ -1,23 +0,0 @@ -# Copyright 1999-2017 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 - -EAPI=5 -USE_RUBY="ruby22 ruby23 ruby24 ruby25" - -RUBY_FAKEGEM_RECIPE_DOC="rdoc" - -inherit ruby-fakegem - -DESCRIPTION="A simple PEG library for Ruby" -HOMEPAGE="https://github.com/evanphx/kpeg" - -LICENSE="MIT" -SLOT="1" -KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~amd64-fbsd ~x86-fbsd ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris" -IUSE="test" - -ruby_add_bdepend "test? ( dev-ruby/minitest:5 )" - -each_ruby_test() { - ${RUBY} -Ilib:test:. -e 'gem "minitest", "~>5.0"; Dir["test/test_*.rb"].each{|f| require f}' || die -}