This change was automated via the following command:
$ git ls-files | xargs sed -i 's/,qtbase)/,qtbase-5)/g'
$ git ls-files | xargs sed -i 's/inherit qtbase)/inherit qtbase-5)/g'
$ git ls-files | xargs sed -i 's/package-version qtbase)/package-version qtbase-5)/g'
$ git checkout etc # to clear some spurious changes
This is done so the qtbase package can be upgraded to version 6 in the
following commit.
In build phases, the former (or 'inputs', as appropriate) is preferred.
* gnu/packages/text-editors.scm
(qemacs)[arguments]<#:phases>{install-extra-documentation}: Use
'native-inputs' argument instead of '%build-inputs'.
Signed-off-by: Mathieu Othacehe <othacehe@gnu.org>
* gnu/packages/text-editors.scm (vis)[arguments]: Add ‘unpack-test-suite’
and ‘set-up-tests’ phase. Run the tests after wrapping vis.
[native-inputs]: Add vis-test origin.
* gnu/packages/text-editors.scm (geany)[source]: Do not un-bundle scintilla.
[arguments]: Remove phase using our shared library. Use bundled one instead.
* gnu/packages/text-editors.scm (vis)[native-search-paths]: Remove.
There is no need to set $VIS_PATH to $prefix/share/vis as VIS_PATH
(#define), which is also in search path
(7648280a95/vis-lua.c (L2662)),
is already set by Makefile to $prefix/share/vis
(7648280a95/Makefile (L37)).
This fixes issue https://issues.guix.gnu.org/39394
Signed-off-by: Jakub Kądziołka <kuba@kadziolka.net>