Gentoo Archives: gentoo-commits

From: "Benedikt Boehm (hollow)" <hollow@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in app-admin/chef: chef-0.10.10_beta1.ebuild ChangeLog
Date: Sun, 29 Apr 2012 13:16:04
Message-Id: 20120429131544.B6BD42004B@flycatcher.gentoo.org
1 hollow 12/04/29 13:15:44
2
3 Modified: ChangeLog
4 Added: chef-0.10.10_beta1.ebuild
5 Log:
6 version bump to resolve dependency conflicts (see #410385)
7
8 (Portage version: 2.2.0_alpha101/cvs/Linux x86_64)
9
10 Revision Changes Path
11 1.10 app-admin/chef/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-admin/chef/ChangeLog?rev=1.10&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-admin/chef/ChangeLog?rev=1.10&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-admin/chef/ChangeLog?r1=1.9&r2=1.10
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/app-admin/chef/ChangeLog,v
20 retrieving revision 1.9
21 retrieving revision 1.10
22 diff -u -r1.9 -r1.10
23 --- ChangeLog 21 Feb 2012 07:49:31 -0000 1.9
24 +++ ChangeLog 29 Apr 2012 13:15:44 -0000 1.10
25 @@ -1,6 +1,11 @@
26 # ChangeLog for app-admin/chef
27 # Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/app-admin/chef/ChangeLog,v 1.9 2012/02/21 07:49:31 hollow Exp $
29 +# $Header: /var/cvsroot/gentoo-x86/app-admin/chef/ChangeLog,v 1.10 2012/04/29 13:15:44 hollow Exp $
30 +
31 +*chef-0.10.10_beta1 (29 Apr 2012)
32 +
33 + 29 Apr 2012; Benedikt Böhm <hollow@g.o> +chef-0.10.10_beta1.ebuild:
34 + version bump to resolve dependency conflicts (see #410385)
35
36 21 Feb 2012; Benedikt Böhm <hollow@g.o> chef-0.10.8.ebuild:
37 "fix" dependencies wrt #403047
38
39
40
41 1.1 app-admin/chef/chef-0.10.10_beta1.ebuild
42
43 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-admin/chef/chef-0.10.10_beta1.ebuild?rev=1.1&view=markup
44 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-admin/chef/chef-0.10.10_beta1.ebuild?rev=1.1&content-type=text/plain
45
46 Index: chef-0.10.10_beta1.ebuild
47 ===================================================================
48 # Copyright 1999-2012 Gentoo Foundation
49 # Distributed under the terms of the GNU General Public License v2
50 # $Header: /var/cvsroot/gentoo-x86/app-admin/chef/chef-0.10.10_beta1.ebuild,v 1.1 2012/04/29 13:15:44 hollow Exp $
51
52 EAPI="4"
53 USE_RUBY="ruby18"
54
55 RUBY_FAKEGEM_TASK_DOC=""
56 RUBY_FAKEGEM_TASK_TEST=""
57 RUBY_FAKEGEM_VERSION=${PV/_beta/.beta.}
58
59 inherit ruby-fakegem
60
61 DESCRIPTION="Chef is a systems integration framework"
62 HOMEPAGE="http://wiki.opscode.com/display/chef"
63
64 LICENSE="Apache-2.0"
65 SLOT="0"
66 KEYWORDS="~amd64 ~x86"
67 IUSE=""
68
69 ruby_add_rdepend ">=dev-ruby/bunny-0.6.0
70 dev-ruby/erubis
71 dev-ruby/highline
72 >=dev-ruby/json-1.4.4
73 <=dev-ruby/json-1.6.1
74 >=dev-ruby/mixlib-authentication-1.1.0
75 >=dev-ruby/mixlib-cli-1.1.0
76 >=dev-ruby/mixlib-config-1.1.2
77 >=dev-ruby/mixlib-log-1.3.0
78 >=dev-ruby/mixlib-shellout-1.0.0
79 dev-ruby/moneta
80 >=dev-ruby/net-ssh-2.2.2
81 >=dev-ruby/net-ssh-multi-1.1
82 >=dev-ruby/ohai-0.6.0
83 >=dev-ruby/rest-client-1.0.4
84 dev-ruby/ruby-shadow
85 >=dev-ruby/treetop-1.4.9
86 dev-ruby/uuidtools"
87
88 all_ruby_install() {
89 all_fakegem_install
90
91 keepdir /etc/chef /var/lib/chef /var/log/chef /var/run/chef
92
93 doinitd "${FILESDIR}/initd/chef-client"
94 doconfd "${FILESDIR}/confd/chef-client"
95
96 insinto /etc/chef
97 doins "${FILESDIR}/client.rb"
98 doins "${FILESDIR}/solo.rb"
99 }
100
101 pkg_setup() {
102 enewgroup chef
103 enewuser chef -1 -1 /var/lib/chef chef
104 }
105
106 pkg_postinst() {
107 elog
108 elog "You should edit /etc/chef/client.rb before starting the service with"
109 elog "/etc/init.d/chef-client start"
110 elog
111 }