public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] repo/gentoo:master commit in: app-emulation/qt-virt-manager/
@ 2017-03-14 17:07 Matthias Maier
  0 siblings, 0 replies; 3+ messages in thread
From: Matthias Maier @ 2017-03-14 17:07 UTC (permalink / raw
  To: gentoo-commits

commit:     ae70d5eb98bd7cd7bb00ee05d6b760ed555b6438
Author:     Matthias Maier <tamiko <AT> gentoo <DOT> org>
AuthorDate: Tue Mar 14 16:59:15 2017 +0000
Commit:     Matthias Maier <tamiko <AT> gentoo <DOT> org>
CommitDate: Tue Mar 14 17:06:53 2017 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ae70d5eb

app-emulation/qt-virt-manager: Introduce qt-virt-manager, bug #598932

Initial ebuild based on work by Michal Privoznik. Thanks a lot!

Package-Manager: Portage-2.3.3, Repoman-2.3.2

 app-emulation/qt-virt-manager/metadata.xml         | 11 +++++
 .../qt-virt-manager/qt-virt-manager-9999.ebuild    | 49 ++++++++++++++++++++++
 2 files changed, 60 insertions(+)

diff --git a/app-emulation/qt-virt-manager/metadata.xml b/app-emulation/qt-virt-manager/metadata.xml
new file mode 100644
index 00000000000..ee309bddf45
--- /dev/null
+++ b/app-emulation/qt-virt-manager/metadata.xml
@@ -0,0 +1,11 @@
+<?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>
+</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
new file mode 100644
index 00000000000..11f0c5f3801
--- /dev/null
+++ b/app-emulation/qt-virt-manager/qt-virt-manager-9999.ebuild
@@ -0,0 +1,49 @@
+# Copyright 1999-2017 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/${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
+}


^ permalink raw reply related	[flat|nested] 3+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: app-emulation/qt-virt-manager/
@ 2018-03-22 14:33 Matthias Maier
  0 siblings, 0 replies; 3+ messages in thread
From: Matthias Maier @ 2018-03-22 14:33 UTC (permalink / raw
  To: gentoo-commits

commit:     bde7b97680ff4a54e84855cfed30377fe0cc76f0
Author:     Francesco Turco <fturco <AT> fastmail <DOT> fm>
AuthorDate: Tue Mar 20 18:10:35 2018 +0000
Commit:     Matthias Maier <tamiko <AT> gentoo <DOT> org>
CommitDate: Thu Mar 22 14:33:22 2018 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=bde7b976

app-emulation/qt-virt-manager: fix download URL

Closes: https://github.com/gentoo/gentoo/pull/7523
Signed-off-by: Matthias Maier <tamiko <AT> gentoo.org>

 app-emulation/qt-virt-manager/qt-virt-manager-9999.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/app-emulation/qt-virt-manager/qt-virt-manager-9999.ebuild b/app-emulation/qt-virt-manager/qt-virt-manager-9999.ebuild
index 11f0c5f3801..7eb26346c9a 100644
--- a/app-emulation/qt-virt-manager/qt-virt-manager-9999.ebuild
+++ b/app-emulation/qt-virt-manager/qt-virt-manager-9999.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2017 Gentoo Foundation
+# Copyright 1999-2018 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=6
@@ -12,7 +12,7 @@ if [[ ${PV} == "9999" ]] ; then
 	SRC_URI=""
 	KEYWORDS=""
 else
-	SRC_URI="https://github.com/F1ash/qt-virt-manager/archive/${P}.tar.gz"
+	SRC_URI="https://github.com/F1ash/qt-virt-manager/archive/${PV}.tar.gz -> ${P}.tar.gz"
 	KEYWORDS=""
 fi
 


^ permalink raw reply related	[flat|nested] 3+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: app-emulation/qt-virt-manager/
@ 2021-01-05 17:59 Joonas Niilola
  0 siblings, 0 replies; 3+ messages in thread
From: Joonas Niilola @ 2021-01-05 17:59 UTC (permalink / raw
  To: gentoo-commits

commit:     13edd06bd0467c48539a742eae0e47be792c444f
Author:     Joonas Niilola <juippis <AT> gentoo <DOT> org>
AuthorDate: Tue Jan  5 17:57:03 2021 +0000
Commit:     Joonas Niilola <juippis <AT> gentoo <DOT> org>
CommitDate: Tue Jan  5 17:59:05 2021 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=13edd06b

app-emulation/qt-virt-manager: remove last-rited package

Closes: https://bugs.gentoo.org/752453
Signed-off-by: Joonas Niilola <juippis <AT> gentoo.org>

 app-emulation/qt-virt-manager/metadata.xml         | 14 -------
 .../qt-virt-manager/qt-virt-manager-9999.ebuild    | 49 ----------------------
 2 files changed, 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 911710bc8d2..00000000000
--- 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 7eb26346c9a..00000000000
--- 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
-}


^ permalink raw reply related	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2021-01-05 17:59 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2021-01-05 17:59 [gentoo-commits] repo/gentoo:master commit in: app-emulation/qt-virt-manager/ Joonas Niilola
  -- strict thread matches above, loose matches on Subject: below --
2018-03-22 14:33 Matthias Maier
2017-03-14 17:07 Matthias Maier

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox