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) server-digest SHA256) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 7199615812D for ; Sun, 05 Jan 2025 22:51:14 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id D27ABE07D7; Sun, 05 Jan 2025 22:51:12 +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) server-digest SHA256) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 9B250E07D3 for ; Sun, 05 Jan 2025 22:51:11 +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) server-digest SHA256) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 9423B340DF9 for ; Sun, 05 Jan 2025 22:51:10 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id BFCA819C8 for ; Sun, 05 Jan 2025 22:51:08 +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: <1736117454.00b18bcdf688f8ac64265b3463ef50f0b5da5a61.asturm@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: net-libs/kdsoap/ X-VCS-Repository: repo/gentoo X-VCS-Files: net-libs/kdsoap/kdsoap-2.2.0-r1.ebuild X-VCS-Directories: net-libs/kdsoap/ X-VCS-Committer: asturm X-VCS-Committer-Name: Andreas Sturmlechner X-VCS-Revision: 00b18bcdf688f8ac64265b3463ef50f0b5da5a61 X-VCS-Branch: master Date: Sun, 05 Jan 2025 22:51:08 +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: ac04eccb-3cd0-4864-9ad1-880522ad6f32 X-Archives-Hash: f4c73ae9e2486beb98b673c8c19f2314 commit: 00b18bcdf688f8ac64265b3463ef50f0b5da5a61 Author: Andreas Sturmlechner gentoo org> AuthorDate: Sun Jan 5 22:46:24 2025 +0000 Commit: Andreas Sturmlechner gentoo org> CommitDate: Sun Jan 5 22:50:54 2025 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=00b18bcd net-libs/kdsoap: Drop IUSE qt5,qt6; make Qt6 unconditional Signed-off-by: Andreas Sturmlechner gentoo.org> net-libs/kdsoap/kdsoap-2.2.0-r1.ebuild | 40 ++++++++++++++++++++++++++++++++++ 1 file changed, 40 insertions(+) diff --git a/net-libs/kdsoap/kdsoap-2.2.0-r1.ebuild b/net-libs/kdsoap/kdsoap-2.2.0-r1.ebuild new file mode 100644 index 000000000000..6b821df016e8 --- /dev/null +++ b/net-libs/kdsoap/kdsoap-2.2.0-r1.ebuild @@ -0,0 +1,40 @@ +# Copyright 1999-2025 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +if [[ ${PV} != *9999* ]]; then + SRC_URI="https://github.com/KDAB/KDSoap/releases/download/${P}/${P}.tar.gz" + KEYWORDS="amd64 ~arm arm64 ~loong ~ppc64 ~riscv x86" +else + EGIT_REPO_URI="https://github.com/KDAB/KDSoap.git" + EGIT_SUBMODULES=( kdwsdl2cpp/libkode -autogen ) + inherit git-r3 +fi +inherit cmake + +DESCRIPTION="Qt-based client-side and server-side SOAP component" +HOMEPAGE="https://www.kdab.com/development-resources/qt-tools/kd-soap/" + +LICENSE="GPL-3 AGPL-3" +SLOT="0/2" + +RDEPEND="dev-qt/qtbase:6[network,xml]" +DEPEND="${RDEPEND} + dev-libs/boost +" + +src_prepare() { + cmake_src_prepare + sed -e "/install.*INSTALL_DOC_DIR/d" -i CMakeLists.txt || die +} + +src_configure() { + local mycmakeargs=( + -DKDSoap_DOCS=OFF + -DKDSoap_EXAMPLES=OFF # no install targets + -DKDSoap_QT6=ON + -DKDSoap_STATIC=OFF + ) + cmake_src_configure +}