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 42D05138351 for ; Sat, 18 Jan 2020 17:16:21 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id BFB97E0897; Sat, 18 Jan 2020 17:16:19 +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 A222DE0897 for ; Sat, 18 Jan 2020 17:16:19 +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 67D5734E1A7 for ; Sat, 18 Jan 2020 17:16:18 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 88EB7D5 for ; Sat, 18 Jan 2020 17:16:15 +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: <1579367760.280ead87c83c77f17a842244b4b9001c7fa27d95.asturm@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-util/qdevicemonitor/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-util/qdevicemonitor/qdevicemonitor-1.0.1-r1.ebuild X-VCS-Directories: dev-util/qdevicemonitor/ X-VCS-Committer: asturm X-VCS-Committer-Name: Andreas Sturmlechner X-VCS-Revision: 280ead87c83c77f17a842244b4b9001c7fa27d95 X-VCS-Branch: master Date: Sat, 18 Jan 2020 17:16:15 +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: 1458c160-57cb-4a96-bd6d-107711930eef X-Archives-Hash: abc7f43ad0f8ac645fcb29104f154077 commit: 280ead87c83c77f17a842244b4b9001c7fa27d95 Author: Alexander Lopatin gmail com> AuthorDate: Fri Jan 17 20:14:01 2020 +0000 Commit: Andreas Sturmlechner gentoo org> CommitDate: Sat Jan 18 17:16:00 2020 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=280ead87 dev-util/qdevicemonitor: remove version 1.0.1-r1 Package-Manager: Portage-2.3.79, Repoman-2.3.16 Signed-off-by: Alexander Lopatin gmail.com> Signed-off-by: Andreas Sturmlechner gentoo.org> .../qdevicemonitor/qdevicemonitor-1.0.1-r1.ebuild | 51 ---------------------- 1 file changed, 51 deletions(-) diff --git a/dev-util/qdevicemonitor/qdevicemonitor-1.0.1-r1.ebuild b/dev-util/qdevicemonitor/qdevicemonitor-1.0.1-r1.ebuild deleted file mode 100644 index 1b9b31c6c9d..00000000000 --- a/dev-util/qdevicemonitor/qdevicemonitor-1.0.1-r1.ebuild +++ /dev/null @@ -1,51 +0,0 @@ -# Copyright 1999-2018 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 - -EAPI="6" - -inherit desktop qmake-utils - -DESCRIPTION="Crossplatform log viewer for Android, iOS and text files" -HOMEPAGE="https://github.com/alopatindev/qdevicemonitor" - -if [[ ${PV} == "9999" ]] ; then - inherit git-r3 - EGIT_REPO_URI="https://github.com/alopatindev/${PN}" -else - SRC_URI="https://github.com/alopatindev/qdevicemonitor/archive/${PV}.tar.gz -> ${P}.tar.gz" - KEYWORDS="~amd64 ~x86" -fi - -LICENSE="GPL-3" -SLOT="0" -IUSE="" - -RDEPEND=" - dev-qt/qtcore:5 - dev-qt/qtgui:5 - dev-util/android-tools - app-pda/usbmuxd" -DEPEND="${RDEPEND}" - -PATCHES=( - "${FILESDIR}"/${P}-qt-5.11.patch - "${FILESDIR}"/${P}-crash-after-fresh-install.patch -) - -src_configure() { - cd "${PN}" || die - export VERSION_WITH_BUILD_NUMBER="${PV}" - eqmake5 -} - -src_compile() { - cd "${PN}" || die - emake -} - -src_install() { - dobin "${PN}/${PN}" - dodoc README.md - newicon -s scalable "icons/app_icon.svg" "${PN}.svg" - domenu "icons/${PN}.desktop" -}