Gentoo Archives: gentoo-commits

From: "Manuel Rüger" <mrueg@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-ruby/rbpdf-font/
Date: Mon, 14 Dec 2015 22:37:48
Message-Id: 1450132640.d544b4ff6bdaea87d68bc824c2b20c3c8ee1c3a5.mrueg@gentoo
1 commit: d544b4ff6bdaea87d68bc824c2b20c3c8ee1c3a5
2 Author: Manuel Rüger <mrueg <AT> gentoo <DOT> org>
3 AuthorDate: Mon Dec 14 22:36:51 2015 +0000
4 Commit: Manuel Rüger <mrueg <AT> gentoo <DOT> org>
5 CommitDate: Mon Dec 14 22:37:20 2015 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d544b4ff
7
8 dev-ruby/rbpdf-font: Initial version
9
10 Package-Manager: portage-2.2.26
11
12 dev-ruby/rbpdf-font/Manifest | 1 +
13 dev-ruby/rbpdf-font/metadata.xml | 8 ++++++++
14 dev-ruby/rbpdf-font/rbpdf-font-1.19.0.ebuild | 29 ++++++++++++++++++++++++++++
15 3 files changed, 38 insertions(+)
16
17 diff --git a/dev-ruby/rbpdf-font/Manifest b/dev-ruby/rbpdf-font/Manifest
18 new file mode 100644
19 index 0000000..55d3a3f
20 --- /dev/null
21 +++ b/dev-ruby/rbpdf-font/Manifest
22 @@ -0,0 +1 @@
23 +DIST rbpdf-font-1.19.0.gem 9559040 SHA256 2304ff2605dd7bce2334aacee8526a9c865bb4c28e9ec8338a60f5d62017e89b SHA512 215a2c99f90ba76a4b1da93a59787557bd326fe8a3e41bfe31bd8c9d7e9b763667f70e781b3bc47b2ae2c2d463836d034315bf2583cc8a6da48cbcde461322ec WHIRLPOOL a1587565b8b21b72fcc9bc49f9ab1e37af330e0e0c1a727b00bd89eb929734d88992f2353a2191944fbd9c25a1ea0411fdd4af17ad88e36abc090b4ff56b49c7
24
25 diff --git a/dev-ruby/rbpdf-font/metadata.xml b/dev-ruby/rbpdf-font/metadata.xml
26 new file mode 100644
27 index 0000000..108f2ed
28 --- /dev/null
29 +++ b/dev-ruby/rbpdf-font/metadata.xml
30 @@ -0,0 +1,8 @@
31 +<?xml version="1.0" encoding="UTF-8"?>
32 +<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
33 +<pkgmetadata>
34 + <herd>ruby</herd>
35 + <upstream>
36 + <remote-id type="github">naitoh/rbpdf</remote-id>
37 + </upstream>
38 +</pkgmetadata>
39
40 diff --git a/dev-ruby/rbpdf-font/rbpdf-font-1.19.0.ebuild b/dev-ruby/rbpdf-font/rbpdf-font-1.19.0.ebuild
41 new file mode 100644
42 index 0000000..714be22
43 --- /dev/null
44 +++ b/dev-ruby/rbpdf-font/rbpdf-font-1.19.0.ebuild
45 @@ -0,0 +1,29 @@
46 +# Copyright 1999-2015 Gentoo Foundation
47 +# Distributed under the terms of the GNU General Public License v2
48 +# $Id$
49 +
50 +EAPI=5
51 +
52 +# ruby22 support waiting on dev-ruby/action{pack,view}.
53 +USE_RUBY="ruby20 ruby21"
54 +
55 +# Avoid the complexity of the "rake" recipe and run the tests manually.
56 +#RUBY_FAKEGEM_RECIPE_TEST=none
57 +
58 +RUBY_FAKEGEM_RECIPE_DOC="rdoc"
59 +
60 +inherit ruby-fakegem
61 +
62 +DESCRIPTION="Ruby on Rails RBPDF plugin"
63 +HOMEPAGE="https://github.com/naitoh/rbpdf"
64 +
65 +LICENSE="LGPL-2.1+"
66 +SLOT="0"
67 +KEYWORDS="~amd64 ~x86"
68 +IUSE=""
69 +
70 +all_ruby_prepare() {
71 + sed -i -e "/bundler/d" Rakefile || die
72 +}
73 +
74 +RESTRICT="test"