From aed8ce9da277f5ecffe968b324f242c41c3b752a Mon Sep 17 00:00:00 2001 From: Daniel Baumann Date: Sun, 7 Apr 2024 10:50:31 +0200 Subject: Adding upstream version 2:9.0.1378. Signed-off-by: Daniel Baumann --- runtime/spell/ku/ku_TR.diff | 104 ++++++++++++++++++++++++++++++++++++++++++++ runtime/spell/ku/main.aap | 82 ++++++++++++++++++++++++++++++++++ 2 files changed, 186 insertions(+) create mode 100644 runtime/spell/ku/ku_TR.diff create mode 100644 runtime/spell/ku/main.aap (limited to 'runtime/spell/ku') diff --git a/runtime/spell/ku/ku_TR.diff b/runtime/spell/ku/ku_TR.diff new file mode 100644 index 0000000..4d6e875 --- /dev/null +++ b/runtime/spell/ku/ku_TR.diff @@ -0,0 +1,104 @@ +*** ku_TR.orig.dic Wed Aug 31 22:13:17 2005 +--- ku_TR.dic Wed Aug 31 22:19:22 2005 +*************** +*** 492,494 **** + bergan +- bergeh + bergeh/m +--- 492,493 ---- +*************** +*** 1144,1146 **** + digevize +- digihīje + digihīje/Dd +--- 1143,1144 ---- +*************** +*** 1150,1152 **** + digihīžtin +- digire/D + digire/Dd +--- 1148,1149 ---- +*************** +*** 1361,1363 **** + dižubin +- dižīne + dižīne/Dd +--- 1358,1359 ---- +*************** +*** 1372,1374 **** + dom +- domand + domand/Ee +--- 1368,1369 ---- +*************** +*** 1489,1491 **** + Erbaž +- erd + erd/n +--- 1484,1485 ---- +*************** +*** 1893,1895 **** + Heso +- hesp + hesp/n +--- 1887,1888 ---- +*************** +*** 2139,2141 **** + jiyīn +- jor + jor/r +--- 2132,2133 ---- +*************** +*** 2382,2384 **** + kund +- kur + kur/n +--- 2374,2375 ---- +*************** +*** 2414,2416 **** + kuxiyane +- kuēe + kuēe/m +--- 2405,2406 ---- +*************** +*** 2576,2578 **** + medyayź +- meh + meh/m +--- 2566,2567 ---- +*************** +*** 3050,3052 **** + nivīsībū +- nivīsīn + nivīsīn/m +--- 3039,3040 ---- +*************** +*** 3443,3445 **** + qonax/m +- Qoser + Qoser/m +--- 3431,3432 ---- +*************** +*** 3467,3469 **** + radibe/Dd +- radigihīne + radigihīne/Dd +--- 3454,3455 ---- +*************** +*** 3671,3673 **** + sakoyekī +- sal/m + sal/mn +--- 3657,3658 ---- +*************** +*** 3881,3883 **** + tar +- tarī + tarī/m +--- 3866,3867 ---- +*************** +*** 4303,4305 **** + xeratiyź +- xerīb + xerīb/m +--- 4287,4288 ---- diff --git a/runtime/spell/ku/main.aap b/runtime/spell/ku/main.aap new file mode 100644 index 0000000..987e6db --- /dev/null +++ b/runtime/spell/ku/main.aap @@ -0,0 +1,82 @@ +# Aap recipe for Kurdish 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 = ku_TR.aff ku_TR.dic + +# I don't have a Kurdish locale, us the Turkish one. +all: $SPELLDIR/ku.iso-8859-9.spl $SPELLDIR/ku.utf-8.spl \ + ../README_ku.txt + +$SPELLDIR/ku.iso-8859-9.spl : $FILES + :sys env LANG=tr_TR.ISO8859-9 $VIM -u NONE -e -c "mkspell! $SPELLDIR/ku ku_TR" -c q + +$SPELLDIR/ku.utf-8.spl : $FILES + :sys env LANG=tr_TR.UTF-8 $VIM -u NONE -e -c "mkspell! $SPELLDIR/ku ku_TR" -c q + +../README_ku.txt: README_ku_TR.txt + :copy $source $target + +# +# Fetching the files from OpenOffice.org. +# +OODIR = http://ftp.services.openoffice.org/pub/OpenOffice.org/contrib/dictionaries +:attr {fetch = $OODIR/%file%} ku_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. +# This is a bit tricky, since the file name includes the date. +ku_TR.aff ku_TR.dic: {buildcheck=} + :assertpkg unzip patch + :fetch ku_TR.zip + :sys $UNZIP ku_TR.zip + :delete ku_TR.zip + :sys $VIM ku_TR.aff -u NONE -e -c "set ff=unix" -c update -c q + :sys $VIM ku_TR.dic -u NONE -e -c "set ff=unix" -c update -c q + :sys $VIM README_ku_TR.txt -u NONE -e -c "set ff=unix" -c update -c q + @if not os.path.exists('ku_TR.orig.aff'): + :copy ku_TR.aff ku_TR.orig.aff + @if not os.path.exists('ku_TR.orig.dic'): + :copy ku_TR.dic ku_TR.orig.dic + @if os.path.exists('ku_TR.diff'): + :sys patch ku_TR.diff + :sys {force} diff -a -C 1 ku_TR.orig.dic ku_TR.dic >>ku_TR.diff + + +# Check for updated spell files. When there are changes the +# ".new.aff" and ".new.dic" files are left behind for manual inspection. + +check: + :assertpkg unzip diff + :fetch ku_TR.zip + :mkdir tmp + :cd tmp + @try: + @import stat + :sys $UNZIP ../ku_TR.zip + :sys {force} diff ../ku_TR.orig.aff ku_TR.aff >d + @if os.stat('d')[stat.ST_SIZE] > 0: + :copy ku_TR.aff ../ku_TR.new.aff + :sys {force} diff ../ku_TR.orig.dic ku_TR.dic >d + @if os.stat('d')[stat.ST_SIZE] > 0: + :copy ku_TR.dic ../ku_TR.new.dic + @finally: + :cd .. + :delete {r}{f}{q} tmp + :delete ku_TR.zip + + +# vim: set sts=4 sw=4 : -- cgit v1.2.3