diff options
author | Hans de Graaff <graaff@gentoo.org> | 2021-09-12 09:53:48 +0200 |
---|---|---|
committer | Hans de Graaff <graaff@gentoo.org> | 2021-09-12 09:53:48 +0200 |
commit | 04caf2b0678425ab098fd50040dcc640486d7d22 (patch) | |
tree | 11153c1112f644d2e36e133a3e0b4b3417d6d292 /app-admin/mcollective | |
parent | dev-python/rencode: Remove old (diff) | |
download | gentoo-04caf2b0678425ab098fd50040dcc640486d7d22.tar.gz gentoo-04caf2b0678425ab098fd50040dcc640486d7d22.tar.bz2 gentoo-04caf2b0678425ab098fd50040dcc640486d7d22.zip |
app-admin/mcollective: cleanup ruby25-only version
Package-Manager: Portage-3.0.20, Repoman-3.0.3
Signed-off-by: Hans de Graaff <graaff@gentoo.org>
Diffstat (limited to 'app-admin/mcollective')
-rw-r--r-- | app-admin/mcollective/Manifest | 1 | ||||
-rw-r--r-- | app-admin/mcollective/mcollective-2.12.4.ebuild | 60 |
2 files changed, 0 insertions, 61 deletions
diff --git a/app-admin/mcollective/Manifest b/app-admin/mcollective/Manifest index 9baa69b75d24..9f6962f131d1 100644 --- a/app-admin/mcollective/Manifest +++ b/app-admin/mcollective/Manifest @@ -1,2 +1 @@ -DIST mcollective-2.12.4.tar.gz 1517723 BLAKE2B e49a43ae7b99a5f22fe33549b26f938941f4e007c164c3c8de77daf2b3410c7db21e5023a400c87a2e4927a5a986e3b66bc3363a0c697ea06f0dd112825ae368 SHA512 f357297253f1cb5815738c8899a543642ce721c60ba023b13a7b14a99049d909622f8500ed82fc68c142cc1ffc106aed5a9bf8b1604a47c19a04a5ef4006b9e5 DIST mcollective-2.12.5.tar.gz 1517727 BLAKE2B b5d91c748bb1bfc63c7c040fb067d7ba39badede094d975f0b87587fe3a6c5bb6757a5be73f887be5d83f99dfefb0272bd48da6c9e79b4aee34c8d5f51e2e6c5 SHA512 639458d83b3f25d9aa433c205b9d16ded5ec689c1efb4827457fc3075c000d7abc2b70c9c8cf741c8bea03c1e47284015e69bf834e7a5670c68a40097e45891b diff --git a/app-admin/mcollective/mcollective-2.12.4.ebuild b/app-admin/mcollective/mcollective-2.12.4.ebuild deleted file mode 100644 index 60b5f9e52243..000000000000 --- a/app-admin/mcollective/mcollective-2.12.4.ebuild +++ /dev/null @@ -1,60 +0,0 @@ -# Copyright 1999-2018 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI="6" - -USE_RUBY="ruby23 ruby24 ruby25" - -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 - dohtml -r doc/* - insinto /usr/share/doc/${P}/ext - doins -r ext/* - 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" -} |