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 AE5B8158089 for ; Tue, 7 Nov 2023 14:05:01 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id E99BB2BC013; Tue, 7 Nov 2023 14:05:00 +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 CE4A92BC013 for ; Tue, 7 Nov 2023 14:05:00 +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 E7DF6335C52 for ; Tue, 7 Nov 2023 14:04:59 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 59942AAC for ; Tue, 7 Nov 2023 14:04:58 +0000 (UTC) From: "Andreas Sturmlechner" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Andreas Sturmlechner" Message-ID: <1699365880.d5db2486cd783c304d0d5ec630223b3e53255746.asturm@gentoo> Subject: [gentoo-commits] proj/kde:master commit in: media-video/subtitlecomposer/ X-VCS-Repository: proj/kde X-VCS-Files: media-video/subtitlecomposer/subtitlecomposer-9999.ebuild X-VCS-Directories: media-video/subtitlecomposer/ X-VCS-Committer: asturm X-VCS-Committer-Name: Andreas Sturmlechner X-VCS-Revision: d5db2486cd783c304d0d5ec630223b3e53255746 X-VCS-Branch: master Date: Tue, 7 Nov 2023 14:04:58 +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: 3117e573-d70a-451b-ba32-8da77ecdf7cb X-Archives-Hash: d970b1abdf24aff955321a9d32b02c6e commit: d5db2486cd783c304d0d5ec630223b3e53255746 Author: Andreas Sturmlechner gentoo org> AuthorDate: Tue Nov 7 14:03:18 2023 +0000 Commit: Andreas Sturmlechner gentoo org> CommitDate: Tue Nov 7 14:04:40 2023 +0000 URL: https://gitweb.gentoo.org/proj/kde.git/commit/?id=d5db2486 media-video/subtitlecomposer: Add release build switch Drop old pkg_postinst() Signed-off-by: Andreas Sturmlechner gentoo.org> media-video/subtitlecomposer/subtitlecomposer-9999.ebuild | 15 ++++++--------- 1 file changed, 6 insertions(+), 9 deletions(-) diff --git a/media-video/subtitlecomposer/subtitlecomposer-9999.ebuild b/media-video/subtitlecomposer/subtitlecomposer-9999.ebuild index 3172bf0be8..d3492864a2 100644 --- a/media-video/subtitlecomposer/subtitlecomposer-9999.ebuild +++ b/media-video/subtitlecomposer/subtitlecomposer-9999.ebuild @@ -11,9 +11,13 @@ inherit ecm kde.org DESCRIPTION="Text-based subtitles editor" HOMEPAGE="https://subtitlecomposer.kde.org/" +if [[ ${KDE_BUILD_TYPE} = release ]]; then + SRC_URI="mirror://kde/stable/${PN}/${P}.tar.xz" + KEYWORDS="~amd64 ~x86" +fi + LICENSE="GPL-2" SLOT="5" -KEYWORDS="" IUSE="unicode" DEPEND=" @@ -44,16 +48,9 @@ BDEPEND=" src_configure() { local mycmakeargs=( - -DCMAKE_DISABLE_FIND_PACKAGE_PocketSphinx=ON # bug 616706 + -DCMAKE_DISABLE_FIND_PACKAGE_PocketSphinx=ON # bugs 616706, 610434 $(cmake_use_find_package unicode ICU) ) ecm_src_configure } - -pkg_postinst() { - ecm_pkg_postinst - - elog "Some example scripts provided by ${PN} require dev-lang/ruby" - elog "or dev-lang/python to be installed." -}