Gentoo Archives: gentoo-commits

From: "Manuel Rueger (mrueg)" <mrueg@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in dev-ruby/childlabor: childlabor-0.0.3-r1.ebuild ChangeLog
Date: Sat, 09 Nov 2013 19:40:06
Message-Id: 20131109194001.5520C2004B@flycatcher.gentoo.org
1 mrueg 13/11/09 19:40:01
2
3 Modified: ChangeLog
4 Added: childlabor-0.0.3-r1.ebuild
5 Log:
6 Add ruby20 target. Add snapshot from github to provide tests.
7
8 (Portage version: 2.2.7/cvs/Linux x86_64, signed Manifest commit with key )
9
10 Revision Changes Path
11 1.5 dev-ruby/childlabor/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/childlabor/ChangeLog?rev=1.5&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/childlabor/ChangeLog?rev=1.5&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/childlabor/ChangeLog?r1=1.4&r2=1.5
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/dev-ruby/childlabor/ChangeLog,v
20 retrieving revision 1.4
21 retrieving revision 1.5
22 diff -u -r1.4 -r1.5
23 --- ChangeLog 15 Jan 2013 06:59:20 -0000 1.4
24 +++ ChangeLog 9 Nov 2013 19:40:01 -0000 1.5
25 @@ -1,6 +1,11 @@
26 # ChangeLog for dev-ruby/childlabor
27 # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/dev-ruby/childlabor/ChangeLog,v 1.4 2013/01/15 06:59:20 zerochaos Exp $
29 +# $Header: /var/cvsroot/gentoo-x86/dev-ruby/childlabor/ChangeLog,v 1.5 2013/11/09 19:40:01 mrueg Exp $
30 +
31 +*childlabor-0.0.3-r1 (09 Nov 2013)
32 +
33 + 09 Nov 2013; Manuel RĂ¼ger <mrueg@g.o> +childlabor-0.0.3-r1.ebuild:
34 + Add ruby20 target. Add snapshot from github to provide tests.
35
36 15 Jan 2013; Rick Farina <zerochaos@g.o> childlabor-0.0.3.ebuild:
37 adding ~arm keywords to net-analyzer/metasploit rdeps
38
39
40
41 1.1 dev-ruby/childlabor/childlabor-0.0.3-r1.ebuild
42
43 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/childlabor/childlabor-0.0.3-r1.ebuild?rev=1.1&view=markup
44 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/childlabor/childlabor-0.0.3-r1.ebuild?rev=1.1&content-type=text/plain
45
46 Index: childlabor-0.0.3-r1.ebuild
47 ===================================================================
48 # Copyright 1999-2013 Gentoo Foundation
49 # Distributed under the terms of the GNU General Public License v2
50 # $Header: /var/cvsroot/gentoo-x86/dev-ruby/childlabor/childlabor-0.0.3-r1.ebuild,v 1.1 2013/11/09 19:40:01 mrueg Exp $
51
52 EAPI=5
53 USE_RUBY="ruby18 ruby19 ruby20 jruby"
54
55 RUBY_FAKEGEM_TASK_DOC=""
56 RUBY_FAKEGEM_TASK_TEST=""
57 RUBY_FAKEGEM_DOCDIR=""
58 RUBY_FAKEGEM_EXTRADOC="README.md"
59
60 inherit ruby-fakegem
61
62 DESCRIPTION="A scripting framework that replaces rake and sake"
63 HOMEPAGE="https://github.com/carllerche/childlabor"
64 COMMIT_ID="6518b939dddbad20c7f05aa075d76e3ca6e70447"
65 SRC_URI="https://github.com/carllerche/childlabor/archive/${COMMIT_ID}.tar.gz -> ${P}.tar.gz"
66
67 LICENSE="MIT"
68 SLOT="0"
69 KEYWORDS="~amd64 ~arm"
70 IUSE="test"
71
72 RUBY_S="${PN}-${COMMIT_ID}"
73
74 ruby_add_bdepend "test? ( dev-ruby/rspec )"
75
76 each_ruby_test() {
77 ${RUBY} -I. -Ilib -S rspec spec/task_spec.rb || die
78 }