Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
Bug 859334 - dev-python/blinker-1.5 - FileNotFoundError: [Errno 2] No such file or directory: bdocs/html/.
Summary: dev-python/blinker-1.5 - FileNotFoundError: [Errno 2] No such file or directo...
Status: CONFIRMED
Alias: None
Product: Gentoo Linux
Classification: Unclassified
Component: Current packages (show other bugs)
Hardware: All Linux
: Normal normal with 1 vote (vote)
Assignee: Python Gentoo Team
URL:
Whiteboard:
Keywords:
Depends on:
Blocks:
 
Reported: 2022-07-19 14:12 UTC by Toralf Förster
Modified: 2022-12-01 21:23 UTC (History)
4 users (show)

See Also:
Package list:
Runtime testing required: ---


Attachments
emerge-info.txt (emerge-info.txt,18.14 KB, text/plain)
2022-07-19 14:12 UTC, Toralf Förster
Details
dev-python:blinker-1.5:20220719-140013.log (dev-python:blinker-1.5:20220719-140013.log,5.73 KB, text/plain)
2022-07-19 14:12 UTC, Toralf Förster
Details
emerge-history.txt (emerge-history.txt,71.14 KB, text/plain)
2022-07-19 14:12 UTC, Toralf Förster
Details
environment (environment,132.90 KB, text/plain)
2022-07-19 14:12 UTC, Toralf Förster
Details
etc.portage.tar.bz2 (etc.portage.tar.bz2,8.17 KB, application/x-bzip)
2022-07-19 14:12 UTC, Toralf Förster
Details
temp.tar.bz2 (temp.tar.bz2,30.18 KB, application/x-bzip)
2022-07-19 14:12 UTC, Toralf Förster
Details

Note You need to log in before you can comment on or make changes to this bug.
Description Toralf Förster gentoo-dev 2022-07-19 14:12:33 UTC
  File "/usr/lib/portage/python3.10/doins.py", line 373, in install_file
    return self._ins_runner.run(source, dest_dir)
  File "/usr/lib/portage/python3.10/doins.py", line 181, in run
    sstat = os.stat(source)
FileNotFoundError: [Errno 2] No such file or directory: b'docs/html/.'
 * ERROR: dev-python/blinker-1.5::gentoo failed (install phase):
 *   dodoc failed

  -------------------------------------------------------------------

  This is an unstable amd64 chroot image at a tinderbox (==build bot)
  name: 17.1_desktop_gnome-j4-20220718-170006

  -------------------------------------------------------------------

gcc-config -l:
 [1] x86_64-pc-linux-gnu-12.1.1 *
clang/llvm (if any):
clang version 14.0.6
Target: x86_64-pc-linux-gnu
Thread model: posix
InstalledDir: /usr/lib/llvm/14/bin
/usr/lib/llvm/14
14.0.6
Python 3.10.5
Available Rust versions:
  [1]   rust-bin-1.62.0 *
The following VMs are available for generation-2:
1)	Eclipse Temurin JDK 11.0.15_p10 [openjdk-bin-11]
*)	Eclipse Temurin JDK 17.0.3_p7 [openjdk-bin-17]
Available Java Virtual Machines:
  [1]   openjdk-bin-11 
  [2]   openjdk-bin-17  system-vm

The Glorious Glasgow Haskell Compilation System, version 8.10.4
php cli:

  HEAD of ::gentoo
commit 6985b4ea42692db9f7178030a232b61bd4b6d241
Author: Repository mirror & CI <repomirrorci@gentoo.org>
Date:   Tue Jul 19 13:31:50 2022 +0000

    2022-07-19 13:31:50 UTC

emerge -qpvO dev-python/blinker
[ebuild  N    ] dev-python/blinker-1.5  USE="doc -test" PYTHON_TARGETS="python3_10 -pypy3 -python3_8 -python3_9 -python3_11"
Comment 1 Toralf Förster gentoo-dev 2022-07-19 14:12:34 UTC
Created attachment 792398 [details]
emerge-info.txt
Comment 2 Toralf Förster gentoo-dev 2022-07-19 14:12:35 UTC
Created attachment 792401 [details]
dev-python:blinker-1.5:20220719-140013.log
Comment 3 Toralf Förster gentoo-dev 2022-07-19 14:12:36 UTC
Created attachment 792404 [details]
emerge-history.txt
Comment 4 Toralf Förster gentoo-dev 2022-07-19 14:12:38 UTC
Created attachment 792407 [details]
environment
Comment 5 Toralf Förster gentoo-dev 2022-07-19 14:12:39 UTC
Created attachment 792410 [details]
etc.portage.tar.bz2
Comment 6 Toralf Förster gentoo-dev 2022-07-19 14:12:40 UTC
Created attachment 792413 [details]
temp.tar.bz2
Comment 7 Ronald Farrer 2022-12-01 21:23:04 UTC
Hello,

Here is a hack-y patch to build the html docs correctly when +doc:

-- /var/db/repos/gentoo/dev-python/blinker/blinker-1.5.ebuild	2022-08-17 12:10:27.000000000 -0700
+++ /var/db/repos/local/dev-python/blinker/blinker-1.5.ebuild	2022-12-01 13:20:11.050589936 -0800
@@ -23,6 +23,7 @@
 distutils_enable_tests pytest
 
 python_install_all() {
-	use doc && HTML_DOCS=( docs/html/. )
+	cd docs && make html
+	use doc && HTML_DOCS=( _build/html/. )
 	distutils-r1_python_install_all
 }