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 91E2A158086 for ; Fri, 17 Dec 2021 16:18:08 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id B8B2E2BC015; Fri, 17 Dec 2021 16:18:07 +0000 (UTC) Received: from smtp.gentoo.org (dev.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (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 D682A2BC015 for ; Fri, 17 Dec 2021 16:18:06 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 07AFA34398B for ; Fri, 17 Dec 2021 16:18:06 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 54225177 for ; Fri, 17 Dec 2021 16:18:04 +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: <1639757544.6f71cb6cf918f242f200504764f3201eab2c52aa.asturm@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: kde-frameworks/kcoreaddons/ X-VCS-Repository: repo/gentoo X-VCS-Files: kde-frameworks/kcoreaddons/kcoreaddons-5.88.0-r1.ebuild kde-frameworks/kcoreaddons/kcoreaddons-5.89.0-r1.ebuild X-VCS-Directories: kde-frameworks/kcoreaddons/ X-VCS-Committer: asturm X-VCS-Committer-Name: Andreas Sturmlechner X-VCS-Revision: 6f71cb6cf918f242f200504764f3201eab2c52aa X-VCS-Branch: master Date: Fri, 17 Dec 2021 16:18:04 +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: e33d5ca0-624b-4655-9352-cae45a6c5a8b X-Archives-Hash: dd4b18468975c99c6f2a7852f00ddcf3 commit: 6f71cb6cf918f242f200504764f3201eab2c52aa Author: Andreas Sturmlechner gentoo org> AuthorDate: Fri Dec 17 16:04:38 2021 +0000 Commit: Andreas Sturmlechner gentoo org> CommitDate: Fri Dec 17 16:12:24 2021 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6f71cb6c kde-frameworks/kcoreaddons: RDEPEND on dev-qt/qttranslations:5 Use upstream's recommendation to pull in dev-qt/qttranslations:5 in a lower-tier framework. See also: https://mail.kde.org/pipermail/distributions/2021-December/001110.html Bug: https://bugs.gentoo.org/810802 Package-Manager: Portage-3.0.30, Repoman-3.0.3 Signed-off-by: Andreas Sturmlechner gentoo.org> .../kcoreaddons/kcoreaddons-5.88.0-r1.ebuild | 54 ++++++++++++++++++++++ .../kcoreaddons/kcoreaddons-5.89.0-r1.ebuild | 54 ++++++++++++++++++++++ 2 files changed, 108 insertions(+) diff --git a/kde-frameworks/kcoreaddons/kcoreaddons-5.88.0-r1.ebuild b/kde-frameworks/kcoreaddons/kcoreaddons-5.88.0-r1.ebuild new file mode 100644 index 000000000000..7ba0931c9abb --- /dev/null +++ b/kde-frameworks/kcoreaddons/kcoreaddons-5.88.0-r1.ebuild @@ -0,0 +1,54 @@ +# Copyright 1999-2021 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +QTMIN=5.15.2 +inherit ecm kde.org xdg-utils + +DESCRIPTION="Framework for solving common problems such as caching, randomisation, and more" + +LICENSE="LGPL-2+" +KEYWORDS="~amd64 ~arm ~arm64 ~ppc64 ~riscv ~x86" +IUSE="fam nls" + +DEPEND=" + >=dev-qt/qtcore-${QTMIN}:5[icu] + fam? ( virtual/fam ) +" +RDEPEND="${DEPEND} + nls? ( >=dev-qt/qttranslations-${QTMIN}:5 ) +" +BDEPEND=" + nls? ( >=dev-qt/linguist-tools-${QTMIN}:5 ) +" + +src_configure() { + local mycmakeargs=( + -D_KDE4_DEFAULT_HOME_POSTFIX=4 + -DCMAKE_DISABLE_FIND_PACKAGE_PythonModuleGeneration=ON # bug 746866 + $(cmake_use_find_package fam FAM) + ) + + ecm_src_configure +} + +src_test() { + # bugs: 619656, 632398, 647414, 665682 + local myctestargs=( + -j1 + -E "(kautosavefiletest|kdirwatch_qfswatch_unittest|kdirwatch_stat_unittest|kformattest)" + ) + + ecm_src_test +} + +pkg_postinst() { + ecm_pkg_postinst + xdg_mimeinfo_database_update +} + +pkg_postrm() { + ecm_pkg_postrm + xdg_mimeinfo_database_update +} diff --git a/kde-frameworks/kcoreaddons/kcoreaddons-5.89.0-r1.ebuild b/kde-frameworks/kcoreaddons/kcoreaddons-5.89.0-r1.ebuild new file mode 100644 index 000000000000..7ba0931c9abb --- /dev/null +++ b/kde-frameworks/kcoreaddons/kcoreaddons-5.89.0-r1.ebuild @@ -0,0 +1,54 @@ +# Copyright 1999-2021 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +QTMIN=5.15.2 +inherit ecm kde.org xdg-utils + +DESCRIPTION="Framework for solving common problems such as caching, randomisation, and more" + +LICENSE="LGPL-2+" +KEYWORDS="~amd64 ~arm ~arm64 ~ppc64 ~riscv ~x86" +IUSE="fam nls" + +DEPEND=" + >=dev-qt/qtcore-${QTMIN}:5[icu] + fam? ( virtual/fam ) +" +RDEPEND="${DEPEND} + nls? ( >=dev-qt/qttranslations-${QTMIN}:5 ) +" +BDEPEND=" + nls? ( >=dev-qt/linguist-tools-${QTMIN}:5 ) +" + +src_configure() { + local mycmakeargs=( + -D_KDE4_DEFAULT_HOME_POSTFIX=4 + -DCMAKE_DISABLE_FIND_PACKAGE_PythonModuleGeneration=ON # bug 746866 + $(cmake_use_find_package fam FAM) + ) + + ecm_src_configure +} + +src_test() { + # bugs: 619656, 632398, 647414, 665682 + local myctestargs=( + -j1 + -E "(kautosavefiletest|kdirwatch_qfswatch_unittest|kdirwatch_stat_unittest|kformattest)" + ) + + ecm_src_test +} + +pkg_postinst() { + ecm_pkg_postinst + xdg_mimeinfo_database_update +} + +pkg_postrm() { + ecm_pkg_postrm + xdg_mimeinfo_database_update +}