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 E4801138331 for ; Mon, 22 Jan 2018 19:04:33 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 37E39E0951; Mon, 22 Jan 2018 19:04:33 +0000 (UTC) Received: from smtp.gentoo.org (smtp.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 17C07E0951 for ; Mon, 22 Jan 2018 19:04:33 +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 46B3C335C50 for ; Mon, 22 Jan 2018 19:04:32 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 7FA2B1CB for ; Mon, 22 Jan 2018 19:04:30 +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: <1516647830.185beaddb439ecbe2bb73f8ea7b3047f923f2838.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.ebuild X-VCS-Directories: dev-ruby/pdf-reader/ X-VCS-Committer: graaff X-VCS-Committer-Name: Hans de Graaff X-VCS-Revision: 185beaddb439ecbe2bb73f8ea7b3047f923f2838 X-VCS-Branch: master Date: Mon, 22 Jan 2018 19:04:30 +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: 02612ab8-88c5-4757-bbdb-63280fd30280 X-Archives-Hash: 21ae4974f7658e7a4f91154f30c6e76a commit: 185beaddb439ecbe2bb73f8ea7b3047f923f2838 Author: Hans de Graaff gentoo org> AuthorDate: Mon Jan 22 18:48:28 2018 +0000 Commit: Hans de Graaff gentoo org> CommitDate: Mon Jan 22 19:03:50 2018 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=185beadd dev-ruby/pdf-reader: cleanup Package-Manager: Portage-2.3.19, Repoman-2.3.6 dev-ruby/pdf-reader/pdf-reader-1.4.1.ebuild | 45 ----------------------------- 1 file changed, 45 deletions(-) diff --git a/dev-ruby/pdf-reader/pdf-reader-1.4.1.ebuild b/dev-ruby/pdf-reader/pdf-reader-1.4.1.ebuild deleted file mode 100644 index ce83fbe9ee2..00000000000 --- a/dev-ruby/pdf-reader/pdf-reader-1.4.1.ebuild +++ /dev/null @@ -1,45 +0,0 @@ -# Copyright 1999-2017 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 - -EAPI=5 - -GITHUB_USER=yob - -USE_RUBY="ruby20 ruby21 ruby22" - -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 ~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 -}