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/binding_of_caller: metadata.xml ChangeLog binding_of_caller-0.7.2.ebuild
Date: Fri, 06 Mar 2015 06:57:02
Message-Id: 20150306065659.7F66D13256@oystercatcher.gentoo.org
1 graaff 15/03/06 06:56:59
2
3 Added: metadata.xml ChangeLog
4 binding_of_caller-0.7.2.ebuild
5 Log:
6 Initial import. Dependency for forthcoming web-console.
7
8 (Portage version: 2.2.14/cvs/Linux x86_64, signed Manifest commit with key 0x8883FA56A308A8D7!)
9
10 Revision Changes Path
11 1.1 dev-ruby/binding_of_caller/metadata.xml
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/binding_of_caller/metadata.xml?rev=1.1&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/binding_of_caller/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/binding_of_caller/ChangeLog
27
28 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/binding_of_caller/ChangeLog?rev=1.1&view=markup
29 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/binding_of_caller/ChangeLog?rev=1.1&content-type=text/plain
30
31 Index: ChangeLog
32 ===================================================================
33 # ChangeLog for dev-ruby/binding_of_caller
34 # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
35 # $Header: /var/cvsroot/gentoo-x86/dev-ruby/binding_of_caller/ChangeLog,v 1.1 2015/03/06 06:56:59 graaff Exp $
36
37 *binding_of_caller-0.7.2 (06 Mar 2015)
38
39 06 Mar 2015; Hans de Graaff <graaff@g.o>
40 +binding_of_caller-0.7.2.ebuild, +metadata.xml:
41 Initial import. Dependency for forthcoming web-console.
42
43
44
45
46 1.1 dev-ruby/binding_of_caller/binding_of_caller-0.7.2.ebuild
47
48 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/binding_of_caller/binding_of_caller-0.7.2.ebuild?rev=1.1&view=markup
49 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/binding_of_caller/binding_of_caller-0.7.2.ebuild?rev=1.1&content-type=text/plain
50
51 Index: binding_of_caller-0.7.2.ebuild
52 ===================================================================
53 # Copyright 1999-2015 Gentoo Foundation
54 # Distributed under the terms of the GNU General Public License v2
55 # $Header: /var/cvsroot/gentoo-x86/dev-ruby/binding_of_caller/binding_of_caller-0.7.2.ebuild,v 1.1 2015/03/06 06:56:59 graaff Exp $
56
57 EAPI=5
58 USE_RUBY="ruby20 ruby21 ruby22"
59
60 RUBY_FAKEGEM_RECIPE_DOC="rdoc"
61 RUBY_FAKEGEM_EXTRADOC="HISTORY README.md"
62
63 inherit ruby-fakegem
64
65 DESCRIPTION="Retrieve the binding of a method's caller"
66 HOMEPAGE="https://github.com/banister/binding_of_caller"
67
68 LICENSE="MIT"
69 SLOT="0"
70 KEYWORDS="~amd64"
71 IUSE="test"
72
73 ruby_add_rdepend ">=dev-ruby/debug_inspector-0.0.1"
74
75 ruby_add_bdepend "test? ( dev-ruby/bacon )"
76
77 each_ruby_test() {
78 ${RUBY} -S bacon -Itest -rubygems -a -q || die
79 }