aboutsummaryrefslogtreecommitdiffstats
path: root/deskutils/virt-manager
Commit message (Collapse)AuthorAgeFilesLines
* Convert Python ports to FLAVORS.mat2018-02-041-6/+6
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Ports using USE_PYTHON=distutils are now flavored. They will automatically get flavors (py27, py34, py35, py36) depending on what versions they support. There is also a USE_PYTHON=flavors for ports that do not use distutils but need FLAVORS to be set. A USE_PYTHON=noflavors can be set if using distutils but flavors are not wanted. A new USE_PYTHON=optsuffix that will add PYTHON_PKGNAMESUFFIX has been added to cope with Python ports that did not have the Python PKGNAMEPREFIX but are flavored. USES=python now also exports a PY_FLAVOR variable that contains the current python flavor. It can be used in dependency lines when the port itself is not python flavored. For example, deskutils/calibre. By default, all the flavors are generated. To only generate flavors for the versions in PYTHON2_DEFAULT and PYTHON3_DEFAULT, define BUILD_DEFAULT_PYTHON_FLAVORS in your make.conf. In all the ports with Python dependencies, the *_DEPENDS entries MUST end with the flavor so that the framework knows which to build/use. This is done by appending '@${PY_FLAVOR}' after the origin (or @${FLAVOR} if in a Python module with Python flavors, as the content will be the same). For example: RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}six>0:devel/py-six@${PY_FLAVOR} PR: 223071 Reviewed by: portmgr, python Sponsored by: Absolight Differential Revision: https://reviews.freebsd.org/D12464
* deskutils/virt-manager: update to 1.4.3novel2018-02-042-4/+4
|
* deskutils/virt-manager: update to 1.4.2novel2018-02-042-4/+4
|
* deskutils/virt-manager: update to 1.4.1novel2017-07-143-40/+4
| | | | | | | | | - Update to 1.4.1 - Drop patch-virtManager_viewers.py as it was previously cherry-picked from upstream, but it's included into this release PR: 220515 Submitted by: Yonas Yanfa
* deskutils/virt-manager: fix spice consolenovel2016-11-212-0/+36
| | | | | | | | | - add an upstream patch to fix spice console - bump PORTREVISION PR: 214625 Submitted by: Alexandr Krivulya Obtained from: upstream git repository
* deskutils/virt-manager: update to 1.4.0novel2016-07-042-4/+4
|
* deskutils/virt-manager: add missing run dep on www/py-requestsnovel2016-04-131-0/+2
| | | | | | Bump PORTREVISION due to packaging change. Reported by: Rainbow <rainbow@hacker.horse>
* deskutils/virt-manager: update to 1.3.2novel2016-04-096-72/+18
|
* Remove ${PORTSDIR}/ from dependencies, categories d, e, f, and g.mat2016-04-011-11/+11
| | | | | With hat: portmgr Sponsored by: Absolight
* Improve shebangfix frameworkamdmi32015-10-191-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | - Support multiple values in *_OLD_CMD, i.e. we can now fix both "/usr/bin/python" and "/usr/bin/env python" at the same time - Default *_OLD_CMD values are now always appended, so you don't need to specify them in individual ports - Add lua support (depends on USES=lua) - Add more default values, such as "/usr/bin/env foo" for python, perl, bash, ruby and lua - Shebangfix now matches whole words, e.g. we will no longer (erroneously) replace "/usr/bin/perl5.005" with "${perl_CMD}5.005" (but "/usr/bin/perl -tt" is still (correctly) replaced with "${perl_CMD} -tt") Note that *_OLD_CMD items containing spaces must now be quoted (e.g. perl_OLD_CMD=/bin/perl /usr/bin/perl "/usr/bin/env perl") Update shebangfix usage according to new rules in many ports: - Remove *_OLD_CMD for patterns now replaced by default - Quote custom *_OLD_CMD which contain spaces Fix shebangfix usage in many ports (irrelevant to infrastructure change): - Remove redundant SHEBANG_LANG (no need to duplicate default langs) - Remove redundant *_CMD (such as python_CMD=${LOCALBASE}/bin/python${PYTHON_VER} when USES=python is present) - Never use *_OLD_CMD in REINPLACE_CMD matchers, these should always look for exact string Approved by: portmgr (bapt) Differential Revision: D3756
* - over to novel@jgh2015-09-301-1/+1
|
* - address location of cpu_map.xml in capabilities.py [1]jgh2015-09-183-0/+41
| | | | | | | | | | | | - Use GtkVnc.Display() not GtkVnc.Display.new() [2] - bump portrev Both of these issues have been addressed upstream by crobinso@redhat.com: [1] https://github.com/virt-manager/virt-manager/commit/b15c44923c9af9d42d04a508de0d9cc8744dc73e [2] https://github.com/virt-manager/virt-manager/commit/5df6757a0bd9b8f4dcca17a73bad3d9fe46d7823 PR: 203152 [2] Submitted by: yonas@fizk.net [2], daniel@morante.net (via mail) [1]
* - update to 1.2.1jgh2015-08-115-54/+11
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | From Changelog: Release 1.2.1 (June 06, 2015) ----------------------------- - Bugfix release - Fix connecting to older libvirt versions (Michal Kepie'n) - Fix connecting to VM console with non-IP hostname (Giuseppe Scrivano) - Fix addhardware/create wizard errors when a nodedev disappears - Fix adding a second cdrom via customize dialog Release 1.2.0 (May 04, 2015) ---------------------------- - OVMF/AAVMF Support (Laszlo Ersek, Giuseppe Scrivano, Cole Robinson) - Improved support for AArch64 qemu/kvm - virt-install: Support --disk type=network parameters - virt-install: Make --disk just work - virt-install: Add --disk sgio= option (Giuseppe Scrivano) - addhardware: default to an existing bus when adding a new disk (Giuseppe Scrivano) - virt-install: Add --input device option - virt-manager: Unify storagebrowser and storage details functionality - virt-manager: allow setting a custom connection row name - virt-install: Support --hostdev scsi passthrough - virt-install: Fill in a bunch of --graphics spice options - Disable spice image compression for new local VMs - virt-manager: big reworking of the migration dialog
* - address python issue with Uses shebangjgh2015-08-081-2/+2
| | | | | PR: 202106 Reported by: lantw44@gmail.com
* - Properly fix all shebangsamdmi32015-08-061-5/+5
| | | | | | | | - Add NO_ARCH Reported by: kwm Approved by: portmgr blanket MFH: 2015Q3 (blanket)
* - Fix shebangsamdmi32015-07-291-2/+5
| | | | | Approved by: portmgr blanket MFH: 2015Q3 (blanket)
* - fix Xen text console issuejgh2015-04-302-1/+33
| | | | | PR: 199750 Submitted by: lantw44@gmail.com
* - fix outdated dependencies, and address old api [1]jgh2015-04-093-7/+28
| | | | | | | - while here address autoplist issue and sort python variables PR: 199108 [1] Submitted by: lantw44@gmail.com [1]
* Fix a typo in RUN_DEPENDSantoine2015-02-121-1/+1
|
* - py-spice-gtk has been added as dependencyjgh2015-02-102-24/+4
| | | | | | | - bump portrevision PR: 195809 Reported by: amdmi3@
* - remove CPE information, as it is not registeredjgh2014-12-051-2/+1
|
* - detect libosinfo more effectivelyjgh2014-11-222-147/+3
| | | | | - add cpe information - remove pkg-plist (missed in r372972)
* - update to 1.1.0jgh2014-11-215-25/+93
| | | | | | | | | - patch to work with gtk2/3 [1] - this update obsoletes net-mgmt/virtinst (merged) Changelog: See http://virt-manager.org/download/ Obtained from: https://build.opensuse.org/package/view_file/openSUSE \ :Factory/virt-manager/virt-manager-Gtk-30.patch [1]
* The FreeBSD GNOME team proudly presents GNOME 3.14 and Cinnamon 2.2.kwm2014-11-191-0/+2
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Gnome 3.14.1 and Cinnamon 2.2.16 are supported on FreeBSD 9.3-RELEASE and up. This commit removes the old GNOME 2 desktop, bindings and some ports that can't be compiled. A few ports where updated to more recent versions to allow them to compile with this update. Apart from updating ports to newer versions GDM is more integrated with gnome-shell now, and handles several things for the GNOME desktop such as screen locking. If you want to use GNOME 3 via startx, you will have to add your own lock screen/screensaver. For example xscreensaver can be used for sessions started without GDM. Shell Extensions can be installed via https://extensions.gnome.org/ , we have ported a few that can't be installed via this way. The old gnome-utils and gnome-games ports where split up into single ports and where converted to meta-ports. gnome-terminal requires a UTF-8 locale to run, gdm handles this already, but if you use startx you need to do this yourself. Upgrade instructions: Delete the old and conflicting packages: # pkg delete clutter gnome-utils gnome-panel gnome-keyring vala-vapigen \ guile gcalctool gnome-media libgnomekbd # pkg delete gnome-screensaver gnome-applets bug-buddy evolution-exchange \ evolution-webcal gnome-system-tools seahorse-plugins gnome-control-center For package users the following lines will be enough: # pkg upgrade # pkg install gnome3 For ports users should do the following: # portmaster -a # portmaster x11/gnome3 We are currently aware of two issues. The first issue is a bug in the file monitoring code in the glib20 port. This bug causes glib programs to crash when files in a monitored directory are added or removed. Upstream is aware of the problem, but since the problem is quite complex there is no solution yet. This problem isn't restricted to BSD. The second issue is that on certain video cards totem will display a purple/pink overlay on the video. It not clear yet where the issues comes from. Major thanks goes to Gustau Perez for being a driving force behind getting GNOME 3 up to speed again. Also thanks to Antoine Brodin for running the exp-runs. This update was also made possible by: Joe Maloney Kris Moore Beeblebrox Ryan Lortie Antoine Jacoutot and everyone I missed
* - update libvirt to 1.2.10jgh2014-11-051-1/+1
| | | | - chase shared library bump
* - update libvirt,py-libvirt,libvirt-glib to 0.1.9jgh2014-10-301-1/+1
| | | | | | | | - shift var from ${PREFIX} to /var - bump shared libs of dep. port PR: 192441 (based on) Submitted by: olevole@olevole.ru
* Cleanup plistbapt2014-10-201-17/+0
|
* - Convert ports from databases/ and deskutils/ to new USES=pythonmva2014-10-191-2/+1
| | | | Approved by: portmgr (implicit)
* Update the default version of GCC in the Ports Collection from GCC 4.7.4gerald2014-09-111-1/+1
| | | | | | | | | | to GCC 4.8.3. Part II, Bump PORTREVISIONs. PR: 192025 Tested by: antoine (-exp runs) Approved by: portmgr (implicit)
* security/libssh2:tijl2014-08-291-1/+1
| | | | | | | | | | | | | | | | | - Convert to USES=libtool and USES=pathfix - Add INSTALL_TARGET=install-strip - Only depend on openssl if GCRYPT option is off - Sanitize libssh2.pc devel/libvirt: - Remove workaround for broken libssh2.pc - Add USES=libtool and bump dependent ports - Convert to INSTALL_TARGET=install-strip devel/libvirt-glib: - Convert to USES=libtool Approved by: portmgr (implicit, bump unstaged port)
* - bring in dependency of devel/py-libvirtjgh2014-06-021-2/+3
| | | | | PR: ports/190278 Submitted by: rakuco@
* The FreeBSD x11@ and graphics team proudly presentszeising2014-04-171-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | a zeising, kwm production, with help from dumbbell, bdrewery: NEW XORG ON FREEBSD 9-STABLE AND 10-STABLE This update switches over to use the new xorg stack by default on FreeBSD 9 and 10 stable, on osversions where vt(9) is available. It is still possible to use the old stack by specifying WITHOUT_NEW_XORG in /etc/make.conf . FreeBSD 8-STABLE and released versions of FreeBSD still use the old version. A package repository with binary packages for new xorg will be available soon. This patch also contains updates of libxcb and related ports, pixman, as well as some drivers and utilities. Bump portrevisions for xf86-* ports, as well as virtualbox-ose-additions due to xserver version change. Apart from these updates, the way shared libraries are handled has been changed for all xorg ports, as well as libxml2 and freetype, which means ltverhack is gone and as a consequence shared libraries have been bumped. The plan is that this change will make library bumps less likely in the future. All affected ports have had their portrevisions bumped as a consequence of this. Fix some issues where WITH_NEW_XORG weren't detected properly on CURRENT. Update instructions, hardware support, and more notes can be found on https://wiki.freebsd.org/Graphics Thanks to: all testers, bdrewery and the FreeBSD x11@ team exp-run by: bdrewery [1] PR: ports/187602 [1] Approved by: portmgr (bdrewery), core (jhb)
* Supprot stagebapt2014-04-042-14/+5
| | | | Use options helpers
* Remove trailing whitespaces from category deskutilsehaupt2014-02-211-1/+1
|
* According to the Porter's Handbook (5.12.2.3.) default options must be added toehaupt2014-02-101-0/+3
| | | | | | | | | | | OPTIONS_DEFINE. This policy has been implemented only recently that's why we have many ports violating this policy. This patch adds the default options specified in the Porter's Handbook to OPTIONS_DEFINE where they are being used. Ports maintained by gnome@FreeBSD.org, kde@FreeBSD.org and x11@FreeBSD.org have been excluded. Approved by: portmgr (bapt)
* Part 1 at removing now useless FETCH_ARGS redifitionbapt2014-01-031-2/+0
|
* - update to 1.2.0 and bump shared libraries in respective portsjgh2013-12-181-1/+1
| | | | | | - while here shift new lib_depends format where needed Changes: http://libvirt.org/news.html
* In preparation for making libtool generate libraries with a sane name, fix allbapt2013-12-121-1/+1
| | | | LIB_DEPENDS in deskutils
* Add NO_STAGE all over the place in preparation for the staging support (cat: ↵bapt2013-09-211-0/+1
| | | | deskutils)
* - attempt to fix fetch from third-partyjgh2013-07-181-1/+4
| | | | | | - add to public_distfiles while here as this issue has come up too often lately Reported by: pkg-fallout@
* - convert USE_GMAKE to USES=gmakejgh2013-07-061-1/+1
|
* - update to 1.1.0 and bump shared libraries in respective portsjgh2013-07-031-1/+2
| | | | | | | - while here: - fix option check in sysutils/cfengine34 - move devel/libvirt-glib to use glib20 in favor of gio-fam-backend (suggested by kwm@) - restore ABI version in net-mgmt/collectd5
* - Convert USE_GETTEXT to USES (part 3)ak2013-04-251-1/+1
| | | | Approved by: portmgr (bapt)
* - update deskutils/virt-manager to 0.9.5jgh2013-04-193-5/+5
| | | | | | - update net-mgmt/virtinst to 0.600.4 Feature safe: yes
* - update libvirt to 1.0.0, and bump others for shlib changejgh2012-12-111-7/+3
| | | | | | - explictly tie to ABI version, required - update historical headers - add shared description for libvirt
* - typojgh2012-09-061-1/+1
| | | | Spotted by: beat@
* - follow r303724 shlib bump of libvirtjgh2012-09-061-1/+2
|
* - update to 0.9.4, remove patchfile as it was merged into releasejgh2012-08-073-27/+4
| | | | | The virt-manager release includes: - Fix VNC keygrab issues
* - update to 0.9.3jgh2012-07-234-24/+102
| | | | | | | | | | * Convert to gtkbuilder: UI can now be editted with modern glade tool * virt-manager no longer runs on RHEL5, but can manage a remote RHEL5 host * Option to configure spapr net and disk devices for pseries (Li Zhang) * Many bug fixes and improvements - bring in patch already pushed upstream for hardcoding of python (http://git.fedorahosted.org/git/?p=virt-manager.git;a=commit;h=30282a17091014ba5a96d20f4260df55779933c4) - account for NLS
* - update png to 1.5.10dinoex2012-06-011-0/+1
|
* - Update to 0.9.1jgh2012-02-033-5/+3
| | | | Approved by: crees, rene (mentors, implicit)
* move contributor address => jghjgh2011-12-211-1/+1
| | | | Approved by: crees (mentor)
* - Remove unnecessary GNOME componentseadler2011-08-231-1/+2
| | | | | | PR: 159922 Submitted by: Jason Helfman <jhelfman@experts-exchange.com> (maintainer) Approved by: sahil (mentor)
* Update to 0.9.0arved2011-07-303-43/+54
| | | | | PR: 159262 Submitted by: maintainer
* The "Virtual Machine Manager" application (virt-manager for short package name)decke2011-07-094-0/+154
is a desktop user interface for managing virtual machines. It presents a summary view of running domains, their live performance & resource utilization statistics. The detailed view graphs performance & utilization over time. Wizards enable the creation of new domains, and configuration & adjustment of a domain's resource allocation & virtual hardware. An embedded VNC client viewer presents a full graphical console to the guest domain. WWW: http://virt-manager.org PR: ports/157735 Submitted by: Jason Helfman <jhelfman@experts-exchange.com>