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 31A40138334 for ; Sat, 14 Jul 2018 13:13:51 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 1B411E09F7; Sat, 14 Jul 2018 13:13:50 +0000 (UTC) Received: from smtp.gentoo.org (dev.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 E4BFDE09F7 for ; Sat, 14 Jul 2018 13:13:49 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (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 784FB335CA8 for ; Sat, 14 Jul 2018 13:13:47 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id F2482373 for ; Sat, 14 Jul 2018 13:13:45 +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: <1531574007.1cf3eb3b8bc99495361fcfe4f74007ee297093e6.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.ebuild X-VCS-Directories: dev-util/qdevicemonitor/ X-VCS-Committer: asturm X-VCS-Committer-Name: Andreas Sturmlechner X-VCS-Revision: 1cf3eb3b8bc99495361fcfe4f74007ee297093e6 X-VCS-Branch: master Date: Sat, 14 Jul 2018 13:13:45 +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-Archives-Salt: 96221c0c-0a4a-4d44-8425-4afeda2cb41c X-Archives-Hash: 8be4f8d9adca82e82313ecd6d0828c13 commit: 1cf3eb3b8bc99495361fcfe4f74007ee297093e6 Author: Andreas Sturmlechner gentoo org> AuthorDate: Sat Jul 14 13:09:22 2018 +0000 Commit: Andreas Sturmlechner gentoo org> CommitDate: Sat Jul 14 13:13:27 2018 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1cf3eb3b dev-util/qdevicemonitor: Drop old Package-Manager: Portage-2.3.41, Repoman-2.3.9 .../qdevicemonitor/qdevicemonitor-1.0.1.ebuild | 46 ---------------------- 1 file changed, 46 deletions(-) diff --git a/dev-util/qdevicemonitor/qdevicemonitor-1.0.1.ebuild b/dev-util/qdevicemonitor/qdevicemonitor-1.0.1.ebuild deleted file mode 100644 index c055bb2fca9..00000000000 --- a/dev-util/qdevicemonitor/qdevicemonitor-1.0.1.ebuild +++ /dev/null @@ -1,46 +0,0 @@ -# Copyright 1999-2017 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 - -EAPI="6" - -inherit eutils 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}" - -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" -}