summaryrefslogtreecommitdiff
path: root/virt-manager.spec.in
Commit message (Collapse)AuthorAgeFilesLines
* spec: Drop needless version/release macrosCole Robinson2014-03-071-6/+2
|
* Prep for release 1.0.0v1.0.0Cole Robinson2014-02-141-0/+22
|
* virt-xml: Initial commit, basic set of testsCole Robinson2014-01-251-0/+4
|
* Rename hide_unsupported_rhel_options to stable_defaults and clean-up its usageMartin Kletzander2014-01-211-5/+5
| | | | | | | | | | | | There were multiple problems with the setting and usage of hide_unsupported_rhel_options. Due to the fact that the option has several diferent namings throughout the code, this patch is renaming it to stable_defaults, which basically says what the option does and makes it possible to use it without need for more than one negation (where the old code had up to 4 of them in some places), which also helps understanding it. Signed-off-by: Martin Kletzander <mkletzan@redhat.com>
* spec: Require dbus-x11 (bz 1039803)Cole Robinson2013-12-141-0/+1
| | | | | | | virt-manager is one of those tools that people will often install when no traditional desktop is present. dbus-x11 is pulled in by desktop environments, but not by gtk3 for (presumably) legitimate reasons. But we need it to do anything worthwhile with dbus.
* Remove gconf dep, Require dconfCole Robinson2013-10-041-1/+1
|
* Fix last remnants of default_graphics=vncCole Robinson2013-10-021-7/+1
|
* Distribute appdata xml (bz 1011120)Cole Robinson2013-09-241-1/+2
| | | | More info: http://people.freedesktop.org/~hughsient/appdata/
* Fix spelling error in function namesCole Robinson2013-08-181-1/+1
|
* Prep for release 0.10.0v0.10.0Cole Robinson2013-06-191-0/+11
|
* One more vnc->spice cleanupMartin Kletzander2013-06-191-1/+5
| | | | | | | | Last commit changing the default was de1695b2, but there was still one place in man page left and the spec file was left dirty. This is hopefully the last vnc->spice patch Signed-off-by: Martin Kletzander <mkletzan@redhat.com>
* spec: Drop libguestfs conditionalCole Robinson2013-06-131-5/+0
| | | | We will likely never explicitly depend on it.
* spec: Make sure libvirt-daemon-config-network is installed (bz 950329)Cole Robinson2013-05-271-1/+1
|
* spec: Unconditionally add default-graphics=spice (bz 965864)Cole Robinson2013-05-271-5/+1
|
* spec: Make sure virt-manager pulls in -common (bz 958730)Cole Robinson2013-05-091-0/+1
|
* spec: Fix dep on vte (bz 958945)Cole Robinson2013-05-091-1/+1
|
* Remove AUTHORSCole Robinson2013-04-211-1/+1
| | | | | | Kind of a maintenance pain, and it's just poorly duplicating info from the git logs. We could autogenerate this but I don't really have the interest in figuring it out. Patches welcome :)
* setup: Drop use of python-distutils-extraCole Robinson2013-04-181-1/+0
| | | | | | | | The only bits were were using was the icon installation and translation building, which amounted to about 70 lines of code. Just steal it so we can avoid the dep which will cause trouble for future RHEL.
* Remove virt-manager-tuiCole Robinson2013-04-181-41/+2
| | | | | | | | | Was originally added with hopes for being used in an ovirt related product, but was more or less a code dump, and the author has been allocated to other things. He confirmed it's okay to remove. That, and it's currently broken, and we've had approximately 0 user feedback since it was committed.
* Port from gconf to gsettingsCole Robinson2013-04-181-28/+6
| | | | | | | | | | This unfortunately has a decent amount of fallout: add a wrapper class in config.py that reduces much of the churn. Another big piece is that gsettings can't accept arbitrary paths like gconf would, everything needs to be described in the schema. Also do a bunch more RPM spec modernizing
* requires libvirt-glib >= 0.0.9 for LibvirtGLib(None) workGuannan Ren2013-04-171-1/+1
|
* update spec file to use its version at runtimeGene Czarcinski2013-04-171-0/+1
| | | | | | | | | | | This is a "sanity" patch so that the version on the rpm and the version at runtime are the same. This patch depends on the patch which processes the spec.in file into the spec file, the patch which adds pkgversion to configure, and the snapshot patch. . Signed-off-by: Gene Czarcinski <gene@czarc.net>
* automate @VERSION@ in virt-manager.specGene Czarcinski2013-04-171-0/+565
| | | | | | | | | | | | This update renames virt-manager.spec to be virt-manager.spec.in and changes the version-id to @VERSION@ ... setup.py is modified to copy the virt-manager-spec.in file to virt-manager.spec and replace @VERSION@ with the current/actual version id. .gitignore is updated to ignore virt-manager.spec . Signed-off-by: Gene Czarcinski <gene@czarc.net>
* Remove autotools, replace with distutils-extraCole Robinson2013-04-031-577/+0
| | | | | | Despite being a known quantity, autotools is so overkill for our needs, so let's drop it and replace it with a much simpler and easy to customize system.
* Remove local copy of IPyCole Robinson2013-04-031-1/+2
|
* Stop tracking old help files, they are long deadCole Robinson2013-04-031-4/+1
|
* Convert to use GTK3 and GObject Introspection bindingsDaniel P. Berrange2013-04-031-4/+6
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Switch over to use GObject introspection bindings for all python modules related to GObject/GTK3/etc. It is not possible to mix and match old pyggtk/pygobject manual bindings with new introspection based bindings so it must be all changed in one go. Imports like import gtk Change to from gi.repository import Gtk The vmmGObject class is changed to always inherit from GObject.GObject There is no compelling reason to avoid a GObject dep for the virt-manager TUI & it horribly messed up the code. Signal declarations are changed from vmmChooseCD.signal_new(vmmChooseCD, "cdrom-chosen", [object, str]) To __gsignals__ = { "cdrom-chosen": (GObject.SignalFlags.RUN_FIRST, None, [object, str]) } which is required by new GObject bindings Most of the rest of the change is simply dealing with renamed constants / classes. Alot of legacy compat code was removed - ie helpers which check to see if certain GTK2 methods are available are no longer required since we're mandating GTK3 only. The event loop is replaced with LibvirtGLib's event loop. Still todo - Rip out all DBus stuff & make vmmEngine class inherit GtkApplication which provides unique support & DBus method handling - Switch to use LibvirtGConfig & LibvirtGObject for libvirt interaction - Possibly switch to Python 3 too ? - Figure out why GNOME keyring is missing Introspection support My suggestion is that the standalone GIT repo for virt-install only live on as a support branch for legacy platforms. A stable-0.9 branch of virt-manager can be kept for legacy PyGtk2 based virt-manager releases. The virt-manager master branch should exclusively use GObject inspection and ideally Python3 and contain both the virt-manager and virt-install codebases in one since they are intimately related to each other & using separate GIT repos has needlessly complicated life for everyone. crobinso: Some locking fixes Misc cleanups and dropping now-useless code Fix dbus usage Fix graph cell renderer regression Fix a couple tooltip issues
* Prep for release 0.9.5RELEASE-0.9.5-10.9-maintCole Robinson2013-04-011-0/+8
|
* spec: Add explicit pod2man depCole Robinson2013-03-011-0/+1
|
* spec: Fix libgnome-keyring conditionalCole Robinson2012-10-191-1/+1
|
* Prep for release 0.9.4RELEASE-0.9.4-1Cole Robinson2012-07-291-0/+4
|
* Prep for release 0.9.3RELEASE-0.9.3-1Cole Robinson2012-07-091-0/+4
|
* spec: tidy up default_graphics placementCole Robinson2012-07-091-6/+8
|
* Fix spec file conditional for all casesCole Robinson2012-07-091-5/+1
|
* Prep for release 0.9.2RELEASE-0.9.2-1Cole Robinson2012-07-091-0/+8
|
* spec: Changes to handle askpass-packageCole Robinson2012-07-081-0/+6
|
* Spec file updatesCole Robinson2012-04-251-9/+9
|
* Fix inclusion of extra_release to be unconditional on %dist existingDaniel P. Berrange2012-02-231-1/+1
|
* Build system changes for UI moveCole Robinson2012-02-021-3/+1
|
* Prep for releaseRELEASE-0.9.1-1Cole Robinson2012-01-311-0/+7
|
* spec: Fix disabling RHEL6 unsupported optionsCole Robinson2011-08-291-1/+1
|
* rpm: Update icon cache after installCole Robinson2011-08-021-0/+7
|
* rpm: TUI requires a newer version of python-newt_syrupCole Robinson2011-08-011-1/+1
|
* rpm: Don't error building if with_spice isn't definedCole Robinson2011-08-011-1/+1
|
* rpm: Handle lack of gconf helper macrosCole Robinson2011-08-011-1/+30
|
* spec: Add buildreq: GConf2 for gconf macrosCole Robinson2011-07-281-1/+5
| | | | Also have with_spice imply default=spice
* Prep for releaseRELEASE-0.9.0-1Cole Robinson2011-07-261-0/+11
|
* rpm: Add option for depending on libguestfsCole Robinson2011-07-261-0/+4
|
* rpm: TUI: Requires libuser and IPyCole Robinson2011-07-221-0/+2
|
* rpm: refactor spec to optionally build 'common' and 'tui' packagesCole Robinson2011-07-131-5/+72
|