public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
From: "Alexys Jacob" <ultrabug@gentoo.org>
To: gentoo-commits@lists.gentoo.org
Subject: [gentoo-commits] repo/gentoo:master commit in: net-misc/rabbitmq-server/
Date: Fri, 22 Dec 2017 09:31:23 +0000 (UTC)	[thread overview]
Message-ID: <1513935065.3bfec2f9a6029736e6d6fc87bd7fec89c0f758f1.ultrabug@gentoo> (raw)

commit:     3bfec2f9a6029736e6d6fc87bd7fec89c0f758f1
Author:     Ultrabug <ultrabug <AT> gentoo <DOT> org>
AuthorDate: Fri Dec 22 09:31:05 2017 +0000
Commit:     Alexys Jacob <ultrabug <AT> gentoo <DOT> org>
CommitDate: Fri Dec 22 09:31:05 2017 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3bfec2f9

net-misc/rabbitmq-server: clean up vulnerable, wrt #616272

 net-misc/rabbitmq-server/Manifest                  |  1 -
 .../rabbitmq-server/rabbitmq-server-3.6.5.ebuild   | 99 ----------------------
 2 files changed, 100 deletions(-)

diff --git a/net-misc/rabbitmq-server/Manifest b/net-misc/rabbitmq-server/Manifest
index 9141c92bdf4..d014207a392 100644
--- a/net-misc/rabbitmq-server/Manifest
+++ b/net-misc/rabbitmq-server/Manifest
@@ -1,3 +1,2 @@
 DIST rabbitmq-server-3.6.10.tar.xz 1426900 BLAKE2B 045ee3181e05bb422dc2d4b2d2cd50ca15f2b7958c381d30748b58e5bd1df799d3b18fa6af631972b37fe19f8edc0b0a830271c54b1689417978e19d91e14732 SHA512 64e618e51ab259463029ad75b981dbf64687515e52d19854f225d4c68077e683ef56f0f6bb92cbbf91f140bc829d905473d687d083d12f36dd2cdfab3defaed6
-DIST rabbitmq-server-3.6.5.tar.xz 2923164 BLAKE2B bb3286a30db7323a6971d29c1a94b644fd24a5ff5c6d19818358a6f2a59585d568078e8bb7d4a8f266179175063b5cc6e7245021bc82f4d0745cfbc8055ce859 SHA512 50751a25b39a96a8b0665c9316d8a603050807597f932e0b3cc74f63fbd73a5668865ad7e7c58de5bef80295a5a3c472731446e4e07c530812a6275703ce2388
 DIST rabbitmq-server-3.6.9.tar.xz 1422316 BLAKE2B 08f88cf3b592c2fecf3e2a9c7f9a4a2997f7bea6f14a2d72cb42ad8d3254b2bcd32b0605c7687eeae8e1c39a6d3ad1776f89e84292d508903b956ec05f6cd858 SHA512 a003d2343c97e546ac01a5aadc46e94e2dbcc78349072b362950e5c5e11229e2a6fc4020d281f9fbb5cc0f577d2a166ef09671e931ec1470ab2edcdd98443662

