Gentoo Archives: gentoo-commits

From: Hans de Graaff <graaff@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] proj/ruby-overlay:master commit in: dev-ruby/rdiscount/
Date: Wed, 29 May 2013 18:39:29
Message-Id: 1369852748.3e0e00762e308e6f584451ad3b23844456c6f085.graaff@gentoo
1 commit: 3e0e00762e308e6f584451ad3b23844456c6f085
2 Author: Hans de Graaff <hans <AT> degraaff <DOT> org>
3 AuthorDate: Wed May 29 18:39:08 2013 +0000
4 Commit: Hans de Graaff <graaff <AT> gentoo <DOT> org>
5 CommitDate: Wed May 29 18:39:08 2013 +0000
6 URL: http://git.overlays.gentoo.org/gitweb/?p=proj/ruby-overlay.git;a=commit;h=3e0e0076
7
8 Moved to gentoo tree.
9
10 ---
11 dev-ruby/rdiscount/ChangeLog | 9 -----
12 dev-ruby/rdiscount/metadata.xml | 5 ---
13 dev-ruby/rdiscount/rdiscount-2.0.7.3.ebuild | 51 -----------------------------
14 3 files changed, 65 deletions(-)
15
16 diff --git a/dev-ruby/rdiscount/ChangeLog b/dev-ruby/rdiscount/ChangeLog
17 deleted file mode 100644
18 index b4f412e..0000000
19 --- a/dev-ruby/rdiscount/ChangeLog
20 +++ /dev/null
21 @@ -1,9 +0,0 @@
22 -# ChangeLog for dev-ruby/rdiscount
23 -# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
24 -# $Header: $
25 -
26 -*rdiscount-2.0.7.3 (29 May 2013)
27 -
28 - 29 May 2013; Manuel Rueger (mrueg) gentoo@××××.eu +metadata.xml,
29 - +rdiscount-2.0.7.3.ebuild:
30 - dev-ruby/rdiscount: Version bump
31
32 diff --git a/dev-ruby/rdiscount/metadata.xml b/dev-ruby/rdiscount/metadata.xml
33 deleted file mode 100644
34 index 8521361..0000000
35 --- a/dev-ruby/rdiscount/metadata.xml
36 +++ /dev/null
37 @@ -1,5 +0,0 @@
38 -<?xml version="1.0" encoding="UTF-8"?>
39 -<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
40 -<pkgmetadata>
41 -<herd>ruby</herd>
42 -</pkgmetadata>
43
44 diff --git a/dev-ruby/rdiscount/rdiscount-2.0.7.3.ebuild b/dev-ruby/rdiscount/rdiscount-2.0.7.3.ebuild
45 deleted file mode 100644
46 index 87875af..0000000
47 --- a/dev-ruby/rdiscount/rdiscount-2.0.7.3.ebuild
48 +++ /dev/null
49 @@ -1,51 +0,0 @@
50 -# Copyright 1999-2013 Gentoo Foundation
51 -# Distributed under the terms of the GNU General Public License v2
52 -# $Header: /var/cvsroot/gentoo-x86/dev-ruby/rdiscount/rdiscount-1.6.8-r1.ebuild,v 1.6 2013/01/15 05:02:19 zerochaos Exp $
53 -
54 -EAPI=5
55 -
56 -# Has a native extension without jruby support.
57 -USE_RUBY="ruby18 ruby19 ree18"
58 -
59 -RUBY_FAKEGEM_TASK_TEST="test:unit"
60 -
61 -RUBY_FAKEGEM_TASK_DOC="doc man"
62 -RUBY_FAKEGEM_EXTRADOC="README.markdown"
63 -
64 -inherit multilib ruby-fakegem
65 -
66 -DESCRIPTION="Implementation of John Gruber's Markdown"
67 -HOMEPAGE="http://github.com/rtomayko/rdiscount"
68 -
69 -LICENSE="MIT"
70 -SLOT="0"
71 -KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~x86-fbsd"
72 -IUSE=""
73 -
74 -ruby_add_bdepend "doc? ( app-text/ronn )"
75 -
76 -all_ruby_prepare() {
77 - # Hanna is broken for us and therefore we don't have it in portage.
78 - sed -i -e 's/hanna/rdoc/' Rakefile || die
79 -
80 - # Remove rule that will force a rebuild when running tests.
81 - sed -i -e "/task 'test:unit' => \[:build\]/d" Rakefile || die
82 -
83 - # Provide RUBY variable no longer provided by rake.
84 - sed -i -e "1 iRUBY=${RUBY}" Rakefile || die
85 -}
86 -
87 -each_ruby_configure() {
88 - ${RUBY} -Cext extconf.rb || die
89 -}
90 -
91 -each_ruby_compile() {
92 - emake -Cext || die
93 - cp ext/*$(get_modname) lib/ || die
94 -}
95 -
96 -all_ruby_install() {
97 - all_fakegem_install
98 -
99 - doman man/rdiscount.1
100 -}