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/shotgun: metadata.xml shotgun-0.5.ebuild ChangeLog
Date: Mon, 25 Jan 2010 18:55:59
Message-Id: E1NZU6P-0007AR-5P@stork.gentoo.org
1 flameeyes 10/01/25 18:55:57
2
3 Added: metadata.xml shotgun-0.5.ebuild ChangeLog
4 Log:
5 Initial import of shotgun, a way to auto-relaod rackup servers.
6 (Portage version: 2.2_rc61/cvs/Linux x86_64)
7
8 Revision Changes Path
9 1.1 dev-ruby/shotgun/metadata.xml
10
11 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-ruby/shotgun/metadata.xml?rev=1.1&view=markup
12 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-ruby/shotgun/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/shotgun/shotgun-0.5.ebuild
25
26 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-ruby/shotgun/shotgun-0.5.ebuild?rev=1.1&view=markup
27 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-ruby/shotgun/shotgun-0.5.ebuild?rev=1.1&content-type=text/plain
28
29 Index: shotgun-0.5.ebuild
30 ===================================================================
31 # Copyright 1999-2010 Gentoo Foundation
32 # Distributed under the terms of the GNU General Public License v2
33 # $Header: /var/cvsroot/gentoo-x86/dev-ruby/shotgun/shotgun-0.5.ebuild,v 1.1 2010/01/25 18:55:56 flameeyes Exp $
34
35 EAPI=2
36 USE_RUBY="ruby18"
37
38 # No documentation task
39 RUBY_FAKEGEM_TASK_DOC=""
40
41 RUBY_FAKEGEM_EXTRADOC="README"
42
43 inherit ruby-fakegem
44
45 DESCRIPTION="Forking implementation of rackup"
46 HOMEPAGE="http://rtomayko.github.com/shotgun/"
47
48 GITHUB_USER="rtomayko"
49 # Untagged, but should correspond to 0.5 release
50 TREE_HASH="91f76ba3a75a22f60121b1403881aec70f35d75f"
51
52 SRC_URI="http://github.com/${GITHUB_USER}/${PN}/tarball/${TREE_HASH} -> ${PN}-git-${PV}.tgz"
53 S="${WORKDIR}/${GITHUB_USER}-${PN}-${TREE_HASH:0:7}"
54
55 LICENSE="MIT"
56 SLOT="0"
57 KEYWORDS="~amd64"
58 IUSE=""
59
60 # Warning: the code does not use gem versioning to make sure to load
61 # only the right rack version so we might need to patch it to work :/
62 # Has a runtime dependency over launchy, but it's not striclty needed,
63 # so we'll patch it and announce its possible requirement.
64 ruby_add_rdepend '=dev-ruby/rack-1.0*'
65 ruby_add_bdepend test dev-ruby/bacon
66
67 all_ruby_prepare() {
68 epatch "${FILESDIR}"/${P}-optional-launchy.patch
69 }
70
71 pkg_postinst() {
72 elog "${PN} can also launch your browser at startup, but to do so it needs"
73 elog "the dev-ruby/launchy package that is currently available just on the Ruby"
74 elog "project's overlay for dependency/license issues."
75 }
76
77
78
79 1.1 dev-ruby/shotgun/ChangeLog
80
81 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-ruby/shotgun/ChangeLog?rev=1.1&view=markup
82 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-ruby/shotgun/ChangeLog?rev=1.1&content-type=text/plain
83
84 Index: ChangeLog
85 ===================================================================
86 # ChangeLog for dev-ruby/shotgun
87 # Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
88 # $Header: /var/cvsroot/gentoo-x86/dev-ruby/shotgun/ChangeLog,v 1.1 2010/01/25 18:55:56 flameeyes Exp $
89
90 *shotgun-0.5 (25 Jan 2010)
91
92 25 Jan 2010; Diego E. Pettenò <flameeyes@g.o> +shotgun-0.5.ebuild,
93 +files/shotgun-0.5-optional-launchy.patch, +metadata.xml:
94 Initial import of shotgun, a way to auto-relaod rackup servers.