tahoe-lafs: build HTML and info documentation

This commit is contained in:
Jan Malakhovski
2018-03-30 06:26:59 +00:00
parent 7e00b9d652
commit 23a814e1ad
@@ -1,4 +1,4 @@
{ fetchurl, lib, unzip, nettools, pythonPackages }: { fetchurl, lib, unzip, nettools, pythonPackages, texinfo }:
# FAILURES: The "running build_ext" phase fails to compile Twisted # FAILURES: The "running build_ext" phase fails to compile Twisted
# plugins, because it tries to write them into Twisted's (immutable) # plugins, because it tries to write them into Twisted's (immutable)
@@ -15,6 +15,8 @@ pythonPackages.buildPythonApplication rec {
sha256 = "0x9f1kjym1188fp6l5sqy0zz8mdb4xw861bni2ccv26q482ynbks"; sha256 = "0x9f1kjym1188fp6l5sqy0zz8mdb4xw861bni2ccv26q482ynbks";
}; };
outputs = [ "out" "doc" "info" ];
patchPhase = '' patchPhase = ''
sed -i "src/allmydata/util/iputil.py" \ sed -i "src/allmydata/util/iputil.py" \
-es"|_linux_path = '/sbin/ifconfig'|_linux_path = '${nettools}/bin/ifconfig'|g" -es"|_linux_path = '/sbin/ifconfig'|_linux_path = '${nettools}/bin/ifconfig'|g"
@@ -30,6 +32,8 @@ pythonPackages.buildPythonApplication rec {
sed -i 's/"pycrypto.*"/"pycrypto"/' src/allmydata/_auto_deps.py sed -i 's/"pycrypto.*"/"pycrypto"/' src/allmydata/_auto_deps.py
''; '';
nativeBuildInputs = with pythonPackages; [ sphinx texinfo ];
buildInputs = with pythonPackages; [ unzip numpy mock ]; buildInputs = with pythonPackages; [ unzip numpy mock ];
# The `backup' command requires `sqlite3'. # The `backup' command requires `sqlite3'.
@@ -39,11 +43,19 @@ pythonPackages.buildPythonApplication rec {
service-identity pyyaml service-identity pyyaml
]; ];
# Install the documentation.
postInstall = '' postInstall = ''
# Install the documentation. (
mkdir -p "$out/share/doc/${name}" cd docs
cp -rv "docs/"* "$out/share/doc/${name}"
find "$out/share/doc/${name}" -name Makefile -exec rm -v {} \; make singlehtml
mkdir -p "$doc/share/doc/${name}"
cp -rv _build/singlehtml/* "$doc/share/doc/${name}"
make info
mkdir -p "$info/share/info"
cp -rv _build/texinfo/*.info "$info/share/info"
)
''; '';
checkPhase = '' checkPhase = ''