summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJoonas Niilola <juippis@gentoo.org>2021-01-05 19:57:03 +0200
committerJoonas Niilola <juippis@gentoo.org>2021-01-05 19:59:05 +0200
commit13edd06bd0467c48539a742eae0e47be792c444f (patch)
treee56577ecae39137b6cb7f68d431624944dda22f7 /app-emulation
parentnet-libs/liba53: remove last-rited package (diff)
downloadgentoo-13edd06bd0467c48539a742eae0e47be792c444f.tar.gz
gentoo-13edd06bd0467c48539a742eae0e47be792c444f.tar.bz2
gentoo-13edd06bd0467c48539a742eae0e47be792c444f.zip
app-emulation/qt-virt-manager: remove last-rited package
Closes: https://bugs.gentoo.org/752453 Signed-off-by: Joonas Niilola <juippis@gentoo.org>
Diffstat (limited to 'app-emulation')
-rw-r--r--app-emulation/qt-virt-manager/metadata.xml14
-rw-r--r--app-emulation/qt-virt-manager/qt-virt-manager-9999.ebuild49
2 files changed, 0 insertions, 63 deletions
diff --git a/app-emulation/qt-virt-manager/metadata.xml b/app-emulation/qt-virt-manager/metadata.xml
deleted file mode 100644
index 911710bc8d2c..000000000000
--- a/app-emulation/qt-virt-manager/metadata.xml
+++ /dev/null
@@ -1,14 +0,0 @@
-<?xml version='1.0' encoding='UTF-8'?>
-<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
-<pkgmetadata>
- <maintainer type="project">
- <email>virtualization@gentoo.org</email>
- <name>Gentoo Virtualization Project</name>
- </maintainer>
- <use>
- <flag name="smartcard">Enable smartcard remoting using <pkg>app-emulation/libcacard</pkg></flag>
- </use>
- <upstream>
- <remote-id type="github">F1ash/qt-virt-manager</remote-id>
- </upstream>
-</pkgmetadata>
diff --git a/app-emulation/qt-virt-manager/qt-virt-manager-9999.ebuild b/app-emulation/qt-virt-manager/qt-virt-manager-9999.ebuild
deleted file mode 100644
index 7eb26346c9a9..000000000000
--- a/app-emulation/qt-virt-manager/qt-virt-manager-9999.ebuild
+++ /dev/null
@@ -1,49 +0,0 @@
-# Copyright 1999-2018 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-
-inherit cmake-utils
-
-if [[ ${PV} == "9999" ]] ; then
- EGIT_REPO_URI="https://github.com/F1ash/qt-virt-manager.git"
- EGIT_BRANCH="master"
- inherit git-r3
- SRC_URI=""
- KEYWORDS=""
-else
- SRC_URI="https://github.com/F1ash/qt-virt-manager/archive/${PV}.tar.gz -> ${P}.tar.gz"
- KEYWORDS=""
-fi
-
-DESCRIPTION="A GUI application for managing virtual machines"
-HOMEPAGE="https://github.com/F1ash/qt-virt-manager"
-
-LICENSE="GPL-2"
-SLOT="0"
-IUSE="smartcard"
-
-DEPEND="
- dev-qt/qtcore:5
- dev-qt/qtgui:5
- dev-qt/qtmultimedia:5
- dev-qt/qtsvg:5
- dev-qt/qtwidgets:5
- dev-qt/qtxml:5
- dev-qt/qtnetwork:5
- >=x11-libs/qtermwidget-0.7.0
- smartcard? ( >=app-emulation/libcacard-2.5.0 )
- dev-libs/glib
- net-misc/spice-gtk
- net-libs/libvncserver
- app-emulation/libvirt
-"
-RDEPEND="${DEPEND}"
-
-src_configure() {
- local mycmakeargs=(
- -DBUILD_QT_VERSION=5
- -DWITH_LIBCACARD="$(usex smartcard ON OFF)"
- )
- cmake-utils_src_configure
-}