From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: <gentoo-commits+bounces-1137892-garchives=archives.gentoo.org@lists.gentoo.org> 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 4EF87138350 for <garchives@archives.gentoo.org>; Tue, 14 Jan 2020 09:21:13 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 534D2E08D9; Tue, 14 Jan 2020 09:21:12 +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 30DB1E08D9 for <gentoo-commits@lists.gentoo.org>; Tue, 14 Jan 2020 09:21:12 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (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 AD30834E084 for <gentoo-commits@lists.gentoo.org>; Tue, 14 Jan 2020 09:21:10 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 23E0D2A for <gentoo-commits@lists.gentoo.org>; Tue, 14 Jan 2020 09:21:08 +0000 (UTC) From: "Lars Wendler" <polynomial-c@gentoo.org> 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" <polynomial-c@gentoo.org> Message-ID: <1578993661.af921aeec86e284b92c3a3942a936d7ac13283cc.polynomial-c@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: media-libs/harfbuzz/ X-VCS-Repository: repo/gentoo X-VCS-Files: media-libs/harfbuzz/harfbuzz-2.6.4.ebuild media-libs/harfbuzz/harfbuzz-9999.ebuild X-VCS-Directories: media-libs/harfbuzz/ X-VCS-Committer: polynomial-c X-VCS-Committer-Name: Lars Wendler X-VCS-Revision: af921aeec86e284b92c3a3942a936d7ac13283cc X-VCS-Branch: master Date: Tue, 14 Jan 2020 09:21:08 +0000 (UTC) Precedence: bulk List-Post: <mailto:gentoo-commits@lists.gentoo.org> List-Help: <mailto:gentoo-commits+help@lists.gentoo.org> List-Unsubscribe: <mailto:gentoo-commits+unsubscribe@lists.gentoo.org> List-Subscribe: <mailto:gentoo-commits+subscribe@lists.gentoo.org> List-Id: Gentoo Linux mail <gentoo-commits.gentoo.org> X-BeenThere: gentoo-commits@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: fb1aaa29-8a75-439c-8b49-a20a65ab890d X-Archives-Hash: acc0343f8748c96517b6fb7b659a49e0 commit: af921aeec86e284b92c3a3942a936d7ac13283cc Author: Lars Wendler <polynomial-c <AT> gentoo <DOT> org> AuthorDate: Tue Jan 14 09:20:45 2020 +0000 Commit: Lars Wendler <polynomial-c <AT> gentoo <DOT> org> CommitDate: Tue Jan 14 09:21:01 2020 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=af921aee media-libs/harfbuzz: Allow python3 for tests as well Closes: https://bugs.gentoo.org/705378 Package-Manager: Portage-2.3.84, Repoman-2.3.20 Signed-off-by: Lars Wendler <polynomial-c <AT> gentoo.org> media-libs/harfbuzz/harfbuzz-2.6.4.ebuild | 4 ++-- media-libs/harfbuzz/harfbuzz-9999.ebuild | 6 +++--- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/media-libs/harfbuzz/harfbuzz-2.6.4.ebuild b/media-libs/harfbuzz/harfbuzz-2.6.4.ebuild index 37dcf3fee8a..ba83033526e 100644 --- a/media-libs/harfbuzz/harfbuzz-2.6.4.ebuild +++ b/media-libs/harfbuzz/harfbuzz-2.6.4.ebuild @@ -1,9 +1,9 @@ -# Copyright 1999-2019 Gentoo Authors +# Copyright 1999-2020 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=7 -PYTHON_COMPAT=( python2_7 ) +PYTHON_COMPAT=( python{2_7,3_{6,7,8}} ) inherit flag-o-matic libtool multilib-minimal python-any-r1 xdg-utils diff --git a/media-libs/harfbuzz/harfbuzz-9999.ebuild b/media-libs/harfbuzz/harfbuzz-9999.ebuild index 6a4bfdfcd95..356659abc38 100644 --- a/media-libs/harfbuzz/harfbuzz-9999.ebuild +++ b/media-libs/harfbuzz/harfbuzz-9999.ebuild @@ -1,9 +1,9 @@ -# Copyright 1999-2019 Gentoo Authors +# Copyright 1999-2020 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=7 -PYTHON_COMPAT=( python2_7 ) +PYTHON_COMPAT=( python{2_7,3_{6,7,8}} ) inherit flag-o-matic libtool multilib-minimal python-any-r1 xdg-utils @@ -107,5 +107,5 @@ multilib_src_configure() { multilib_src_install_all() { einstalldocs - find "${ED}" -name "*.la" -delete || die + find "${ED}" -type f -name "*.la" -delete || die }