This test was failing with subversion 1.7.8 because the svn repository structure was not as the test expected. Presumably the test relies on different version. --- aegis-4.24/test/02/t0222a-pmil.sh 2008-03-14 07:19:27.000000000 +0100 +++ aegis-4.24/test/02/t0222a-pmil.sh 2014-01-27 19:48:30.000000000 +0100 @@ -268,7 +268,8 @@ -c 10 > log 2>&1 if test $? -ne 0 ; then cat log; fail; fi -test -f $work/svnroot/db/revs/2 || fail +activity="check svn db 271" +test -f $work/svnroot/db/revs/0/2 || test -f $work/svnroot/db/revs/2 || fail # -------------------------------------------------------------------------- @@ -364,7 +365,8 @@ -c 3 > log 2>&1 if test $? -ne 0 ; then cat log; fail; fi -test -f $work/svnroot/db/revs/3 || fail +activity="check svn db 368" +test -f $work/svnroot/db/revs/0/3 || test -f $work/svnroot/db/revs/3 || fail # # Only definite negatives are possible. Wojtek's customized Guix
aboutsummaryrefslogtreecommitdiff
path: root/gnu/packages/sphinx.scm
AgeCommit message (Expand)Author
2024-11-20gnu: python-sphobjinv: Update to 2.3.1.1....* gnu/packages/patches/python-sphobjinv-defer-ssl-import.patch: New patch. * gnu/local.mk (dist_patch_DATA): Add it. * gnu/packages/sphinx.scm (python-sphobjinv): Update to 2.3.1.1. [source]: Use patch. [arguments]: Replace check phase. [native-inputs]: New field. [propagated-inputs]: Remove python-fuzzywuzzy and python-levenshtein. Change-Id: Id60f45b222f286c8db55e9ce11378cf5ba82c603 Eric Bavier
2024-08-31gnu: python-sphinx: Fix build....* gnu/packages/sphinx.scm (python-sphinx)[propagated-inputs]: Add TEXLIVE-SCHEME-BASIC in order to propagate an autonomous TeX Live tree. Also add TEXLIVE-ANYFONTSIZE, TEXLIVE-CM-SUPER, TEXLIVE-FONTSPEC, TEXLIVE-LUATEX85, TEXLIVE-LUATEXBASE, TEXLIVE-POLYGLOSSIA and TEXLIVE-TEX-GYRE. Remove TEXLIVE-AMSFONTS, TEXLIVE-AMSMATH, TEXLIVE-CARLISLE, TEXLIVE-FANCYHDR, TEXLILVE-GEOMETRY, TEXLIVE-HYPERREF, TEXLIVE-KVOPTIONS, TEXLIVE-LATEX-BIN, TEXLIVE-LTXCMDS, TEXLIVE-OBERDIEK and TEXLIVE-TOOLS, all included in TEXLIVE-SCHEME-BASIC. [native-inputs]: Add FONTCONFIG, FONT-GNU-FREEFONT, TEXLIVE-CM-SUPER, and TEXLIVE-TEX-GYRE. Also call TEXLIVE-UPMAP.CFG to generate proper font maps during tests. Change-Id: Ifc5c5eb37ea6568c5a602ddff66dc8a92a1a6072 Nicolas Goaziou
2024-08-31gnu: sphinx: Use 'imagemagick/stable' variant....As the store item does not retain a reference to imagemagick, it should be safe to use the 'imagemagick/stable' variant. * gnu/packages/sphinx.scm (python-sphinx) [arguments] Add #:disallowed-references to make sure no references to imagemagick are retained. [native-inputs]: Use 'imagemagick/stable' instead of 'imagemagick' and explain why that's a safe thing to do. Signed-off-by: Maxim Cournoyer <maxim.cournoyer@gmail.com> Modified-by: Maxim Cournoyer <maxim.cournoyer@gmail.com> Change-Id: I04bdc94e012f3fcb30c4ec113a0ae2e9d9373210 Maxime Devos