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 (4096 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 60F291580FD for ; Sat, 28 Dec 2024 00:05:49 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id D477EE0857; Sat, 28 Dec 2024 00:05:43 +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 B4D29E0857 for ; Sat, 28 Dec 2024 00:05:43 +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 C279533FE60 for ; Sat, 28 Dec 2024 00:05:42 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 4BB3E19C8 for ; Sat, 28 Dec 2024 00:05:39 +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: <1735344293.211161380f1ac12f6c00b3d12b89e585d69cdb31.asturm@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: media-libs/taglib/ X-VCS-Repository: repo/gentoo X-VCS-Files: media-libs/taglib/taglib-2.0.2.ebuild X-VCS-Directories: media-libs/taglib/ X-VCS-Committer: asturm X-VCS-Committer-Name: Andreas Sturmlechner X-VCS-Revision: 211161380f1ac12f6c00b3d12b89e585d69cdb31 X-VCS-Branch: master Date: Sat, 28 Dec 2024 00:05:39 +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: 87454d3b-7b7d-4b84-9b41-7f78a2be57fc X-Archives-Hash: d4f8a3e4799177c2c81cd3050d8ecf27 commit: 211161380f1ac12f6c00b3d12b89e585d69cdb31 Author: Nicolas PARLANT parhuet fr> AuthorDate: Wed Dec 18 20:20:30 2024 +0000 Commit: Andreas Sturmlechner gentoo org> CommitDate: Sat Dec 28 00:04:53 2024 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=21116138 media-libs/taglib: Fix redirect HOMEPAGE, fix src_test and src_compile Cleanup deps Referred to upstream: 2.0 is mostly source-compatible if no deprecated features are used. See list of removed deprecated functions: https://github.com/taglib/taglib/releases/tag/v2.0 Bug: https://bugs.gentoo.org/931264 Closes: https://github.com/gentoo/gentoo/pull/39775 Signed-off-by: Nicolas PARLANT parhuet.fr> Signed-off-by: Andreas Sturmlechner gentoo.org> media-libs/taglib/taglib-2.0.2.ebuild | 15 +++++++-------- 1 file changed, 7 insertions(+), 8 deletions(-) diff --git a/media-libs/taglib/taglib-2.0.2.ebuild b/media-libs/taglib/taglib-2.0.2.ebuild index 5a378136d74c..5fef3540f0a5 100644 --- a/media-libs/taglib/taglib-2.0.2.ebuild +++ b/media-libs/taglib/taglib-2.0.2.ebuild @@ -6,7 +6,7 @@ EAPI=8 inherit cmake-multilib DESCRIPTION="Library for reading and editing audio meta data" -HOMEPAGE="https://taglib.github.io/" +HOMEPAGE="https://taglib.org" SRC_URI="https://github.com/${PN}/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz" LICENSE="LGPL-2.1 MPL-1.1" @@ -16,10 +16,10 @@ IUSE="doc examples test" RESTRICT="!test? ( test )" -RDEPEND=">=sys-libs/zlib-1.2.8-r1[${MULTILIB_USEDEP}]" +RDEPEND="sys-libs/zlib[${MULTILIB_USEDEP}]" DEPEND="${RDEPEND} dev-libs/utfcpp - test? ( >=dev-util/cppunit-1.13.2[${MULTILIB_USEDEP}] ) + test? ( dev-util/cppunit[${MULTILIB_USEDEP}] ) " BDEPEND=" virtual/pkgconfig @@ -41,19 +41,18 @@ multilib_src_configure() { multilib_src_compile() { cmake_src_compile - if multilib_is_native_abi; then - use doc && cmake_build docs + if multilib_is_native_abi && use doc; then + cmake_build docs fi } multilib_src_test() { - eninja check + eninja -C "${BUILD_DIR}" check } multilib_src_install() { - cmake_src_install - if multilib_is_native_abi && use doc; then HTML_DOCS=( "${BUILD_DIR}"/doc/html/. ) fi + cmake_src_install }