search for: podwrapp

Displaying 20 results from an estimated 351 matches for "podwrapp".

Did you mean: podwrapper
2019 Aug 14
3
[libnbd PATCH 0/2] Drop generated file from git
Rich recently patched things to generate one man page per function rather than libnbd-api.3 (nice), but in doing so got stumped by a problem with a fresh git clone (automake fails for any 'include' directive that does not already exist). I've figured out how to hack around it, but the hack requires GNU make. We already use GNU make constructs elsewhere (such as $(wildcard)), but
2011 Aug 14
6
[PATCH 1/6] out-of-tree build: fix documentation generation
...| 2 +- inspector/Makefile.am | 2 +- java/examples/Makefile.am | 6 +++--- ocaml/examples/Makefile.am | 6 +++--- perl/examples/Makefile.am | 6 +++--- po-docs/ja/Makefile.am | 18 +++++++++--------- po-docs/uk/Makefile.am | 18 +++++++++--------- podwrapper.sh.in | 1 + python/examples/Makefile.am | 6 +++--- rescue/Makefile.am | 2 +- resize/Makefile.am | 2 +- ruby/examples/Makefile.am | 6 +++--- src/Makefile.am | 8 ++++---- test-tool/Makefile.am | 4 ++-- tools/Makefile.am...
2016 Aug 04
0
[PATCH] build: Add silent rules for podwrapper.
Also quietens the podwrapper script itself, as there is no reason to print 'wrote <output>' for each output file. --- m4/guestfs_perl.m4 | 2 +- podwrapper.pl.in | 6 +++--- subdir-rules.mk | 3 +++ 3 files changed, 7 insertions(+), 4 deletions(-) diff --git a/m4/guestfs_perl.m4 b/m4/guestfs_perl.m4 inde...
2020 Jan 27
2
Re: [PATCH 3/3] docs: don't perform lookup on absolute paths
On Monday, 27 January 2020 10:39:34 CET Tomáš Golembiovský wrote: > Signed-off-by: Tomáš Golembiovský <tgolembi@redhat.com> > --- > podwrapper.pl.in | 2 ++ > 1 file changed, 2 insertions(+) > > diff --git a/podwrapper.pl.in b/podwrapper.pl.in > index f12a173f..1e4aa149 100755 > --- a/podwrapper.pl.in > +++ b/podwrapper.pl.in > @@ -689,6 +689,8 @@ sub find_file > my $use_path = shift; > local $_; &g...
2013 Sep 24
2
[PATCH] build: fix errors when compiling man-pages
...le-ruby --enable-gobject --enable-probes --enable-lua --disable-erlang --without-java And this is a snip from the failed run of 'make -j5': make[3]: Entering directory `/home/nert/dev/work/libguestfs/upstream/po-docs/ja' perl /home/nert/dev/work/libguestfs/upstream/podwrapper.pl \ --no-strict-checks \ --man virt-list-filesystems.1 \ virt-list-filesystems.pl perl /home/nert/dev/work/libguestfs/upstream/podwrapper.pl \ --no-strict-checks \ --man virt-list-partitions.1 \ virt-list-partitions.pl perl /home/nert/dev/work/libguest...
2019 Nov 26
0
[PATCH libguestfs 1/3] podwrapper: __INCLUDE:file.pod__ and __VERBATIM:file.txt__ in POD files.
The current method of adding multiple --insert or --verbatim parameters to the podwrapper command is not very easy to use because it involves modifying the Makefile.am in every place where this is used, plus under po-docs/$language/Makefile.am. It's better if the POD file itself can do the inclusion. This enhances support so that the special sequences __INCLUDE:file.pod__ or...
2015 Oct 22
2
[PATCH 1/2] build: isolate common po-docs logic
...es and the translated manpages in the tarball. This -# just simplifies building from the tarball, at a small cost in extra -# size. -EXTRA_DIST = \ - $(MANPAGES) \ - $(podfiles) - -all-local: $(MANPAGES) - -guestfs.3: guestfs.pod guestfs-actions.pod guestfs-availability.pod guestfs-structs.pod - $(PODWRAPPER) \ - --no-strict-checks \ - --man $@ \ - --section 3 \ - --license LGPLv2+ \ - --insert $(srcdir)/guestfs-actions.pod:__ACTIONS__ \ - --insert $(srcdir)/guestfs-availability.pod:__AVAILABILITY__ \ - --insert $(srcdir)/guestfs-structs.pod:__STRUCTS__ \ - $< - -guestfish.1: guest...
2015 Jun 09
3
[PATCH] podwrapper: simplify external references pointing to self
...ilder documentation, links like L<virt-builder(1)/SECTION> will be turned into L</SECTION> thus not making Pod::Simple parse them as external reference. While it is a slightly crude hack, it seems there's no easy way to process the link parsing with Pod::Simple subclasses. --- podwrapper.pl.in | 3 +++ 1 file changed, 3 insertions(+) diff --git a/podwrapper.pl.in b/podwrapper.pl.in index 0bb7b28..b354db6 100755 --- a/podwrapper.pl.in +++ b/podwrapper.pl.in @@ -278,6 +278,9 @@ foreach (@inserts) { if $content eq $oldcontent; } +# Turn external links to this man page i...
2019 Jul 11
0
[p2v PATCH 4/4] podwrapper: adapt footer to p2v
--- podwrapper.pl.in | 12 ++++-------- 1 file changed, 4 insertions(+), 8 deletions(-) diff --git a/podwrapper.pl.in b/podwrapper.pl.in index f8b90ad..31fbb38 100755 --- a/podwrapper.pl.in +++ b/podwrapper.pl.in @@ -405,7 +405,8 @@ distributed for any purpose without any restrictions. my $reporting_bugs = &...
2020 Jan 27
1
Re: [PATCH 3/3] docs: don't perform lookup on absolute paths
...2020 12:37:38 CET Tomáš Golembiovský wrote: > On Mon, Jan 27, 2020 at 12:17:42PM +0100, Pino Toscano wrote: > > On Monday, 27 January 2020 10:39:34 CET Tomáš Golembiovský wrote: > > > Signed-off-by: Tomáš Golembiovský <tgolembi@redhat.com> > > > --- > > > podwrapper.pl.in | 2 ++ > > > 1 file changed, 2 insertions(+) > > > > > > diff --git a/podwrapper.pl.in b/podwrapper.pl.in > > > index f12a173f..1e4aa149 100755 > > > --- a/podwrapper.pl.in > > > +++ b/podwrapper.pl.in > > > @@ -689,6 +689,8 @...
2013 May 30
2
libguestfs-1.22.1 compilation error
...able-php \ --disable-haskell \ --disable-ruby \ --without-java \ --with-default-backend=direct error msg make[2]: Entering directory `/opt/dnl/PKGBUILDs/kvm/libguestfs/src/libguestfs-1.22.1' perl /home/ebal/dnl/PKGBUILDs/kvm/libguestfs/src/libguestfs-1.22.1/podwrapper.pl \ --section 1 \ --man guestfs-release-notes.1 \ --text guestfs-release-notes.txt \ --html ./html/guestfs-release-notes.1.html \ --license GPLv2+ \ guestfs-release-notes.pod podwrapper.pl: wrote guestfs-release-notes.1 Wide character in print at /home/ebal/dnl/PKGBUILDs/kvm/libguest...
2020 Jan 27
5
[PATCH 0/3] Fixing out-of-tree builds
Building virt-v2v out-of-tree does not work and requires several small fixes here and there. Tomáš Golembiovský (3): build: perform gnulib check from source directory build: run ocaml-link.sh from build directory docs: don't perform lookup on absolute paths cfg.mk | 1 + podwrapper.pl.in | 2 ++ v2v/Makefile.am | 16 ++++++++-------- 3 files changed, 11 insertions(+), 8 deletions(-) -- 2.25.0
2013 May 30
0
Re: libguestfs-1.22.1 compilation error
On Thu, May 30, 2013 at 10:41:37AM +0300, Evaggelos Balaskas wrote: > podwrapper.pl: wrote guestfs-release-notes.1 > Wide character in print at > /home/ebal/dnl/PKGBUILDs/kvm/libguestfs/src/libguestfs-1.22.1/podwrapper.pl > line 506. > podwrapper.pl: wrote ./html/guestfs-release-notes.1.html > This shouldn't happen at /usr/share/perl5/core_perl/Text/Wrap.pm...
2019 Nov 27
1
Re: [PATCH libguestfs 1/3] podwrapper: __INCLUDE:file.pod__ and __VERBATIM:file.txt__ in POD files.
On Tuesday, 26 November 2019 19:13:21 CET Richard W.M. Jones wrote: > +my $path; > + > +=item B<--path DIR[:DIR...]> > + > +Set the path used for searching for included files (see L</POD FORMAT> > +above). The current directory is always searched first so you don’t > +need to add that explicitly. I believe we can improve the handling of this option, for example
2014 Jan 05
2
Build libguestfs error with undefined reference to `tgetnum'
Hi I want to build libguestfs on my laptop. I run Centos 6.4, libguestfs libguestfs-1.24.3. I get this error: Wide character in print at /root/libguestfs-1.24.3/podwrapper.pl line 418. podwrapper.pl: wrote guestfish.1 podwrapper.pl: wrote ../html/guestfish.1.html touch stamp-guestfish.pod CCLD guestfish guestfish-progress.o: In function `progress_bar_set': /root/libguestfs-1.24.3/fish/progress.c:282: undefined reference to `tgetnum' guestfish-progress...
2019 Nov 26
4
[PATCH libguestfs 0/3] options: Describe --key SELECTOR in a single file.
The libguestfs part of this change. Also a virt-v2v part will be needed. The first patch adds a new feature to podwrapper so that we can use __INCLUDE:file__ directives within the POD itself (instead of using --insert, and one day replacing that). The second patch shows how this change could be used for the included parts of the guestfish man page, including the non-English pages under po-docs/$language. The third...
2019 Nov 28
4
[PATCH v2 0/3] options: Describe --key SELECTOR in a single file.
v1 was here: https://www.redhat.com/archives/libguestfs/2019-November/msg00271.html In v2 I just updated the way paths are handled. Note this series requires the following patch to common which adds the common/options/key-option.pod file: https://www.redhat.com/archives/libguestfs/2019-November/msg00269.html Rich.
2016 Jan 04
3
[PATCH 0/3] podwrapper: Generate consistent WARNING sections (RHBZ#1293527).
Fix for: https://bugzilla.redhat.com/show_bug.cgi?id=1293527 Note that patches 2/3 and 3/3 are dependent on each other, ie. applying 2/3 on its own will break the build. So I may combine these when applying the series. Rich.
2014 May 29
2
Re: libguestfs error
Hi Rich I using ubuntu 13.10 with powerpc arch. I tried the above stepss and below are the output of the related commands.. nm -D /usr/lib/powerpc-linux-gnu/libtinfo.so | grep tgetent 0000def0 T tgetent ubuntu@t4240-ubuntu1310:~$ dpkg -S /usr/lib/powerpc-linux-gnu/libtinfo.so libtinfo-dev:powerpc: /usr/lib/powerpc-linux-gnu/libtinfo.so However I'm not able to perform rm -f config.cache
2020 Jan 27
0
[PATCH 3/3] docs: don't perform lookup on absolute paths
Signed-off-by: Tomáš Golembiovský <tgolembi@redhat.com> --- podwrapper.pl.in | 2 ++ 1 file changed, 2 insertions(+) diff --git a/podwrapper.pl.in b/podwrapper.pl.in index f12a173f..1e4aa149 100755 --- a/podwrapper.pl.in +++ b/podwrapper.pl.in @@ -689,6 +689,8 @@ sub find_file my $use_path = shift; local $_; + return $input if File::Spec->file_nam...