search for: 02110

Displaying 20 results from an estimated 1377 matches for "02110".

2019 Sep 18
1
[p2v PATCH v2] Use URL to point to GNU licenses
...- a/Makefile.am +++ b/Makefile.am @@ -12,8 +12,7 @@ # GNU General Public License for more details. # # You should have received a copy of the GNU General Public License -# along with this program; if not, write to the Free Software -# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. +# along with this program. If not, see <https://www.gnu.org/licenses/>. include $(top_srcdir)/subdir-rules.mk diff --git a/autogen.sh b/autogen.sh index fcdd0ce..f055ffc 100755 --- a/autogen.sh +++ b/autogen.sh @@ -13,8 +13,7 @@ # GNU General Public License for more details....
2012 Dec 04
0
[PATCH] Update FSF address.
...GNU GENERAL PUBLIC LICENSE + Version 2, June 1991 - Copyright (C) 1989, 1991 Free Software Foundation, Inc. - 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA + Copyright (C) 1989, 1991 Free Software Foundation, Inc., + 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA Everyone is permitted to copy and distribute verbatim copies of this license document, but changing it is not allowed. - Preamble + Preamble The licenses for most software are designed to take away your freedom to share and change it. By contra...
2013 Jun 01
1
[PATCH] Add missing config.h includes
...clude "FLAC++/metadata.h" #include "FLAC/assert.h" diff --git a/src/plugin_xmms/charset.c b/src/plugin_xmms/charset.c index 2c5167f..6d86848 100644 --- a/src/plugin_xmms/charset.c +++ b/src/plugin_xmms/charset.c @@ -20,6 +20,10 @@ * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. */ +#ifdef HAVE_CONFIG_H +#include "config.h" +#endif + #include "plugin.h" #include <stdlib.h> diff --git a/src/plugin_xmms/configure.c b/src/plugin_xmms/configure.c index 6b83435..3dfddc4 100644 --- a/src/plugin_xmms/configure.c +++ b/src/plugin_xmms/co...
2015 Feb 06
2
[PATCH v3] virt-copy, virt-tar: show help for -h
Shows manpage for virt-copy-in,out and virt-tar-in,out when user supplies -h as a parameter instead of listing unrelated commands with descriptions. Maros Zatko (1): virt-copy, virt-tar: show help for -h fish/virt-copy-in | 9 +++++++++ fish/virt-copy-out | 9 +++++++++ fish/virt-tar-in | 9 +++++++++ fish/virt-tar-out | 9 +++++++++ 4 files changed, 36 insertions(+) -- 1.9.3
2016 Feb 23
0
[PATCH 1/4] generator: Add interfaces to all modules.
...or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program; if not, write to the Free Software + * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA + *) + +val generate_bindtests : unit -> unit +val generate_erlang_bindtests : unit -> unit +val generate_golang_bindtests : unit -> unit +val generate_gobject_js_bindtests : unit -> unit +val generate_haskell_bindtests : unit -> unit +val generate_java_bindtests : unit -&gt...
2017 Sep 18
0
[PATCH 2/5] Make sure every *.ml file has a corresponding *.mli file.
...or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License along + * with this program; if not, write to the Free Software Foundation, Inc., + * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. + *) + +(* Nothing is exported. *) diff --git a/builder/paths.mli b/builder/paths.mli new file mode 100644 index 000000000..dfd353e99 --- /dev/null +++ b/builder/paths.mli @@ -0,0 +1,28 @@ +(* virt-builder + * Copyright (C) 2014-2017 Red Hat Inc. + * + * This program is free software; you...
2018 Apr 10
0
[PATCH v2 5/5] daemon: autogenerate OCaml interfaces
...or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU General Public License for more details. - * - * You should have received a copy of the GNU General Public License along - * with this program; if not, write to the Free Software Foundation, Inc., - * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. - *) - -val vfs_type : Mountable.t -> string diff --git a/daemon/btrfs.mli b/daemon/btrfs.mli deleted file mode 100644 index ce1c2b66f..000000000 --- a/daemon/btrfs.mli +++ /dev/null @@ -1,20 +0,0 @@ -(* guestfs-inspection - * Copyright (C) 2009-2018 Red Hat Inc. - * - * This program i...
2017 Sep 18
6
[PATCH 0/5] Fix OCaml dependencies.
This works reliably for me ... Rich.
2018 Apr 09
0
[PATCH 3/3] daemon: autogenerate most of OCaml interfaces
...or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU General Public License for more details. - * - * You should have received a copy of the GNU General Public License along - * with this program; if not, write to the Free Software Foundation, Inc., - * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. - *) - -val vfs_type : Mountable.t -> string diff --git a/daemon/btrfs.mli b/daemon/btrfs.mli deleted file mode 100644 index ce1c2b66f..000000000 --- a/daemon/btrfs.mli +++ /dev/null @@ -1,20 +0,0 @@ -(* guestfs-inspection - * Copyright (C) 2009-2018 Red Hat Inc. - * - * This program i...
2012 Dec 13
3
Lua improvements
Here are a few patches I applied to get the Lua bindings to build correctly with different versions of Lua. I am not particularly happy with generating all the test scripts just for the shebang line. Since it has been a while since I had to edit autoconf/automake, this was the best I could come up with. Cheers, -Hilko
2018 Apr 09
5
[PATCH 0/3] daemon: generate almost all the API OCaml interfaces
Hi, as a followup for the signature fix for mount_vfs [1], here it is a patch series to generate automatically most of the OCaml interfaces of daemon actions. Only the Lvm and Mount modules are left with hand-written interfaces. [1] https://www.redhat.com/archives/libguestfs/2018-April/msg00059.html Thanks, Pino Toscano (3): daemon: directly use Optgroups daemon: use the structs from the
2016 Feb 23
7
[PATCH 0/4] Various tweaks to the generator.
Use interfaces files (*.mli files) instead of exporting all symbols randomly. Change the 'file is generated' warnings at the top of generated files so they accurately describe which source file generates each output file. Rich.
2015 Jan 23
0
[PATCH] virt-copy, virt-tar: show help for -h
...ons(+), 4 deletions(-) diff --git a/fish/virt-copy-in b/fish/virt-copy-in index 76ff57f..97a47da 100755 --- a/fish/virt-copy-in +++ b/fish/virt-copy-in @@ -16,4 +16,15 @@ # along with this program; if not, write to the Free Software # Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. -exec guestfish --rw -i copy-in "$@" +args=$@ +while [ ""x != "$1"x ] ; do + case $(echo $@ | awk '{print $1}') in + "-h") + man $(basename $0) + exit + ;; + esac + shift 1 +done + +exec guestfish --rw -i copy-in &quot...
2015 Feb 06
0
[PATCH v3] virt-copy, virt-tar: show help for -h
...nged, 36 insertions(+) diff --git a/fish/virt-copy-in b/fish/virt-copy-in index 76ff57f..850f382 100755 --- a/fish/virt-copy-in +++ b/fish/virt-copy-in @@ -16,4 +16,13 @@ # along with this program; if not, write to the Free Software # Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. +for arg in $@; do + case $arg in + "-h") + man $(basename $0) + exit + ;; + esac +done + exec guestfish --rw -i copy-in "$@" diff --git a/fish/virt-copy-out b/fish/virt-copy-out index 20475ef..953c594 100755 --- a/fish/virt-copy-out +++ b/fish/v...
2018 Apr 10
9
[PATCH v2 0/5] daemon: generate almall the API OCaml interfaces
Hi, as a followup for the signature fix for mount_vfs [1], here it is a patch series to generate automatically all the OCaml interfaces of daemon actions. [1] https://www.redhat.com/archives/libguestfs/2018-April/msg00059.html Thanks, Pino Toscano (5): daemon: directly use Optgroups daemon: use the structs from the Structs module daemon: move Lvm.lv_canonical to new Lvm_utils module
2015 Jan 23
1
[PATCH v2] virt-copy, virt-tar: show help for -h
Shows manpage for virt-copy-in,out and virt-tar-in,out when user supplies -h as a parameter instead of listing unrelated commands with descriptions. Maros Zatko (1): virt-copy, virt-tar: show help for -h fish/virt-copy-in | 13 ++++++++++++- fish/virt-copy-out | 13 ++++++++++++- fish/virt-tar-in | 13 ++++++++++++- fish/virt-tar-out | 13 ++++++++++++- 4 files changed, 48 insertions(+),
2016 Feb 22
3
[PATCH 1/3] python: tests: refactor to use unittest's discovery
...diff --git a/python/run-python-tests b/python/run-python-tests index 1def36b..a374430 100755 --- a/python/run-python-tests +++ b/python/run-python-tests @@ -16,26 +16,7 @@ # along with this program; if not, write to the Free Software # Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. -errors=0 - guestsdir="$(cd ../test-data/phony-guests && pwd)" export guestsdir -for f in $srcdir/t/*.py; do - $PYTHON $f - r=$? - case $r in - 0) ;; - 77) - echo "$f: test skipped" - ;; - *) - echo "FAIL:...
2013 Feb 07
0
[PATCH 3/4] xmms - Fix inline linking problems with old glib
...ag.c | 4 +--- 7 files changed, 14 insertions(+), 19 deletions(-) diff --git a/src/plugin_xmms/charset.c b/src/plugin_xmms/charset.c index d2d39e9..2c5167f 100644 --- a/src/plugin_xmms/charset.c +++ b/src/plugin_xmms/charset.c @@ -20,9 +20,7 @@ * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. */ -#if HAVE_CONFIG_H -# include <config.h> -#endif +#include "plugin.h" #include <stdlib.h> #include <glib.h> diff --git a/src/plugin_xmms/configure.c b/src/plugin_xmms/configure.c index af57f52..6b83435 100644 --- a/src/plugin_xmms/configure.c +++ b/...
2015 Jan 23
2
[PATCH] virt-copy, virt-tar: show help for -h
Shows manpage for virt-copy-in,out and virt-tar-in,out when user supplies -h as a parameter instead of listing unrelated commands with descriptions. Maros Zatko (1): virt-copy, virt-tar: show help for -h fish/virt-copy-in | 13 ++++++++++++- fish/virt-copy-out | 13 ++++++++++++- fish/virt-tar-in | 13 ++++++++++++- fish/virt-tar-out | 13 ++++++++++++- 4 files changed, 48 insertions(+),
2017 Feb 22
4
[PATCH 0/3] v2v: vCenter: Remove proxy environment variables
Fix for: https://bugzilla.redhat.com/show_bug.cgi?id=1354507 Main explanation is in patch #3. Rich.