Gentoo Archives: gentoo-commits

From: "Hans de Graaff (graaff)" <graaff@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in dev-ruby/descendants_tracker: metadata.xml ChangeLog descendants_tracker-0.0.3.ebuild
Date: Mon, 05 May 2014 18:04:01
Message-Id: 20140505180356.C37012004C@flycatcher.gentoo.org
1 graaff 14/05/05 18:03:56
2
3 Added: metadata.xml ChangeLog
4 descendants_tracker-0.0.3.ebuild
5 Log:
6 Initial import. New dependency for github_api. Ebuild by p8952 in the ruby overlay.
7
8 (Portage version: 2.2.8-r1/cvs/Linux x86_64, signed Manifest commit with key 0x8883FA56A308A8D7!)
9
10 Revision Changes Path
11 1.1 dev-ruby/descendants_tracker/metadata.xml
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/descendants_tracker/metadata.xml?rev=1.1&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/descendants_tracker/metadata.xml?rev=1.1&content-type=text/plain
15
16 Index: metadata.xml
17 ===================================================================
18 <?xml version="1.0" encoding="UTF-8"?>
19 <!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
20 <pkgmetadata>
21 <herd>ruby</herd>
22 </pkgmetadata>
23
24
25
26 1.1 dev-ruby/descendants_tracker/ChangeLog
27
28 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/descendants_tracker/ChangeLog?rev=1.1&view=markup
29 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/descendants_tracker/ChangeLog?rev=1.1&content-type=text/plain
30
31 Index: ChangeLog
32 ===================================================================
33 # ChangeLog for dev-ruby/descendants_tracker
34 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
35 # $Header: /var/cvsroot/gentoo-x86/dev-ruby/descendants_tracker/ChangeLog,v 1.1 2014/05/05 18:03:56 graaff Exp $
36
37 *descendants_tracker-0.0.3 (05 May 2014)
38
39 05 May 2014; Hans de Graaff <graaff@g.o>
40 +descendants_tracker-0.0.3.ebuild, +metadata.xml:
41 Initial import. New dependency for github_api. Ebuild by p8952 in the ruby
42 overlay.
43
44
45
46
47 1.1 dev-ruby/descendants_tracker/descendants_tracker-0.0.3.ebuild
48
49 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/descendants_tracker/descendants_tracker-0.0.3.ebuild?rev=1.1&view=markup
50 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/descendants_tracker/descendants_tracker-0.0.3.ebuild?rev=1.1&content-type=text/plain
51
52 Index: descendants_tracker-0.0.3.ebuild
53 ===================================================================
54 # Copyright 1999-2014 Gentoo Foundation
55 # Distributed under the terms of the GNU General Public License v2
56 # $Header: /var/cvsroot/gentoo-x86/dev-ruby/descendants_tracker/descendants_tracker-0.0.3.ebuild,v 1.1 2014/05/05 18:03:56 graaff Exp $
57
58 EAPI=5
59 USE_RUBY="ruby19 ruby20 ruby21"
60
61 RUBY_FAKEGEM_RECIPE_TEST="rspec"
62 RUBY_FAKEGEM_RECIPE_DOC="yard"
63 RUBY_FAKEGEM_EXTRADOC="README.md"
64
65 inherit ruby-fakegem
66
67 DESCRIPTION="Module that adds descendant tracking to a class"
68 HOMEPAGE="https://github.com/dkubb/descendants_tracker"
69
70 LICENSE="MIT"
71 SLOT="0"
72 KEYWORDS="~amd64"
73 IUSE=""
74
75 all_ruby_prepare() {
76 # Remove dependency on devtools
77 sed -i -e '/devtools\/spec_helper/d' spec/spec_helper.rb || die
78 sed -i -e '/it_should_behave_like/d' \
79 spec/unit/descendants_tracker/add_descendant_spec.rb || die
80 sed -i -e '/it_should_behave_like/d' \
81 spec/unit/descendants_tracker/descendants_spec.rb || die
82 }