Gentoo Archives: gentoo-commits

From: "Diego Petteno (flameeyes)" <flameeyes@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in dev-ruby/bundler: metadata.xml ChangeLog bundler-0.8.1.ebuild
Date: Thu, 28 Jan 2010 00:50:51
Message-Id: E1NaIav-0008F9-LV@stork.gentoo.org
1 flameeyes 10/01/28 00:50:49
2
3 Added: metadata.xml ChangeLog bundler-0.8.1.ebuild
4 Log:
5 Initial import of bundler, that might not be too nice for us but it's still a decent tool for developers.
6 (Portage version: 2.2_rc61/cvs/Linux x86_64)
7
8 Revision Changes Path
9 1.1 dev-ruby/bundler/metadata.xml
10
11 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-ruby/bundler/metadata.xml?rev=1.1&view=markup
12 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-ruby/bundler/metadata.xml?rev=1.1&content-type=text/plain
13
14 Index: metadata.xml
15 ===================================================================
16 <?xml version="1.0" encoding="UTF-8"?>
17 <!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
18 <pkgmetadata>
19 <herd>ruby</herd>
20 </pkgmetadata>
21
22
23
24 1.1 dev-ruby/bundler/ChangeLog
25
26 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-ruby/bundler/ChangeLog?rev=1.1&view=markup
27 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-ruby/bundler/ChangeLog?rev=1.1&content-type=text/plain
28
29 Index: ChangeLog
30 ===================================================================
31 # ChangeLog for dev-ruby/bundler
32 # Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
33 # $Header: /var/cvsroot/gentoo-x86/dev-ruby/bundler/ChangeLog,v 1.1 2010/01/28 00:50:48 flameeyes Exp $
34
35 *bundler-0.8.1 (28 Jan 2010)
36
37 28 Jan 2010; Diego E. Pettenò <flameeyes@g.o>
38 +bundler-0.8.1.ebuild, +metadata.xml:
39 Initial import of bundler, that might not be too nice for us but it's
40 still a decent tool for developers.
41
42
43
44
45 1.1 dev-ruby/bundler/bundler-0.8.1.ebuild
46
47 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-ruby/bundler/bundler-0.8.1.ebuild?rev=1.1&view=markup
48 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-ruby/bundler/bundler-0.8.1.ebuild?rev=1.1&content-type=text/plain
49
50 Index: bundler-0.8.1.ebuild
51 ===================================================================
52 # Copyright 1999-2010 Gentoo Foundation
53 # Distributed under the terms of the GNU General Public License v2
54 # $Header: /var/cvsroot/gentoo-x86/dev-ruby/bundler/bundler-0.8.1.ebuild,v 1.1 2010/01/28 00:50:48 flameeyes Exp $
55
56 EAPI=2
57
58 USE_RUBY="ruby18"
59
60 RUBY_FAKEGEM_TASK_TEST="spec"
61
62 # No documentation task
63 RUBY_FAKEGEM_TASK_DOC=""
64 RUBY_FAKEGEM_EXTRADOC="README.markdown"
65
66 inherit ruby-fakegem
67
68 DESCRIPTION="An easy way to vendor gem dependencies"
69 HOMEPAGE="http://github.com/wycats/bundler"
70
71 GITHUB_USER="wycats"
72 # Untagged, but should correspond to 0.8.1 release
73 TREE_HASH="db101cc631de7784267f87c67f33a695d2b9db26"
74
75 SRC_URI="http://github.com/${GITHUB_USER}/${PN}/tarball/${TREE_HASH} -> ${PN}-git-${PV}.tgz"
76 S="${WORKDIR}/${GITHUB_USER}-${PN}-${TREE_HASH:0:7}"
77
78 LICENSE="MIT"
79 SLOT="0"
80 KEYWORDS="~amd64"
81 IUSE=""
82
83 # does not work with the reduced interface provided by Ruby 1.9 and
84 # JRuby, so it needs the full package
85 ruby_add_rdepend dev-ruby/rubygems
86
87 ruby_add_bdepend test dev-ruby/rspec