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, 30 Jun 2018 19:01:52
Message-Id: 1530385296.5e0243954c38cff4bbc25f80b98f56e35cec3075.prometheanfire@gentoo
1 commit: 5e0243954c38cff4bbc25f80b98f56e35cec3075
2 Author: Matthew Thode <prometheanfire <AT> gentoo <DOT> org>
3 AuthorDate: Sat Jun 30 18:56:03 2018 +0000
4 Commit: Matt Thode <prometheanfire <AT> gentoo <DOT> org>
5 CommitDate: Sat Jun 30 19:01:36 2018 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5e024395
7
8 app-admin/mcollective: 2.12.2 stable amd64 and x86
9
10 Package-Manager: Portage-2.3.40, Repoman-2.3.9
11
12 app-admin/mcollective/Manifest | 1 -
13 app-admin/mcollective/mcollective-2.11.4.ebuild | 60 -------------------------
14 app-admin/mcollective/mcollective-2.12.2.ebuild | 2 +-
15 3 files changed, 1 insertion(+), 62 deletions(-)
16
17 diff --git a/app-admin/mcollective/Manifest b/app-admin/mcollective/Manifest
18 index 4dd2a2af032..c25fd65bad6 100644
19 --- a/app-admin/mcollective/Manifest
20 +++ b/app-admin/mcollective/Manifest
21 @@ -1,3 +1,2 @@
22 -DIST mcollective-2.11.4.tar.gz 1517194 BLAKE2B 8723d433e4b8e07b4aecd8c9d13c322ba3e3b6cb7153dbcbbc2e2463fe0ddf48c7b1c1d659e8a28278bb2fa4ec6b3da2f148117b3633b8148f9ba5a0aaabc4b4 SHA512 56af0a8b64ff75351f3448396f8a7cbba603869cdbfa7a97dde5a820e2e287c84e410a77469a3ce01f398858f5c6570c9e3542e372eaa00e3f54e68e3c1ce63b
23 DIST mcollective-2.12.1.tar.gz 1517946 BLAKE2B 785acc53a4854f47caebe1d6a5f9cc850c3c33fd21e1b6e57d0d9761b2a7a3bbab2f2df398aa5344d90bc11397a545c8663d60ff3b2f6ff835fdc619d874928e SHA512 2398fb0202d8d5669a6efa81d96a87ee7e9221c1bc1b2e5be1917f2fec2527879b34be8df8c3052acf0ed58074b2da185f0837889d9300bde190bc95e8237d9a
24 DIST mcollective-2.12.2.tar.gz 1517725 BLAKE2B e5f2b94843b95fa0749ed7e3e1ae52aeb485bf6644b64d971efd7d7a0e7bc806de0d2b00997c7e36d004fd78c479b9cf19b927e717ad0f3e4c13e820e5481637 SHA512 83be835499adf836797a67adda9be6d1bbf32524560ae51533875a1e2507599c7a0a1d2a76513669b919cf1eeceabdf13162eedb8972c74ecdeba5427b1701e4
25
26 diff --git a/app-admin/mcollective/mcollective-2.11.4.ebuild b/app-admin/mcollective/mcollective-2.11.4.ebuild
27 deleted file mode 100644
28 index 1e7cca4d567..00000000000
29 --- a/app-admin/mcollective/mcollective-2.11.4.ebuild
30 +++ /dev/null
31 @@ -1,60 +0,0 @@
32 -# Copyright 1999-2017 Gentoo Foundation
33 -# Distributed under the terms of the GNU General Public License v2
34 -
35 -EAPI="6"
36 -
37 -USE_RUBY="ruby21 ruby22 ruby23"
38 -
39 -inherit ruby-ng
40 -
41 -DESCRIPTION="Framework to build server orchestration or parallel job execution
42 -systems"
43 -HOMEPAGE="https://docs.puppet.com/mcollective/"
44 -SRC_URI="https://github.com/puppetlabs/marionette-collective/archive/${PV}.tar.gz -> ${P}.tar.gz"
45 -S="${WORKDIR}/all/marionette-collective-${PV}"
46 -
47 -LICENSE="Apache-2.0"
48 -SLOT="0"
49 -KEYWORDS="amd64 x86"
50 -IUSE="doc +client"
51 -
52 -DEPEND=""
53 -RDEPEND="dev-ruby/stomp"
54 -
55 -src_compile() {
56 - einfo "nothing to compile"
57 -}
58 -
59 -each_ruby_install() {
60 - cd "marionette-collective-${PV}"
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] https://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.12.2.ebuild b/app-admin/mcollective/mcollective-2.12.2.ebuild
94 index 6682ac763be..e5ded06a825 100644
95 --- a/app-admin/mcollective/mcollective-2.12.2.ebuild
96 +++ b/app-admin/mcollective/mcollective-2.12.2.ebuild
97 @@ -15,7 +15,7 @@ S="${WORKDIR}/all/marionette-collective-${PV}"
98
99 LICENSE="Apache-2.0"
100 SLOT="0"
101 -KEYWORDS="~amd64 ~x86"
102 +KEYWORDS="amd64 x86"
103 IUSE="doc +client"
104
105 DEPEND=""