diff --git a/net-misc/rabbitmq-server/rabbitmq-server-3.6.5.ebuild b/net-misc/rabbitmq-server/rabbitmq-server-3.6.5.ebuild
deleted file mode 100644
index d8095794d6f..00000000000
--- a/net-misc/rabbitmq-server/rabbitmq-server-3.6.5.ebuild
+++ /dev/null
@@ -1,99 +0,0 @@
-# Copyright 1999-2016 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI="5"
-
-PYTHON_COMPAT=( python2_7 )
-
-inherit eutils python-any-r1 systemd user
-
-DESCRIPTION="RabbitMQ is a high-performance AMQP-compliant message broker written in Erlang"
-HOMEPAGE="http://www.rabbitmq.com/"
-SRC_URI="http://www.rabbitmq.com/releases/rabbitmq-server/v${PV}/rabbitmq-server-${PV}.tar.xz"
-
-LICENSE="GPL-2 MPL-1.1"
-SLOT="0"
-KEYWORDS="amd64 ~arm64 x86"
-IUSE=""
-
-RDEPEND="dev-lang/erlang[ssl]"
-DEPEND="${RDEPEND}
-	app-arch/zip
-	app-arch/unzip
-	app-text/docbook-xml-dtd:4.5
-	app-text/xmlto
-	dev-libs/libxslt
-	$(python_gen_any_dep 'dev-python/simplejson[${PYTHON_USEDEP}]')
-"
-
-pkg_setup() {
-	enewgroup rabbitmq
-	enewuser rabbitmq -1 -1 /var/lib/rabbitmq rabbitmq
-	python-any-r1_pkg_setup
-}
-
-src_compile() {
-	emake all docs dist
-}
-
-src_install() {
-	# erlang module
-	local targetdir="/usr/$(get_libdir)/erlang/lib/rabbitmq_server-${PV}"
-
-	einfo "Setting correct RABBITMQ_HOME in scripts"
-	sed -e "s:^RABBITMQ_HOME=.*:RABBITMQ_HOME=\"${targetdir}\":g" \
-		-i scripts/rabbitmq-env || die
-
-	einfo "Installing Erlang modules to ${targetdir}"
-	insinto "${targetdir}"
-	doins -r ebin include plugins
-
-	einfo "Installing server scripts to /usr/sbin"
-	for script in rabbitmq-env rabbitmq-server rabbitmqctl rabbitmq-defaults rabbitmq-plugins; do
-		exeinto /usr/libexec/rabbitmq
-		doexe scripts/${script}
-		newsbin "${FILESDIR}"/rabbitmq-script-wrapper ${script}
-	done
-
-	# install the init script
-	newinitd "${FILESDIR}"/rabbitmq-server.init-r3 rabbitmq
-	systemd_dounit "${FILESDIR}/rabbitmq.service"
-
-	# install documentation
-	doman docs/*.[15]
-	dodoc README
-
-	# create the directory where our log file will go.
-	diropts -m 0770 -o rabbitmq -g rabbitmq
-	keepdir /var/log/rabbitmq /etc/rabbitmq
-
-	# create the mnesia directory
-	diropts -m 0770 -o rabbitmq -g rabbitmq
-	dodir /var/lib/rabbitmq{,/mnesia}
-}
-
-pkg_preinst() {
-	if has_version "<=net-misc/rabbitmq-server-1.8.0"; then
-		elog "IMPORTANT UPGRADE NOTICE:"
-		elog
-		elog "RabbitMQ is now running as an unprivileged user instead of root."
-		elog "Therefore you need to fix the permissions for RabbitMQs Mnesia database."
-		elog "Please run the following commands as root:"
-		elog
-		elog "  usermod -d /var/lib/rabbitmq rabbitmq"
-		elog "  chown rabbitmq:rabbitmq -R /var/lib/rabbitmq"
-		elog
-	elif has_version "<net-misc/rabbitmq-server-2.1.1"; then
-		elog "IMPORTANT UPGRADE NOTICE:"
-		elog
-		elog "Please read release notes before upgrading:"
-		elog
-		elog "http://www.rabbitmq.com/release-notes/README-3.0.0.txt"
-	fi
-	if has_version "<net-misc/rabbitmq-server-3.3.0"; then
-		elog
-		elog "This release changes the behaviour of the default guest user:"
-		elog
-		elog "http://www.rabbitmq.com/access-control.html"
-	fi
-}


             reply	other threads:[~2017-12-22  9:31 UTC|newest]

Thread overview: 71+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2017-12-22  9:31 Alexys Jacob [this message]
  -- strict thread matches above, loose matches on Subject: below --
2025-02-22  8:02 [gentoo-commits] repo/gentoo:master commit in: net-misc/rabbitmq-server/ Ulrich Müller
2024-04-18  5:42 Joonas Niilola
2024-04-17 12:12 Matthew Smith
2024-04-17  8:45 Joonas Niilola
2024-04-15 19:07 Matthew Smith
2023-11-17 16:50 Matthew Smith
2023-11-17 16:50 Matthew Smith
2023-10-04 10:00 Matthew Smith
2022-11-12 13:55 Matthew Smith
2022-11-11  5:34 Sam James
2022-11-11  4:25 Sam James
2022-11-10 11:21 Matthew Smith
2022-09-07  7:52 Michał Górny
2022-06-28 16:43 Alexys Jacob
2022-06-28  8:47 Alexys Jacob
2022-06-28  8:47 Alexys Jacob
2021-10-17 20:39 John Helmert III
2021-08-19  1:08 Sam James
2021-08-13  1:06 John Helmert III
2021-08-13  1:04 John Helmert III
2021-07-18 17:56 Conrad Kostecki
2021-05-31 22:35 Michał Górny
2021-04-28 18:16 Sergei Trofimovich
2021-04-25  5:11 Sam James
2021-04-25  5:09 Sam James
2021-03-13 10:34 Sergei Trofimovich
2020-10-09 12:23 Alexys Jacob
2020-09-04  7:57 Alexys Jacob
2020-08-18 11:16 Agostino Sarubbo
2020-08-15  8:09 Sergei Trofimovich
2020-07-20  6:42 Agostino Sarubbo
2020-07-19  7:43 Agostino Sarubbo
2020-06-27 20:41 Mart Raudsepp
2020-05-26 20:44 Thomas Deutschmann
2020-03-23  8:51 Alexys Jacob
2020-02-22 11:35 Alexys Jacob
2020-02-22 11:35 Alexys Jacob
2020-02-22 11:35 Alexys Jacob
2020-02-20 18:29 Alexys Jacob
2019-11-26 12:44 Alexys Jacob
2019-10-06 12:19 Alexys Jacob
2019-09-08  9:18 Hans de Graaff
2019-04-14  7:19 Alexys Jacob
2019-04-10  6:34 Matthew Thode
2019-03-10 18:12 Matthew Thode
2019-02-13 17:00 Thomas Deutschmann
2019-01-25 18:52 Matthew Thode
2018-12-19 14:10 Thomas Deutschmann
2018-03-03  9:46 Michał Górny
2018-02-01  9:56 Alexys Jacob
2018-01-30 14:41 Alexys Jacob
2018-01-25 13:33 Alexys Jacob
2018-01-23 12:23 Alexys Jacob
2018-01-19 11:10 Alexys Jacob
2018-01-09 10:06 Alexys Jacob
2017-12-22 10:08 Alexys Jacob
2017-12-22  9:47 Alexys Jacob
2017-10-20 14:37 Manuel Rüger
2017-10-01  1:08 Thomas Deutschmann
2017-05-30 13:11 Alexys Jacob
2017-05-30 13:03 Alexys Jacob
2017-03-29 16:17 Alexys Jacob
2016-12-02  8:54 Alexys Jacob
2016-08-19  7:36 Alexys Jacob
2016-05-20 10:25 Alexys Jacob
2016-03-09 14:09 Alexys Jacob
2016-02-28  7:15 Matt Thode
2016-01-08 13:01 Alexys Jacob
2016-01-08 13:00 Alexys Jacob
2015-08-24  8:52 Michael Weber

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=1513935065.3bfec2f9a6029736e6d6fc87bd7fec89c0f758f1.ultrabug@gentoo \
    --to=ultrabug@gentoo.org \
    --cc=gentoo-commits@lists.gentoo.org \
    --cc=gentoo-dev@lists.gentoo.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox