Gentoo Archives: gentoo-commits

From: Hans de Graaff <graaff@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-ruby/pdf-reader/
Date: Wed, 08 May 2019 19:59:40
Message-Id: 1557345556.d1aa8601f2ec6c8583b7adb151a9e7d050e475f5.graaff@gentoo
1 commit: d1aa8601f2ec6c8583b7adb151a9e7d050e475f5
2 Author: Hans de Graaff <graaff <AT> gentoo <DOT> org>
3 AuthorDate: Wed May 8 18:54:01 2019 +0000
4 Commit: Hans de Graaff <graaff <AT> gentoo <DOT> org>
5 CommitDate: Wed May 8 19:59:16 2019 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d1aa8601
7
8 dev-ruby/pdf-reader: cleanup
9
10 Signed-off-by: Hans de Graaff <graaff <AT> gentoo.org>
11 Package-Manager: Portage-2.3.62, Repoman-2.3.11
12
13 dev-ruby/pdf-reader/pdf-reader-1.4.1-r1.ebuild | 45 --------------------------
14 1 file changed, 45 deletions(-)
15
16 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
17 deleted file mode 100644
18 index 8e48b16387a..00000000000
19 --- a/dev-ruby/pdf-reader/pdf-reader-1.4.1-r1.ebuild
20 +++ /dev/null
21 @@ -1,45 +0,0 @@
22 -# Copyright 1999-2018 Gentoo Foundation
23 -# Distributed under the terms of the GNU General Public License v2
24 -
25 -EAPI=5
26 -
27 -GITHUB_USER=yob
28 -
29 -USE_RUBY="ruby23 ruby24 ruby25"
30 -
31 -RUBY_FAKEGEM_RECIPE_TEST="rspec3"
32 -
33 -RUBY_FAKEGEM_RECIPE_DOC="rdoc"
34 -RUBY_FAKEGEM_EXTRADOC="CHANGELOG README.rdoc TODO"
35 -
36 -inherit ruby-fakegem
37 -
38 -DESCRIPTION="PDF parser conforming as much as possible to the PDF specification from Adobe"
39 -HOMEPAGE="https://github.com/yob/pdf-reader/"
40 -
41 -# We cannot use the gem distributions because they don't contain the
42 -# tests' data, we have to rely on the git tags.
43 -SRC_URI="https://github.com/${GITHUB_USER}/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
44 -
45 -LICENSE="MIT"
46 -SLOT="0"
47 -KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86"
48 -IUSE=""
49 -
50 -ruby_add_rdepend ">=dev-ruby/afm-0.2.1
51 - =dev-ruby/ascii85-1*
52 - =dev-ruby/hashery-2*
53 - dev-ruby/ttfunk:*
54 - dev-ruby/ruby-rc4"
55 -
56 -all_ruby_prepare() {
57 - # Remove bundler support
58 - sed -i -e '/[Bb]undler/d' spec/spec_helper.rb || die
59 -}
60 -
61 -all_ruby_install() {
62 - all_fakegem_install
63 -
64 - docinto examples
65 - dodoc examples/* || die
66 -}