mirror of
https://github.com/gentoo-mirror/gentoo.git
synced 2026-08-05 12:38:09 -07:00
app-emulation/virt-manager: Version bump to 1.4.1, bug #612450
Further, disable fine-grained LINGUAS variable - this package installs just a bunch of PO files. Package-Manager: Portage-2.3.3, Repoman-2.3.2
This commit is contained in:
@@ -1 +1,2 @@
|
||||
DIST virt-manager-1.4.0.tar.gz 2667631 SHA256 bf31a40cc48500cbf87a0e93a5838fc3f6ce4e2fa03f8bce6aa2615625e6caca SHA512 6e28b0c4a91a9d96a0b5402e2af2bb0e670eb545824cf73877053c84891449bce236ffe2a79834a34d46443a7e5caa102cbbb0ac54af840a3997fbb61e155d51 WHIRLPOOL 824e088d90015a63264fb425fc94f2f9d21368475719a07777682d3e6a724cd0f20be039ef8164817f223ed72fdfea83033d2787ee19b014374ec520dca860be
|
||||
DIST virt-manager-1.4.1.tar.gz 2715863 SHA256 e6c549999f14fbda210c07821910bfa35c086542e166f8b00d7c83717e9f3944 SHA512 ea4cdc16d7adecdb85431fdfbe7305518917b7d66342375b6773462d33d5647c2a4d3f054c08cd44d7c4e7785da92e38b18881a422083e82303b5a3dbd7b4cdd WHIRLPOOL 5b14893ad6fa05452dccb6ff579694f6ae5fc99a4b65feea4b0333bef7db49cd4fb5b83aa8d1baac25d21502982533f610c8b282943e335e7aa79ebfedb91660
|
||||
|
||||
95
app-emulation/virt-manager/virt-manager-1.4.1.ebuild
Normal file
95
app-emulation/virt-manager/virt-manager-1.4.1.ebuild
Normal file
@@ -0,0 +1,95 @@
|
||||
# Copyright 1999-2017 Gentoo Foundation
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
|
||||
EAPI=6
|
||||
|
||||
PYTHON_COMPAT=( python2_7 )
|
||||
DISTUTILS_SINGLE_IMPL=1
|
||||
|
||||
inherit gnome2 distutils-r1
|
||||
|
||||
DESCRIPTION="A graphical tool for administering virtual machines"
|
||||
HOMEPAGE="http://virt-manager.org"
|
||||
|
||||
if [[ ${PV} = *9999* ]]; then
|
||||
inherit git-r3
|
||||
SRC_URI=""
|
||||
KEYWORDS=""
|
||||
EGIT_REPO_URI="https://github.com/virt-manager/virt-manager.git"
|
||||
else
|
||||
SRC_URI="http://virt-manager.org/download/sources/${PN}/${P}.tar.gz"
|
||||
KEYWORDS="~amd64 ~x86"
|
||||
fi
|
||||
|
||||
LICENSE="GPL-2"
|
||||
SLOT="0"
|
||||
IUSE="gnome-keyring gtk policykit sasl"
|
||||
|
||||
RDEPEND="!app-emulation/virtinst
|
||||
dev-python/libvirt-python[${PYTHON_USEDEP}]
|
||||
>=app-emulation/libvirt-glib-1.0.0[introspection]
|
||||
${PYTHON_DEPS}
|
||||
dev-libs/libxml2[python,${PYTHON_USEDEP}]
|
||||
dev-python/ipaddr[${PYTHON_USEDEP}]
|
||||
dev-python/pygobject:3[${PYTHON_USEDEP}]
|
||||
dev-python/requests[${PYTHON_USEDEP}]
|
||||
>=sys-libs/libosinfo-0.2.10[introspection]
|
||||
gtk? (
|
||||
x11-libs/gtk+:3[introspection]
|
||||
gnome-base/dconf
|
||||
>=net-libs/gtk-vnc-0.3.8[gtk3,introspection,python,${PYTHON_USEDEP}]
|
||||
net-misc/spice-gtk[usbredir,gtk3,introspection,sasl?]
|
||||
net-misc/x11-ssh-askpass
|
||||
x11-libs/vte:2.91[introspection]
|
||||
gnome-keyring? ( gnome-base/libgnome-keyring )
|
||||
policykit? ( sys-auth/polkit[introspection] )
|
||||
x11-themes/gnome-icon-theme
|
||||
)"
|
||||
DEPEND="${RDEPEND}
|
||||
dev-lang/perl
|
||||
dev-util/intltool"
|
||||
|
||||
DOCS=( README.md NEWS.md )
|
||||
|
||||
src_prepare() {
|
||||
distutils-r1_src_prepare
|
||||
}
|
||||
|
||||
distutils-r1_python_compile() {
|
||||
local defgraphics=
|
||||
|
||||
esetup.py configure \
|
||||
--qemu-user=qemu \
|
||||
--default-graphics=spice
|
||||
}
|
||||
|
||||
src_install() {
|
||||
local mydistutilsargs=( --no-update-icon-cache --no-compile-schemas )
|
||||
|
||||
distutils-r1_src_install
|
||||
|
||||
python_fix_shebang \
|
||||
"${ED}"/usr/share/virt-manager/virt-{clone,convert,install,manager}
|
||||
}
|
||||
|
||||
pkg_preinst() {
|
||||
if use gtk; then
|
||||
gnome2_pkg_preinst
|
||||
|
||||
cd "${ED}"
|
||||
export GNOME2_ECLASS_ICONS=$(find 'usr/share/virt-manager/icons' -maxdepth 1 -mindepth 1 -type d 2> /dev/null)
|
||||
else
|
||||
rm -rf "${ED}/usr/share/virt-manager/virtManager"
|
||||
rm -f "${ED}/usr/share/virt-manager/virt-manager"
|
||||
rm -rf "${ED}/usr/share/virt-manager/ui/"
|
||||
rm -rf "${ED}/usr/share/virt-manager/icons/"
|
||||
rm -rf "${ED}/usr/share/man/man1/virt-manager.1*"
|
||||
rm -rf "${ED}/usr/share/icons/"
|
||||
rm -rf "${ED}/usr/share/applications/virt-manager.desktop"
|
||||
rm -rf "${ED}/usr/bin/virt-manager"
|
||||
fi
|
||||
}
|
||||
|
||||
pkg_postinst() {
|
||||
use gtk && gnome2_pkg_postinst
|
||||
}
|
||||
Reference in New Issue
Block a user