From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 076BE139085 for ; Mon, 26 Dec 2016 16:05:15 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 23565E0BF9; Mon, 26 Dec 2016 16:05:14 +0000 (UTC) Received: from smtp.gentoo.org (mail.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id E1032E0BF9 for ; Mon, 26 Dec 2016 16:05:13 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 243F534105A for ; Mon, 26 Dec 2016 16:05:13 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 6A3A224C5 for ; Mon, 26 Dec 2016 16:05:11 +0000 (UTC) From: "Lars Wendler" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Lars Wendler" Message-ID: <1482768304.076cafffdbbb06c50da7ab174fbee4c6be05bcb0.polynomial-c@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-vcs/git/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-vcs/git/git-2.10.1.ebuild dev-vcs/git/git-2.10.2.ebuild dev-vcs/git/git-2.11.0.ebuild dev-vcs/git/git-2.11.0_rc2.ebuild X-VCS-Directories: dev-vcs/git/ X-VCS-Committer: polynomial-c X-VCS-Committer-Name: Lars Wendler X-VCS-Revision: 076cafffdbbb06c50da7ab174fbee4c6be05bcb0 X-VCS-Branch: master Date: Mon, 26 Dec 2016 16:05:11 +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: f32777a9-6a1f-4827-93fe-36dd4cf585f1 X-Archives-Hash: ba0f3cbfe5145922462cd53254f12cc3 commit: 076cafffdbbb06c50da7ab174fbee4c6be05bcb0 Author: Aric Belsito gmail com> AuthorDate: Sun Dec 25 17:47:52 2016 +0000 Commit: Lars Wendler gentoo org> CommitDate: Mon Dec 26 16:05:04 2016 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=076cafff dev-vcs/git: Fix build on musl 2.10.1+ introduce a configuration option which enables non-posix compatible regex by default, which breaks compilation on musl. Gentoo-Bug: https://bugs.gentoo.org/603710 Closes: https://github.com/gentoo/gentoo/pull/3237 dev-vcs/git/git-2.10.1.ebuild | 2 ++ dev-vcs/git/git-2.10.2.ebuild | 2 ++ dev-vcs/git/git-2.11.0.ebuild | 2 ++ dev-vcs/git/git-2.11.0_rc2.ebuild | 2 ++ 4 files changed, 8 insertions(+) diff --git a/dev-vcs/git/git-2.10.1.ebuild b/dev-vcs/git/git-2.10.1.ebuild index da2cc39..bf2f4b5 100644 --- a/dev-vcs/git/git-2.10.1.ebuild +++ b/dev-vcs/git/git-2.10.1.ebuild @@ -191,6 +191,8 @@ exportmakeopts() { || myopts+=" NO_PTHREADS=YesPlease" use cvs \ || myopts+=" NO_CVS=YesPlease" + use elibc_musl \ + && myopts+=" NO_REGEX=YesPlease" # Disabled until ~m68k-mint can be keyworded again # if [[ ${CHOST} == *-mint* ]] ; then # myopts+=" NO_MMAP=YesPlease" diff --git a/dev-vcs/git/git-2.10.2.ebuild b/dev-vcs/git/git-2.10.2.ebuild index f82defc..ffc7e53 100644 --- a/dev-vcs/git/git-2.10.2.ebuild +++ b/dev-vcs/git/git-2.10.2.ebuild @@ -191,6 +191,8 @@ exportmakeopts() { || myopts+=" NO_PTHREADS=YesPlease" use cvs \ || myopts+=" NO_CVS=YesPlease" + use elibc_musl \ + && myopts+=" NO_REGEX=YesPlease" # Disabled until ~m68k-mint can be keyworded again # if [[ ${CHOST} == *-mint* ]] ; then # myopts+=" NO_MMAP=YesPlease" diff --git a/dev-vcs/git/git-2.11.0.ebuild b/dev-vcs/git/git-2.11.0.ebuild index c4271de..82ef7b1 100644 --- a/dev-vcs/git/git-2.11.0.ebuild +++ b/dev-vcs/git/git-2.11.0.ebuild @@ -192,6 +192,8 @@ exportmakeopts() { || myopts+=" NO_PTHREADS=YesPlease" use cvs \ || myopts+=" NO_CVS=YesPlease" + use elibc_musl \ + && myopts+=" NO_REGEX=YesPlease" # Disabled until ~m68k-mint can be keyworded again # if [[ ${CHOST} == *-mint* ]] ; then # myopts+=" NO_MMAP=YesPlease" diff --git a/dev-vcs/git/git-2.11.0_rc2.ebuild b/dev-vcs/git/git-2.11.0_rc2.ebuild index c4271de..82ef7b1 100644 --- a/dev-vcs/git/git-2.11.0_rc2.ebuild +++ b/dev-vcs/git/git-2.11.0_rc2.ebuild @@ -192,6 +192,8 @@ exportmakeopts() { || myopts+=" NO_PTHREADS=YesPlease" use cvs \ || myopts+=" NO_CVS=YesPlease" + use elibc_musl \ + && myopts+=" NO_REGEX=YesPlease" # Disabled until ~m68k-mint can be keyworded again # if [[ ${CHOST} == *-mint* ]] ; then # myopts+=" NO_MMAP=YesPlease"