diff options
author | Sergei Trofimovich <slyfox@gentoo.org> | 2020-03-01 20:25:04 +0000 |
---|---|---|
committer | Sergei Trofimovich <slyfox@gentoo.org> | 2020-03-01 20:39:52 +0000 |
commit | 5611be3c721cc728c358b353c1041586ae337ecb (patch) | |
tree | b4ac5878dc4139ffaee4adbacb94c6ef3beec881 /dev-libs/mpc | |
parent | app-admin/supervisor: remove unused files (diff) | |
download | gentoo-5611be3c721cc728c358b353c1041586ae337ecb.tar.gz gentoo-5611be3c721cc728c358b353c1041586ae337ecb.tar.bz2 gentoo-5611be3c721cc728c358b353c1041586ae337ecb.zip |
dev-libs/mpc: drop old
Package-Manager: Portage-2.3.88, Repoman-2.3.20
Signed-off-by: Sergei Trofimovich <slyfox@gentoo.org>
Diffstat (limited to 'dev-libs/mpc')
-rw-r--r-- | dev-libs/mpc/Manifest | 1 | ||||
-rw-r--r-- | dev-libs/mpc/files/mpc-1.0.3-mpfr-4.0.0.patch | 129 | ||||
-rw-r--r-- | dev-libs/mpc/files/mpc-1.0.3-no-ulp.patch | 25 | ||||
-rw-r--r-- | dev-libs/mpc/mpc-1.0.3-r2.ebuild | 39 | ||||
-rw-r--r-- | dev-libs/mpc/mpc-1.0.3.ebuild | 33 |
5 files changed, 0 insertions, 227 deletions
diff --git a/dev-libs/mpc/Manifest b/dev-libs/mpc/Manifest index f0edc3d40fbd..77c563eae9d0 100644 --- a/dev-libs/mpc/Manifest +++ b/dev-libs/mpc/Manifest @@ -1,2 +1 @@ -DIST mpc-1.0.3.tar.gz 669925 BLAKE2B 4b5a1db5220b58070f9356041f44f021c2c9ec46aa4303d0a31e809d649897bc3547e9b06271dae4e80be569ee67e2a84f86b662e05dac0ca36ff87e95fcbd62 SHA512 0028b76df130720c1fad7de937a0d041224806ce5ef76589f19c7b49d956071a683e2f20d154c192a231e69756b19e48208f2889b0c13950ceb7b3cfaf059a43 DIST mpc-1.1.0.tar.gz 701263 BLAKE2B afd9fefe687b7cd3c3a483e183f366348e34f58f5d713e2f6b38da16e2e382248b446d9da01ea89fe7202b795b08929b7c42c89c2c1e9a57482faf01ee697beb SHA512 72d657958b07c7812dc9c7cbae093118ce0e454c68a585bfb0e2fa559f1bf7c5f49b93906f580ab3f1073e5b595d23c6494d4d76b765d16dde857a18dd239628 diff --git a/dev-libs/mpc/files/mpc-1.0.3-mpfr-4.0.0.patch b/dev-libs/mpc/files/mpc-1.0.3-mpfr-4.0.0.patch deleted file mode 100644 index 3a62d9bd20a3..000000000000 --- a/dev-libs/mpc/files/mpc-1.0.3-mpfr-4.0.0.patch +++ /dev/null @@ -1,129 +0,0 @@ -https://bugs.gentoo.org/642300 - -From 36a84f43f326de14db888ba07936cc9621c23f19 Mon Sep 17 00:00:00 2001 -From: Paul Zimmermann <Paul.Zimmermann@inria.fr> -Date: Sun, 10 Jan 2016 23:19:37 +0100 -Subject: [PATCH] use mpfr_fmma and mpfr_fmms if provided by mpfr - ---- - configure.ac | 16 ++++++++++++++++ - src/mul.c | 15 ++++++++++++--- - 2 files changed, 28 insertions(+), 3 deletions(-) - -diff --git a/configure.ac b/configure.ac -index b6fa199..bdb21ff 100644 ---- a/configure.ac -+++ b/configure.ac -@@ -165,6 +165,22 @@ AC_LINK_IFELSE( - AC_MSG_ERROR([libmpfr not found or uses a different ABI (including static vs shared).]) - ]) - -+AC_MSG_CHECKING(for mpfr_fmma) -+LIBS="-lmpfr $LIBS" -+AC_LINK_IFELSE( -+ [AC_LANG_PROGRAM( -+ [[#include "mpfr.h"]], -+ [[mpfr_t x; mpfr_fmma (x, x, x, x, x, 0);]] -+ )], -+ [ -+ AC_MSG_RESULT(yes) -+ AC_DEFINE(HAVE_MPFR_FMMA, 1, [mpfr_fmma is present]) -+ ], -+ [ -+ AC_MSG_RESULT(no) -+ AC_DEFINE(HAVE_MPFR_FMMA, 0, [mpfr_fmma is not present]) -+ ]) -+ - # Check for a recent GMP - # We only guarantee that with a *functional* and recent enough GMP version, - # MPC will compile; we do not guarantee that GMP will compile. -diff --git a/src/mul.c b/src/mul.c -index 3c9c0a7..8c4afe4 100644 ---- a/src/mul.c -+++ b/src/mul.c -@@ -171,8 +171,9 @@ - } - - -+#if HAVE_MPFR_FMMA == 0 - static int --mpfr_fmma (mpfr_ptr z, mpfr_srcptr a, mpfr_srcptr b, mpfr_srcptr c, -+mpc_fmma (mpfr_ptr z, mpfr_srcptr a, mpfr_srcptr b, mpfr_srcptr c, - mpfr_srcptr d, int sign, mpfr_rnd_t rnd) - { - /* Computes z = ab+cd if sign >= 0, or z = ab-cd if sign < 0. -@@ -319,6 +320,7 @@ - - return inex; - } -+#endif - - - int -@@ -337,10 +339,17 @@ - else - rop [0] = z [0]; - -- inex = MPC_INEX (mpfr_fmma (mpc_realref (rop), mpc_realref (x), mpc_realref (y), mpc_imagref (x), -- mpc_imagref (y), -1, MPC_RND_RE (rnd)), -+#if HAVE_MPFR_FMMA -+ inex = MPC_INEX (mpfr_fmms (mpc_realref (rop), mpc_realref (x), mpc_realref (y), mpc_imagref (x), -+ mpc_imagref (y), MPC_RND_RE (rnd)), - mpfr_fmma (mpc_imagref (rop), mpc_realref (x), mpc_imagref (y), mpc_imagref (x), -+ mpc_realref (y), MPC_RND_IM (rnd))); -+#else -+ inex = MPC_INEX (mpc_fmma (mpc_realref (rop), mpc_realref (x), mpc_realref (y), mpc_imagref (x), -+ mpc_imagref (y), -1, MPC_RND_RE (rnd)), -+ mpc_fmma (mpc_imagref (rop), mpc_realref (x), mpc_imagref (y), mpc_imagref (x), - mpc_realref (y), +1, MPC_RND_IM (rnd))); -+#endif - - mpc_set (z, rop, MPC_RNDNN); - if (overlap) ---- a/configure -+++ b/configure -@@ -13835,6 +13835,41 @@ else - $as_echo "no" >&6; } - as_fn_error $? "libmpfr not found or uses a different ABI (including static vs shared)." "$LINENO" 5 - -+fi -+rm -f core conftest.err conftest.$ac_objext \ -+ conftest$ac_exeext conftest.$ac_ext -+ -+{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for mpfr_fmma" >&5 -+$as_echo_n "checking for mpfr_fmma... " >&6; } -+LIBS="-lmpfr $LIBS" -+cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#include "mpfr.h" -+int -+main () -+{ -+mpfr_t x; mpfr_fmma (x, x, x, x, x, 0); -+ -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_c_try_link "$LINENO"; then : -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5 -+$as_echo "yes" >&6; } -+ -+$as_echo "#define HAVE_MPFR_FMMA 1" >>confdefs.h -+ -+ -+else -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 -+$as_echo "no" >&6; } -+ -+$as_echo "#define HAVE_MPFR_FMMA 0" >>confdefs.h -+ -+ - fi - rm -f core conftest.err conftest.$ac_objext \ - conftest$ac_exeext conftest.$ac_ext --- -2.15.1 - diff --git a/dev-libs/mpc/files/mpc-1.0.3-no-ulp.patch b/dev-libs/mpc/files/mpc-1.0.3-no-ulp.patch deleted file mode 100644 index 445e94191030..000000000000 --- a/dev-libs/mpc/files/mpc-1.0.3-no-ulp.patch +++ /dev/null @@ -1,25 +0,0 @@ -mpfr-4.0.0 removed 'mpfr_add_one_ulp' and 'mpfr_sub_one_ulp' - -From 5eaa17651b759c7856a118835802fecbebcf46ad Mon Sep 17 00:00:00 2001 -From: Paul Zimmermann <Paul.Zimmermann@inria.fr> -Date: Wed, 4 Oct 2017 22:09:40 +0200 -Subject: [PATCH] replace obsolete mpfr_add_one_ulp/mpfr_sub_one_ulp functions - ---- - src/mpc-impl.h | 6 ++++-- - 1 file changed, 4 insertions(+), 2 deletions(-) - -diff --git a/src/mpc-impl.h b/src/mpc-impl.h -index 4026765..5420691 100644 ---- a/src/mpc-impl.h -+++ b/src/mpc-impl.h -@@ -60,2 +60,4 @@ along with this program. If not, see http://www.gnu.org/licenses/ . --#define MPFR_ADD_ONE_ULP(x) mpfr_add_one_ulp (x, GMP_RNDN) --#define MPFR_SUB_ONE_ULP(x) mpfr_sub_one_ulp (x, GMP_RNDN) -+#define MPFR_ADD_ONE_ULP(x) \ -+ (mpfr_sgn (x) > 0 ? mpfr_nextabove (x) : mpfr_nextbelow (x)) -+#define MPFR_SUB_ONE_ULP(x) \ -+ (mpfr_sgn (x) > 0 ? mpfr_nextbelow (x) : mpfr_nextabove (x)) --- -2.15.1 - diff --git a/dev-libs/mpc/mpc-1.0.3-r2.ebuild b/dev-libs/mpc/mpc-1.0.3-r2.ebuild deleted file mode 100644 index 45deed7ff1e4..000000000000 --- a/dev-libs/mpc/mpc-1.0.3-r2.ebuild +++ /dev/null @@ -1,39 +0,0 @@ -# Copyright 1999-2020 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=6 - -inherit eutils libtool ltprune multilib-minimal - -DESCRIPTION="A library for multiprecision complex arithmetic with exact rounding" -HOMEPAGE="http://mpc.multiprecision.org/" -SRC_URI="mirror://gnu/${PN}/${P}.tar.gz" - -LICENSE="LGPL-2.1" -SLOT="0/3" -KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~ppc-aix ~x64-cygwin ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~m68k-mint ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris" -IUSE="static-libs" - -DEPEND=">=dev-libs/gmp-4.3.2:0=[${MULTILIB_USEDEP},static-libs?] - >=dev-libs/mpfr-2.4.2:0=[${MULTILIB_USEDEP},static-libs?]" -RDEPEND="${DEPEND}" - -PATCHES=( - "${FILESDIR}"/${P}-mpfr-4.0.0.patch - "${FILESDIR}"/${P}-no-ulp.patch -) - -src_prepare() { - default - - elibtoolize #347317 -} - -multilib_src_configure() { - ECONF_SOURCE=${S} econf $(use_enable static-libs static) -} - -multilib_src_install_all() { - einstalldocs - prune_libtool_files -} diff --git a/dev-libs/mpc/mpc-1.0.3.ebuild b/dev-libs/mpc/mpc-1.0.3.ebuild deleted file mode 100644 index 7219b4326772..000000000000 --- a/dev-libs/mpc/mpc-1.0.3.ebuild +++ /dev/null @@ -1,33 +0,0 @@ -# Copyright 1999-2020 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI="4" - -inherit eutils libtool ltprune multilib-minimal - -DESCRIPTION="A library for multiprecision complex arithmetic with exact rounding" -HOMEPAGE="http://mpc.multiprecision.org/" -SRC_URI="mirror://gnu/${PN}/${P}.tar.gz" - -LICENSE="LGPL-2.1" -SLOT="0" -KEYWORDS="~alpha amd64 arm arm64 hppa ia64 m68k ~mips ppc ppc64 s390 sh sparc x86 ~ppc-aix ~x64-cygwin ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~m68k-mint ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris" -IUSE="static-libs" - -DEPEND=">=dev-libs/gmp-4.3.2[${MULTILIB_USEDEP},static-libs?] - >=dev-libs/mpfr-2.4.2[${MULTILIB_USEDEP},static-libs?] - <dev-libs/mpfr-4.0.0" -RDEPEND="${DEPEND}" - -src_prepare() { - elibtoolize #347317 -} - -multilib_src_configure() { - ECONF_SOURCE=${S} econf $(use_enable static-libs static) -} - -multilib_src_install_all() { - einstalldocs - prune_libtool_files -} |