Displaying 20 results from an estimated 173 matches for "pod2man".
2017 Jan 31
3
[nbdkit PATCH 0/2] fix pod and other errors in recent patches
POD errors are not nice, and 'pod2man --stderr' does not do what we
want.
Eric Blake (2):
perl: Fix previous patches
build: Kill build on POD error
.gitignore | 2 ++
configure.ac | 10 +---------
docs/Makefile.am | 8 ++++++--
docs/nbdkit-plugin.pod | 2 +-
plugins/...
2017 Jul 14
0
[hivex PATCH 2/2] build: do not ignore pod2man error codes
Move the temporary output of pod2man to the correct name only if pod2man
did not fail: this also makes the whole command fail if pod2man fails,
e.g. because of wrong markup.
---
lib/Makefile.am | 2 +-
regedit/Makefile.am | 2 +-
sh/Makefile.am | 4 ++--
xml/Makefile.am | 2 +-
4 files changed, 5 insertions(+), 5 deletio...
2013 May 28
3
perl 5.18
I guess perl 5.18 was released and it is causing issues
texi2html -monolithic -number-sections qemu-doc.texi
texi2html -monolithic -number-sections qemu-tech.texi
/data/dev/xen/xen-4.3-git/src/xen-build/tools/qemu-xen-traditional-dir/
texi2pod.pl qemu-doc.texi qemu.pod
pod2man --section=1 --center=" " --release=" " qemu.pod > qemu.1
qemu.pod around line 91: Non-ASCII character seen before =encoding in
''Schütz.''. Assuming UTF-8
POD document had syntax errors at /usr/bin/core_perl/pod2man line 71.
make[3]: *** [qemu.1] Error 255
_...
2013 May 28
3
perl 5.18
I guess perl 5.18 was released and it is causing issues
texi2html -monolithic -number-sections qemu-doc.texi
texi2html -monolithic -number-sections qemu-tech.texi
/data/dev/xen/xen-4.3-git/src/xen-build/tools/qemu-xen-traditional-dir/
texi2pod.pl qemu-doc.texi qemu.pod
pod2man --section=1 --center=" " --release=" " qemu.pod > qemu.1
qemu.pod around line 91: Non-ASCII character seen before =encoding in
''Schütz.''. Assuming UTF-8
POD document had syntax errors at /usr/bin/core_perl/pod2man line 71.
make[3]: *** [qemu.1] Error 255
_...
2005 May 20
2
[LLVMdev] [Cygwin] groff build error - semi solved
Turns out I did not have Perl installed and hence no pod2man command, so it was not groff after all.
But 'true', what ever it does, does not seem to be working on Cygwin.
true pod2man --release=1.5 --center="LLVM Command Guide" /usr/build/llvm/../../src/llvm-1.5/docs/CommandGuide/analyze.pod /usr/build/llvm/docs/CommandGuide/analyze.1
...
2005 May 20
0
[LLVMdev] [Cygwin] groff build error - semi solved
Yeah, that's exactly right, Aaron. "true" is a command that simply
returns with an exit status of 0 and ignores its arguments. When pod2man
can't be found we define the variable that specifies its path as "true
pod2man". This allows the command that should have been run to be shown
while at the same time not interrupting the makefile with a failure.
This is entirely intentional.
Once you've installed Perl, you need t...
2005 May 19
6
[LLVMdev] [Cygwin] groff build error
Here it is, a missing file "analyze.1" :-
/usr/bin/groff -Tps -man /usr/build/llvm/docs/CommandGuide/analyze.1 > /usr/buil
d/llvm/docs/CommandGuide/analyze.ps
troff: fatal error: can't open `/usr/build/llvm/docs/CommandGuide/analyze.1': No
such file or directory
make[2]: *** [/usr/build/llvm/docs/CommandGuide/analyze.ps] Error 1
make[2]: Leaving directory
2010 Sep 02
2
[PATCH] Allow manual pages and POD files to be translated.
...pod
+ sed \
+ -e '/@ACTIONS@/rguestfs-actions.pod' \
+ -e 's/@ACTIONS@//' \
+ -e '/@AVAILABILITY@/rguestfs-availability.pod' \
+ -e 's/@AVAILABILITY@//' \
+ -e '/@STRUCTS@/rguestfs-structs.pod' \
+ -e 's/@STRUCTS@//' \
+ < $< | \
+ $(POD2MAN) -u \
+ --section 3 \
+ -c "Virtualization Support" \
+ --name "guestfs" \
+ --release "$(PACKAGE_NAME)-$(PACKAGE_VERSION)" \
+ > $@-t; mv $@-t $@
+
+guestfish.1: guestfish.pod guestfish-actions.pod
+ sed \
+ -e '/@ACTIONS@/rguestfish-actions.pod'...
2005 May 20
0
[LLVMdev] [Cygwin] groff build error - semi solved
Aaron Gray wrote:
> Turns out I did not have Perl installed and hence no pod2man command, so
> it was not groff after all.
>
> But 'true', what ever it does, does not seem to be working on Cygwin.
>
> true pod2man --release=1.5 --center="LLVM Command Guide"
> /usr/build/llvm/../../src/llvm-1.5/docs/CommandGuide/analyze.pod
> /usr/bu...
2011 Sep 07
1
[PATCH] hivexsh: Conditionally build for Mac OS X
...SUBDIRS += ocaml
diff --git a/configure.ac b/configure.ac
index d7520e7..ce9dd48 100644
--- a/configure.ac
+++ b/configure.ac
@@ -135,6 +135,7 @@ AC_CHECK_HEADERS([byteswap.h endian.h libintl.h])
dnl Functions.
AC_CHECK_FUNCS([bindtextdomain])
+AC_CHECK_FUNCS([open_memstream])
dnl Check for pod2man and pod2text.
AC_CHECK_PROG([POD2MAN],[pod2man],[pod2man],[no])
@@ -173,6 +174,9 @@ PKG_CHECK_MODULES([LIBXML2], [libxml-2.0])
AC_SUBST([LIBXML2_CFLAGS])
AC_SUBST([LIBXML2_LIBS])
+dnl hivexsh depends on open_memstream, which is absent on OS X.
+AM_CONDITIONAL([HAVE_HIVEXSH],[test "x$HAVE_...
2017 Jul 14
2
[hivex PATCH 1/2] hivexregedit: fix POD markup
Put the "=back" to close the list only after the last element.
---
regedit/hivexregedit | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/regedit/hivexregedit b/regedit/hivexregedit
index 02c382b..cd49063 100755
--- a/regedit/hivexregedit
+++ b/regedit/hivexregedit
@@ -248,8 +248,6 @@ You should only use this option for quick hacking and debugging of the
hive
2008 Feb 25
1
xen-utils-common has pod not man pages
The xen-utils-common package doesn't have the pod2man converted pages.
I took at look at debian/rules but couldn't figure out how to send an
appropriate patch. The best I could do was just send you this email to
let you know.
2013 Aug 12
3
Bug#719506: xen: FTBFS with perl 5.18: POD errors
Source: xen
Version: 4.2.2-1
Severity: important
User: debian-perl at lists.debian.org
Usertags: perl-5.18-transition
This package FTBFS with perl 5.18 (which will soon be uploaded to
unstable) owing to a stricter pod2man:
pod2text man/xl.pod.1 txt/man/xl.1.txt.tmp
man/xl.pod.1 around line 854: Expected text after =item, not a bullet
POD document had syntax errors at /usr/bin/pod2text line 84.
make[4]: *** [txt/man/xl.1.txt] Error 255
make[4]: Leaving directory `/build/dom-xen_4.2.2-1-i386-N3d2cV/xen-4.2.2/debian/...
2013 Sep 25
1
[PATCH] docs: fix syntax error in xl.cfg.pod
man/xl.cfg.pod.5 around line 1193: ''=item'' outside of any ''=over''
POD document had syntax errors at /usr/bin/pod2man line 71.
Signed-off-by: Olaf Hering <olaf@aepfle.de>
---
docs/man/xl.cfg.pod.5 | 2 --
1 file changed, 2 deletions(-)
diff --git a/docs/man/xl.cfg.pod.5 b/docs/man/xl.cfg.pod.5
index 769767b..d57cd4d 100644
--- a/docs/man/xl.cfg.pod.5
+++ b/docs/man/xl.cfg.pod.5
@@ -1188,8 +1188,6 @@ The f...
2012 Aug 02
2
[LLVMdev] pods
...s and the results are
pretty bad. rst2man sort of works but spits out a lot of errors and the
man pages don't look very good. sphinx crashes and is really too heavy.
pandoc, haskell, right.
I'd like to plead with the forces that be to bring back the pods. Pods
aren't great but pod2man is at least a standard UNIX utility and one can
convert it to many other formats easily.
Help a UNIX brother out!
2005 May 20
3
[LLVMdev] [Cygwin] groff build error - semi solved
>Yeah, that's exactly right, Aaron. "true" is a command that simply
>returns with an exit status of 0 and ignores its arguments. When pod2man
>can't be found we define the variable that specifies its path as "true
>pod2man". This allows the command that should have been run to be shown
>while at the same time not interrupting the makefile with a failure.
>This is entirely intentional.
>
>Once you've in...
2009 Aug 21
2
[virt-v2v] "make distcheck" now passes
...akefile.am b/v2v/Makefile.am
index 49dac50..5030742 100644
--- a/v2v/Makefile.am
+++ b/v2v/Makefile.am
@@ -20,15 +20,17 @@ EXTRA_DIST = \
virt-v2v.pl
man_MANS = virt-v2v.1
+CLEANFILES = $(man_MANS)
noinst_DATA = @top_builddir@/html/virt-v2v.1.html
virt-v2v.1: virt-v2v.pl
+ rm -f $@-t $@
$(POD2MAN) \
--section 1 \
-c "Virtualization Support" \
--release "$(PACKAGE_NAME)-$(PACKAGE_VERSION)" \
- $< > $@
+ $< > $@-t && mv $@-t $@
@top_builddir@/html/virt-v2v.1.html: virt-v2v.pl
mkdir -p @top_builddir@/html
--
1.6.4.378.g88f2f
2005 Mar 10
0
[LLVMdev] Patches for MinGW Build instructions
...<ol> or <ul> tags and make it into
a real list. Otherwise, it needs to be written as prose (i.e.,
paragraphs with full sentences). In particular:
> Rename or move old perl utils.
>
> Update your path to perl\bin and perl\bin\arch after mingw in the
> path.
>
> copy pod2man.bat to pod2man and remove dos specific lines in the file.
>
> configure, make and install binutils.
>
> move old binutils from c:\mingw\mingw32\bin to
> c:\mingw\mingw32\bin\binutils_old even though your environment reaches
> the new binutils.
This is a list of things to do. The...
2005 Mar 10
3
[LLVMdev] Patches for MinGW Build instructions
Hi LLVM'ers,
Here is my second try to document, how to build the llvm system for MinGW on
Windows.
Henrik.
=============================================================
Henrik Bach
LLVM Open Source Developer
e-mail: henrik_bach_llvm at hotmail.com
=============================================================
'Nothing is impossible; The impossible just takes longer time :)'
-
2008 Jul 26
3
problems with update of perl-5.8.8-10.el5_2.3
...0.2
file /usr/share/man/man1/pod2html.1.gz from install of
perl-5.8.8-10.el5_2.3 conflicts with file from package
perl-5.8.8-10.el5_0.2
file /usr/share/man/man1/pod2latex.1.gz from install of
perl-5.8.8-10.el5_2.3 conflicts with file from package
perl-5.8.8-10.el5_0.2
file /usr/share/man/man1/pod2man.1.gz from install of
perl-5.8.8-10.el5_2.3 conflicts with file from package
perl-5.8.8-10.el5_0.2
file /usr/share/man/man1/pod2text.1.gz from install of
perl-5.8.8-10.el5_2.3 conflicts with file from package
perl-5.8.8-10.el5_0.2
file /usr/share/man/man1/pod2usage.1.gz from install of
perl-5.8....