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/redcloth/
Date: Wed, 05 Jun 2019 17:56:28
Message-Id: 1559757368.a2ccc9280787c4488df5d8116c1080cb83c352df.graaff@gentoo
1 commit: a2ccc9280787c4488df5d8116c1080cb83c352df
2 Author: Hans de Graaff <graaff <AT> gentoo <DOT> org>
3 AuthorDate: Wed Jun 5 17:49:06 2019 +0000
4 Commit: Hans de Graaff <graaff <AT> gentoo <DOT> org>
5 CommitDate: Wed Jun 5 17:56:08 2019 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a2ccc928
7
8 dev-ruby/redcloth: cleanup
9
10 Signed-off-by: Hans de Graaff <graaff <AT> gentoo.org>
11 Package-Manager: Portage-2.3.66, Repoman-2.3.11
12
13 dev-ruby/redcloth/redcloth-4.3.2.ebuild | 58 ---------------------------------
14 1 file changed, 58 deletions(-)
15
16 diff --git a/dev-ruby/redcloth/redcloth-4.3.2.ebuild b/dev-ruby/redcloth/redcloth-4.3.2.ebuild
17 deleted file mode 100644
18 index 4b32b1cae1f..00000000000
19 --- a/dev-ruby/redcloth/redcloth-4.3.2.ebuild
20 +++ /dev/null
21 @@ -1,58 +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 -# ruby25: not compatible
28 -USE_RUBY="ruby22 ruby23 ruby24"
29 -
30 -RUBY_FAKEGEM_NAME="RedCloth"
31 -
32 -RUBY_FAKEGEM_RECIPE_TEST="rspec"
33 -RUBY_FAKEGEM_TASK_DOC=""
34 -
35 -RUBY_FAKEGEM_DOCDIR="doc"
36 -
37 -RUBY_FAKEGEM_EXTRADOC="README.rdoc CHANGELOG"
38 -
39 -RUBY_FAKEGEM_REQUIRE_PATHS="lib/case_sensitive_require"
40 -
41 -inherit ruby-fakegem versionator
42 -
43 -DESCRIPTION="A module for using Textile in Ruby"
44 -HOMEPAGE="http://redcloth.org/"
45 -
46 -GITHUB_USER=jgarber
47 -SRC_URI="https://github.com/${GITHUB_USER}/redcloth/archive/v${PV}.tar.gz -> ${RUBY_FAKEGEM_NAME}-${PV}.tar.gz"
48 -
49 -LICENSE="MIT"
50 -SLOT="0"
51 -KEYWORDS="alpha amd64 arm ~arm64 hppa ia64 ppc ppc64 sparc x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
52 -IUSE=""
53 -
54 -DEPEND+=" =dev-util/ragel-6*"
55 -
56 -ruby_add_bdepend "
57 - >=dev-ruby/rake-0.8.7
58 - >=dev-ruby/rake-compiler-0.7.1
59 - test? ( >=dev-ruby/diff-lcs-1.1.2 )"
60 -
61 -pkg_setup() {
62 - ruby-ng_pkg_setup
63 -
64 - # Export the VERBOSE variable to avoid remapping of stdout and
65 - # stderr, and that breaks because of bad interactions between
66 - # echoe, Ruby and Gentoo.
67 - export VERBOSE=1
68 -}
69 -
70 -all_ruby_prepare() {
71 - sed -i -e '/[Bb]undler/d' Rakefile ${PN}.gemspec || die
72 - rm -f tasks/{release,rspec,rvm}.rake || die
73 -}
74 -
75 -each_ruby_compile() {
76 - # We cannot run this manually easily, because Ragel re-generation
77 - # is a mess
78 - ${RUBY} -S rake compile || die "rake compile failed"
79 -}