view runtime/spell/tr/main.aap @ 22643:71b57779177d v8.2.1870

patch 8.2.1870: Vim9: no need to keep all script variables Commit: https://github.com/vim/vim/commit/39ca4127a094d8aca6f77c01be4f3fea506d5cb7 Author: Bram Moolenaar <Bram@vim.org> Date: Tue Oct 20 14:25:07 2020 +0200 patch 8.2.1870: Vim9: no need to keep all script variables Problem: Vim9: no need to keep all script variables. Solution: Only keep script variables when a function was defined that could use them. Fix freeing static string on exit.
author Bram Moolenaar <Bram@vim.org>
date Tue, 20 Oct 2020 14:30:04 +0200
parents e9a47bcf7b94
children
line wrap: on
line source

# Aap recipe for Turkish Vim spell files.

# Use a freshly compiled Vim if it exists.
@if os.path.exists('../../../src/vim'):
    VIM = ../../../src/vim
@else:
    :progsearch VIM vim

SPELLDIR = ..
FILES    = tr_TR.aff tr_TR.dic

all: $SPELLDIR/tr.utf-8.spl 

$SPELLDIR/tr.utf-8.spl : $FILES
        :sys env LANG=tr_TR.UTF-8
		$VIM -u NONE -e -c "mkspell! $SPELLDIR/tr tr_TR" -c q

# Fetching LibreOffice spell files
FILE = https://github.com/bitigchi/bitigchi.github.io/raw/master/vim-tr-spell/tr_TR.zip
:attr {fetch = $FILE} tr_TR.zip

# The files don't depend on the .zip file so that we can delete it.
# Only download the zip file if the targets don't exist.
tr_TR.aff tr_TR.dic: {buildcheck=}
        :assertpkg unzip patch
        :fetch tr_TR.zip
        :sys $UNZIP tr_TR.zip
        :delete tr_TR.zip
        @if not os.path.exists('tr_TR.orig.aff'):
            :copy tr_TR.aff tr_TR.orig.aff
        @if not os.path.exists('tr_TR.orig.dic'):
            :copy tr_TR.dic tr_TR.orig.dic
        @if os.path.exists('tr_TR.diff'):
            :sys patch <tr_TR.diff

# Generate diff files
diff:
        :assertpkg diff
        :sys {force} diff -a -C 1 tr_TR.orig.aff tr_TR.aff >tr_TR.diff
        :sys {force} diff -a -C 1 tr_TR.orig.dic tr_TR.dic >>tr_TR.diff

# Check for updated LibreOffice spell files.  When there are changes the
# ".new.aff" and ".new.dic" files are left behind for manual inspection.
check:
        :assertpkg unzip diff
        :fetch tr_TR.zip
        :mkdir tmp
        :cd tmp
        @try:
            @import stat
            :sys $UNZIP ../tr_TR.zip
            :sys {force} diff ../tr_TR.orig.aff tr_TR.aff >d
            @if os.stat('d')[stat.ST_SIZE] > 0:
                :copy tr_TR.aff ../tr_TR.new.aff
            :sys {force} diff ../tr_TR.orig.dic tr_TR.dic >d
            @if os.stat('d')[stat.ST_SIZE] > 0:
                :copy tr_TR.dic ../tr_TR.new.dic
        @finally:
            :cd ..
            :delete {r}{f}{q} tmp
            :delete tr_TR.zip

# Remove all the downloaded and generated files.
clean:
        :delete tr_TR.aff
        :delete tr_TR.dic
        :delete tr_TR.orig.aff
        :delete tr_TR.orig.dic