Revert "git: Use asciidoctor instead of asciidoc for manpages"
This reverts commit bbf96d898b96ea2d1ff19a09e545499e4f32d8d0. Removes dependency on ruby 2.7 and isn't much slower. See https://github.com/NixOS/nixpkgs/pull/123502 for more info (cherry picked from commit 88c2c543bf01063adf57ca2f4ff200cf8fbbd18b)
This commit is contained in:
parent
036b557bd9
commit
d77ece7e27
@ -2,7 +2,7 @@
|
|||||||
, curl, openssl, zlib, expat, perlPackages, python3, gettext, cpio
|
, curl, openssl, zlib, expat, perlPackages, python3, gettext, cpio
|
||||||
, gnugrep, gnused, gawk, coreutils # needed at runtime by git-filter-branch etc
|
, gnugrep, gnused, gawk, coreutils # needed at runtime by git-filter-branch etc
|
||||||
, openssh, pcre2
|
, openssh, pcre2
|
||||||
, asciidoctor, texinfo, xmlto, docbook2x, docbook_xsl, docbook_xsl_ns, docbook_xml_dtd_45
|
, asciidoc, texinfo, xmlto, docbook2x, docbook_xsl, docbook_xml_dtd_45
|
||||||
, libxslt, tcl, tk, makeWrapper, libiconv
|
, libxslt, tcl, tk, makeWrapper, libiconv
|
||||||
, svnSupport, subversionClient, perlLibs, smtpPerlLibs
|
, svnSupport, subversionClient, perlLibs, smtpPerlLibs
|
||||||
, perlSupport ? stdenv.buildPlatform == stdenv.hostPlatform
|
, perlSupport ? stdenv.buildPlatform == stdenv.hostPlatform
|
||||||
@ -68,8 +68,8 @@ stdenv.mkDerivation {
|
|||||||
'';
|
'';
|
||||||
|
|
||||||
nativeBuildInputs = [ gettext perlPackages.perl makeWrapper ]
|
nativeBuildInputs = [ gettext perlPackages.perl makeWrapper ]
|
||||||
++ lib.optionals withManual [ asciidoctor texinfo xmlto docbook2x
|
++ lib.optionals withManual [ asciidoc texinfo xmlto docbook2x
|
||||||
docbook_xsl docbook_xsl_ns docbook_xml_dtd_45 libxslt ];
|
docbook_xsl docbook_xml_dtd_45 libxslt ];
|
||||||
buildInputs = [curl openssl zlib expat cpio libiconv]
|
buildInputs = [curl openssl zlib expat cpio libiconv]
|
||||||
++ lib.optionals perlSupport [ perlPackages.perl ]
|
++ lib.optionals perlSupport [ perlPackages.perl ]
|
||||||
++ lib.optionals guiSupport [tcl tk]
|
++ lib.optionals guiSupport [tcl tk]
|
||||||
@ -148,7 +148,7 @@ stdenv.mkDerivation {
|
|||||||
}
|
}
|
||||||
|
|
||||||
# Install git-subtree.
|
# Install git-subtree.
|
||||||
make -C contrib/subtree install ${lib.optionalString withManual "USE_ASCIIDOCTOR=1 install-doc"}
|
make -C contrib/subtree install ${lib.optionalString withManual "install-doc"}
|
||||||
rm -rf contrib/subtree
|
rm -rf contrib/subtree
|
||||||
|
|
||||||
# Install contrib stuff.
|
# Install contrib stuff.
|
||||||
@ -233,7 +233,7 @@ stdenv.mkDerivation {
|
|||||||
'')
|
'')
|
||||||
|
|
||||||
+ lib.optionalString withManual ''# Install man pages
|
+ lib.optionalString withManual ''# Install man pages
|
||||||
make -j $NIX_BUILD_CORES -l $NIX_BUILD_CORES USE_ASCIIDOCTOR=1 PERL_PATH="${buildPackages.perl}/bin/perl" cmd-list.made install install-html \
|
make -j $NIX_BUILD_CORES -l $NIX_BUILD_CORES PERL_PATH="${buildPackages.perl}/bin/perl" cmd-list.made install install-html \
|
||||||
-C Documentation ''
|
-C Documentation ''
|
||||||
|
|
||||||
+ (if guiSupport then ''
|
+ (if guiSupport then ''
|
||||||
|
Loading…
x
Reference in New Issue
Block a user