Mercurial > vim
annotate runtime/spell/gd/main.aap @ 13204:a8a154cafc60 v8.0.1476
patch 8.0.1476: screen isn't always updated right away
commit https://github.com/vim/vim/commit/acda04f5c641330cd589ca52eb61d1ab0d62385f
Author: Bram Moolenaar <Bram@vim.org>
Date: Thu Feb 8 09:57:28 2018 +0100
patch 8.0.1476: screen isn't always updated right away
Problem: Screen isn't always updated right away.
Solution: Adjust #ifdef: Call out_flush() when not running the GUI.
author | Christian Brabandt <cb@256bit.org> |
---|---|
date | Thu, 08 Feb 2018 10:00:06 +0100 |
parents | ea3c3f13385c |
children |
rev | line source |
---|---|
502 | 1 # Aap recipe for Scottish Gaelic Vim spell files. |
2 | |
3 # Use a freshly compiled Vim if it exists. | |
4 @if os.path.exists('../../../src/vim'): | |
5 VIM = ../../../src/vim | |
6 @else: | |
7 :progsearch VIM vim | |
8 | |
9 SPELLDIR = .. | |
10 FILES = gd_GB.aff gd_GB.dic | |
11 | |
12 all: $SPELLDIR/gd.latin1.spl $SPELLDIR/gd.utf-8.spl ../README_gd.txt | |
13 | |
14 $SPELLDIR/gd.latin1.spl : $FILES | |
2292
ea3c3f13385c
Update spell files for Ubuntu locale names.
Bram Moolenaar <bram@vim.org>
parents:
615
diff
changeset
|
15 :sys env LANG=gd_GB.ISO8859-15 |
502 | 16 $VIM -u NONE -e -c "mkspell! $SPELLDIR/gd gd_GB" -c q |
17 | |
18 $SPELLDIR/gd.utf-8.spl : $FILES | |
615 | 19 :sys $VIM -u NONE -e -c "set enc=utf-8" -c "mkspell! $SPELLDIR/gd gd_GB" -c q |
502 | 20 |
21 ../README_gd.txt : README_gd_GB.txt | |
22 :copy $source $target | |
23 | |
24 # | |
25 # Fetching the files from OpenOffice.org. | |
26 # | |
27 OODIR = http://ftp.services.openoffice.org/pub/OpenOffice.org/contrib/dictionaries | |
28 :attr {fetch = $OODIR/%file%} gd_GB.zip | |
29 | |
30 # The files don't depend on the .zip file so that we can delete it. | |
31 # Only download the zip file if the targets don't exist. | |
32 gd_GB.aff gd_GB.dic: {buildcheck=} | |
33 :assertpkg unzip patch | |
34 :fetch gd_GB.zip | |
35 :sys $UNZIP gd_GB.zip | |
36 :delete gd_GB.zip | |
37 @if not os.path.exists('gd_GB.orig.aff'): | |
38 :copy gd_GB.aff gd_GB.orig.aff | |
39 @if not os.path.exists('gd_GB.orig.dic'): | |
40 :copy gd_GB.dic gd_GB.orig.dic | |
41 @if os.path.exists('gd_GB.diff'): | |
42 :sys patch <gd_GB.diff | |
43 | |
44 | |
45 # Generate diff files, so that others can get the OpenOffice files and apply | |
46 # the diffs to get the Vim versions. | |
47 | |
48 diff: | |
49 :assertpkg diff | |
50 :sys {force} diff -a -C 1 gd_GB.orig.aff gd_GB.aff >gd_GB.diff | |
51 :sys {force} diff -a -C 1 gd_GB.orig.dic gd_GB.dic >>gd_GB.diff | |
52 | |
53 | |
54 # Check for updated OpenOffice spell files. When there are changes the | |
55 # ".new.aff" and ".new.dic" files are left behind for manual inspection. | |
56 | |
57 check: | |
58 :assertpkg unzip diff | |
59 :fetch gd_GB.zip | |
60 :mkdir tmp | |
61 :cd tmp | |
62 @try: | |
63 @import stat | |
64 :sys $UNZIP ../gd_GB.zip | |
65 :sys {force} diff ../gd_GB.orig.aff gd_GB.aff >d | |
66 @if os.stat('d')[stat.ST_SIZE] > 0: | |
67 :copy gd_GB.aff ../gd_GB.new.aff | |
68 :sys {force} diff ../gd_GB.orig.dic gd_GB.dic >d | |
69 @if os.stat('d')[stat.ST_SIZE] > 0: | |
70 :copy gd_GB.dic ../gd_GB.new.dic | |
71 @finally: | |
72 :cd .. | |
73 :delete {r}{f}{q} tmp | |
74 :delete gd_GB.zip | |
75 | |
76 | |
77 # vim: set sts=4 sw=4 : |