Package: release.debian.org Severity: normal User: release.debian....@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 <fladischermich...@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 <fladischermich...@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 <fladischermich...@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