diff options
author | V3n3RiX <venerix@koprulu.sector> | 2023-05-08 11:38:53 +0100 |
---|---|---|
committer | V3n3RiX <venerix@koprulu.sector> | 2023-05-08 11:38:53 +0100 |
commit | c53e4600c18a19ae2aaab501c1e5e7d6ceed23fe (patch) | |
tree | cc5e0068db67486f497b7bf5299b078899b39d94 /app-admin/mcollective | |
parent | b31d1d6a72f3d27f400fe6c0781a620780f2627e (diff) |
gentoo auto-resync : 08:05:2023 - 11:38:53
Diffstat (limited to 'app-admin/mcollective')
-rw-r--r-- | app-admin/mcollective/Manifest | 4 | ||||
-rw-r--r-- | app-admin/mcollective/files/mcollectived.initd | 28 | ||||
-rw-r--r-- | app-admin/mcollective/mcollective-2.12.5.ebuild | 61 | ||||
-rw-r--r-- | app-admin/mcollective/metadata.xml | 13 |
4 files changed, 0 insertions, 106 deletions
diff --git a/app-admin/mcollective/Manifest b/app-admin/mcollective/Manifest deleted file mode 100644 index 0f67925bb8da..000000000000 --- a/app-admin/mcollective/Manifest +++ /dev/null @@ -1,4 +0,0 @@ -AUX mcollectived.initd 497 BLAKE2B 1fe966f49117f9ea1b8c8ca4f5c92d5ddd7f8fb28658e4c3b016c193b69d1c42d35da85ace176279d09778c12fcc664748ea743c9b88219cb0fec2292ca867d4 SHA512 dc77a522e3ab6af3e23c559bfcb385033f2200b58b50db59000e7f56b2a789e8fbd83340f8ee494a1a9fdbdd1bd737a2b17ae4743823794264723fdc931ea6b0 -DIST mcollective-2.12.5.tar.gz 1517727 BLAKE2B b5d91c748bb1bfc63c7c040fb067d7ba39badede094d975f0b87587fe3a6c5bb6757a5be73f887be5d83f99dfefb0272bd48da6c9e79b4aee34c8d5f51e2e6c5 SHA512 639458d83b3f25d9aa433c205b9d16ded5ec689c1efb4827457fc3075c000d7abc2b70c9c8cf741c8bea03c1e47284015e69bf834e7a5670c68a40097e45891b -EBUILD mcollective-2.12.5.ebuild 1672 BLAKE2B c76652dead3d4e6f79b85e01467204ad9ee6851545a519c752e004f3577a0334a5c332f4a526be91dc25e6857808b1cece51b592fcbe6cb83995a2f6f59ff30b SHA512 a6e3e07194c7c3639e45ccf4ad49d4b67298c1833e6ee483f422a38c529c2004cf2250e7d573f7ab861cb9500f0fd1bdb9bebeb337dd4c62556129b63d26d1d9 -MISC metadata.xml 392 BLAKE2B d01236da42e7dc7ab1829bf4353a446b3c195cc6f4dbf40ad6d7f846fae0f4e0392a97767497ae14cd0c9950a12e7c6a0ac2a136b74e43d1f6c28d375a1a0564 SHA512 616a68590b38d2f842fbc8758e611db9610df52a5e7ed00757ddaed87703464eb1919c277bb2afa97db04610824c58715c08fb8c05a7a8bbb65d42410f74f412 diff --git a/app-admin/mcollective/files/mcollectived.initd b/app-admin/mcollective/files/mcollectived.initd deleted file mode 100644 index 8e295ceaa41c..000000000000 --- a/app-admin/mcollective/files/mcollectived.initd +++ /dev/null @@ -1,28 +0,0 @@ -#!/sbin/openrc-run -# Copyright 1999-2012 Gentoo Foundation -# Distributed under the terms of the Apache License, Version 2.0 - -mcollectived="/usr/sbin/mcollectived" -pidfile="/var/run/mcollectived" - -depend() { - need net -} - -start() { - ebegin "Starting mcollectived" - ${mcollectived} --pid=${pidfile} --config="/etc/mcollective/server.cfg" - eend $? -} - -stop() { - ebegin "Stopping mcollectived" - kill `cat ${pidfile}` - eend $? -} - -restart() { - svc_stop - sleep 2 - svc_start -} diff --git a/app-admin/mcollective/mcollective-2.12.5.ebuild b/app-admin/mcollective/mcollective-2.12.5.ebuild deleted file mode 100644 index 0c30f90cf894..000000000000 --- a/app-admin/mcollective/mcollective-2.12.5.ebuild +++ /dev/null @@ -1,61 +0,0 @@ -# Copyright 1999-2022 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI="6" - -USE_RUBY="ruby25 ruby26 ruby27" - -inherit ruby-ng - -DESCRIPTION="Framework to build server orchestration or parallel job execution -systems" -HOMEPAGE="https://docs.puppet.com/mcollective/" -SRC_URI="https://github.com/puppetlabs/marionette-collective/archive/${PV}.tar.gz -> ${P}.tar.gz" -S="${WORKDIR}/all/marionette-collective-${PV}" - -LICENSE="Apache-2.0" -SLOT="0" -KEYWORDS="amd64 x86" -IUSE="doc +client" - -DEPEND="" -RDEPEND=">=dev-ruby/stomp-1.4.4" - -src_compile() { - einfo "nothing to compile" -} - -each_ruby_install() { - cd "marionette-collective-${PV}" - doruby -r lib/* - insinto /usr/share/mcollective - use client && dosbin bin/mco - dosbin bin/mcollectived - if use doc ; then - dodoc -r ext - docinto html - dodoc -r doc/. - docompress -x /usr/share/doc/${PF}/{ext,html} - fi - newinitd "${FILESDIR}"/mcollectived.initd mcollectived - insinto /etc/mcollective - cd etc - for cfg in *.dist ; do - newins "${cfg}" "${cfg%%.dist}" - sed -i -e "s:^libdir.*:libdir = /usr/share/mcollective/plugins:" \ - "${D}"/etc/mcollective/${cfg%%.dist} || die "sed failed" - done - insinto /etc/mcollective/plugin.d -} - -pkg_postinst() { - einfo "Mcollective requires a stomp server installed and functioning before" - einfo "you can use it. The recommended server to use is ActiveMQ [1] but" - einfo "any other stomp compatible server should work." - einfo - einfo "It is recommended you read the \'getting started\' guide [2] if this" - einfo "is a new installation" - einfo - einfo "[1] https://activemq.apache.org/" - einfo "[2] https://code.google.com/p/mcollective/wiki/GettingStarted" -} diff --git a/app-admin/mcollective/metadata.xml b/app-admin/mcollective/metadata.xml deleted file mode 100644 index 7077b45eb0cd..000000000000 --- a/app-admin/mcollective/metadata.xml +++ /dev/null @@ -1,13 +0,0 @@ -<?xml version="1.0" encoding="UTF-8"?> -<!DOCTYPE pkgmetadata SYSTEM "https://www.gentoo.org/dtd/metadata.dtd"> -<pkgmetadata> - <maintainer type="person"> - <email>prometheanfire@gentoo.org</email> - </maintainer> - <use> - <flag name="client">Install client utilities</flag> - </use> - <upstream> - <remote-id type="github">puppetlabs/marionette-collective</remote-id> - </upstream> -</pkgmetadata> |