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 2AB36138350 for ; Thu, 19 Mar 2020 17:53:51 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 5CDB5E0DED; Thu, 19 Mar 2020 17:53:50 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (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 42A6DE0DED 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 14F1534F04F 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 6BFBA106 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: <1584640359.8da1f94b5d541a1c98c6d21a2b3d4c9bc5bfa2ca.asturm@gentoo> Subject: [gentoo-commits] proj/kde:master commit in: net-libs/kdsoap-ws-discovery-client/ X-VCS-Repository: proj/kde X-VCS-Files: net-libs/kdsoap-ws-discovery-client/kdsoap-ws-discovery-client-0.2_pre20200317.ebuild X-VCS-Directories: net-libs/kdsoap-ws-discovery-client/ X-VCS-Committer: asturm X-VCS-Committer-Name: Andreas Sturmlechner X-VCS-Revision: 8da1f94b5d541a1c98c6d21a2b3d4c9bc5bfa2ca 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: 567e13b6-0723-4da3-b7d4-061640c241b2 X-Archives-Hash: 796670786322290d6523cb70f4bbe9f1 commit: 8da1f94b5d541a1c98c6d21a2b3d4c9bc5bfa2ca Author: Andreas Sturmlechner gentoo org> AuthorDate: Thu Mar 19 17:52:39 2020 +0000 Commit: Andreas Sturmlechner gentoo org> CommitDate: Thu Mar 19 17:52:39 2020 +0000 URL: https://gitweb.gentoo.org/proj/kde.git/commit/?id=8da1f94b net-libs/kdsoap-ws-discovery-client: Drop 0.2_pre20200317 Moved to Gentoo ebuild repository. Package-Manager: Portage-2.3.94, Repoman-2.3.21 Signed-off-by: Andreas Sturmlechner gentoo.org> ...soap-ws-discovery-client-0.2_pre20200317.ebuild | 62 ---------------------- 1 file changed, 62 deletions(-) diff --git a/net-libs/kdsoap-ws-discovery-client/kdsoap-ws-discovery-client-0.2_pre20200317.ebuild b/net-libs/kdsoap-ws-discovery-client/kdsoap-ws-discovery-client-0.2_pre20200317.ebuild deleted file mode 100644 index ac8ee194cf..0000000000 --- a/net-libs/kdsoap-ws-discovery-client/kdsoap-ws-discovery-client-0.2_pre20200317.ebuild +++ /dev/null @@ -1,62 +0,0 @@ -# Copyright 1999-2020 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 - -ECM_QTHELP="false" -ECM_TEST="forceoptional" -inherit ecm - -if [[ ${PV} != *9999* ]]; then - COMMIT=14287e92e80a77aa4c0adee2871e6b87c9c3055e - SRC_URI="https://gitlab.com/caspermeijn/${PN}/repository/${COMMIT}/archive.tar.gz -> ${P}.tar.gz" - KEYWORDS="~amd64" - S="${WORKDIR}/${PN}-${COMMIT}-${COMMIT}" -else - EGIT_REPO_URI="https://gitlab.com/caspermeijn/${PN}.git" - inherit git-r3 -fi - -DESCRIPTION="WS-Discovery client library based on KDSoap" -HOMEPAGE="https://gitlab.com/caspermeijn/kdsoap-ws-discovery-client -https://caspermeijn.gitlab.io/kdsoap-ws-discovery-client" - -LICENSE="CC0-1.0 GPL-3+" -SLOT="0" -IUSE="doc" - -BDEPEND=" - doc? ( app-doc/doxygen[dot] ) -" -RDEPEND=" - dev-qt/qtcore:5 - dev-qt/qtnetwork:5 - >=net-libs/kdsoap-1.9.0" -DEPEND="${RDEPEND} - test? ( dev-qt/qtxml:5 ) -" - -RESTRICT+=" test" - -PATCHES=( - "${FILESDIR}"/${P}-no-install-docs.patch - "${FILESDIR}"/${P}-deps.patch -) - -src_prepare() { - ecm_src_prepare - use test || ecm_punt_bogus_dep Qt5 Xml -} - -src_configure() { - local mycmakeargs=( - $(cmake_use_find_package doc Doxygen) - -DBUILD_QCH=OFF # does not use ecm_add_qch from ECMAddQch - ) - ecm_src_configure -} - -src_install() { - use doc && local HTML_DOCS=( "${BUILD_DIR}"/docs/html/. ) - ecm_src_install -}