[Date Prev][Date Next] [Thread Prev][Thread Next] [Date Index] [Thread Index]

Bug#769637: marked as done (unblock: librabbitmq/0.5.2-2)



Your message dated Sat, 15 Nov 2014 12:42:50 +0100
with message-id <54673C3A.9020301@thykier.net>
and subject line Re: Bug#769637: unblock: librabbitmq/0.5.2-2
has caused the Debian Bug report #769637,
regarding unblock: librabbitmq/0.5.2-2
to be marked as done.

This means that you claim that the problem has been dealt with.
If this is not the case it is now your responsibility to reopen the
Bug report if necessary, and/or fix the problem forthwith.

(NB: If you are a system administrator and have no idea what this
message is talking about, this may indicate a serious mail system
misconfiguration somewhere. Please contact owner@bugs.debian.org
immediately.)


-- 
769637: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=769637
Debian Bug Tracking System
Contact owner@bugs.debian.org with problems
--- Begin Message ---
Package: release.debian.org
Severity: normal
User: release.debian.org@packages.debian.org
Usertags: unblock

-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA512

Please unblock package librabbitmq

The binaries in amqp-tools are designed to support encrypted communication, but
due to a faulty cmake configuration it was not enabled at build time (see
#764080). This is fixed by this already upstreamed patch.

The full changelog entry for this upload is:

librabbitmq (0.5.2-2) unstable; urgency=medium

  * Add patch to enable SSL for tools (Closes: #764080).

 -- Michael Fladischer <FladischerMichael@fladi.at>  Fri, 17 Oct 2014 08:11:08 +0200

The full debdiff is attached.

unblock librabbitmq/0.5.2-2

- -- System Information:
Debian Release: jessie/sid
  APT prefers unstable
  APT policy: (500, 'unstable'), (1, 'experimental')
Architecture: amd64 (x86_64)

Kernel: Linux 3.16.0-4-amd64 (SMP w/1 CPU core)
Locale: LANG=en_DK.UTF-8, LC_CTYPE=en_DK.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/dash

-----BEGIN PGP SIGNATURE-----
Version: GnuPG v1

iQIcBAEBCgAGBQJUZxi5AAoJEGlMre9Rx7W2RK4QAJQ6qK28lt2iTedvTZPklxgn
ZYVbYgF2re9cDrlapzmJunC6QUXw2PNpoAZugK4NtqQchWNsHjyrAlao5B1Hrvp9
3Gd8CTg64J33aOL2dbT00pPtfa432GAfqYtIwVwEv4Rls0p8b1oBn56oEi/RaPz/
zaHU0hTRqRRicdIP9h3s5GSGziM7/hXHjvyjn1ytNE+KQKhuh/z9FjOgzWafVt8q
5KwRf3sNHQE5jD84F7HnmiBMypbZRv23tmDYdVD4uCHaRZ1eQGXQVPi4aOiAKkDX
VrbfquaMmf0Ia3XiYhMA1xuaIiLBQPNGgausddzuJmPoLwb4qre8EdOFJNF+wX72
CMbWpHRbydeoMhhAYj9Noo3wf564+I/KpnPEqP7pvo7oWPS1M5Y1x9qpnFmZNxuW
H5O0KkbszmGrW4QoDLEiro++ZduJOEhB/jKJkua3o62B7FyI8mRzZ9wEDsrQXiVQ
HvEujL8h49MpCIFwjXIPiWY1TJ2wU02wXNeOGn9KMNYTGKenaxCaKTh27nRCBvwU
MxSSGSKyP0chUymcPGH21yqIS9FEUSyLjPDra6SWrtPHFojd73xhZxGThcUkRFQY
X98qv6ucG/l6ozhhqIYk39P0JUghTY/oBcYTVduub62AJ1ZLkOUkS3PkdtolxITe
PawW/XqOIR+4uzpjraru
=ksGh
-----END PGP SIGNATURE-----
diff -Nru librabbitmq-0.5.2/debian/changelog librabbitmq-0.5.2/debian/changelog
--- librabbitmq-0.5.2/debian/changelog	2014-09-16 14:02:48.000000000 +0200
+++ librabbitmq-0.5.2/debian/changelog	2014-11-13 21:49:24.000000000 +0100
@@ -1,3 +1,9 @@
+librabbitmq (0.5.2-2) unstable; urgency=medium
+
+  * Add patch to enable SSL for tools (Closes: #764080).
+
+ -- Michael Fladischer <FladischerMichael@fladi.at>  Fri, 17 Oct 2014 08:11:08 +0200
+
 librabbitmq (0.5.2-1) unstable; urgency=medium
 
   * New upstream release (Closes: #761655).
diff -Nru librabbitmq-0.5.2/debian/patches/cmake_with_ssl.patch librabbitmq-0.5.2/debian/patches/cmake_with_ssl.patch
--- librabbitmq-0.5.2/debian/patches/cmake_with_ssl.patch	1970-01-01 01:00:00.000000000 +0100
+++ librabbitmq-0.5.2/debian/patches/cmake_with_ssl.patch	2014-11-13 21:49:24.000000000 +0100
@@ -0,0 +1,21 @@
+Description: Enable SSL support for tools.
+ Add WITH_SSL preprocessor macro it SSL support is enabled. Otherwise tools
+ would abort it they see an SSL URL.
+Author: Michael Fladischer <FladischerMichael@fladi.at>
+Last-Update: 2014-10-17
+Bug-Debian: https://bugs.debian.org/764080
+Forwarded: https://github.com/alanxz/rabbitmq-c/pull/220
+
+--- a/tools/CMakeLists.txt
++++ b/tools/CMakeLists.txt
+@@ -72,6 +72,10 @@
+   endif(XMLTO_FOUND)
+ endif()
+ 
++if (ENABLE_SSL_SUPPORT)
++  add_definitions(-DWITH_SSL=1)
++endif()
++
+ install(TARGETS amqp-publish amqp-get amqp-consume amqp-declare-queue amqp-delete-queue
+ 	RUNTIME DESTINATION bin
+ 	LIBRARY DESTINATION lib
diff -Nru librabbitmq-0.5.2/debian/patches/series librabbitmq-0.5.2/debian/patches/series
--- librabbitmq-0.5.2/debian/patches/series	2014-09-16 14:02:48.000000000 +0200
+++ librabbitmq-0.5.2/debian/patches/series	2014-11-13 21:49:24.000000000 +0100
@@ -1 +1,2 @@
+cmake_with_ssl.patch
 use_cmake_package.patch

--- End Message ---
--- Begin Message ---
On 2014-11-15 10:11, Michael Fladischer wrote:
> Package: release.debian.org
> Severity: normal
> User: release.debian.org@packages.debian.org
> Usertags: unblock
> 
> Please unblock package librabbitmq
> 
> The binaries in amqp-tools are designed to support encrypted communication, but
> due to a faulty cmake configuration it was not enabled at build time (see
> #764080). This is fixed by this already upstreamed patch.
> 
> The full changelog entry for this upload is:
> 
> [...]
> 
> The full debdiff is attached.
> 
> unblock librabbitmq/0.5.2-2
> 
> [...]

Unblocked (by pkern), thanks.

~Niels

--- End Message ---

Reply to: