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 55BE2138350 for ; Thu, 19 Mar 2020 17:53:52 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 90B7BE0E8B; Thu, 19 Mar 2020 17:53:50 +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 781DAE0E8B for ; Thu, 19 Mar 2020 17:53:50 +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 7158234F081 for ; Thu, 19 Mar 2020 17:53:49 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 87C9218A for ; Thu, 19 Mar 2020 17:53:47 +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: <1584640380.41ee41743f6ae96fb017f96f146166c235e7b7ce.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: 41ee41743f6ae96fb017f96f146166c235e7b7ce X-VCS-Branch: master Date: Thu, 19 Mar 2020 17:53:47 +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: 5fb24f26-ce4a-4fef-891f-a5ad2a74cb8e X-Archives-Hash: 82f13aa65681399687390ab2107aafed commit: 41ee41743f6ae96fb017f96f146166c235e7b7ce Author: Andreas Sturmlechner gentoo org> AuthorDate: Thu Mar 19 17:53:00 2020 +0000 Commit: Andreas Sturmlechner gentoo org> CommitDate: Thu Mar 19 17:53:00 2020 +0000 URL: https://gitweb.gentoo.org/proj/kde.git/commit/?id=41ee4174 net-libs/kdsoap: Drop 1.9.50_pre20200317 Moved to Gentoo ebuild repository. 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 deletions(-) diff --git a/net-libs/kdsoap/kdsoap-1.9.50_pre20200317.ebuild b/net-libs/kdsoap/kdsoap-1.9.50_pre20200317.ebuild deleted file mode 100644 index ba5f0c21a6..0000000000 --- a/net-libs/kdsoap/kdsoap-1.9.50_pre20200317.ebuild +++ /dev/null @@ -1,52 +0,0 @@ -# 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 -}