Patch taken from Debian sid. Adapted to 4.2.4.6 for Guix by Tobias Geerinckx-Rice . Description: Support uncompressing and compressing soft links. Historically, ncompress for Debian has been built using a command line directly in debian/rules. For 4.2.4.5-1, I simplified by swtching to the upstream Makefile. However, that caused a regression - the Debian version of ncompress has always successfully handled soft links, but this stopped working. To revert to the original behavior, I need to remove -DLSTAT from the build options, to be consistent with how the code was previously built. Author: Kenneth J. Pronovici Bug-Debian: http://bugs.debian.org/918836 Index: ncompress/GNUmakefile =================================================================== --- ncompress.orig/GNUmakefile +++ ncompress/GNUmakefile @@ -9,7 +9,7 @@ distclean: cleanup Makefile: Makefile.def GNUmakefile sed \ - -e 's:options= :options= -DUTIME_H -DLSTAT :' \ + -e 's:options= :options= -DUTIME_H :' \ Makefile.def > Makefile check: ='/guix/'>summaryrefslogtreecommitdiff
AgeCommit message (Expand)Author
2023-04-30gnu: plover: Fix build....Fixes this error in tests: `pkg_resources.DistributionNotFound: The 'wcwidth' distribution was not found and is required by the application` * gnu/packages/stenography.scm (plover)[inputs]: Add python-wcwidth. Signed-off-by: Ludovic Courtès <ludo@gnu.org> kiasoc5
2023-01-03gnu: dbus: Add dbus to inputs....* gnu/packages/stenography.scm (plover): Add dbus to inputs and LD_LIBRARY_PATH. Plover tries to load dbus during startup (visible with --log-level debug). This will allow it to find it. [inputs]: Add dbus. Signed-off-by: Nicolas Goaziou <mail@nicolasgoaziou.fr> Parnikkapore
2023-01-03gnu: plover: Wrap so that icons can be found....* gnu/packages/stenography.scm (plover): Wrap and add qtsvg to QT_PLUGIN_PATH This is needed for the icons in Plover's UI to appear. [inputs]: Add BASH-MINIMAL. Signed-off-by: Nicolas Goaziou <mail@nicolasgoaziou.fr> Parnikkapore
2022-10-25gnu: plover: Update to 4.0.0.dev12....* gnu/packages/stenography.scm (plover): Update to 4.0.0.dev12. [arguments]<#:phases>: Add phase to properly run tests, and skip failing one. [native-inputs]: Add PYTHON-BABEL, PYTHON-MOCK, PYTHON-PYTEST-QT, PYTHON,PYTEST-XVFB. [inputs]: Remove PYTHON-PYQT, PYTHON-BABEL. Add PYTHON-PLOVER-STROKE, PYTHON-PYQT, PYTHON-RTF-TOKENIZE, QTSVG-5. (python-plover-stroke): New variable. Nicolas Goaziou