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 BBBFE1382C5 for ; Sun, 28 Feb 2021 12:26:49 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id CE19DE08F7; Sun, 28 Feb 2021 12:26:46 +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 B7A82E08F7 for ; Sun, 28 Feb 2021 12:26:46 +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 1A8AB340F93 for ; Sun, 28 Feb 2021 12:26:44 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 54D3959C for ; Sun, 28 Feb 2021 12:26:39 +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: <1614515175.8b08882f7f3bbbc99ab0b7557427fc458ad901ca.asturm@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: net-misc/qtm/ X-VCS-Repository: repo/gentoo X-VCS-Files: net-misc/qtm/qtm-1.3.19.ebuild X-VCS-Directories: net-misc/qtm/ X-VCS-Committer: asturm X-VCS-Committer-Name: Andreas Sturmlechner X-VCS-Revision: 8b08882f7f3bbbc99ab0b7557427fc458ad901ca X-VCS-Branch: master Date: Sun, 28 Feb 2021 12:26:39 +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: c1700207-243e-4928-99ad-421ac90d09a1 X-Archives-Hash: c2ee52270c628df72f7f883b65102507 commit: 8b08882f7f3bbbc99ab0b7557427fc458ad901ca Author: Andreas Sturmlechner gentoo org> AuthorDate: Sun Feb 28 11:50:31 2021 +0000 Commit: Andreas Sturmlechner gentoo org> CommitDate: Sun Feb 28 12:26:15 2021 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8b08882f net-misc/qtm: Drop 1.3.19 (r0) Package-Manager: Portage-3.0.16, Repoman-3.0.2 Signed-off-by: Andreas Sturmlechner gentoo.org> net-misc/qtm/qtm-1.3.19.ebuild | 55 ------------------------------------------ 1 file changed, 55 deletions(-) diff --git a/net-misc/qtm/qtm-1.3.19.ebuild b/net-misc/qtm/qtm-1.3.19.ebuild deleted file mode 100644 index 24f10c68555..00000000000 --- a/net-misc/qtm/qtm-1.3.19.ebuild +++ /dev/null @@ -1,55 +0,0 @@ -# Copyright 1999-2020 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=6 - -# CMAKE_IN_SOURCE_BUILD="1" -inherit cmake-utils - -DESCRIPTION="Qt blogging client" -HOMEPAGE="http://qtm.blogistan.co.uk" -# FIXME find suitable SRC_URI -SRC_URI="https://bitbucket-archive.softwareheritage.org/static/3c/3c8ca320-701e-47dc-b0ec-28870df5715b/attachments/${P}.tar.bz2" - -LICENSE="GPL-2" -SLOT="0" -KEYWORDS="amd64 x86" -IUSE="dbus debug" -RESTRICT="strip" - -RDEPEND="dev-lang/perl - dev-qt/qtcore:5 - dev-qt/qtgui:5 - dev-qt/qtnetwork:5 - dev-qt/qtwidgets:5 - dev-qt/qtxml:5 - virtual/perl-Digest-MD5 - dbus? ( dev-qt/qtdbus:5 )" -DEPEND="${RDEPEND} - x11-base/xorg-proto - virtual/pkgconfig" - -DOCS=( Changelog README ) - -PATCHES=( "${FILESDIR}/${P}-qt-5.11.patch" ) # TODO: upstream - -src_prepare() { - # bug 463810 - sed -i -e '/Categories/s/Application;//' qtm-desktop.sh || die 'sed on qtm-desktop.sh failed' - - cmake-utils_src_prepare -} - -src_configure() { - local mycmakeargs=( - -DQt5=ON - -DDONT_USE_PTE=OFF - -DINSTALL_MARKDOWN=ON - -DNO_SSL=OFF - -DUSE_DBUS=$(usex dbus) - -DDONT_USE_DBUS=$(usex !dbus) - -DQDEBUG=$(usex debug) - ) - - cmake-utils_src_configure -}