This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

classification
Title: "abort: repository . not found!" during the build of Python 2.7
Type: compile error Stage: resolved
Components: Build Versions: Python 2.7
process
Status: closed Resolution: out of date
Dependencies: Superseder:
Assigned To: Nosy List: benjamin.peterson, r.david.murray, serhiy.storchaka
Priority: normal Keywords:

Created on 2017-03-04 19:21 by serhiy.storchaka, last changed 2022-04-11 14:58 by admin. This issue is now closed.

Messages (2)
msg288991 - (view) Author: Serhiy Storchaka (serhiy.storchaka) * (Python committer) Date: 2017-03-04 19:21
The message "abort: repository . not found!" is output to stderr three times during the build of Python 2.7. To be more precise, it happens during the build of getbuildinfo.c.

$ touch Modules/getbuildinfo.c
$ make -s
abort: repository . not found!
abort: repository . not found!
abort: repository . not found!
libpython2.7.a(posixmodule.o): у функції «posix_tmpnam»:
/home/serhiy/py/cpython2.7/./Modules/posixmodule.c:7614: попередження: the use of `tmpnam_r' is dangerous, better use `mkstemp'
libpython2.7.a(posixmodule.o): у функції «posix_tempnam»:
/home/serhiy/py/cpython2.7/./Modules/posixmodule.c:7561: попередження: the use of `tempnam' is dangerous, better use `mkstemp'
building dbm using gdbm

Python build finished, but the necessary bits to build these modules were not found:
_bsddb             bsddb185           sunaudiodev     
To find the necessary bits, look in setup.py in detect_modules() for the module's name.

All works correctly when build Python 3.x.

This looks related to issue12346.
msg296104 - (view) Author: Serhiy Storchaka (serhiy.storchaka) * (Python committer) Date: 2017-06-15 14:48
The issue no longer reproduced.
History
Date User Action Args
2022-04-11 14:58:43adminsetgithub: 73907
2017-06-15 14:48:28serhiy.storchakasetstatus: open -> closed
resolution: out of date
messages: + msg296104

stage: resolved
2017-03-04 19:21:19serhiy.storchakacreate