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 DDD2513835A for ; Sun, 24 Jan 2021 12:52:41 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id DEA36E099C; Sun, 24 Jan 2021 12:52:40 +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-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id C8C73E099C for ; Sun, 24 Jan 2021 12:52:40 +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 92DB13411A2 for ; Sun, 24 Jan 2021 12:52:38 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id E500D4A2 for ; Sun, 24 Jan 2021 12:52:36 +0000 (UTC) From: "David Seifert" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "David Seifert" Message-ID: <1611492669.cb2bcde3f4b8a0ccb7739f2e1cc920a8f682c755.soap@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: media-libs/libsndfile/ X-VCS-Repository: repo/gentoo X-VCS-Files: media-libs/libsndfile/libsndfile-9999.ebuild X-VCS-Directories: media-libs/libsndfile/ X-VCS-Committer: soap X-VCS-Committer-Name: David Seifert X-VCS-Revision: cb2bcde3f4b8a0ccb7739f2e1cc920a8f682c755 X-VCS-Branch: master Date: Sun, 24 Jan 2021 12:52:36 +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-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: c1a3efa7-338c-4270-ad0d-2d0cf085fbec X-Archives-Hash: fd7e5d175e809a00b00d7d26069a2cbe commit: cb2bcde3f4b8a0ccb7739f2e1cc920a8f682c755 Author: David Seifert gentoo org> AuthorDate: Sun Jan 24 12:51:09 2021 +0000 Commit: David Seifert gentoo org> CommitDate: Sun Jan 24 12:51:09 2021 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=cb2bcde3 media-libs/libsndfile: Sync live ebuild Package-Manager: Portage-3.0.14, Repoman-3.0.2 Signed-off-by: David Seifert gentoo.org> media-libs/libsndfile/libsndfile-9999.ebuild | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/media-libs/libsndfile/libsndfile-9999.ebuild b/media-libs/libsndfile/libsndfile-9999.ebuild index fe3ad230a79..541b8501fc4 100644 --- a/media-libs/libsndfile/libsndfile-9999.ebuild +++ b/media-libs/libsndfile/libsndfile-9999.ebuild @@ -3,23 +3,23 @@ EAPI=7 -PYTHON_COMPAT=( python3_{6,7,8,9} pypy3 ) +PYTHON_COMPAT=( python3_{7..9} pypy3 ) if [[ ${PV} == *9999 ]]; then inherit autotools git-r3 - EGIT_REPO_URI="https://github.com/erikd/libsndfile.git" + EGIT_REPO_URI="https://github.com/libsndfile/libsndfile.git" else - SRC_URI="https://github.com/erikd/libsndfile/releases/download/v${PV}/${P}.tar.bz2" + SRC_URI="https://github.com/libsndfile/libsndfile/releases/download/${PV}/${P}.tar.bz2" KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~sparc-solaris ~x64-solaris ~x86-solaris" fi inherit python-any-r1 multilib-minimal DESCRIPTION="C library for reading and writing files containing sampled sound" -HOMEPAGE="http://www.mega-nerd.com/libsndfile" +HOMEPAGE="http://libsndfile.github.io/libsndfile/" LICENSE="LGPL-2.1" SLOT="0" -IUSE="alsa minimal sqlite static-libs test" +IUSE="alsa minimal sqlite test" RESTRICT="!test? ( test )" RDEPEND=" @@ -57,8 +57,8 @@ src_prepare() { multilib_src_configure() { ECONF_SOURCE="${S}" econf \ --disable-octave \ + --disable-static \ --disable-werror \ - $(use_enable static-libs static) \ $(use_enable !minimal external-libs) \ $(multilib_native_enable full-suite) \ $(multilib_native_use_enable alsa) \ @@ -69,6 +69,6 @@ multilib_src_configure() { multilib_src_install_all() { einstalldocs - # package provides .pc files - find "${D}" -name '*.la' -delete || die + # no static archives + find "${ED}" -name '*.la' -delete || die }