From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) by finch.gentoo.org (Postfix) with ESMTP id 014231388C0 for ; Thu, 25 Feb 2016 01:41:55 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 21023E07FC; Thu, 25 Feb 2016 01:41:49 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id B0100E07FC for ; Thu, 25 Feb 2016 01:41:48 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 85B2B340E42 for ; Thu, 25 Feb 2016 01:41:47 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id DCE79208F for ; Thu, 25 Feb 2016 01:41:43 +0000 (UTC) From: "Anthony G. Basile" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Anthony G. Basile" Message-ID: <1456365088.f9409795d6f1c3b475bbb5cd0c69c262cd3b26fb.blueness@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: net-dns/c-ares/files/, net-dns/c-ares/ X-VCS-Repository: repo/gentoo X-VCS-Files: net-dns/c-ares/c-ares-1.11.0.ebuild net-dns/c-ares/files/remove-tests.patch X-VCS-Directories: net-dns/c-ares/ net-dns/c-ares/files/ X-VCS-Committer: blueness X-VCS-Committer-Name: Anthony G. Basile X-VCS-Revision: f9409795d6f1c3b475bbb5cd0c69c262cd3b26fb X-VCS-Branch: master Date: Thu, 25 Feb 2016 01:41:43 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Archives-Salt: 5c71e131-fa61-4fe9-80d2-55cbb6de9822 X-Archives-Hash: 372fcc790cf8796942a4304362196e44 commit: f9409795d6f1c3b475bbb5cd0c69c262cd3b26fb Author: Anthony G. Basile gentoo org> AuthorDate: Thu Feb 25 01:50:59 2016 +0000 Commit: Anthony G. Basile gentoo org> CommitDate: Thu Feb 25 01:51:28 2016 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f9409795 net-dns/c-ares: disable test, bug #575470 Package-Manager: portage-2.2.26 net-dns/c-ares/c-ares-1.11.0.ebuild | 7 ++++++- net-dns/c-ares/files/remove-tests.patch | 14 ++++++++++++++ 2 files changed, 20 insertions(+), 1 deletion(-) diff --git a/net-dns/c-ares/c-ares-1.11.0.ebuild b/net-dns/c-ares/c-ares-1.11.0.ebuild index 374cbc8..64f8bc8 100644 --- a/net-dns/c-ares/c-ares-1.11.0.ebuild +++ b/net-dns/c-ares/c-ares-1.11.0.ebuild @@ -4,7 +4,7 @@ EAPI=5 -inherit eutils multilib-minimal +inherit autotools eutils multilib-minimal DESCRIPTION="C library that resolves names asynchronously" HOMEPAGE="http://c-ares.haxx.se/" @@ -23,6 +23,11 @@ MULTILIB_WRAPPED_HEADERS=( /usr/include/ares_build.h ) +src_prepare() { + epatch "${FILESDIR}"/remove-tests.patch + eautoreconf +} + multilib_src_configure() { ECONF_SOURCE=${S} \ econf \ diff --git a/net-dns/c-ares/files/remove-tests.patch b/net-dns/c-ares/files/remove-tests.patch new file mode 100644 index 0000000..6b4ce0a --- /dev/null +++ b/net-dns/c-ares/files/remove-tests.patch @@ -0,0 +1,14 @@ +diff -Naur c-ares-1.11.0.orig/configure.ac c-ares-1.11.0/configure.ac +--- c-ares-1.11.0.orig/configure.ac 2016-02-19 09:09:13.000000000 +0000 ++++ c-ares-1.11.0/configure.ac 2016-02-25 01:26:53.092956316 +0000 +@@ -877,10 +877,6 @@ + + XC_CHECK_BUILD_FLAGS + +-if test "x$cross_compiling" = "xno"; then +- AC_CONFIG_SUBDIRS([test]) +-fi +- + AC_CONFIG_FILES([Makefile libcares.pc]) + AC_OUTPUT + XC_AMEND_DISTCLEAN(['.'])