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/unf/
Date: Sat, 02 Jan 2016 06:50:31
Message-Id: 1451716970.195c312fb2a7493601e80461e0826ebbcd900f1b.graaff@gentoo
1 commit: 195c312fb2a7493601e80461e0826ebbcd900f1b
2 Author: Hans de Graaff <graaff <AT> gentoo <DOT> org>
3 AuthorDate: Sat Jan 2 06:39:21 2016 +0000
4 Commit: Hans de Graaff <graaff <AT> gentoo <DOT> org>
5 CommitDate: Sat Jan 2 06:42:50 2016 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=195c312f
7
8 dev-ruby/unf: cleanup
9
10 Package-Manager: portage-2.2.24
11
12 dev-ruby/unf/Manifest | 1 -
13 dev-ruby/unf/unf-0.1.3-r1.ebuild | 47 ----------------------------------------
14 2 files changed, 48 deletions(-)
15
16 diff --git a/dev-ruby/unf/Manifest b/dev-ruby/unf/Manifest
17 index 5bd7996..7180a69 100644
18 --- a/dev-ruby/unf/Manifest
19 +++ b/dev-ruby/unf/Manifest
20 @@ -1,2 +1 @@
21 -DIST unf-0.1.3.gem 120320 SHA256 550bc894b05a85a769f0668ca162f83fddace095aa9b8c80c1e83ddb7b4558b8 SHA512 eac742e51bb32305c73c9cc5cd5c8b4ca1b6b83f2d17df134728befe2f8b9e043b3a01de35cee9cd86ea328142a02cc375d54311b551c7747c2661a0e7a6af16 WHIRLPOOL a4c921657787f37d23ad659df18153e689d9d2cd7eb2f6d54b77b1e7897196351460f2aba7c16e7b7cf93ae8bf92cc425fa1e824b4ff592bcce3d066e4384f29
22 DIST unf-0.1.4.gem 120320 SHA256 4999517a531f2a955750f8831941891f6158498ec9b6cb1c81ce89388e63022e SHA512 a4784afa8b852497f758d1b6cdcf095eb9e5397a36c97b1f22b53cf8077cfedbf83fdcda36f359acf59ba61f1ab8b706ddd31d097afbc98a40d2dbd0f934292b WHIRLPOOL 10528155b0377d171a040ddf47f48fc65e9fa38ab83bdc37a39f5c18c72b70414bcd109e9866996dbe82f3a35de208d0a488ce20bc9a8c959433bf52ffaacc30
23
24 diff --git a/dev-ruby/unf/unf-0.1.3-r1.ebuild b/dev-ruby/unf/unf-0.1.3-r1.ebuild
25 deleted file mode 100644
26 index a3e9401..0000000
27 --- a/dev-ruby/unf/unf-0.1.3-r1.ebuild
28 +++ /dev/null
29 @@ -1,47 +0,0 @@
30 -# Copyright 1999-2014 Gentoo Foundation
31 -# Distributed under the terms of the GNU General Public License v2
32 -# $Id$
33 -
34 -EAPI=5
35 -
36 -USE_RUBY="ruby19 ruby20"
37 -
38 -RUBY_FAKEGEM_RECIPE_TEST="none"
39 -RUBY_FAKEGEM_TASK_DOC=""
40 -RUBY_FAKEGEM_EXTRADOC="README.md"
41 -
42 -RUBY_FAKEGEM_GEMSPEC="${PN}.gemspec"
43 -
44 -inherit ruby-fakegem
45 -
46 -DESCRIPTION="A wrapper library to bring Unicode Normalization Form support to Ruby/JRuby"
47 -HOMEPAGE="https://github.com/knu/ruby-unf"
48 -
49 -LICENSE="BSD-2"
50 -SLOT="0"
51 -KEYWORDS="amd64 ~ppc ~ppc64 x86 ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos ~x86-solaris"
52 -IUSE="test"
53 -
54 -ruby_add_rdepend "dev-ruby/unf_ext"
55 -
56 -ruby_add_bdepend "
57 - test? (
58 - >=dev-ruby/test-unit-2.5.1-r1
59 - dev-ruby/shoulda
60 - )"
61 -
62 -all_ruby_prepare() {
63 - sed -i -e '/bundler/,/end/ d' test/helper.rb || die
64 -
65 - # Remove development dependencies; also remove platform as we don't
66 - # care about it as it is, they only use it to avoid the unf_ext dep
67 - # that we tackle on our own; finally remove git ls-files usage.
68 - sed -i -e '/dependency.*\(shoulda\|bundler\|jeweler\|rcov\)/d' \
69 - -e '/platform/d' \
70 - -e '/git ls/d' \
71 - ${RUBY_FAKEGEM_GEMSPEC} || die
72 -}
73 -
74 -each_ruby_test() {
75 - ruby-ng_testrb-2 test/test_*.rb
76 -}