From d950fa39dbe16d164ed0cb8e3036fd5d0d896a4c Mon Sep 17 00:00:00 2001 From: V3n3RiX Date: Tue, 31 Oct 2017 15:47:53 +0000 Subject: gentoo resync : 31.10.2017 --- net-dns/pdns-recursor/files/pdns-recursor | 27 ---- .../pdns-recursor-4.0.3-boost-1.61-fcontext.patch | 152 --------------------- .../files/pdns-recursor-4.0.3-ecdsa.patch | 29 ---- 3 files changed, 208 deletions(-) delete mode 100644 net-dns/pdns-recursor/files/pdns-recursor delete mode 100644 net-dns/pdns-recursor/files/pdns-recursor-4.0.3-boost-1.61-fcontext.patch delete mode 100644 net-dns/pdns-recursor/files/pdns-recursor-4.0.3-ecdsa.patch (limited to 'net-dns/pdns-recursor/files') diff --git a/net-dns/pdns-recursor/files/pdns-recursor b/net-dns/pdns-recursor/files/pdns-recursor deleted file mode 100644 index ebff2b02b85f..000000000000 --- a/net-dns/pdns-recursor/files/pdns-recursor +++ /dev/null @@ -1,27 +0,0 @@ -#!/sbin/openrc-run -# Copyright 1999-2017 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 - -extra_started_commands="ping" - -depend() { - need net -} - -start() { - ebegin "Starting PowerDNS Recursor" - /usr/sbin/pdns_recursor --daemon=yes >/dev/null 2>&1 - eend $? -} - -stop() { - ebegin "Stopping PowerDNS Recursor" - /usr/bin/rec_control quit >/dev/null 2>&1 - eend $? -} - -ping() { - ebegin "Pinging PowerDNS Recursor" - /usr/bin/rec_control ping >/dev/null 2>&1 - eend $? -} diff --git a/net-dns/pdns-recursor/files/pdns-recursor-4.0.3-boost-1.61-fcontext.patch b/net-dns/pdns-recursor/files/pdns-recursor-4.0.3-boost-1.61-fcontext.patch deleted file mode 100644 index c6cd9a326311..000000000000 --- a/net-dns/pdns-recursor/files/pdns-recursor-4.0.3-boost-1.61-fcontext.patch +++ /dev/null @@ -1,152 +0,0 @@ -diff --git a/mtasker_fcontext.cc b/mtasker_fcontext.cc -index bc37e76..8d96fa1 100644 ---- a/mtasker_fcontext.cc -+++ b/mtasker_fcontext.cc -@@ -23,14 +23,15 @@ - #include - #include - #include --#if BOOST_VERSION > 106100 --#include --#else --#include --#endif - #include -- -+#if BOOST_VERSION < 106100 -+#include - using boost::context::make_fcontext; -+#else -+#include -+using boost::context::detail::make_fcontext; -+#endif /* BOOST_VERSION < 106100 */ -+ - - #if BOOST_VERSION < 105600 - /* Note: This typedef means functions taking fcontext_t*, like jump_fcontext(), -@@ -61,8 +62,15 @@ jump_fcontext (fcontext_t* const ofc, fcontext_t const nfc, - } - } - #else -+ -+#if BOOST_VERSION < 106100 - using boost::context::fcontext_t; - using boost::context::jump_fcontext; -+#else -+using boost::context::detail::fcontext_t; -+using boost::context::detail::jump_fcontext; -+using boost::context::detail::transfer_t; -+#endif /* BOOST_VERSION < 106100 */ - - static_assert (std::is_pointer::value, - "Boost Context has changed the fcontext_t type again :-("); -@@ -72,7 +80,9 @@ static_assert (std::is_pointer::value, - * jump. args_t simply provides a way to pass more by reference. - */ - struct args_t { -+#if BOOST_VERSION < 106100 - fcontext_t prev_ctx = nullptr; -+#endif - pdns_ucontext_t* self = nullptr; - boost::function* work = nullptr; - }; -@@ -80,7 +90,11 @@ struct args_t { - extern "C" { - static - void -+#if BOOST_VERSION < 106100 - threadWrapper (intptr_t const xargs) { -+#else -+threadWrapper (transfer_t const t) { -+#endif - /* Access the args passed from pdns_makecontext, and copy them directly from - * the calling stack on to ours (we're now using the MThreads stack). - * This saves heap allocating an args object, at the cost of an extra -@@ -90,11 +104,28 @@ threadWrapper (intptr_t const xargs) { - * the behaviour of the System V implementation, which can inherently only - * be passed ints and pointers. - */ -+#if BOOST_VERSION < 106100 - auto args = reinterpret_cast(xargs); -+#else -+ auto args = reinterpret_cast(t.data); -+#endif - auto ctx = args->self; - auto work = args->work; -+ /* we switch back to pdns_makecontext() */ -+#if BOOST_VERSION < 106100 - jump_fcontext (reinterpret_cast(&ctx->uc_mcontext), - static_cast(args->prev_ctx), 0); -+#else -+ transfer_t res = jump_fcontext (t.fctx, 0); -+ /* we got switched back from pdns_swapcontext() */ -+ if (res.data) { -+ /* if res.data is not a nullptr, it holds a pointer to the context -+ we just switched from, and we need to fill it to be able to -+ switch back to it later. */ -+ fcontext_t* ptr = static_cast(res.data); -+ *ptr = res.fctx; -+ } -+#endif - args = nullptr; - - try { -@@ -106,9 +137,14 @@ threadWrapper (intptr_t const xargs) { - - /* Emulate the System V uc_link feature. */ - auto const next_ctx = ctx->uc_link->uc_mcontext; -+#if BOOST_VERSION < 106100 - jump_fcontext (reinterpret_cast(&ctx->uc_mcontext), - static_cast(next_ctx), - static_cast(ctx->exception)); -+#else -+ jump_fcontext (static_cast(next_ctx), 0); -+#endif -+ - #ifdef NDEBUG - __builtin_unreachable(); - #endif -@@ -129,10 +165,27 @@ pdns_ucontext_t::~pdns_ucontext_t - void - pdns_swapcontext - (pdns_ucontext_t& __restrict octx, pdns_ucontext_t const& __restrict ctx) { -+ /* we either switch back to threadwrapper() if it's the first time, -+ or we switch back to pdns_swapcontext(), -+ in both case we will be returning from a call to jump_fcontext(). */ -+#if BOOST_VERSION < 106100 - if (jump_fcontext (reinterpret_cast(&octx.uc_mcontext), - static_cast(ctx.uc_mcontext), 0)) { - std::rethrow_exception (ctx.exception); - } -+#else -+ transfer_t res = jump_fcontext (static_cast(ctx.uc_mcontext), &octx.uc_mcontext); -+ if (res.data) { -+ /* if res.data is not a nullptr, it holds a pointer to the context -+ we just switched from, and we need to fill it to be able to -+ switch back to it later. */ -+ fcontext_t* ptr = static_cast(res.data); -+ *ptr = res.fctx; -+ } -+ if (ctx.exception) { -+ std::rethrow_exception (ctx.exception); -+ } -+#endif - } - - void -@@ -146,7 +199,15 @@ pdns_makecontext - args_t args; - args.self = &ctx; - args.work = &start; -+ /* jumping to threadwrapper */ -+#if BOOST_VERSION < 106100 - jump_fcontext (reinterpret_cast(&args.prev_ctx), - static_cast(ctx.uc_mcontext), - reinterpret_cast(&args)); -+#else -+ transfer_t res = jump_fcontext (static_cast(ctx.uc_mcontext), -+ &args); -+ /* back from threadwrapper, updating the context */ -+ ctx.uc_mcontext = res.fctx; -+#endif - } diff --git a/net-dns/pdns-recursor/files/pdns-recursor-4.0.3-ecdsa.patch b/net-dns/pdns-recursor/files/pdns-recursor-4.0.3-ecdsa.patch deleted file mode 100644 index 52826c9617af..000000000000 --- a/net-dns/pdns-recursor/files/pdns-recursor-4.0.3-ecdsa.patch +++ /dev/null @@ -1,29 +0,0 @@ -commit 3d59c6f7d83f54d5c73013de5ab61e9a0ecd1460 -Author: Remi Gacogne -Date: Mon Oct 17 10:07:26 2016 +0200 - - Fix building with ECDSA support disabled in libcrypto - - (cherry picked from commit aa74d164ae29269168d048d2cc8d7e1f984774c4) - -diff --git a/opensslsigners.cc b/opensslsigners.cc -index 9e919a0..acf8f08 100644 ---- a/opensslsigners.cc -+++ b/opensslsigners.cc -@@ -128,6 +128,7 @@ static inline int RSA_set0_crt_params(RSA* rsakey, BIGNUM* dmp1, BIGNUM* dmq1, B - return 1; - } - -+#ifdef HAVE_LIBCRYPTO_ECDSA - static inline void ECDSA_SIG_get0(const ECDSA_SIG* signature, const BIGNUM** pr, const BIGNUM** ps) { - *pr = signature->r; - *ps = signature->s; -@@ -140,6 +141,8 @@ static inline int ECDSA_SIG_set0(ECDSA_SIG* signature, BIGNUM* pr, BIGNUM* ps) { - signature->s = ps; - return 1; - } -+#endif /* HAVE_LIBCRYPTO_ECDSA */ -+ - #else - void openssl_thread_setup() {} - void openssl_thread_cleanup() {} -- cgit v1.2.3