search for: gitlog

Displaying 20 results from an estimated 105 matches for "gitlog".

2009 Aug 03
1
use gnulib, and begin to pass its "make syntax-check" tests
...ep 17 00:00:00 2001 From: Jim Meyering <meyering at redhat.com> Date: Mon, 3 Aug 2009 05:18:10 -0400 Subject: [PATCH 3/4] maint: use a git submodule for gnulib * .gitmodules: New file, to track gnulib. * .gnulib: Submodule directory. * Makefile.am (EXTRA_DIST): Don't list config.rpath or gitlog-to-changelog. * autogen.sh: Adapt to use the new submodule. * cfg.mk: New file. (SUBDIRS): Add gnulib/lib and gnulib/tests. (dist-hook): Reflect new location of getlog-to-changelog. * configure.ac: Set build-aux/ as AUX_DIR. Invoke gl_EARLY and gl_INIT. (AC_CONFIG_FILES): Add gnulib/lib/Makefile an...
2011 Jun 28
13
[PATCH hivex 02/14] maint: remove unnecessary test-before-free
From: Jim Meyering <meyering at redhat.com> * lib/hivex.c (hivex_node_set_value): Remove unnecessary test-before-free. --- lib/hivex.c | 3 +-- 1 files changed, 1 insertions(+), 2 deletions(-) diff --git a/lib/hivex.c b/lib/hivex.c index d042f4f..a72fa77 100644 --- a/lib/hivex.c +++ b/lib/hivex.c @@ -2748,8 +2748,7 @@ hivex_node_set_value (hive_h *h, hive_node_h node, leave_partial:
2014 Nov 06
3
[PATCH 0/2] hivex: small portability fixes
Hi, this small series cherry-picks a couple of the portability fixes recently done in libguestfs to hivex. There should be no actual change on Linux. Thanks, -- Pino Pino Toscano (2): normalize iconv handling ruby: fix detection of ruby library bootstrap | 1 + configure.ac | 8 +++++++- lib/utf16.c | 3 +-- 3 files changed, 9 insertions(+), 3 deletions(-) -- 1.9.3
2019 Sep 18
2
[PATCH] build: remove unused gnulib modules
...strap @@ -104,7 +104,6 @@ gnulib_tool=$GNULIB_SRCDIR/gnulib-tool modules=' accept4 -areadlink areadlinkat arpa_inet base64 @@ -113,15 +112,11 @@ c-ctype cloexec closeout connect -dup3 error -filevercmp fstatat -fts full-read full-write futimens -getaddrinfo getline getprogname gitlog-to-changelog @@ -143,22 +138,18 @@ mkstemps netdb netinet_in nonblocking -openat perror pipe2 pread -ptsname_r read-file readlink select setenv sleep socket -stat-time strchrnul strerror strndup -symlinkat sys_select sys_types sys_wait diff --git a/daemon/Makefile.am b/daemon/Make...
2009 Aug 24
5
[0/5] guestfish: detect stdout-write failure
Nearly any program that writes to standard output can benefit from this sort of fix. Without it, running e.g., ./guestfish --version > /dev/full would exit successfully, even though it got ENOSPC when writing to the full device. That means regular output redirected to a file on a full partition may also fail to be written, and the error ignored. Before: $ guestfish --version >
2019 Sep 18
0
Re: [PATCH] build: remove unused gnulib modules
...adlink > areadlinkat > arpa_inet > base64 > @@ -113,15 +112,11 @@ c-ctype > cloexec > closeout > connect > -dup3 > error > -filevercmp > fstatat > -fts > full-read > full-write > futimens > -getaddrinfo > getline > getprogname > gitlog-to-changelog > @@ -143,22 +138,18 @@ mkstemps > netdb > netinet_in > nonblocking > -openat > perror > pipe2 > pread > -ptsname_r > read-file > readlink > select > setenv > sleep > socket > -stat-time > strchrnul > strerror > st...
2019 Sep 23
0
[PATCH v2 5/5] build: remove unused gnulib modules
...++ b/bootstrap @@ -104,34 +104,26 @@ gnulib_tool=$GNULIB_SRCDIR/gnulib-tool modules=' accept4 -areadlink areadlinkat -arpa_inet base64 byteswap c-ctype cloexec closeout connect -dup3 error -filevercmp fstatat -fts full-read full-write futimens -getaddrinfo getline getprogname gitlog-to-changelog glob -gnu-make gnumakefile hash hash-pjw human -iconv ignore-value intprops lock @@ -141,24 +133,18 @@ memmem mkdtemp mkstemps netdb -netinet_in nonblocking -openat perror pipe2 pread -ptsname_r -read-file readlink select setenv sleep socket -stat-time strchrnul s...
2009 Aug 05
2
using gnulib from daemon/
Hi Rich, Prompted by your "New commands to list devices by UUID and label" patch, I've adjusted it to use gnulib. While just compiling hash.[ch] is probably ok, in general (given the strict requirements of libguestfs) using the C files of a module is usually not an option, since you don't get the benefit of the module's m4 tests or automake snippets. For other modules,
2019 Nov 27
5
[v2v PATCH v2 0/5] Various build cleanups
Brought to you by the "I haven't rebuilt the libguestfs universe in a while" saga -- now with working test suite. Pino Toscano (5): build: remove extra gnulib submodule build: remove extra checks and submodules build: stop using gnulib in test-harness build: remove unused gnulib modules Remove extra entries from podfiles .gitmodules | 3 -- Makefile.am
2009 Sep 24
1
enabling more syntax-checks
...----- src/guestfs.c | 4 ++-- 13 files changed, 29 insertions(+), 27 deletions(-) diff --git a/bootstrap b/bootstrap index 1e32517..c92d1e1 100755 --- a/bootstrap +++ b/bootstrap @@ -58,6 +58,7 @@ gnulib_tool=$GNULIB_SRCDIR/gnulib-tool modules=' arpa_inet +c-ctype closeout gitlog-to-changelog gnu-make diff --git a/cfg.mk b/cfg.mk index 09a3231..134725a 100644 --- a/cfg.mk +++ b/cfg.mk @@ -50,7 +50,6 @@ disable_temporarily = \ sc_unmarked_diagnostics \ sc_prohibit_ctype_h \ sc_prohibit_asprintf \ - sc_avoid_ctype_macros \ sc_avoid_write # Avoid uses...
2009 Aug 18
8
src/ is now warning-free, too
These patches first make src/ warning free, and then turn on the strict warning options. 75 0001-build-suppress-an-ignored-write-return-value-warning.patch 38 0002-build-suppress-an-ignored-dup-return-value-warning.patch 27 0003-generator.ml-suppress-signed-unsigned-compare-warnin.patch 48 0004-build-don-t-perform-arithmetic-on-void-pointers.patch 30
2019 Sep 23
6
[PATCH v2 0/5] remove unused gnulib modules
This is an extended version of: https://www.redhat.com/archives/libguestfs/2019-September/msg00178.html It adds a couple of simple code changes, so it makes it possible to drop more modules. In addition, more unused modules were dropped. Pino Toscano (5): tests: switch away from xgetcwd daemon: move read_whole_file to common utils daemon: switch from read_file to read_whole_file daemon:
2019 Nov 27
6
[v2v PATCH 0/5] Various build cleanups
Brought to you by the "I haven't rebuilt the libguestfs universe in a while" saga. Pino Toscano (5): build: remove extra gnulib submodule build: remove extra checks and submodules build: stop using gnulib in test-harness build: remove unused gnulib modules Remove extra entries from podfiles .gitmodules | 3 -- Makefile.am | 2 - bootstrap
2019 Nov 27
7
[PATCH v3 0/6] remove unused build stuff
This is an extended version of: https://www.redhat.com/archives/libguestfs/2019-September/msg00288.html Apparently I forgot it on my tree, so I'm posting that series again, adding an extra cleanup more due to the v2v/common splits. Pino Toscano (6): tests: switch away from xgetcwd daemon: move read_whole_file to common utils daemon: switch from read_file to read_whole_file daemon:
2009 Jul 15
0
[PATCH] Make Perl strings translatable
...| 269 ++++++++++++++++++++++++++++++++++++++----- v2v/virt-v2v.pl | 7 +- 11 files changed, 618 insertions(+), 102 deletions(-) diff --git a/Makefile.am b/Makefile.am index fe960b7..3f27693 100644 --- a/Makefile.am +++ b/Makefile.am @@ -149,6 +149,15 @@ dist-hook: ./gitlog-to-changelog > ChangeLog cp ChangeLog $(distdir)/ChangeLog +# Update the list of translatable files in po/POTFILES.in. +all-local: + find -name '*.c' -o -name '*.pl' -o -name '*.pm' | \ + grep -v '/blib/' | \ + grep -v '/capitests/' | \ + grep -v '...
2010 Dec 07
1
builder-ubuntu libguestfs FAILED build step 4b8f70d46dcfed1489c97f822e263b8615f21ea0
...fdopendir-tests filevercmp filevercmp-tests float fpending fpending-tests fts full-read full-write getcwd getcwd-tests getdtablesize getdtablesize-tests getgroups getgroups-tests getopt-gnu getopt-posix getopt-posix-tests getpagesize gettext-h getugroups gitlog-to-changelog gnu-make gnumakefile hash hash-pjw hash-tests havelib human i-ring i-ring-tests ignore-value include_next inline intprops inttostr inttypes inttypes-tests lchown lchown-tests localcharset lock lock-tests lstat lstat-tests maintainer-makef...
2016 Sep 08
4
[PATCH 0/3] Use gnulib's getprogname
Hi, this series update libguestfs to a recent gnulib version, so that we can use its new getprogname module, and solve altogether one of the porting issues (the need for 'program_name' by the error module of gnulib), and have a single way to get the name of the current program. A number of changes in tools mostly, although mechanical. Thanks, Pino Toscano (3): Update gnulib to latest
2010 Dec 07
0
builder-ubuntu libguestfs FAILED build step 21810ade12e43fb4d8bfdcefb37a7d8bbe9eef8c
...fdopendir-tests filevercmp filevercmp-tests float fpending fpending-tests fts full-read full-write getcwd getcwd-tests getdtablesize getdtablesize-tests getgroups getgroups-tests getopt-gnu getopt-posix getopt-posix-tests getpagesize gettext-h getugroups gitlog-to-changelog gnu-make gnumakefile hash hash-pjw hash-tests havelib human i-ring i-ring-tests ignore-value include_next inline intprops inttostr inttypes inttypes-tests lchown lchown-tests localcharset lock lock-tests lstat lstat-tests maintainer-makef...
2011 Jun 21
0
builder-ubuntu libguestfs FAILED build step e1e78bcef5e4654bd2456bd696840329359d35cd
...ftell ftell-tests ftello ftello-tests fts full-read full-write getcwd-lgpl getcwd-lgpl-tests getdtablesize getdtablesize-tests getgroups getgroups-tests getopt-gnu getopt-posix getopt-posix-tests getpagesize gettext-h getugroups gitlog-to-changelog gnu-make gnumakefile hash hash-pjw hash-tests havelib human i-ring i-ring-tests ignore-value ignore-value-tests include_next inline intprops intprops-tests inttostr inttostr-tests inttypes inttypes-incomplete inttypes-...
2011 Jan 28
0
builder-ubuntu libguestfs FAILED build step f060d5bcd40b4a6506d7994e67d57dccab1651b8
...fdopendir-tests filevercmp filevercmp-tests float fpending fpending-tests fts full-read full-write getcwd getcwd-tests getdtablesize getdtablesize-tests getgroups getgroups-tests getopt-gnu getopt-posix getopt-posix-tests getpagesize gettext-h getugroups gitlog-to-changelog gnu-make gnumakefile hash hash-pjw hash-tests havelib human i-ring i-ring-tests ignore-value include_next inline intprops inttostr inttypes inttypes-tests lchown lchown-tests localcharset lock lock-tests lstat lstat-tests maintainer-makef...