search for: guestfs_introspect

Displaying 13 results from an estimated 13 matches for "guestfs_introspect".

2017 May 04
1
[PATCH] perl: drop %guestfs_introspection stuff
...tor/perl.ml +++ b/generator/perl.ml @@ -724,8 +724,7 @@ use warnings; # This is always 1.0, never changes, and is unrelated to the # real libguestfs version. If you want to find the libguestfs -# library version, use $g->version. If you want to test if -# APIs/parameters are present, use %%guestfs_introspection. +# library version, use $g->version. use vars qw($VERSION); $VERSION = '1.0'; @@ -927,88 +926,6 @@ C<$g-E<gt>feature-available>.\n\n" opt pr "=cut\n\n"; - (* Introspection hash. *) - pr "use vars qw(%%guestfs_introspection);\n"; - pr...
2011 Oct 27
1
[PATCH] perl: Add %guestfs_introspection hash with introspection information.
-- Richard Jones, Virtualization Group, Red Hat http://people.redhat.com/~rjones New in Fedora 11: Fedora Windows cross-compiler. Compile Windows programs, test, and build Windows installers. Over 70 libraries supprt'd http://fedoraproject.org/wiki/MinGW http://www.annexia.org/fedora_mingw -------------- next part --------------
2016 Feb 25
2
[PATCH] perl: Don't embed API number in Sys::Guestfs.
...s API. It is not directly -# related to the libguestfs version number. +# This is always 1.0, never changes, and is unrelated to the +# real libguestfs version. If you want to find the libguestfs +# library version, use $g->version. If you want to test if +# APIs/parameters are present, use %%guestfs_introspection. use vars qw($VERSION); -$VERSION = '0.%d'; +$VERSION = '1.0'; require XSLoader; XSLoader::load ('Sys::Guestfs'); -" max_proc_nr; +"; (* Methods. *) pr "\ -- 2.5.0
2016 Feb 26
0
Re: [PATCH] perl: Don't embed API number in Sys::Guestfs.
...y > -# related to the libguestfs version number. > +# This is always 1.0, never changes, and is unrelated to the > +# real libguestfs version. If you want to find the libguestfs > +# library version, use $g->version. If you want to test if > +# APIs/parameters are present, use %%guestfs_introspection. > use vars qw($VERSION); > -$VERSION = '0.%d'; > +$VERSION = '1.0'; Why don't we just put the libguestfs version as module version? (doing the same in other bindings as well.) -- Pino Toscano
2012 Jan 23
1
[ANNOUNCE] libguestfs 1.16 released - tools for managing virtual machines and disk images
...ascript. Please note these are not stable and final in this release. (Matthew Booth). - support for Ruby >= 1.9 - Ruby bindings can be disabled individually (Hilko Bengen) - support for Python 2.6, 3.x (Richard Jones, Hilko Bengen) - support for PHP >= 5.4 - new %guestfs_introspection hash is available in Perl bindings so you can query which optional arguments are available inspection: - guests with MD devices can be inspected (Matthew Booth) - support for GNU/Hurd guests guestfish: - libguestfs events (such as progress bar events and log messages) can...
2018 Feb 09
0
ANNOUNCE: libguestfs 1.38 released
...dable output has been enhanced so it includes "vcenter-https", "xen-ssh" and "in-place" facts (Pino Toscano). Language bindings Fix multiple memory leaks and other data corruption problems in the Java bindings (Pino Toscano). Perl %guestfs_introspection has been dropped. Inspection Inspection support was rewritten in OCaml and included inside the daemon. This makes inspection considerably faster, more robust and more easily extensible in future. Better icon support for ALT Linux guests (Pino Toscano)....
2012 Jul 14
6
[PATCH 0/6] Allow non-optargs functions to gain optional arguments.
This rather complex set of patches allow non-optargs functions to gain optional arguments, while preserving source and binary backwards compatibility. The problem is that we cannot add an optional argument to an existing function. For example, we might want to add flags to the 'lvresize' API which currently has no optional arguments.
2013 Feb 04
1
[PATCH] generator: Add visibility to action struct
...pr " description => %S,\n" shortdesc; pr " },\n"; - ) all_functions_sorted; + ) external_functions_sorted; pr ");\n\n"; pr "# Add aliases to the introspection hash.\n"; @@ -969,7 +967,7 @@ handlers and threads. pr "$guestfs_introspection{%s} = \\%%ielem%d;\n" alias !i; incr i ) non_c_aliases - ) all_functions_sorted; + ) external_functions_sorted; pr "\n"; (* End of file. *) diff --git a/generator/php.ml b/generator/php.ml index 4ed7b30..d457507 100644 --- a/generator/php.ml +++ b/gener...
2014 Sep 23
0
[PATCH 13/13] syntax-check: fix trailing_blank check
...release. (Matthew Booth). - + - support for Ruby >= 1.9 - + - Ruby bindings can be disabled individually (Hilko Bengen) - + - support for Python 2.6, 3.x (Richard Jones, Hilko Bengen) - + - support for PHP >= 5.4 - + - new %guestfs_introspection hash is available in Perl bindings so you can query which optional arguments are available inspection - guests with MD devices can be inspected (Matthew Booth) - + - support for GNU/Hurd guests guestfish - libguestfs events (such as progress ba...
2016 Sep 02
6
[PATCH 0/4] generator: Some work to split large C files
By splitting up large C files we can make parallel compiles a bit faster. Rich.
2014 Sep 23
27
[PATCH 00/13] syntax-check
Hi Rich, This series includes patches to make `make syntax-check` pass. Some of the fix require change to maint.mk, but the file is not in git repo. Is it intended? Thanks! Hu Tao (13): syntax-check: dirty hack to pass bindtextdomain check syntax-check: fix error_message_period check syntax-check: fix makefile_at_at_check syntax-check: fix prohibit_assert_without_use check
2017 Apr 21
0
[PATCH 1/2] generator: Simplify the handling of string parameters.
...indings that it still uses a top-level type. (Compare with FileIn/FileOut where the only difference is in the protocol, but the bindings can uniformly treat it as a plain String.) There is no semantic change, and the generated files are identical except for a minor change in the (deprecated) Perl %guestfs_introspection table. --- generator/GObject.ml | 36 +- generator/OCaml.ml | 25 +- generator/XDR.ml | 12 +- generator/actions_augeas.ml | 24 +- generator/actions_core.ml | 720 ++++++++++++++---------...
2017 Apr 21
4
[PATCH 0/2] generator: Simplify the handling of string parameters.
Very large but mechanical change to the generator. Rich.