similar to: [p2v PATCH 0/3] Small build fixes

Displaying 20 results from an estimated 200 matches similar to: "[p2v PATCH 0/3] Small build fixes"

2019 Jul 03
7
[PATCH 0/6] p2v: make it more independent (part #2)
As preliminary steps in splitting virt-p2v to an own repository, continue making p2v more independent within libguestfs. This is accomplished by the following changes: - have only the authors in the about dialog, and read them from a local AUTHORS file - few more cleanups This is still not complete, although I believe most of the work needed is done, and it still makes p2v usable within
2016 May 30
1
[PATCH v3] p2v: Allow virt-p2v to be built with Gtk 2 or 3.
This version of the Gtk 2/3 patch gets alignment and padding mostly right. I still can't work out how to vertically align labels in the middle of a cell in a GtkGrid. The GtkTextView in the final dialog is still broken. Rich.
2019 Jul 10
1
[p2v PATCH] Use List::MoreUtils instead of List::Util
List::Util has "any" only from version 1.33, which older distros (like RHEL/CentOS 7/6) do not have. Instead use List::MoreUtils, which is available, and provides the same functionality. --- generate-p2v-config.pl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/generate-p2v-config.pl b/generate-p2v-config.pl index 01387e0..be98838 100755 --- a/generate-p2v-config.pl
2016 May 30
4
[PATCH v2 0/3] p2v: Allow virt-p2v to be built with Gtk 2 or 3.
This is basically the same as what I posted earlier today. The main difference is I split out the GDK thread sychronization (removal of) changes from the other Gtk 2/3 changes, which should make it a bit easier to review. Gtk 3 is still not quite perfect. Apart from the problem with the GtkTextView noted before, there are also vertical alignment and padding problems with labels in GtkGrid
2012 Nov 30
1
How to add widgets of gWidgets to widgets of rgtk2 ???
I have a layout in gwidgets. To this, I wanted to add a Textbox(gtkEntry) created from rgtk2... The code is as follows: MainLayOut <- glayout(homogeneous = FALSE, spacing = 10, container = SubGroup) MainLayOut[1, 1, anchor=left] <- "Number of Total Patients: " font(MainLayOut[1, 1, anchor=left]) <- c(weight="bold") patients <- gtkEntry()
2016 May 30
2
[PATCH 0/2] p2v: Allow virt-p2v to be built with Gtk 2 or 3.
... and a small initial patch which makes it easier to test virt-p2v without having to start up a virtual machine. There is still a bug in Gtk 3 where the GtkTextView on the final (running) dialog ignores gtk_widget_set_size_request and so the window appears just a single pixel high. Rich.
2017 Dec 21
1
Wish List: base::source() + Add Execution Time Argument
R does provide the addTaskCallback / taskCallbackManager to run a callback function after every top level command. However there is not an equivalent interface that would be run _before_ each command, which would make it possible to time of top level calls and provide other execution measurements. On Thu, Dec 21, 2017 at 11:31 AM, William Dunlap via R-devel <r-devel at r-project.org> wrote:
2019 Aug 30
0
[p2v PATCH 3/3] build: require List::MoreUtils
It is used by the generate-p2v-config.pl build script, so make sure to error out earlier when this Perl module is not found. Followup of commit 2ac0713900dc60d9f0fbb8e5234ee41254f03e84. --- m4/p2v-progs.m4 | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/m4/p2v-progs.m4 b/m4/p2v-progs.m4 index d54b391..b3d0ce7 100644 --- a/m4/p2v-progs.m4 +++ b/m4/p2v-progs.m4 @@ -58,6 +58,14 @@ else
2019 Aug 30
2
Re: [p2v PATCH 3/3] build: require List::MoreUtils
Yes this series looks good, thanks. Can we put patch 2 into libguestfs as well? (Until or unless we delete p2v from libguestfs) Rich. -- Richard Jones, Virtualization Group, Red Hat http://people.redhat.com/~rjones Read my programming and virtualization blog: http://rwmj.wordpress.com virt-p2v converts physical machines to virtual machines. Boot with a live CD or over the network (PXE) and
2019 Aug 30
0
Re: [p2v PATCH 3/3] build: require List::MoreUtils
On Friday, 30 August 2019 12:52:59 CEST Richard W.M. Jones wrote: > Yes this series looks good, thanks. Thanks, pushed to virt-p2v. > Can we put patch 2 into libguestfs as well? (Until or unless we > delete p2v from libguestfs) (Both patches 1 and 2 are needed, not just 2.) What about: - I push the patches to libguestfs/stable-1.40 - we get a virt-p2v release out - we remove virt-p2v
2019 Aug 30
1
Re: [p2v PATCH 3/3] build: require List::MoreUtils
On Fri, Aug 30, 2019 at 01:46:27PM +0200, Pino Toscano wrote: > On Friday, 30 August 2019 12:52:59 CEST Richard W.M. Jones wrote: > > Yes this series looks good, thanks. > > Thanks, pushed to virt-p2v. > > > Can we put patch 2 into libguestfs as well? (Until or unless we > > delete p2v from libguestfs) > > (Both patches 1 and 2 are needed, not just 2.) >
2013 Oct 09
3
Re: failing connections w/ virt-manager
Am 08.10.2013 14:46, schrieb Stefan G. Weichinger: >> Try enabling the flag, re-emerging the package, setting the logs and >> then reproduce it again. Check the logs and you should see why it's >> disconnecting. The docs say that libvirtd has to listen on the TCP port ... checked that: # netstat -alnp | grep libv tcp 0 0 0.0.0.0:16509 0.0.0.0:*
2016 Jul 07
3
Configure error on Solaris 10
Hello,    I get the following error while trying to configure an llvm build on Solaris 10-SPARC: CMake Error at projects/libcxx/CMakeLists.txt:268 (message):   C++11 is required but the compiler does not support -std=c++11 However, the error is about a missing header file (llvm/Support/Solaris.h) as reported in build/CMakeFiles/CMakeError.log: Performing C++ SOURCE FILE Test
2018 Nov 06
1
[PATCH] p2v: use newer GTK APIs if possible
Make use of APIs available in early GTK+ 3 versions, adding compatibility functions/macros for older GTK+ versions. There is no behaviour change, and it helps in porting to even newer GTK+ versions. --- p2v/gui-gtk3-compat.h | 16 ++++++++++++++++ p2v/gui.c | 13 +++++++++---- 2 files changed, 25 insertions(+), 4 deletions(-) diff --git a/p2v/gui-gtk3-compat.h
2017 Sep 19
2
upgrade or install to Centos 7.4.1708
On Tue, 19 Sep 2017 16:40:52 +0000 Richard wrote: > The mate-gtk2/3 issue effects windows/menus/scrollbars and the like, > not the login screen. See: > > <https://lists.centos.org/pipermail/centos/2017-August/165955.html> > > for that issue. I switched to the Adwaita theme, as suggested there. Clearlooks-phenix also works fine with the latest C7/Mate and looks more like
2017 Jul 17
6
Installing support for Chinese text in Centos 7
On 05/27/2017 10:15 PM, H wrote: > On 04/07/2017 10:12 AM, H wrote: >> I installed fcitx-pinyn, and its dependencies, and I now have ZH as a choice but have not been able to type pinyin and get a list of Chinese characters to choose among like I could on CentOS 6. Does anyone have it working? >> >> >> On 4/2/2017 11:27 AM, H wrote: >>> Thank you, I just
2013 Feb 18
9
Xen 4.2.1 unable to get domain type for domid
Hi guys, I''m running Xen 4.2.1, compiled manually so I can play with Remus and DRBD, running on Ubuntu 12.10. I keep getting this error when trying to start up my first VM to run the Ubuntu netboot installer. ----------------------------------------------------------------- root@left:/home/eross# xl create /etc/xen/ubuntu.cfg -c Parsing config from /etc/xen/ubuntu.cfg Daemon running
2017 Aug 02
2
fcitx-anthy request (for Japanese users)
On Tue, Aug 01, 2017 at 08:55:22PM -0400, H wrote: > > Scott, I am back at this again. I am able to switch between Chinese and two western languages in terminal sessions but not in GUI applications such as LO, Thunderbird, Firefox... Only the default language works in these GUI applications. > > What setting in fcitx might I be missing? Well, I'm not the expert, especially at
2017 Feb 01
3
Libvirt and Virt-manager compatibility
Hi, I am using Libvirt (1.2.2) on RHEL6. I want to use the compatible virt-manager for it. When I tried 1.4.0 and 1.3.0 there is an insatllation issue on RHLE6 for gtk3. ?Is there any virt-manager version which works with 1.2.2 and RHLE6 too. Also what is the compatibility matrix for libvirt and virt-manager version. Thanks & RegardsAbhishek From: "libvirt-users-request at
2017 Jul 26
3
fcitx-anthy request (for Japanese users)
On Tue, Jul 25, 2017 at 09:06:25PM -0400, H wrote: > On 07/20/2017 05:49 AM, Scott Robbins wrote: > > assignee's free time), but anyone who would like to add their support to > > the request can view the bug at > > https://bugzilla.redhat.com/show_bug.cgi?id=1471924 > > And I filed a request for the fcitx-config-gkt2/gtk3 tools to be compiled. Which would also be