Gentoo Archives: gentoo-commits

From: Matt Thode <prometheanfire@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: app-admin/mcollective/
Date: Sat, 26 Nov 2016 03:37:14
Message-Id: 1480131321.a81d1bcd1dde96e060c4f2e8d6e8c70542886d9c.prometheanfire@gentoo
1 commit: a81d1bcd1dde96e060c4f2e8d6e8c70542886d9c
2 Author: Matthew Thode <prometheanfire <AT> gentoo <DOT> org>
3 AuthorDate: Sat Nov 26 03:35:21 2016 +0000
4 Commit: Matt Thode <prometheanfire <AT> gentoo <DOT> org>
5 CommitDate: Sat Nov 26 03:35:21 2016 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a81d1bcd
7
8 app-admin/mcollective: cleanup
9
10 Package-Manager: portage-2.3.0
11
12 app-admin/mcollective/Manifest | 2 -
13 app-admin/mcollective/mcollective-2.8.0.ebuild | 59 -------------------------
14 app-admin/mcollective/mcollective-2.9.0.ebuild | 61 --------------------------
15 3 files changed, 122 deletions(-)
16
17 diff --git a/app-admin/mcollective/Manifest b/app-admin/mcollective/Manifest
18 index 56aa914..7f1c4f9 100644
19 --- a/app-admin/mcollective/Manifest
20 +++ b/app-admin/mcollective/Manifest
21 @@ -1,4 +1,2 @@
22 -DIST mcollective-2.8.0.tar.gz 718292 SHA256 47084f9285707f2e457850adcf90811f3d39d4f4baa950d822b20b45633db259 SHA512 edc3da334dbd3afd18fcedc675c6498edce1c799d9b472f70ebfe1b972e013cba5217ec492ea4128b15d886edaf283246ba70915180f9a10a67f7c0957fd1c8e WHIRLPOOL 0c6461a43c4533334dee420e7a0debfa8aa2e0079b83407c1313a28689b5ecbd891c94740553947bdce4023786eb0e95e497da73108e283619f358d67dac7c0c
23 DIST mcollective-2.8.8.tar.gz 1500476 SHA256 503b26cb0beeb505bf9cd2abbb8724c67bc743ffff4fbaddc321e2a4d663b133 SHA512 fad2a277bdcb06adb56e87f545c4b85a4b8039263e7230c7b386c561a04d6f3bf80923733e1087c8090b43da734d6b7efe02e52a757191c3cb3ecab50cc97bb6 WHIRLPOOL 3e7a52b1ce3b705ed6f705067a4ab900a2faa226d19a36f106e2c2c1e4c4fc3e631630c04012ca456f0230f8fcb47dd5bd97f1d2e849af6edde67fac129301d4
24 -DIST mcollective-2.9.0.tar.gz 1503682 SHA256 93c97ee026986f8e966125551d7e481bd539a98f9f2f2ea94c98c024963ae331 SHA512 7d7dec7e68840bf9aea2890645f5d86389c6be8f84ad330b6ae342edf03d88cdef9f225aef741245a0f9606a46fe9394b9f740b4bf987c6f21ad018c05d84660 WHIRLPOOL 336673cdd5cfba14154435810fdbe3449646df8a85d057fc6a8bfe6d1f1d5fa5b3c4f9d9f470f0fd88d4170cbc1d6af646cfd959661720992dcffb08491657d1
25 DIST mcollective-2.9.1.tar.gz 1504607 SHA256 89bc9fbd72846b22220074a57d19bbfac56473649078fc3ac8182cc728159249 SHA512 29fedacb61084e1952afd3b9deb302abde3e763d13630d85dc70f78b0853f5b353fb44ccbd00e48e5864d04bf2c7568d7cbe21b06af31e1da72e52aeef3c04cf WHIRLPOOL 8affee96fa344d12b34b5a4e120029ab315133df6fd6cd456d840ab608ceb2027b9411a6a1a74bc5b9d0b029968255a926de888b7a2a1183d1c7aed195f65f7a
26
27 diff --git a/app-admin/mcollective/mcollective-2.8.0.ebuild b/app-admin/mcollective/mcollective-2.8.0.ebuild
28 deleted file mode 100644
29 index d79fd38..00000000
30 --- a/app-admin/mcollective/mcollective-2.8.0.ebuild
31 +++ /dev/null
32 @@ -1,59 +0,0 @@
33 -# Copyright 1999-2016 Gentoo Foundation
34 -# Distributed under the terms of the GNU General Public License v2
35 -# $Id$
36 -
37 -EAPI="5"
38 -
39 -USE_RUBY="ruby20 ruby21 ruby22 ruby23"
40 -
41 -inherit ruby-ng
42 -
43 -DESCRIPTION="Framework to build server orchestration or parallel job execution
44 -systems"
45 -HOMEPAGE="http://marionette-collective.org/"
46 -SRC_URI="http://puppetlabs.com/downloads/mcollective/${P}.tar.gz"
47 -
48 -LICENSE="Apache-2.0"
49 -SLOT="0"
50 -KEYWORDS="amd64 x86"
51 -IUSE="doc +client"
52 -
53 -DEPEND=""
54 -RDEPEND="dev-ruby/stomp"
55 -
56 -src_compile() {
57 - einfo "nothing to compile"
58 -}
59 -
60 -each_ruby_install() {
61 - doruby -r lib/*
62 - insinto /usr/share/mcollective
63 - use client && dosbin bin/mco
64 - dosbin bin/mcollectived
65 - if use doc ; then
66 - dohtml -r doc/*
67 - insinto /usr/share/doc/${P}/ext
68 - doins -r ext/*
69 - fi
70 - newinitd "${FILESDIR}"/mcollectived.initd mcollectived
71 - insinto /etc/mcollective
72 - cd etc
73 - for cfg in *.dist ; do
74 - newins "${cfg}" "${cfg%%.dist}"
75 - sed -i -e "s:^libdir.*:libdir = /usr/share/mcollective/plugins:" \
76 - "${D}"/etc/mcollective/${cfg%%.dist} || die "sed failed"
77 - done
78 - insinto /etc/mcollective/plugin.d
79 -}
80 -
81 -pkg_postinst() {
82 - einfo "Mcollective requires a stomp server installed and functioning before"
83 - einfo "you can use it. The recommended server to use is ActiveMQ [1] but"
84 - einfo "any other stomp compatible server should work."
85 - einfo
86 - einfo "It is recommended you read the \'getting started\' guide [2] if this"
87 - einfo "is a new installation"
88 - einfo
89 - einfo "[1] http://activemq.apache.org/"
90 - einfo "[2] https://code.google.com/p/mcollective/wiki/GettingStarted"
91 -}
92
93 diff --git a/app-admin/mcollective/mcollective-2.9.0.ebuild b/app-admin/mcollective/mcollective-2.9.0.ebuild
94 deleted file mode 100644
95 index 9fc0333..00000000
96 --- a/app-admin/mcollective/mcollective-2.9.0.ebuild
97 +++ /dev/null
98 @@ -1,61 +0,0 @@
99 -# Copyright 1999-2016 Gentoo Foundation
100 -# Distributed under the terms of the GNU General Public License v2
101 -# $Id$
102 -
103 -EAPI="5"
104 -
105 -USE_RUBY="ruby21 ruby22 ruby23"
106 -
107 -inherit ruby-ng
108 -
109 -DESCRIPTION="Framework to build server orchestration or parallel job execution
110 -systems"
111 -HOMEPAGE="http://marionette-collective.org/"
112 -SRC_URI="https://github.com/puppetlabs/marionette-collective/archive/${PV}.tar.gz -> ${P}.tar.gz"
113 -S="${WORKDIR}/all/marionette-collective-${PV}"
114 -
115 -LICENSE="Apache-2.0"
116 -SLOT="0"
117 -KEYWORDS="~amd64 ~x86"
118 -IUSE="doc +client"
119 -
120 -DEPEND=""
121 -RDEPEND="dev-ruby/stomp"
122 -
123 -src_compile() {
124 - einfo "nothing to compile"
125 -}
126 -
127 -each_ruby_install() {
128 - cd "marionette-collective-${PV}"
129 - doruby -r lib/*
130 - insinto /usr/share/mcollective
131 - use client && dosbin bin/mco
132 - dosbin bin/mcollectived
133 - if use doc ; then
134 - dohtml -r doc/*
135 - insinto /usr/share/doc/${P}/ext
136 - doins -r ext/*
137 - fi
138 - newinitd "${FILESDIR}"/mcollectived.initd mcollectived
139 - insinto /etc/mcollective
140 - cd etc
141 - for cfg in *.dist ; do
142 - newins "${cfg}" "${cfg%%.dist}"
143 - sed -i -e "s:^libdir.*:libdir = /usr/share/mcollective/plugins:" \
144 - "${D}"/etc/mcollective/${cfg%%.dist} || die "sed failed"
145 - done
146 - insinto /etc/mcollective/plugin.d
147 -}
148 -
149 -pkg_postinst() {
150 - einfo "Mcollective requires a stomp server installed and functioning before"
151 - einfo "you can use it. The recommended server to use is ActiveMQ [1] but"
152 - einfo "any other stomp compatible server should work."
153 - einfo
154 - einfo "It is recommended you read the \'getting started\' guide [2] if this"
155 - einfo "is a new installation"
156 - einfo
157 - einfo "[1] http://activemq.apache.org/"
158 - einfo "[2] https://code.google.com/p/mcollective/wiki/GettingStarted"
159 -}