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.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 38C73159C96 for ; Tue, 30 Jul 2024 09:18:50 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 4DF6F2BC096; Tue, 30 Jul 2024 09:18:49 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [140.211.166.183]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 2AB812BC096 for ; Tue, 30 Jul 2024 09:18:49 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 3E23B33FECD for ; Tue, 30 Jul 2024 09:18:48 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 5F9051E86 for ; Tue, 30 Jul 2024 09:18:45 +0000 (UTC) From: "Pacho Ramos" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Pacho Ramos" Message-ID: <1722331097.35b405f2f6cbab868314203d2cf19cc30bed93e2.pacho@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: media-sound/csound/ X-VCS-Repository: repo/gentoo X-VCS-Files: media-sound/csound/csound-9999.ebuild X-VCS-Directories: media-sound/csound/ X-VCS-Committer: pacho X-VCS-Committer-Name: Pacho Ramos X-VCS-Revision: 35b405f2f6cbab868314203d2cf19cc30bed93e2 X-VCS-Branch: master Date: Tue, 30 Jul 2024 09:18: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-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: 954f1585-06c3-464b-b4f3-10d4aac69acf X-Archives-Hash: ae77cb42a033dc1a810be741e7fbfa06 commit: 35b405f2f6cbab868314203d2cf19cc30bed93e2 Author: Pacho Ramos gentoo org> AuthorDate: Tue Jul 30 09:14:48 2024 +0000 Commit: Pacho Ramos gentoo org> CommitDate: Tue Jul 30 09:18:17 2024 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=35b405f2 media-sound/csound: sync live ebuild Signed-off-by: Pacho Ramos gentoo.org> media-sound/csound/csound-9999.ebuild | 13 ++++++++++--- 1 file changed, 10 insertions(+), 3 deletions(-) diff --git a/media-sound/csound/csound-9999.ebuild b/media-sound/csound/csound-9999.ebuild index 2f6048b164b7..284dbe3715ef 100644 --- a/media-sound/csound/csound-9999.ebuild +++ b/media-sound/csound/csound-9999.ebuild @@ -8,7 +8,7 @@ EAPI=8 LUA_COMPAT=( lua5-1 luajit ) -PYTHON_COMPAT=( python3_{9..11} ) +PYTHON_COMPAT=( python3_{10..12} ) inherit cmake lua-single python-single-r1 @@ -22,7 +22,7 @@ else https://github.com/csound/csound/releases/download/${PV}/${DOC_P}_manual_pdf.zip https://github.com/csound/csound/releases/download/${PV}/${DOC_P}_manual_html.zip )" - KEYWORDS="~amd64 ~x86" + KEYWORDS="amd64 x86" fi DESCRIPTION="Sound design and signal processing system for composition and performance" @@ -69,7 +69,7 @@ CDEPEND=" osc? ( media-libs/liblo ) portaudio? ( media-libs/portaudio ) portmidi? ( media-libs/portmidi ) - pulseaudio? ( media-libs/libpulse ) + pulseaudio? ( media-sound/pulseaudio ) utils? ( !media-sound/snd ) vim-syntax? ( !app-vim/csound-syntax ) " @@ -105,6 +105,13 @@ src_prepare() { sed -e '/set(PLUGIN_INSTALL_DIR/s/-${APIVERSION}//' \ -e '/-O3/d' \ -i CMakeLists.txt || die + + if use doc; then + local png="${WORKDIR}/html/images/delayk.png" + pngfix -q --out=${png/.png/fixed.png} ${png} # see pngfix help for exit codes + [[ $? -gt 15 ]] && die "Failed to fix ${png}" + mv -f ${png/.png/fixed.png} ${png} || die + fi } src_configure() {