search for: girepository

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

2012 Jan 22
1
Packaging GObject for Fedora (was: [rjones@fedoraproject.org: New upstream version 1.15.19.])
...@ -961,6 +1002,19 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man3/guestfs-erlang.3* +%files gobject +%defattr(-,root,root,-) +%{_libdir}/libguestfs-gobject-1.0.so.0* + + +%files gobject-devel +%defattr(-,root,root,-) +%{_libdir}/libguestfs-gobject-1.0.so +%{_includedir}/guestfs-gobject.h +%{_libdir}/girepository-1.0/Guestfs-1.0.typelib +%{_datadir}/gir-1.0/Guestfs-1.0.gir + + %files man-pages-uk %defattr(-,root,root,-) %lang(uk) %{_mandir}/uk/man1/*.1* -- Richard Jones, Virtualization Group, Red Hat http://people.redhat.com/~rjones New in Fedora 11: Fedora Windows cross-compiler. Compile Windows pro...
2010 Mar 16
1
[PATCH] Non-working support for GObject Introspection.
...n: + + cd gir + g-ir-scanner -n Guestfs --nsversion 0.0 \ + -L ../src/.libs -lguestfs \ + ../src/guestfs.h > Guestfs-0.0.gir + g-ir-compiler Guestfs-0.0.gir > Guestfs-0.0.typelib + +If that went OK, then copy 'Guestfs-0.0.typelib' into the public +directory '/usr/lib{,64}/girepository-1.0/' (or you can make a symlink +which works just as well). + +In theory you should be able to use this immediately from gjs-console: + + LIBGUESTFS_DEBUG=1 gjs-console + gjs> const Guestfs = imports.gi.Guestfs; + gjs> g = Guestfs.create (); + +Currently this gives the following error...
2017 Jul 07
0
[PATCH v6 3/3] gobject: Add outline guestfs-gobject(3) manual page.
...0644 --- a/gobject/Makefile.am +++ b/gobject/Makefile.am @@ -31,6 +31,7 @@ EXTRA_DIST = \ TODO.txt \ .gitignore \ bindtests-retvalues.js \ + guestfs-gobject.pod \ tests-misc.js \ run-tests \ run-tests-retvalues \ @@ -88,6 +89,8 @@ gir_DATA = $(INTROSPECTION_GIRS) typelibdir = $(libdir)/girepository-1.0 typelib_DATA = $(INTROSPECTION_GIRS:.gir=.typelib) +# Tests. + TESTS = \ run-tests \ run-tests-retvalues @@ -103,3 +106,19 @@ $(TESTS): $(typelib_DATA) CLEANFILES += $(gir_DATA) $(typelib_DATA) endif HAVE_INTROSPECTION + +# Documentation. + +man_MANS = guestfs-gobject.3 +noinst_DATA...
2015 Sep 15
1
[PATCH] Add 'make installcheck' rule to test installed packages.
This is my proposed alternative to the complicated test framework (https://www.redhat.com/archives/libguestfs/2015-August/msg00022.html). In this patch, when we want to run tests on installed packages we just copy in the installed binaries over the source directory, and run the test suite as normal. This is basically the same as the current (not used) contrib/make-check-on-installed.pl script,
2016 Feb 15
1
[PATCH] Start adding return values tests for bindings
...ion + 090 retvalues - 100 launch, create partitions and LVs and filesystems diff --git a/gobject/Makefile.am b/gobject/Makefile.am index b7e7f10..1f523b7 100644 --- a/gobject/Makefile.am +++ b/gobject/Makefile.am @@ -90,7 +90,9 @@ gir_DATA = $(INTROSPECTION_GIRS) typelibdir = $(libdir)/girepository-1.0 typelib_DATA = $(INTROSPECTION_GIRS:.gir=.typelib) -TESTS = run-tests +TESTS = \ + run-tests \ + run-tests-retvalues if ENABLE_APPLIANCE TESTS += run-live-tests diff --git a/gobject/bindtests-manual.js b/gobject/bindtests-manual.js deleted file mode 100644 index d7bbe5f..0000000 --- a/go...
2012 Jan 20
11
[PATCH 01/10] Revert "Revert "generator: Add CamelName flag""
This reverts commit 3f6ca541c7b24d4c86688a509582cb41a7e0078c. The original commit was reverted prematurely. --- generator/generator_actions.ml | 10 +++++----- generator/generator_checks.ml | 5 +++++ generator/generator_types.ml | 3 +++ 3 files changed, 13 insertions(+), 5 deletions(-) diff --git a/generator/generator_actions.ml b/generator/generator_actions.ml index
2017 Jul 07
3
[PATCH v3 0/3] gobject: Remove gtk-doc.
Another test, the same as before.
2017 Jul 07
3
[PATCH v4 0/3] gobject: Remove gtk-doc (RHBZ#1465665).
Best of .. 4?
2017 Jul 07
3
[PATCH v5 0/3] gobject: Remove gtk-doc (RHBZ#1465665).
After enabling procmail debugging ...
2017 Jul 07
3
[PATCH v2 0/3] Remove gtk-doc.
This is a repost so I can test my procmail script / automatic testing framework. The patch series is identical to v1. Rich.
2017 Jun 29
3
[PATCH 0/3] gobject: Remove gtk-doc and replace with guestfs-gobject(3) manual page.
Patch 1 cleans up the gobject tests. Patches 2 and 3 remote gtk-doc, which is slow and useless, and replace it with a simple manual page. https://bugzilla.redhat.com/show_bug.cgi?id=1465665 Rich.
2012 Jan 17
3
GObject bindings
This is the first iteration of the GObject bindings. I have 'kicked the tyres' on these, meaning I have ensured that a bunch of basic manual tests work as expected. I'm in the process of adding more comprehensive tests. Here's an example simple javascript program which uses these bindings: === const Guestfs = imports.gi.Guestfs; print('Starting'); var g = new
2017 Jul 07
4
[PATCH v6 0/3] gobject: Remove gtk-doc (RHBZ#1465665).
Hopefully this time ...