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.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 31A0E138351 for ; Thu, 19 Mar 2020 00:00:58 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 3A656E0C44; Thu, 19 Mar 2020 00:00:57 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 1E541E0C44 for ; Thu, 19 Mar 2020 00:00:57 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 2518434F2EF for ; Thu, 19 Mar 2020 00:00:56 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 3B9B8192 for ; Thu, 19 Mar 2020 00:00:53 +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: <1584573180.49e8e8de6379c21b20c6f75f860225e818ecaf29.asturm@gentoo> Subject: [gentoo-commits] proj/kde:master commit in: net-libs/kdsoap/ X-VCS-Repository: proj/kde X-VCS-Files: net-libs/kdsoap/kdsoap-1.9.50_pre20200317.ebuild X-VCS-Directories: net-libs/kdsoap/ X-VCS-Committer: asturm X-VCS-Committer-Name: Andreas Sturmlechner X-VCS-Revision: 49e8e8de6379c21b20c6f75f860225e818ecaf29 X-VCS-Branch: master Date: Thu, 19 Mar 2020 00:00:53 +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: 3bf31bed-4f93-4c5a-83c7-cab8b87390f7 X-Archives-Hash: b54906a607eb8056280d2afbe0d27d2a commit: 49e8e8de6379c21b20c6f75f860225e818ecaf29 Author: Andreas Sturmlechner gentoo org> AuthorDate: Wed Mar 18 22:57:27 2020 +0000 Commit: Andreas Sturmlechner gentoo org> CommitDate: Wed Mar 18 23:13:00 2020 +0000 URL: https://gitweb.gentoo.org/proj/kde.git/commit/?id=49e8e8de net-libs/kdsoap: Add 1.9.50_pre20200317 snapshot For consumption by upcoming Release Service 20.04 beta. Package-Manager: Portage-2.3.94, Repoman-2.3.21 Signed-off-by: Andreas Sturmlechner gentoo.org> net-libs/kdsoap/kdsoap-1.9.50_pre20200317.ebuild | 52 ++++++++++++++++++++++++ 1 file changed, 52 insertions(+) diff --git a/net-libs/kdsoap/kdsoap-1.9.50_pre20200317.ebuild b/net-libs/kdsoap/kdsoap-1.9.50_pre20200317.ebuild new file mode 100644 index 0000000000..ba5f0c21a6 --- /dev/null +++ b/net-libs/kdsoap/kdsoap-1.9.50_pre20200317.ebuild @@ -0,0 +1,52 @@ +# Copyright 1999-2020 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +if [[ ${PV} != *9999* ]]; then + KDSOAP_COMMIT=8fde0425e38bf58922b6054768b4a7e5f349500b + LIBKODE_COMMIT=dfe0d565cb58cfb25da77853d9694097aa8e5882 + SRC_URI="https://github.com/KDAB/KDSoap/archive/${KDSOAP_COMMIT}.tar.gz -> ${P}.tar.gz + https://github.com/cornelius/libkode/archive/${LIBKODE_COMMIT}.tar.gz -> ${P}-libkode-${LIBKODE_COMMIT}.tar.gz" + KEYWORDS="~amd64" + S="${WORKDIR}/KDSoap-${KDSOAP_COMMIT}" +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" +IUSE="" + +RDEPEND=" + dev-qt/qtcore:5 + dev-qt/qtnetwork:5 + dev-qt/qtxml:5 +" +DEPEND="${RDEPEND} + dev-libs/boost +" + +src_prepare() { + rmdir kdwsdl2cpp/libkode || die + mv "${WORKDIR}"/libkode-${LIBKODE_COMMIT} "${S}"/kdwsdl2cpp/libkode || die + + cmake_src_prepare + + sed -e "/^find_package.*Qt5/s/Widgets //" \ + -e "/install.*INSTALL_DOC_DIR/d" \ + -i CMakeLists.txt || die +} + +src_configure() { + local mycmakeargs=( + -DKDSoap_EXAMPLES=OFF # Qt4-based and no install targets + ) + cmake_src_configure +}