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 471DB138335 for ; Wed, 8 May 2019 19:59:40 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 234B1E08E0; Wed, 8 May 2019 19:59:39 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.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 0A8E5E08E0 for ; Wed, 8 May 2019 19:59: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 E392A343D0A for ; Wed, 8 May 2019 19:59:37 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 742ACA8 for ; Wed, 8 May 2019 19:59:36 +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: <1557345556.d1aa8601f2ec6c8583b7adb151a9e7d050e475f5.graaff@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-ruby/pdf-reader/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-ruby/pdf-reader/pdf-reader-1.4.1-r1.ebuild X-VCS-Directories: dev-ruby/pdf-reader/ X-VCS-Committer: graaff X-VCS-Committer-Name: Hans de Graaff X-VCS-Revision: d1aa8601f2ec6c8583b7adb151a9e7d050e475f5 X-VCS-Branch: master Date: Wed, 8 May 2019 19:59:36 +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-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: 26662880-ea33-49c8-9364-5a803fb3adec X-Archives-Hash: 6059f874e84f4980155f12a050630adc commit: d1aa8601f2ec6c8583b7adb151a9e7d050e475f5 Author: Hans de Graaff gentoo org> AuthorDate: Wed May 8 18:54:01 2019 +0000 Commit: Hans de Graaff gentoo org> CommitDate: Wed May 8 19:59:16 2019 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d1aa8601 dev-ruby/pdf-reader: cleanup Signed-off-by: Hans de Graaff gentoo.org> Package-Manager: Portage-2.3.62, Repoman-2.3.11 dev-ruby/pdf-reader/pdf-reader-1.4.1-r1.ebuild | 45 -------------------------- 1 file changed, 45 deletions(-) diff --git a/dev-ruby/pdf-reader/pdf-reader-1.4.1-r1.ebuild b/dev-ruby/pdf-reader/pdf-reader-1.4.1-r1.ebuild deleted file mode 100644 index 8e48b16387a..00000000000 --- a/dev-ruby/pdf-reader/pdf-reader-1.4.1-r1.ebuild +++ /dev/null @@ -1,45 +0,0 @@ -# Copyright 1999-2018 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 - -EAPI=5 - -GITHUB_USER=yob - -USE_RUBY="ruby23 ruby24 ruby25" - -RUBY_FAKEGEM_RECIPE_TEST="rspec3" - -RUBY_FAKEGEM_RECIPE_DOC="rdoc" -RUBY_FAKEGEM_EXTRADOC="CHANGELOG README.rdoc TODO" - -inherit ruby-fakegem - -DESCRIPTION="PDF parser conforming as much as possible to the PDF specification from Adobe" -HOMEPAGE="https://github.com/yob/pdf-reader/" - -# We cannot use the gem distributions because they don't contain the -# tests' data, we have to rely on the git tags. -SRC_URI="https://github.com/${GITHUB_USER}/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz" - -LICENSE="MIT" -SLOT="0" -KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86" -IUSE="" - -ruby_add_rdepend ">=dev-ruby/afm-0.2.1 - =dev-ruby/ascii85-1* - =dev-ruby/hashery-2* - dev-ruby/ttfunk:* - dev-ruby/ruby-rc4" - -all_ruby_prepare() { - # Remove bundler support - sed -i -e '/[Bb]undler/d' spec/spec_helper.rb || die -} - -all_ruby_install() { - all_fakegem_install - - docinto examples - dodoc examples/* || die -}