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 B157615812D for ; Tue, 31 Dec 2024 09:08:50 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 24802E07D8; Tue, 31 Dec 2024 09:08:48 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.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 0F59BE07D8 for ; Tue, 31 Dec 2024 09:08:48 +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 57D8233EB78 for ; Tue, 31 Dec 2024 09:08:47 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id DAD1419C8 for ; Tue, 31 Dec 2024 09:08:43 +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: <1735636067.e10a3aa7160a47cf720eb3e4c9bb570dfc3bb787.asturm@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: media-libs/ampache_browser/ X-VCS-Repository: repo/gentoo X-VCS-Files: media-libs/ampache_browser/ampache_browser-1.0.7-r1.ebuild X-VCS-Directories: media-libs/ampache_browser/ X-VCS-Committer: asturm X-VCS-Committer-Name: Andreas Sturmlechner X-VCS-Revision: e10a3aa7160a47cf720eb3e4c9bb570dfc3bb787 X-VCS-Branch: master Date: Tue, 31 Dec 2024 09:08:43 +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: 660c4c79-f861-416e-97ac-24d267a3641e X-Archives-Hash: d35f1c916a3a0cd6cf9b4f04fc867b3a commit: e10a3aa7160a47cf720eb3e4c9bb570dfc3bb787 Author: Andreas Sturmlechner gentoo org> AuthorDate: Mon Dec 30 14:47:48 2024 +0000 Commit: Andreas Sturmlechner gentoo org> CommitDate: Tue Dec 31 09:07:47 2024 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e10a3aa7 media-libs/ampache_browser: Drop IUSE qt6, use https Signed-off-by: Andreas Sturmlechner gentoo.org> .../ampache_browser-1.0.7-r1.ebuild | 26 ++++++++++++++++++++++ 1 file changed, 26 insertions(+) diff --git a/media-libs/ampache_browser/ampache_browser-1.0.7-r1.ebuild b/media-libs/ampache_browser/ampache_browser-1.0.7-r1.ebuild new file mode 100644 index 000000000000..3b2f96135fce --- /dev/null +++ b/media-libs/ampache_browser/ampache_browser-1.0.7-r1.ebuild @@ -0,0 +1,26 @@ +# Copyright 1999-2024 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +inherit cmake + +DESCRIPTION="Ampache desktop client library" +HOMEPAGE="https://ampache-browser.org https://github.com/ampache-browser/ampache_browser" +SRC_URI="https://github.com/ampache-browser/ampache_browser/archive/v${PV}.tar.gz -> ${P}.tar.gz" + +LICENSE="GPL-3" +SLOT="0" +KEYWORDS="amd64 ~riscv x86" +IUSE="debug nls" + +RDEPEND="dev-qt/qtbase:6[concurrent,gui,widgets]" +DEPEND="${RDEPEND}" + +src_configure() { + local mycmakeargs=( + -DUSE_QT6=ON + -DUSE_NLS="$(usex nls)" + ) + cmake_src_configure +}