aboutsummaryrefslogtreecommitdiff
path: root/gnu/packages/benchmark.scm
diff options
context:
space:
mode:
authorEfraim Flashner <efraim@flashner.co.il>2024-12-21 20:53:18 +0200
committerEfraim Flashner <efraim@flashner.co.il>2024-12-21 21:10:09 +0200
commita50201fdc18067351e7d8e384b848430e125bbc6 (patch)
tree847026e2f765cd16dcdd6172fb7f767bb679f462 /gnu/packages/benchmark.scm
parentda6fc1750e377f3cf1a78b4e36de12d7c81a79e9 (diff)
downloadguix-a50201fdc18067351e7d8e384b848430e125bbc6.tar.gz
guix-a50201fdc18067351e7d8e384b848430e125bbc6.zip
gnu: python-cssselect2: Fix build.
* gnu/packages/python-web.scm (python-cssselect2)[native-inputs]: Add python-flit. Change-Id: Icea70b984b2009eb7963c5846ac7a3bb1664c2b4
Diffstat (limited to 'gnu/packages/benchmark.scm')
0 files changed, 0 insertions, 0 deletions
colspan='3' class='logmsg'> Fixes <https://issues.guix.gnu.org/54760>. * guix/import/hackage.scm (filter-dependencies): Support multiple OWN-NAMES. (hackage-module->sexp): Filter OWN-NAMES from HACKAGE-DEPENDENCIES and HACKAGE-NATIVE-DEPENDENCIES. * tests/hackage.scm (test-cabal-internal-library-ignored): New variable. ("hackage->guix-package test internal libraries are ignored"): New testcase. 2022-06-06import: cabal: Support library namesLars-Dominik Braun * guix/import/cabal.scm (make-cabal-parser): Add name to section. (is-lib): Add optional name to regular expression. (lex-rx-res): Support selecting different substring. (lex-lib): Match 2nd substring from IS-LIB. (lex-line): Adapt to changes for lex-lib. (cabal-library): Add name field and export CABAL-LIBRARY-NAME. (eval): Remove special case for 'library, which is not required any more. (make-cabal-section): Move special case for LIBRARY. * tests/hackage.scm (test-read-cabal-library-name): New variable. ("read-cabal test 1"): Adapt testcase to changed internal structure. ("read-cabal test: library name"): New testcase. 2022-06-06import: cabal: Document failing syntax through tests.Lars-Dominik Braun * tests/hackage.scm (test-read-cabal-brackets-newline): New variable. (test-cabal-no-final-newline): Likewise. ("hackage->guix-package test without final newline", "read-cabal test: property brackets on new line"): New tests. 2022-06-06import: cabal: Allow curly bracket before else statement.Lars-Dominik Braun * guix/import/cabal.scm (is-else): Turn into procedure. (lex-line): Move IS-ELSE… (lex-word): …here. * tests/hackage.scm (test-cabal-elif-brackets): Extend testcase. 2022-06-06import: cabal: Allow properties without space between key and value.Lars-Dominik Braun * guix/import/cabal.scm (lex-word): Add colon to delimiters. * tests/hackage.scm (test-cabal-property-no-space): New variable. ("hackage->guix-package test properties without space"): New test. 2022-06-06import: cabal: Allow curly brackets in more positions.Lars-Dominik Braun * guix/import/cabal.scm (is-layout-property): Do not expect end of line. (lex-layout-property): Check for newline. (lex-property): Stop reading on closing curly bracket. * tests/hackage.scm (test-read-cabal-2): New variable. ("read-cabal test: if brackets on the same line"): New test. 2022-06-06import: cabal: Support elif statement.Lars-Dominik Braun Fixes <https://issues.guix.gnu.org/54752>. * guix/import/cabal.scm (make-cabal-parser): Replace if-then-else grammar case with elif-else, modify if-then accordingly. (is-elif): New procedure. (lex-elif): Likewise. (is-id): Add elif keyword. (lex-word): Add test for elif. * tests/hackage.scm (test-cabal-if): New variale. (test-cabal-else): Likewise. (test-cabal-elif): Likewise. (test-cabal-elif-brackets): Likewise. (match-ghc-elif): Likewise. ("hackage->guix-package test lonely if statement", "hackage->guix-package test else statement", "hackage->guix-package test elif statement", "hackage->guix-package test elif statement with brackets"): New tests.