ports/deskutils/treeline/files/patch-install.py
Jason E. Hale 8487552927 - Update to 3.0.0
- Now uses PyQt 5.x
- Minimum python requirement raised to 3.5
- Remove DESKTOP_ENTRIES - source now includes a .desktop file
- Removed options
  * PLUGINS - this version no longer uses them
- Added options
  * ASPELL, HUNSPELL, and ISPELL - desired default spellchecker
  * NLS - conditional native language support
2018-09-06 12:51:33 +00:00

13 lines
460 B
Python

Only check for the default spelling engine
--- install.py.orig 2018-09-06 12:23:56 UTC
+++ install.py
@@ -251,7 +251,7 @@ def main():
sys.exit(3)
global testSpell
if testSpell:
- spellCheck(['aspell -a', 'ispell -a', 'hunspell -a'])
+ spellCheck(['%%SPELL_ENGINE%% -a'])
pythonPrefixDir = os.path.join(prefixDir, 'share', progName)
pythonBuildDir = os.path.join(buildRoot, pythonPrefixDir[1:])