summaryrefslogtreecommitdiff
path: root/guix/man-db.scm
AgeCommit message (Collapse)Author
2018-06-01profiles: Use 'with-extensions'.Ludovic Courtès
* guix/profiles.scm (manual-database)[build]: Use 'with-extensions'. Remove 'add-to-load-path' call. * guix/man-db.scm: Use (gdbm) the normal way; remove 'module-autoload!' call.
2017-12-22guix: Exclude broken symlinks from man files.Ricardo Wurmus
* guix/man-db.scm (man-files): Remove broken symlinks from list of man pages.
2017-12-17man-db: Autoload (gdbm).Ludovic Courtès
Fixes 'guix pull'. Reported by ofosos on #guix. * guix/man-db.scm: Use 'module-autoload!' instead of 'module-use!'. so that (gdbm) is not loaded until we need it.
2017-12-17profiles: Use (guix man-db) to create the manual database.Ludovic Courtès
Fixes <https://bugs.gnu.org/29654>. Reported by Ruud van Asseldonk <dev+guix@veniogames.com>. This also speeds up database creation compared to "man-db --create" (less than half the time, on a warm cache, for 19k pages.) * guix/man-db.scm: New file. * Makefile.am (MODULES_NOT_COMPILED): Add it. * guix/profiles.scm (manual-database): Rewrite to use (guix man-db).