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 C32CC138334 for ; Sat, 8 Sep 2018 11:30:50 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id BC065E0878; Sat, 8 Sep 2018 11:30:49 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 93A05E0878 for ; Sat, 8 Sep 2018 11:30:49 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 2EA2A335D4D for ; Sat, 8 Sep 2018 11:30:48 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 902D53AD for ; Sat, 8 Sep 2018 11:30:45 +0000 (UTC) From: "Jeroen Roovers" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Jeroen Roovers" Message-ID: <1536406241.97af34fac31a8106b199b468309c22d797fbbbc1.jer@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-libs/xxhash/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-libs/xxhash/xxhash-0.6.5.ebuild X-VCS-Directories: dev-libs/xxhash/ X-VCS-Committer: jer X-VCS-Committer-Name: Jeroen Roovers X-VCS-Revision: 97af34fac31a8106b199b468309c22d797fbbbc1 X-VCS-Branch: master Date: Sat, 8 Sep 2018 11:30:45 +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: 40eb136e-a68f-46a9-8729-a1981c1a63b3 X-Archives-Hash: aec788dde0c867cce09b3eb71dbe4fa9 commit: 97af34fac31a8106b199b468309c22d797fbbbc1 Author: Jeroen Roovers gentoo org> AuthorDate: Sat Sep 8 11:30:05 2018 +0000 Commit: Jeroen Roovers gentoo org> CommitDate: Sat Sep 8 11:30:41 2018 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=97af34fa dev-libs/xxhash: Mark ~hppa too. Package-Manager: Portage-2.3.49, Repoman-2.3.10 RepoMan-Options: --ignore-arches dev-libs/xxhash/xxhash-0.6.5.ebuild | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/dev-libs/xxhash/xxhash-0.6.5.ebuild b/dev-libs/xxhash/xxhash-0.6.5.ebuild index 2b31be40a06..f23c18c478a 100644 --- a/dev-libs/xxhash/xxhash-0.6.5.ebuild +++ b/dev-libs/xxhash/xxhash-0.6.5.ebuild @@ -2,8 +2,7 @@ # Distributed under the terms of the GNU General Public License v2 EAPI=6 - -inherit toolchain-funcs +inherit flag-o-matic toolchain-funcs DESCRIPTION="Extremely fast non-cryptographic hash algorithm" HOMEPAGE="http://www.xxhash.com" @@ -11,13 +10,17 @@ SRC_URI="https://github.com/Cyan4973/xxHash/archive/v${PV}.tar.gz -> ${P}.tar.gz LICENSE="BSD-2 GPL-2+" SLOT="0" -KEYWORDS="~amd64 ~ia64 ~ppc ~ppc64 ~x86 ~amd64-fbsd ~x64-macos" +KEYWORDS="~amd64 ~hppa ~ia64 ~ppc ~ppc64 ~x86 ~amd64-fbsd ~x64-macos" IUSE="static-libs" DEPEND="" S="${WORKDIR}/xxHash-${PV}" +src_configure() { + use hppa && replace-flags '-O*' '-O0' +} + src_compile() { PREFIX="${EPREFIX}/usr" \ LIBDIR="${EPREFIX}/usr/$(get_libdir)" \