Commit 9764f7e6 authored by Thomas Goirand's avatar Thomas Goirand
Browse files

* New upstream release:

    - Fix FTBFS with newer Erlang (Closes: #910623).
  * Fix the way to calculate upstream VERSION in debian/rules.
  * Switched rabbitmq-server.service to type notify, and other minor changes
    in this file (Closes: #812342), do not wait for timeout on shutdown either
    (Closes: #902136).
  * Updated debian/control for this release.
parent 46e44785
Loading
Loading
Loading
Loading
+11 −2
Original line number Diff line number Diff line
rabbitmq-server (3.6.10-2) UNRELEASED; urgency=medium
rabbitmq-server (3.7.6-1) unstable; urgency=medium

  [ Daniel Baumann ]
  * Updating vcs fields.
@@ -18,7 +18,16 @@ rabbitmq-server (3.6.10-2) UNRELEASED; urgency=medium
  * d/changelog: Remove trailing whitespaces
  * d/control: Use team+openstack@tracker.debian.org as maintainer

 -- Daniel Baumann <daniel.baumann@progress-linux.org>  Fri, 04 Aug 2017 22:30:14 +0200
  [ Thomas Goirand ]
  * New upstream release:
    - Fix FTBFS with newer Erlang (Closes: #910623).
  * Fix the way to calculate upstream VERSION in debian/rules.
  * Switched rabbitmq-server.service to type notify, and other minor changes
    in this file (Closes: #812342), do not wait for timeout on shutdown either
    (Closes: #902136).
  * Updated debian/control for this release.

 -- Thomas Goirand <zigo@debian.org>  Wed, 24 Oct 2018 18:39:10 +0200

rabbitmq-server (3.6.10-1) unstable; urgency=medium

+10 −9
Original line number Diff line number Diff line
@@ -6,22 +6,21 @@ Uploaders:
 James Page <james.page@ubuntu.com>,
 Thomas Goirand <zigo@debian.org>,
Build-Depends:
 debhelper (>= 9~),
 debhelper (>= 9),
 dh-python,
 dh-systemd (>= 1.5),
 erlang-dev,
 erlang-nox (>= 1:13.b.3),
 erlang-src (>= 1:13.b.3),
 git,
 elixir (>= 1.6.0),
 erlang-dev (>= 1:19.3),
 erlang-nox (>= 1:19.3),
 erlang-src (>= 1:19.3),
 python-all,
 python-simplejson,
 rsync,
 unzip,
 xmlto,
 xsltproc,
 zip,
Build-Depends-Indep:
 rsync,
Standards-Version: 4.1.0
Standards-Version: 4.2.1
Vcs-Browser: https://salsa.debian.org/openstack-team/third-party/rabbitmq-server
Vcs-Git: https://salsa.debian.org/openstack-team/third-party/rabbitmq-server.git
Homepage: http://www.rabbitmq.com/
@@ -30,9 +29,11 @@ Package: rabbitmq-server
Architecture: all
Depends:
 adduser,
 erlang-nox (>= 1:13.b.3) | esl-erlang,
 erlang-nox (>= 1:19.3) | esl-erlang (>= 1:19.3),
 init-system-helpers,
 logrotate,
 lsb-base,
 socat,
 ${misc:Depends},
 ${python:Depends},
Description: AMQP server written in Erlang
+1 −1
Original line number Diff line number Diff line
@@ -65,7 +65,7 @@ Copyright: (c) 2007-2013, GoPivotal, Inc.
           (c) 2008-2012, John Leuner <jewel@debian.org>
           (c) 2015, Antonio Terceiro <terceiro@debian.org>
           (c) 2014-2016, James Page <james.page@canonical.com>
           (c) 2014-2016, Thomas Goirand <zigo@debian.org>
           (c) 2014-2018, Thomas Goirand <zigo@debian.org>
License: MPL-1.1

License: Expat
+9 −3
Original line number Diff line number Diff line
@@ -3,12 +3,18 @@ Description=RabbitMQ Messaging Server
After=network.target

[Service]
Type=simple
Type=notify
User=rabbitmq
SyslogIdentifier=rabbitmq
Group=rabbitmq
UMask=0027
NotifyAccess=all
TimeoutStartSec=3600
LimitNOFILE=65536
SyslogIdentifier=rabbitmq
Restart=on-failure
RestartSec=10
WorkingDirectory=/var/lib/rabbitmq
ExecStart=/usr/sbin/rabbitmq-server
ExecStartPost=/usr/lib/rabbitmq/bin/rabbitmq-server-wait
ExecStop=/usr/sbin/rabbitmqctl stop

[Install]
+2 −1
Original line number Diff line number Diff line
@@ -2,13 +2,14 @@
# -*- makefile -*-

DEB_DESTDIR=debian/rabbitmq-server
VERSION = $(shell dpkg-parsechangelog | awk '/^Version:/ {version=$$0; sub(/Version: /, "", version); sub(/-.*/, "", version); print version;}')
VERSION = $(shell dpkg-parsechangelog -SVersion | sed -e 's/^[[:digit:]]*://' -e 's/[-].*//' -e 's/~/.0/' -e 's/+dfsg1//' | head -n 1)

%:
	dh $@ --parallel --with python2,systemd

override_dh_auto_clean:
	$(MAKE) clean distclean-manpages
	rm -rf .erlang.mk

override_dh_auto_build:
	$(MAKE) dist manpages