From 6bfaf37d442be0a159a842adc58f5f69abc2bdcc Mon Sep 17 00:00:00 2001 From: Kiyoshi Aman Date: Wed, 12 Dec 2018 19:43:24 -0600 Subject: user/aspell: eliminate useless and obnoxious rice --- user/aspell/APKBUILD | 25 +++++-------------------- 1 file changed, 5 insertions(+), 20 deletions(-) diff --git a/user/aspell/APKBUILD b/user/aspell/APKBUILD index a2cc79f32..8da5b4041 100644 --- a/user/aspell/APKBUILD +++ b/user/aspell/APKBUILD @@ -2,17 +2,16 @@ # Maintainer: pkgname=aspell pkgver=0.60.6.1 -pkgrel=13 +pkgrel=14 pkgdesc="Libre spell checker software" url="http://aspell.net/" arch="all" license="LGPL-2.0+" -subpackages="$pkgname-compat::noarch $pkgname-utils $pkgname-dev $pkgname-doc - $pkgname-lang $pkgname-libs" -depends= -depends_dev="$pkgname-utils" +subpackages="$pkgname-compat::noarch $pkgname-dev $pkgname-doc + $pkgname-lang" +depends="perl" makedepends="ncurses-dev perl" -install= +provides="aspell-utils" source="ftp://ftp.gnu.org/gnu/$pkgname/$pkgname-$pkgver.tar.gz" prepare() { @@ -52,18 +51,4 @@ compat() { mv spell ispell "$subpkgdir"/usr/bin/ } -utils() { - pkgdesc="Utilities for aspell" - depends="$pkgname perl" - install -d "$subpkgdir"/usr/bin - cd "$pkgdir"/usr/bin - mv pre* aspell-import run-with-aspell word-list-compress "$subpkgdir"/usr/bin/ -} - -libs() { - default_libs - mv "$pkgdir"/usr/share "$subpkgdir"/usr - rm -fr "$pkgdir"/usr/lib -} - sha512sums="f310c7590be98406589b5c26ca36a2ecfe4733f0b40fd6c176b96b7955ef2b5cd0ec9a3d770cf132146ae7a896042b4b698945112995ee1ae66adcfa5542247f aspell-0.60.6.1.tar.gz" -- cgit v1.2.3-70-g09d2 From c9da2b357ff7bac3913e10b2735173e08e5ce6c7 Mon Sep 17 00:00:00 2001 From: Kiyoshi Aman Date: Wed, 12 Dec 2018 19:46:19 -0600 Subject: user/aspell-dict-en: new package --- user/aspell-dict-en/APKBUILD | 28 ++++++++++++++++++++++++++++ 1 file changed, 28 insertions(+) create mode 100644 user/aspell-dict-en/APKBUILD diff --git a/user/aspell-dict-en/APKBUILD b/user/aspell-dict-en/APKBUILD new file mode 100644 index 000000000..00eb10438 --- /dev/null +++ b/user/aspell-dict-en/APKBUILD @@ -0,0 +1,28 @@ +# Contributor: Kiyoshi Aman +# Maintainer: Kiyoshi Aman +pkgname=aspell-dict-en +pkgver=2018.04.16 +_pkgver=$pkgver-0 +pkgrel=0 +pkgdesc="English dictionaries for aspell" +url="http://aspell.net/" +arch="noarch" +options="!check" # no tests +license="BSD-3-Clause AND Public-Domain" +depends="aspell" +makedepends="debianutils-which" +source="ftp://ftp.gnu.org/gnu/aspell/dict/en/aspell6-en-$_pkgver.tar.bz2" +builddir="$srcdir/aspell6-en-$_pkgver" + +build() { + cd "$builddir" + ./configure --vars DESTDIR="$pkgdir" + make +} + +package() { + cd "$builddir" + make DESTDIR="$pkgdir" install +} + +sha512sums="70447f5f11a6a2d96e58376ac06e78add59e4eb237ca40ed0752f481dabe1a6e9e227fd20ba95a5612de1bb4357cd65760a31c94efe66f8499b9ed031e9846c2 aspell6-en-2018.04.16-0.tar.bz2" -- cgit v1.2.3-70-g09d2 From c3f8415ace3235f6f16250a16ab409af01d5f557 Mon Sep 17 00:00:00 2001 From: Kiyoshi Aman Date: Thu, 13 Dec 2018 00:39:05 -0600 Subject: user/aspell-dict-af: new package --- user/aspell-dict-af/APKBUILD | 28 ++++++++++++++++++++++++++++ 1 file changed, 28 insertions(+) create mode 100644 user/aspell-dict-af/APKBUILD diff --git a/user/aspell-dict-af/APKBUILD b/user/aspell-dict-af/APKBUILD new file mode 100644 index 000000000..78d3b2604 --- /dev/null +++ b/user/aspell-dict-af/APKBUILD @@ -0,0 +1,28 @@ +# Contributor: Kiyoshi Aman +# Maintainer: Kiyoshi Aman +pkgname=aspell-dict-af +pkgver=0.50 +_pkgver=$pkgver-0 +pkgrel=0 +pkgdesc="Afrikaans dictionaries for aspell" +url="http://aspell.net" +arch="noarch" +license="LGPL-2.1-only" +options="!check" # no tests +depends="aspell" +makedepends="debianutils-which" +source="ftp://ftp.gnu.org/gnu/aspell/dict/af/aspell-af-$_pkgver.tar.bz2" +builddir="$srcdir/aspell-af-$_pkgver" + +build() { + cd "$builddir" + ./configure --vars DESTDIR="$pkgdir" + make +} + +package() { + cd "$builddir" + make DESTDIR="$pkgdir" install +} + +sha512sums="8ca7b892745bebe5dfda1319141c5efc53fbad1444066d585cc2d6479c51c85c31307a6977a0647b0c4add4a5b7baa9adb370996e25db4e1c98f1c10991fd649 aspell-af-0.50-0.tar.bz2" -- cgit v1.2.3-70-g09d2 From 48cda22b538d7bc49660334e4646db9d6eb13b8a Mon Sep 17 00:00:00 2001 From: Kiyoshi Aman Date: Thu, 13 Dec 2018 01:17:24 -0600 Subject: user/aspell-dict-am: new package --- user/aspell-dict-am/APKBUILD | 28 ++++++++++++++++++++++++++++ 1 file changed, 28 insertions(+) create mode 100644 user/aspell-dict-am/APKBUILD diff --git a/user/aspell-dict-am/APKBUILD b/user/aspell-dict-am/APKBUILD new file mode 100644 index 000000000..834003c56 --- /dev/null +++ b/user/aspell-dict-am/APKBUILD @@ -0,0 +1,28 @@ +# Contributor: Kiyoshi Aman +# Maintainer: Kiyoshi Aman +pkgname=aspell-dict-am +pkgver=0.03 +_pkgver=$pkgver-1 +pkgrel=0 +pkgdesc="Amharic dictionaries for aspell" +url="http://aspell.net" +arch="noarch" +options="!check" # no tests +license="Public-Domain" +depends="aspell" +makedepends="debianutils-which" +source="ftp://ftp.gnu.org/gnu/aspell/dict/am/aspell6-am-$_pkgver.tar.bz2" +builddir="$srcdir/aspell6-am-$_pkgver" + +build() { + cd "$builddir" + ./configure --vars DESTDIR="$pkgdir" + make +} + +package() { + cd "$builddir" + make DESTDIR="$pkgdir" install +} + +sha512sums="a9b323266a8d3f72a5684a2d24465d99539069bf330d4c417f6b56f7fb5b5c3479cd18265c4bafa901c86c411eaec3de7798c08c54c565418b5ecccd2a91a6f0 aspell6-am-0.03-1.tar.bz2" -- cgit v1.2.3-70-g09d2 From acbf5d5070be5ff23d2a14be8e798da421e0d5b8 Mon Sep 17 00:00:00 2001 From: Kiyoshi Aman Date: Thu, 13 Dec 2018 07:55:56 -0600 Subject: user/aspell-dict-ar: new package --- user/aspell-dict-ar/APKBUILD | 28 ++++++++++++++++++++++++++++ 1 file changed, 28 insertions(+) create mode 100644 user/aspell-dict-ar/APKBUILD diff --git a/user/aspell-dict-ar/APKBUILD b/user/aspell-dict-ar/APKBUILD new file mode 100644 index 000000000..80f018cc9 --- /dev/null +++ b/user/aspell-dict-ar/APKBUILD @@ -0,0 +1,28 @@ +# Contributor: Kiyoshi Aman +# Maintainer: Kiyoshi Aman +pkgname=aspell-dict-ar +pkgver=1.2 +_pkgver=$pkgver-0 +pkgrel=0 +pkgdesc="Arabic dictionaries for aspell" +url="http://aspell.net" +arch="noarch" +options="!check" # no tests +license="GPL-2.0-only" +depends="aspell" +makedepends="debianutils-which" +source="ftp://ftp.gnu.org/gnu/aspell/dict/ar/aspell6-ar-$_pkgver.tar.bz2" +builddir="$srcdir/aspell6-ar-$_pkgver" + +build() { + cd "$builddir" + ./configure --vars DESTDIR="$pkgdir" + make +} + +package() { + cd "$builddir" + make DESTDIR="$pkgdir" install +} + +sha512sums="7f645dab6e27da404d599f40da2baf469293105cbaf440bf9abf9268423b36e0faa11d1afcf5c32a8e1d93eadad356af6486a960c7bca97777948c844108f4bc aspell6-ar-1.2-0.tar.bz2" -- cgit v1.2.3-70-g09d2 From 595ce315a1b8e57752e1f1d4e0010d051d6e0d3f Mon Sep 17 00:00:00 2001 From: Kiyoshi Aman Date: Thu, 13 Dec 2018 14:31:27 -0600 Subject: user/aspell-dict-ast: new package --- user/aspell-dict-ast/APKBUILD | 27 +++++++++++++++++++++++++++ 1 file changed, 27 insertions(+) create mode 100644 user/aspell-dict-ast/APKBUILD diff --git a/user/aspell-dict-ast/APKBUILD b/user/aspell-dict-ast/APKBUILD new file mode 100644 index 000000000..c8fdd5708 --- /dev/null +++ b/user/aspell-dict-ast/APKBUILD @@ -0,0 +1,27 @@ +# Contributor: Kiyoshi Aman +# Maintainer: Kiyoshi Aman +pkgname=aspell-dict-ast +pkgver=0.01 +pkgrel=0 +pkgdesc="Asturian dictionaries for aspell" +url="http://aspell.net" +arch="noarch" +license="LGPL-2.1-only" +options="!check" # no tests +depends="aspell" +makedepends="debianutils-which" +source="ftp://ftp.gnu.org/gnu/aspell/dict/ast/aspell6-ast-$pkgver.tar.bz2" +builddir="$srcdir/aspell6-ast-$pkgver" + +build() { + cd "$builddir" + ./configure --vars DESTDIR="$pkgdir" + make +} + +package() { + cd "$builddir" + make DESTDIR="$pkgdir" install +} + +sha512sums="700a45c230218e57549cf4b2caaa9e86c4b8da68a3ed937fa391814816c1e0d16265d77658e209af66550e647f418663eb76952efed973e6b1f88570b90d77bc aspell6-ast-0.01.tar.bz2" -- cgit v1.2.3-70-g09d2 From d65abc544770db8a62d95ccfd38bdc92a4ffdcf4 Mon Sep 17 00:00:00 2001 From: Kiyoshi Aman Date: Thu, 13 Dec 2018 14:33:02 -0600 Subject: user/aspell-dict-az: new package --- user/aspell-dict-az/APKBUILD | 28 ++++++++++++++++++++++++++++ 1 file changed, 28 insertions(+) create mode 100644 user/aspell-dict-az/APKBUILD diff --git a/user/aspell-dict-az/APKBUILD b/user/aspell-dict-az/APKBUILD new file mode 100644 index 000000000..46710d12f --- /dev/null +++ b/user/aspell-dict-az/APKBUILD @@ -0,0 +1,28 @@ +# Contributor: Kiyoshi Aman +# Maintainer: Kiyoshi Aman +pkgname=aspell-dict-az +pkgver=0.02 +_pkgver=$pkgver-0 +pkgrel=0 +pkgdesc="Azerbaijani dictionaries for aspell" +url="http://aspell.net" +arch="noarch" +license="GPL-2.0-only" +options="!check" # no tests +depends="aspell" +makedepends="debianutils-which" +source="ftp://ftp.gnu.org/gnu/aspell/dict/az/aspell6-az-$_pkgver.tar.bz2" +builddir="$srcdir/aspell6-az-$_pkgver" + +build() { + cd "$builddir" + ./configure --vars DESTDIR="$pkgdir" + make +} + +package() { + cd "$builddir" + make DESTDIR="$pkgdir" install +} + +sha512sums="69a0858addf72259898fc4fd3a22a572b97227915a08a632ea1d8645c2636c702ce09f66961afbfbb3473b9404a4fe73c9b02c2e694a641385e4bbd2c61c9b26 aspell6-az-0.02-0.tar.bz2" -- cgit v1.2.3-70-g09d2 From cc3c38b1fb3733825f72c5ced34e3a1e5be2663e Mon Sep 17 00:00:00 2001 From: Kiyoshi Aman Date: Thu, 13 Dec 2018 14:49:59 -0600 Subject: user/aspell-dict-be: new package --- user/aspell-dict-be/APKBUILD | 27 +++++++++++++++++++++++++++ 1 file changed, 27 insertions(+) create mode 100644 user/aspell-dict-be/APKBUILD diff --git a/user/aspell-dict-be/APKBUILD b/user/aspell-dict-be/APKBUILD new file mode 100644 index 000000000..a25306568 --- /dev/null +++ b/user/aspell-dict-be/APKBUILD @@ -0,0 +1,27 @@ +# Contributor: Kiyoshi Aman +# Maintainer: Kiyoshi Aman +pkgname=aspell-dict-be +pkgver=0.01 +pkgrel=0 +pkgdesc="Belarusian dictionaries for aspell" +url="http://aspell.net" +arch="noarch" +license="LGPL-2.1-only" +options="!check" # no tests +depends="aspell" +makedepends="debianutils-which" +source="ftp://ftp.gnu.org/gnu/aspell/dict/be/aspell5-be-$pkgver.tar.bz2" +builddir="$srcdir/aspell5-be-$pkgver" + +build() { + cd "$builddir" + ./configure --vars DESTDIR="$pkgdir" + make +} + +package() { + cd "$builddir" + make DESTDIR="$pkgdir" install +} + +sha512sums="320334c9944c44c9a61d24798ecd7603c4dc9fee99035d48d19759ecf2c1ac8ae21a0afde050d6527566e2404c1df4f75e313cec598b7faa93506142ea3c1022 aspell5-be-0.01.tar.bz2" -- cgit v1.2.3-70-g09d2 From 0e3db2d05f5b84a1f091be0a6418103192de6bc3 Mon Sep 17 00:00:00 2001 From: Kiyoshi Aman Date: Thu, 13 Dec 2018 14:52:20 -0600 Subject: user/aspell-dict-bg: new package --- user/aspell-dict-bg/APKBUILD | 28 ++++++++++++++++++++++++++++ 1 file changed, 28 insertions(+) create mode 100644 user/aspell-dict-bg/APKBUILD diff --git a/user/aspell-dict-bg/APKBUILD b/user/aspell-dict-bg/APKBUILD new file mode 100644 index 000000000..0d78d98af --- /dev/null +++ b/user/aspell-dict-bg/APKBUILD @@ -0,0 +1,28 @@ +# Contributor: Kiyoshi Aman +# Maintainer: Kiyoshi Aman +pkgname=aspell-dict-bg +pkgver=4.1 +_pkgver=$pkgver-0 +pkgrel=0 +pkgdesc="Bulgarian dictionaries for aspell" +url="http://aspell.net" +arch="noarch" +license="GPL-2.0-only" +options="!check" # no tests +depends="aspell" +makedepends="debianutils-which" +source="ftp://ftp.gnu.org/gnu/aspell/dict/bg/aspell6-bg-$_pkgver.tar.bz2" +builddir="$srcdir/aspell6-bg-$_pkgver" + +build() { + cd "$builddir" + ./configure --vars DESTDIR="$pkgdir" + make +} + +package() { + cd "$builddir" + make DESTDIR="$pkgdir" install +} + +sha512sums="73ba292e9e78be21a9bd32d802a3f87b5b8200b64fcdc6e8bb47c834eb9dfd855a3397e8deb83e7879dc0dab7b118ae117832032fb9a450976c929bf12926881 aspell6-bg-4.1-0.tar.bz2" -- cgit v1.2.3-70-g09d2 From a34d8d9340c1d7117e983cd679914105293f8e07 Mon Sep 17 00:00:00 2001 From: Kiyoshi Aman Date: Thu, 13 Dec 2018 15:05:57 -0600 Subject: user/aspell-dict-bn: new package --- user/aspell-dict-bn/APKBUILD | 28 ++++++++++++++++++++++++++++ 1 file changed, 28 insertions(+) create mode 100644 user/aspell-dict-bn/APKBUILD diff --git a/user/aspell-dict-bn/APKBUILD b/user/aspell-dict-bn/APKBUILD new file mode 100644 index 000000000..56be451fa --- /dev/null +++ b/user/aspell-dict-bn/APKBUILD @@ -0,0 +1,28 @@ +# Contributor: Kiyoshi Aman +# Maintainer: Kiyoshi Aman +pkgname=aspell-dict-bn +pkgver=0.01.1 +_pkgver=$pkgver-1 +pkgrel=0 +pkgdesc="Bengali dictionaries for aspell" +url="http://aspell.net" +arch="noarch" +license="GPL-2.0-only" +options="!check" # no tests +depends="aspell" +makedepends="debianutils-which" +source="ftp://ftp.gnu.org/gnu/aspell/dict/bn/aspell6-bn-$_pkgver.tar.bz2" +builddir="$srcdir/aspell6-bn-$_pkgver" + +build() { + cd "$builddir" + ./configure --vars DESTDIR="$pkgdir" + make +} + +package() { + cd "$builddir" + make DESTDIR="$pkgdir" install +} + +sha512sums="d8fe29b100284aa6b2e909811b9eb09bd5decea4c056f2ed6a24de9d5adb48714827a2e892fdf38274d1e1a44b2a93415fccf90b4c4d85512f3052c7f7939d22 aspell6-bn-0.01.1-1.tar.bz2" -- cgit v1.2.3-70-g09d2 From b059919a886586884b229790196ca30dd2421c9b Mon Sep 17 00:00:00 2001 From: Kiyoshi Aman Date: Thu, 13 Dec 2018 15:07:19 -0600 Subject: user/aspell-dict-br: new package --- user/aspell-dict-br/APKBUILD | 28 ++++++++++++++++++++++++++++ 1 file changed, 28 insertions(+) create mode 100644 user/aspell-dict-br/APKBUILD diff --git a/user/aspell-dict-br/APKBUILD b/user/aspell-dict-br/APKBUILD new file mode 100644 index 000000000..6cdf1eb77 --- /dev/null +++ b/user/aspell-dict-br/APKBUILD @@ -0,0 +1,28 @@ +# Contributor: Kiyoshi Aman +# Maintainer: Kiyoshi Aman +pkgname=aspell-dict-br +pkgver=0.50 +_pkgver=$pkgver-2 +pkgrel=0 +pkgdesc="Breton dictionaries for aspell" +url="http://aspell.net" +arch="noarch" +license="GPL-2.0-only" +options="!check" # no tests +depends="aspell" +makedepends="debianutils-which" +source="ftp://ftp.gnu.org/gnu/aspell/dict/br/aspell-br-$_pkgver.tar.bz2" +builddir="$srcdir/aspell-br-$_pkgver" + +build() { + cd "$builddir" + ./configure --vars DESTDIR="$pkgdir" + make +} + +package() { + cd "$builddir" + make DESTDIR="$pkgdir" install +} + +sha512sums="02f2ce7a350adb87a0f32dd4748f067230a0f3faf195f8c7237bc0520cc0a7aa6475f96de933ae650611f8b9a41deaaeb57c2228ed95950a41e5defccba9e67c aspell-br-0.50-2.tar.bz2" -- cgit v1.2.3-70-g09d2 From 3cda472aaf2e2eca82c73689fd8916c26a9edfb0 Mon Sep 17 00:00:00 2001 From: Kiyoshi Aman Date: Thu, 13 Dec 2018 15:10:09 -0600 Subject: user/aspell-dict-ca: new package --- user/aspell-dict-ca/APKBUILD | 28 ++++++++++++++++++++++++++++ 1 file changed, 28 insertions(+) create mode 100644 user/aspell-dict-ca/APKBUILD diff --git a/user/aspell-dict-ca/APKBUILD b/user/aspell-dict-ca/APKBUILD new file mode 100644 index 000000000..54ab4cba2 --- /dev/null +++ b/user/aspell-dict-ca/APKBUILD @@ -0,0 +1,28 @@ +# Contributor: Kiyoshi Aman +# Maintainer: Kiyoshi Aman +pkgname=aspell-dict-ca +pkgver=2.1.5 +_pkgver=$pkgver-1 +pkgrel=0 +pkgdesc="Catalan dictionaries for aspell" +url="http://aspell.net" +arch="noarch" +license="GPL-2.0-only" +options="!check" # no tests +depends="aspell" +makedepends="debianutils-which" +source="ftp://ftp.gnu.org/gnu/aspell/dict/ca/aspell6-ca-$_pkgver.tar.bz2" +builddir="$srcdir/aspell6-ca-$_pkgver" + +build() { + cd "$builddir" + ./configure --vars DESTDIR="$pkgdir" + make +} + +package() { + cd "$builddir" + make DESTDIR="$pkgdir" install +} + +sha512sums="9f3baef829948a4979c03dcc380caf3fa249912fa94d375a41df4d34d62ffdbf781a777eb437d101bdf99873e9d515a4d27ebef08f71ff435f07e845194c9f0a aspell6-ca-2.1.5-1.tar.bz2" -- cgit v1.2.3-70-g09d2 From d4f0bd647c65c12457081b893ef4de1b82e40e3c Mon Sep 17 00:00:00 2001 From: Kiyoshi Aman Date: Thu, 13 Dec 2018 15:12:14 -0600 Subject: user/aspell-dict-cs: new package --- user/aspell-dict-cs/APKBUILD | 28 ++++++++++++++++++++++++++++ 1 file changed, 28 insertions(+) create mode 100644 user/aspell-dict-cs/APKBUILD diff --git a/user/aspell-dict-cs/APKBUILD b/user/aspell-dict-cs/APKBUILD new file mode 100644 index 000000000..7f1a05b25 --- /dev/null +++ b/user/aspell-dict-cs/APKBUILD @@ -0,0 +1,28 @@ +# Contributor: Kiyoshi Aman +# Maintainer: Kiyoshi Aman +pkgname=aspell-dict-cs +pkgver=20040614 +_pkgver=$pkgver-1 +pkgrel=0 +pkgdesc="Czech dictionaries for aspell" +url="http://aspell.net" +arch="noarch" +license="GPL-2.0-only" +options="!check" # no tests +depends="aspell" +makedepends="debianutils-which" +source="ftp://ftp.gnu.org/gnu/aspell/dict/cs/aspell6-cs-$_pkgver.tar.bz2" +builddir="$srcdir/aspell6-cs-$_pkgver" + +build() { + cd "$builddir" + ./configure --vars DESTDIR="$pkgdir" + make +} + +package() { + cd "$builddir" + make DESTDIR="$pkgdir" install +} + +sha512sums="b4d3e46907a00c7de4d19766dc29f089ec119b736de1340ff5f56be9d0a1c8c90fa2b156173f312c13c589750ec7551e79bd7aa092d31fa6d5f05ed0b4b12c9a aspell6-cs-20040614-1.tar.bz2" -- cgit v1.2.3-70-g09d2 From e0838f0d524901b4edcd11e75ca493cd7b79176d Mon Sep 17 00:00:00 2001 From: Kiyoshi Aman Date: Thu, 13 Dec 2018 15:45:36 -0600 Subject: user/aspell-dict-csb: new package --- user/aspell-dict-csb/APKBUILD | 28 ++++++++++++++++++++++++++++ 1 file changed, 28 insertions(+) create mode 100644 user/aspell-dict-csb/APKBUILD diff --git a/user/aspell-dict-csb/APKBUILD b/user/aspell-dict-csb/APKBUILD new file mode 100644 index 000000000..3dbb2007b --- /dev/null +++ b/user/aspell-dict-csb/APKBUILD @@ -0,0 +1,28 @@ +# Contributor: Kiyoshi Aman +# Maintainer: Kiyoshi Aman +pkgname=aspell-dict-csb +pkgver=0.02 +_pkgver=$pkgver-0 +pkgrel=0 +pkgdesc="Kashubian dictionaries for aspell" +url="http://aspell.net" +arch="noarch" +license="GPL-2.0-only" +options="!check" # no tests +depends="aspell" +makedepends="debianutils-which" +source="ftp://ftp.gnu.org/gnu/aspell/dict/csb/aspell6-csb-$_pkgver.tar.bz2" +builddir="$srcdir/aspell6-csb-$_pkgver" + +build() { + cd "$builddir" + ./configure --vars DESTDIR="$pkgdir" + make +} + +package() { + cd "$builddir" + make DESTDIR="$pkgdir" install +} + +sha512sums="6ed05de10f1647ee98db588df0275721d25e1eea375f73ebf03cb02841f8eb9c0f7aa56f944e0f9b72884ccf99036445b5cddebfea00d77a8c714ed8a50d8eb1 aspell6-csb-0.02-0.tar.bz2" -- cgit v1.2.3-70-g09d2 From c3dc0077d7773a3367d6e44c53b6dfdd7648c9c5 Mon Sep 17 00:00:00 2001 From: Kiyoshi Aman Date: Sun, 16 Dec 2018 23:30:13 -0600 Subject: user/aspell-dict-de: new package --- user/aspell-dict-de/APKBUILD | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) create mode 100644 user/aspell-dict-de/APKBUILD diff --git a/user/aspell-dict-de/APKBUILD b/user/aspell-dict-de/APKBUILD new file mode 100644 index 000000000..4cb6979b4 --- /dev/null +++ b/user/aspell-dict-de/APKBUILD @@ -0,0 +1,26 @@ +# Contributor: Kiyoshi Aman +# Maintainer: Kiyoshi Aman +pkgname=aspell-dict-de +pkgver=20030222 +_pkgver=$pkgver-1 +pkgrel=0 +pkgdesc="German dictionaries for aspell" +url="http://aspell.net" +arch="noarch" +options="!check" # no tests +license="GPL-2.0-only" +depends="aspell" +makedepends="debianutils-which" +source="ftp://ftp.gnu.org/gnu/aspell/dict/de/aspell6-de-$_pkgver.tar.bz2" +builddir="$srcdir/aspell6-de-$_pkgver" + +build() { + cd "$builddir" + ./configure --vars DESTDIR="$pkgdir" +} + +package() { + cd "$builddir" + make DESTDIR="$pkgdir" install +} +sha512sums="2005b56938565b11b761ace31006c1accfd32d401685cc5676cc4d85406bedda81b1df062949359f1bd6972073d3713204d87c7f81d9535fa956cdf130dd8db6 aspell6-de-20030222-1.tar.bz2" -- cgit v1.2.3-70-g09d2 From 6a5ed9e254a901197ad6bdc67c26fd8149427041 Mon Sep 17 00:00:00 2001 From: Kiyoshi Aman Date: Sun, 16 Dec 2018 23:36:53 -0600 Subject: user/aspell-dict-cy: new package --- user/aspell-dict-cy/APKBUILD | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) create mode 100644 user/aspell-dict-cy/APKBUILD diff --git a/user/aspell-dict-cy/APKBUILD b/user/aspell-dict-cy/APKBUILD new file mode 100644 index 000000000..db7036833 --- /dev/null +++ b/user/aspell-dict-cy/APKBUILD @@ -0,0 +1,26 @@ +# Contributor: Kiyoshi Aman +# Maintainer: Kiyoshi Aman +pkgname=aspell-dict-cy +pkgver=0.50 +_pkgver=$pkgver-3 +pkgrel=0 +pkgdesc="Welsh dictionaries for aspell" +url="http://aspell.net" +arch="noarch" +options="!check" # no tests +license="GPL-2.0-only" +depends="aspell" +makedepends="debianutils-which" +source="ftp://ftp.gnu.org/gnu/aspell/dict/cy/aspell-cy-$_pkgver.tar.bz2" +builddir="$srcdir/aspell-cy-$_pkgver" + +build() { + cd "$builddir" + ./configure --vars DESTDIR="$pkgdir" +} + +package() { + cd "$builddir" + make DESTDIR="$pkgdir" install +} +sha512sums="feb68ea9749788a45725a5bc706ea2c24e73bada4fbce907bbe3b884d16875458516dd53fe7f5d62179cafe40117416f7068c1e6e0292353447c2ed7a494ad6b aspell-cy-0.50-3.tar.bz2" -- cgit v1.2.3-70-g09d2 From 8f502cd7af06ba7a6003452042381e8267f33886 Mon Sep 17 00:00:00 2001 From: Kiyoshi Aman Date: Sun, 16 Dec 2018 23:37:58 -0600 Subject: user/aspell-dict-da: new package --- user/aspell-dict-da/APKBUILD | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) create mode 100644 user/aspell-dict-da/APKBUILD diff --git a/user/aspell-dict-da/APKBUILD b/user/aspell-dict-da/APKBUILD new file mode 100644 index 000000000..1b77cfa67 --- /dev/null +++ b/user/aspell-dict-da/APKBUILD @@ -0,0 +1,26 @@ +# Contributor: Kiyoshi Aman +# Maintainer: Kiyoshi Aman +pkgname=aspell-dict-da +pkgver=1.4.42 +_pkgver=$pkgver-1 +pkgrel=0 +pkgdesc="Danish dictionaries for aspell" +url="http://aspell.net" +arch="noarch" +options="!check" # no tests +license="GPL-2.0-only" +depends="aspell" +makedepends="debianutils-which" +source="ftp://ftp.gnu.org/gnu/aspell/dict/da/aspell5-da-$_pkgver.tar.bz2" +builddir="$srcdir/aspell5-da-$_pkgver" + +build() { + cd "$builddir" + ./configure --vars DESTDIR="$pkgdir" +} + +package() { + cd "$builddir" + make DESTDIR="$pkgdir" install +} +sha512sums="d431464b254670b56179ed19a03efe91e65e4dad3e3132f264830cde35f3da200179b39bd1ac21565287bbc1143fd74079c9082f2639fbc4573f2dfffbbecbc6 aspell5-da-1.4.42-1.tar.bz2" -- cgit v1.2.3-70-g09d2 From a77e23bdc85f20bbd9ac353c675bd9985c46a9a1 Mon Sep 17 00:00:00 2001 From: Kiyoshi Aman Date: Sun, 16 Dec 2018 23:38:15 -0600 Subject: user/aspell-dict-de-alt: new package --- user/aspell-dict-de-alt/APKBUILD | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) create mode 100644 user/aspell-dict-de-alt/APKBUILD diff --git a/user/aspell-dict-de-alt/APKBUILD b/user/aspell-dict-de-alt/APKBUILD new file mode 100644 index 000000000..513ccfb9b --- /dev/null +++ b/user/aspell-dict-de-alt/APKBUILD @@ -0,0 +1,26 @@ +# Contributor: Kiyoshi Aman +# Maintainer: Kiyoshi Aman +pkgname=aspell-dict-de-alt +pkgver=2.1 +_pkgver=$pkgver-1 +pkgrel=0 +pkgdesc="German (Old Spelling) dictionaries for aspell" +url="http://aspell.net" +arch="noarch" +options="!check" # no tests +license="GPL-2.0-only" +depends="aspell" +makedepends="debianutils-which" +source="ftp://ftp.gnu.org/gnu/aspell/dict/de-alt/aspell6-de-alt-$_pkgver.tar.bz2" +builddir="$srcdir/aspell6-de-alt-$_pkgver" + +build() { + cd "$builddir" + ./configure --vars DESTDIR="$pkgdir" +} + +package() { + cd "$builddir" + make DESTDIR="$pkgdir" install +} +sha512sums="823324bc299e9adbbe5308681a5f74ee2a76a32816e8abc9d19c3da0c4eae756eaf1a3c76e2d75449b51010854ab869379073b1fe377e505662187d6c38230b4 aspell6-de-alt-2.1-1.tar.bz2" -- cgit v1.2.3-70-g09d2 From cef33517e4271031a2d5002eba5bcbf84b7258f9 Mon Sep 17 00:00:00 2001 From: Kiyoshi Aman Date: Sun, 16 Dec 2018 23:39:18 -0600 Subject: user/aspell-dict-el: new package --- user/aspell-dict-el/APKBUILD | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) create mode 100644 user/aspell-dict-el/APKBUILD diff --git a/user/aspell-dict-el/APKBUILD b/user/aspell-dict-el/APKBUILD new file mode 100644 index 000000000..d7aeb646c --- /dev/null +++ b/user/aspell-dict-el/APKBUILD @@ -0,0 +1,26 @@ +# Contributor: Kiyoshi Aman +# Maintainer: Kiyoshi Aman +pkgname=aspell-dict-el +pkgver=0.08 +_pkgver=$pkgver-0 +pkgrel=0 +pkgdesc="Greek dictionaries for aspell" +url="http://aspell.net" +arch="noarch" +options="!check" # no tests +license="GPL-2.0-only" +depends="aspell" +makedepends="debianutils-which" +source="ftp://ftp.gnu.org/gnu/aspell/dict/el/aspell6-el-$_pkgver.tar.bz2" +builddir="$srcdir/aspell6-el-$_pkgver" + +build() { + cd "$builddir" + ./configure --vars DESTDIR="$pkgdir" +} + +package() { + cd "$builddir" + make DESTDIR="$pkgdir" install +} +sha512sums="ea4ca962afc552e5525bbb84c7a8f980a2cc07265de748c68fb322c1dbfc52b0ba07b4a561966bb89e850ec60b11a3f21befa6ca8b66501e9ad8b5314ddd1f47 aspell6-el-0.08-0.tar.bz2" -- cgit v1.2.3-70-g09d2 From 1005fb2a7b5979a157306ba3a98d3b20b1ffe4d3 Mon Sep 17 00:00:00 2001 From: Kiyoshi Aman Date: Sun, 16 Dec 2018 23:40:20 -0600 Subject: user/aspell-dict-eo: new package --- user/aspell-dict-eo/APKBUILD | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) create mode 100644 user/aspell-dict-eo/APKBUILD diff --git a/user/aspell-dict-eo/APKBUILD b/user/aspell-dict-eo/APKBUILD new file mode 100644 index 000000000..0d1d2487b --- /dev/null +++ b/user/aspell-dict-eo/APKBUILD @@ -0,0 +1,26 @@ +# Contributor: Kiyoshi Aman +# Maintainer: Kiyoshi Aman +pkgname=aspell-dict-eo +pkgver=2.1.20000225a +_pkgver=$pkgver-2 +pkgrel=0 +pkgdesc="Esperanto dictionaries for aspell" +url="http://aspell.net" +arch="noarch" +options="!check" # no tests +license="GPL-2.0-only" +depends="aspell" +makedepends="debianutils-which" +source="ftp://ftp.gnu.org/gnu/aspell/dict/eo/aspell6-eo-$_pkgver.tar.bz2" +builddir="$srcdir/aspell6-eo-$_pkgver" + +build() { + cd "$builddir" + ./configure --vars DESTDIR="$pkgdir" +} + +package() { + cd "$builddir" + make DESTDIR="$pkgdir" install +} +sha512sums="172ff88745e36abccf47ed8526868e3c2fd1f41c6da15893e723ef70bb29fc0e4b4e614f1eae8b3db8206f971f9a9cd9ec627fce2dae611804a276118367dfda aspell6-eo-2.1.20000225a-2.tar.bz2" -- cgit v1.2.3-70-g09d2 From 74983c29d26dc7944486ade31e698b31af18c2f3 Mon Sep 17 00:00:00 2001 From: Kiyoshi Aman Date: Sun, 16 Dec 2018 23:40:58 -0600 Subject: user/aspell-dict-es: new package --- user/aspell-dict-es/APKBUILD | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) create mode 100644 user/aspell-dict-es/APKBUILD diff --git a/user/aspell-dict-es/APKBUILD b/user/aspell-dict-es/APKBUILD new file mode 100644 index 000000000..cdb2a0084 --- /dev/null +++ b/user/aspell-dict-es/APKBUILD @@ -0,0 +1,26 @@ +# Contributor: Kiyoshi Aman +# Maintainer: Kiyoshi Aman +pkgname=aspell-dict-es +pkgver=1.11 +_pkgver=$pkgver-2 +pkgrel=0 +pkgdesc="Spanish dictionaries for aspell" +url="http://aspell.net" +arch="noarch" +options="!check" # no tests +license="GPL-2.0-only" +depends="aspell" +makedepends="debianutils-which" +source="ftp://ftp.gnu.org/gnu/aspell/dict/es/aspell6-es-$_pkgver.tar.bz2" +builddir="$srcdir/aspell6-es-$_pkgver" + +build() { + cd "$builddir" + ./configure --vars DESTDIR="$pkgdir" +} + +package() { + cd "$builddir" + make DESTDIR="$pkgdir" install +} +sha512sums="5d0159f24d6bff43db682a4beb25e82dd362c205acf7c9e0d728808c0e54a8a566befe26316f384099c72e6c429713f8ad7d2dc66a8f04a15e1d5a9cfe2290d8 aspell6-es-1.11-2.tar.bz2" -- cgit v1.2.3-70-g09d2 From 53675ad64e1b9bf67d7d30097695654eb036760f Mon Sep 17 00:00:00 2001 From: Kiyoshi Aman Date: Sun, 16 Dec 2018 23:41:37 -0600 Subject: user/aspell-dict-et: new package --- user/aspell-dict-et/APKBUILD | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) create mode 100644 user/aspell-dict-et/APKBUILD diff --git a/user/aspell-dict-et/APKBUILD b/user/aspell-dict-et/APKBUILD new file mode 100644 index 000000000..3a6bc4e47 --- /dev/null +++ b/user/aspell-dict-et/APKBUILD @@ -0,0 +1,26 @@ +# Contributor: Kiyoshi Aman +# Maintainer: Kiyoshi Aman +pkgname=aspell-dict-et +pkgver=0.1.21 +_pkgver=$pkgver-1 +pkgrel=0 +pkgdesc="Estonian dictionaries for aspell" +url="http://aspell.net" +arch="noarch" +options="!check" # no tests +license="GPL-2.0-only" +depends="aspell" +makedepends="debianutils-which" +source="ftp://ftp.gnu.org/gnu/aspell/dict/et/aspell6-et-$_pkgver.tar.bz2" +builddir="$srcdir/aspell6-et-$_pkgver" + +build() { + cd "$builddir" + ./configure --vars DESTDIR="$pkgdir" +} + +package() { + cd "$builddir" + make DESTDIR="$pkgdir" install +} +sha512sums="b3ed1249dbbb3caf12047407d85a3397f5e9561a59d71e33d6f29f18b9a83baa3f3c8d5a02a22cf0861212ff7b3ea1d33e38a943352e70be3703e0c42ff739ae aspell6-et-0.1.21-1.tar.bz2" -- cgit v1.2.3-70-g09d2 From bea01bdccd771d2c483fe6179ae8be52dcbb4bec Mon Sep 17 00:00:00 2001 From: Kiyoshi Aman Date: Sun, 16 Dec 2018 23:42:45 -0600 Subject: user/aspell-dict-fa: new package --- user/aspell-dict-fa/APKBUILD | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) create mode 100644 user/aspell-dict-fa/APKBUILD diff --git a/user/aspell-dict-fa/APKBUILD b/user/aspell-dict-fa/APKBUILD new file mode 100644 index 000000000..630c84e8f --- /dev/null +++ b/user/aspell-dict-fa/APKBUILD @@ -0,0 +1,26 @@ +# Contributor: Kiyoshi Aman +# Maintainer: Kiyoshi Aman +pkgname=aspell-dict-fa +pkgver=0.11 +_pkgver=$pkgver-0 +pkgrel=0 +pkgdesc="Persian dictionaries for aspell" +url="http://aspell.net" +arch="noarch" +options="!check" # no tests +license="GPL-2.0-only" +depends="aspell" +makedepends="debianutils-which" +source="ftp://ftp.gnu.org/gnu/aspell/dict/fa/aspell6-fa-$_pkgver.tar.bz2" +builddir="$srcdir/aspell6-fa-$_pkgver" + +build() { + cd "$builddir" + ./configure --vars DESTDIR="$pkgdir" +} + +package() { + cd "$builddir" + make DESTDIR="$pkgdir" install +} +sha512sums="1ed97d3bf8397fe9b3c9215ca3ca6630a06ae5fa1c47b2bbdf9821fbe069b9c097d1e145a6303202cec85047f9cd50bef2bde3adbca0caeb05625932c5f3bfe4 aspell6-fa-0.11-0.tar.bz2" -- cgit v1.2.3-70-g09d2 From c841b2fdc0b6fe9c22741880c8bf73e07e9f0586 Mon Sep 17 00:00:00 2001 From: Kiyoshi Aman Date: Sun, 16 Dec 2018 23:43:29 -0600 Subject: user/aspell-dict-fi: new package --- user/aspell-dict-fi/APKBUILD | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) create mode 100644 user/aspell-dict-fi/APKBUILD diff --git a/user/aspell-dict-fi/APKBUILD b/user/aspell-dict-fi/APKBUILD new file mode 100644 index 000000000..9db69362b --- /dev/null +++ b/user/aspell-dict-fi/APKBUILD @@ -0,0 +1,26 @@ +# Contributor: Kiyoshi Aman +# Maintainer: Kiyoshi Aman +pkgname=aspell-dict-fi +pkgver=0.7 +_pkgver=$pkgver-0 +pkgrel=0 +pkgdesc="Finnish dictionaries for aspell" +url="http://aspell.net" +arch="noarch" +options="!check" # no tests +license="GPL-2.0-only" +depends="aspell" +makedepends="debianutils-which" +source="ftp://ftp.gnu.org/gnu/aspell/dict/fi/aspell6-fi-$_pkgver.tar.bz2" +builddir="$srcdir/aspell6-fi-$_pkgver" + +build() { + cd "$builddir" + ./configure --vars DESTDIR="$pkgdir" +} + +package() { + cd "$builddir" + make DESTDIR="$pkgdir" install +} +sha512sums="d1f27bc8e36033cba6ddaa978f2facfe8d134ab70124ec80d5397dba2b533b512755312feaf2afa838f68e4449479953a8b951264fbbfc28cdfd9457f67f67f7 aspell6-fi-0.7-0.tar.bz2" -- cgit v1.2.3-70-g09d2 From dbba8c8ab75035001f985b30336d94de079465dd Mon Sep 17 00:00:00 2001 From: Kiyoshi Aman Date: Sun, 16 Dec 2018 23:44:04 -0600 Subject: user/aspell-dict-fo: new package --- user/aspell-dict-fo/APKBUILD | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) create mode 100644 user/aspell-dict-fo/APKBUILD diff --git a/user/aspell-dict-fo/APKBUILD b/user/aspell-dict-fo/APKBUILD new file mode 100644 index 000000000..0408f8b13 --- /dev/null +++ b/user/aspell-dict-fo/APKBUILD @@ -0,0 +1,26 @@ +# Contributor: Kiyoshi Aman +# Maintainer: Kiyoshi Aman +pkgname=aspell-dict-fo +pkgver=0.2.16 +_pkgver=$pkgver-1 +pkgrel=0 +pkgdesc="Faroese dictionaries for aspell" +url="http://aspell.net" +arch="noarch" +options="!check" # no tests +license="GPL-2.0-only" +depends="aspell" +makedepends="debianutils-which" +source="ftp://ftp.gnu.org/gnu/aspell/dict/fo/aspell5-fo-$_pkgver.tar.bz2" +builddir="$srcdir/aspell5-fo-$_pkgver" + +build() { + cd "$builddir" + ./configure --vars DESTDIR="$pkgdir" +} + +package() { + cd "$builddir" + make DESTDIR="$pkgdir" install +} +sha512sums="7e99f105cff0e682e2761ba1f91646a3ce657858be819cc598775303d6c08f2c5bd524f72bc0c0b52383aeaf591af56e910e19796732be627d8ab11ad6149126 aspell5-fo-0.2.16-1.tar.bz2" -- cgit v1.2.3-70-g09d2 From 7210dddc38b0e90de0088cd93081a252aabb0d16 Mon Sep 17 00:00:00 2001 From: Kiyoshi Aman Date: Sun, 16 Dec 2018 23:46:40 -0600 Subject: user/aspell-dict-fr: new package --- user/aspell-dict-fr/APKBUILD | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) create mode 100644 user/aspell-dict-fr/APKBUILD diff --git a/user/aspell-dict-fr/APKBUILD b/user/aspell-dict-fr/APKBUILD new file mode 100644 index 000000000..118cff501 --- /dev/null +++ b/user/aspell-dict-fr/APKBUILD @@ -0,0 +1,26 @@ +# Contributor: Kiyoshi Aman +# Maintainer: Kiyoshi Aman +pkgname=aspell-dict-fr +pkgver=0.50 +_pkgver=$pkgver-3 +pkgrel=0 +pkgdesc="French dictionaries for aspell" +url="http://aspell.net" +arch="noarch" +options="!check" # no tests +license="GPL-2.0-only" +depends="aspell" +makedepends="debianutils-which" +source="ftp://ftp.gnu.org/gnu/aspell/dict/fr/aspell-fr-$_pkgver.tar.bz2" +builddir="$srcdir/aspell-fr-$_pkgver" + +build() { + cd "$builddir" + ./configure --vars DESTDIR="$pkgdir" +} + +package() { + cd "$builddir" + make DESTDIR="$pkgdir" install +} +sha512sums="bb5d1faada9283521096a19a8f5abada2a19cc02717f6dde57846ef46a4df253113b10a2bb72d2b0e32e4a3ab24b541a5acd9f4595b908d2f6cd2fc448d8bc3b aspell-fr-0.50-3.tar.bz2" -- cgit v1.2.3-70-g09d2 From 57f8f4c059b29f2159e1910b838217d284e2cb4e Mon Sep 17 00:00:00 2001 From: Kiyoshi Aman Date: Sun, 16 Dec 2018 23:47:52 -0600 Subject: user/aspell-dict-fy: new package --- user/aspell-dict-fy/APKBUILD | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) create mode 100644 user/aspell-dict-fy/APKBUILD diff --git a/user/aspell-dict-fy/APKBUILD b/user/aspell-dict-fy/APKBUILD new file mode 100644 index 000000000..abe6e83dc --- /dev/null +++ b/user/aspell-dict-fy/APKBUILD @@ -0,0 +1,26 @@ +# Contributor: Kiyoshi Aman +# Maintainer: Kiyoshi Aman +pkgname=aspell-dict-fy +pkgver=0.12 +_pkgver=$pkgver-0 +pkgrel=0 +pkgdesc="Frisian dictionaries for aspell" +url="http://aspell.net" +arch="noarch" +options="!check" # no tests +license="GPL-2.0-only" +depends="aspell" +makedepends="debianutils-which" +source="ftp://ftp.gnu.org/gnu/aspell/dict/fy/aspell6-fy-$_pkgver.tar.bz2" +builddir="$srcdir/aspell6-fy-$_pkgver" + +build() { + cd "$builddir" + ./configure --vars DESTDIR="$pkgdir" +} + +package() { + cd "$builddir" + make DESTDIR="$pkgdir" install +} +sha512sums="f63b5436c78a5c0ebec3be1d3c24dced09a264c68e8ad39716e0e9e6bd984aca627bdc875f88b521f87b7f4d147edfce3fc0f4dc4b22fc8ef8d1aa5090fb9bda aspell6-fy-0.12-0.tar.bz2" -- cgit v1.2.3-70-g09d2 From 219179fc6c40542e64cd0e391bf73c3c54decc0e Mon Sep 17 00:00:00 2001 From: Kiyoshi Aman Date: Sun, 16 Dec 2018 23:49:04 -0600 Subject: user/aspell-dict-ga: new package --- user/aspell-dict-ga/APKBUILD | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) create mode 100644 user/aspell-dict-ga/APKBUILD diff --git a/user/aspell-dict-ga/APKBUILD b/user/aspell-dict-ga/APKBUILD new file mode 100644 index 000000000..8cd90e399 --- /dev/null +++ b/user/aspell-dict-ga/APKBUILD @@ -0,0 +1,26 @@ +# Contributor: Kiyoshi Aman +# Maintainer: Kiyoshi Aman +pkgname=aspell-dict-ga +pkgver=4.5 +_pkgver=$pkgver-0 +pkgrel=0 +pkgdesc="Irish dictionaries for aspell" +url="http://aspell.net" +arch="noarch" +options="!check" # no tests +license="GPL-2.0-only" +depends="aspell" +makedepends="debianutils-which" +source="ftp://ftp.gnu.org/gnu/aspell/dict/ga/aspell5-ga-$_pkgver.tar.bz2" +builddir="$srcdir/aspell5-ga-$_pkgver" + +build() { + cd "$builddir" + ./configure --vars DESTDIR="$pkgdir" +} + +package() { + cd "$builddir" + make DESTDIR="$pkgdir" install +} +sha512sums="e68003e08d75e172e6223c7011795f40a386776559c2f05e049de196f0d5dcbe570a5ec704e6543b519eba5c847054d30b19e462c7ee228eddac4d72ccd82db0 aspell5-ga-4.5-0.tar.bz2" -- cgit v1.2.3-70-g09d2 From bff54cb02735eb104b84d382ded88b6eeb78205f Mon Sep 17 00:00:00 2001 From: Kiyoshi Aman Date: Sun, 16 Dec 2018 23:50:59 -0600 Subject: user/aspell-dict-gd: new package --- user/aspell-dict-gd/APKBUILD | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) create mode 100644 user/aspell-dict-gd/APKBUILD diff --git a/user/aspell-dict-gd/APKBUILD b/user/aspell-dict-gd/APKBUILD new file mode 100644 index 000000000..24a4d9ed2 --- /dev/null +++ b/user/aspell-dict-gd/APKBUILD @@ -0,0 +1,26 @@ +# Contributor: Kiyoshi Aman +# Maintainer: Kiyoshi Aman +pkgname=aspell-dict-gd +pkgver=0.1.1 +_pkgver=$pkgver-1 +pkgrel=0 +pkgdesc="Scottish Gaelic dictionaries for aspell" +url="http://aspell.net" +arch="noarch" +options="!check" # no tests +license="GPL-2.0-only" +depends="aspell" +makedepends="debianutils-which" +source="ftp://ftp.gnu.org/gnu/aspell/dict/gd/aspell5-gd-$_pkgver.tar.bz2" +builddir="$srcdir/aspell5-gd-$_pkgver" + +build() { + cd "$builddir" + ./configure --vars DESTDIR="$pkgdir" +} + +package() { + cd "$builddir" + make DESTDIR="$pkgdir" install +} +sha512sums="d388bf3476f440c7773a69a0758b8e9cdddf01b64579f6d92fde38e7363c5c3b321a76c7a4e4587b0810159a35eec8d33d1cd2de49068d73f9e0e4dfa60fbc5c aspell5-gd-0.1.1-1.tar.bz2" -- cgit v1.2.3-70-g09d2 From d231a5d9c7915258e1a00778da873537485c4f91 Mon Sep 17 00:00:00 2001 From: Kiyoshi Aman Date: Sun, 16 Dec 2018 23:51:31 -0600 Subject: user/aspell-dict-gl: new package --- user/aspell-dict-gl/APKBUILD | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) create mode 100644 user/aspell-dict-gl/APKBUILD diff --git a/user/aspell-dict-gl/APKBUILD b/user/aspell-dict-gl/APKBUILD new file mode 100644 index 000000000..b909ff87c --- /dev/null +++ b/user/aspell-dict-gl/APKBUILD @@ -0,0 +1,26 @@ +# Contributor: Kiyoshi Aman +# Maintainer: Kiyoshi Aman +pkgname=aspell-dict-gl +pkgver=0.5a +_pkgver=$pkgver-2 +pkgrel=0 +pkgdesc="Galician dictionaries for aspell" +url="http://aspell.net" +arch="noarch" +options="!check" # no tests +license="GPL-2.0-only" +depends="aspell" +makedepends="debianutils-which" +source="ftp://ftp.gnu.org/gnu/aspell/dict/gl/aspell6-gl-$_pkgver.tar.bz2" +builddir="$srcdir/aspell6-gl-$_pkgver" + +build() { + cd "$builddir" + ./configure --vars DESTDIR="$pkgdir" +} + +package() { + cd "$builddir" + make DESTDIR="$pkgdir" install +} +sha512sums="9c8aae22d23e1cce9c5c94844c35ec3eaa5b76e5049712b714993e7c628a0b8ee250de2ad1b646a6ecffe32ebc0e4f0009a4db041b6f8bde5d021cf71c5cd714 aspell6-gl-0.5a-2.tar.bz2" -- cgit v1.2.3-70-g09d2 From 56a5e1a1fec57c5cce0858f881286641d41c6f1e Mon Sep 17 00:00:00 2001 From: Kiyoshi Aman Date: Sun, 16 Dec 2018 23:52:38 -0600 Subject: user/aspell-dict-grc: new package --- user/aspell-dict-grc/APKBUILD | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) create mode 100644 user/aspell-dict-grc/APKBUILD diff --git a/user/aspell-dict-grc/APKBUILD b/user/aspell-dict-grc/APKBUILD new file mode 100644 index 000000000..2d30a6403 --- /dev/null +++ b/user/aspell-dict-grc/APKBUILD @@ -0,0 +1,26 @@ +# Contributor: Kiyoshi Aman +# Maintainer: Kiyoshi Aman +pkgname=aspell-dict-grc +pkgver=0.02 +_pkgver=$pkgver-0 +pkgrel=0 +pkgdesc="Ancient Greek dictionaries for aspell" +url="http://aspell.net" +arch="noarch" +options="!check" # no tests +license="GPL-2.0-only" +depends="aspell" +makedepends="debianutils-which" +source="ftp://ftp.gnu.org/gnu/aspell/dict/grc/aspell6-grc-$_pkgver.tar.bz2" +builddir="$srcdir/aspell6-grc-$_pkgver" + +build() { + cd "$builddir" + ./configure --vars DESTDIR="$pkgdir" +} + +package() { + cd "$builddir" + make DESTDIR="$pkgdir" install +} +sha512sums="17999e20621efc67ab42d83b0e149d19b18bcfd20966da35d217a3e5682c0728287bec4bce28af34f4e343943a1dac49f85077693ca30bd1ff7cbaaeda453ddd aspell6-grc-0.02-0.tar.bz2" -- cgit v1.2.3-70-g09d2 From 997cf476a50c486f2db3de430eec3d41eac73db5 Mon Sep 17 00:00:00 2001 From: Kiyoshi Aman Date: Sun, 16 Dec 2018 23:53:29 -0600 Subject: user/aspell-dict-gu: new package --- user/aspell-dict-gu/APKBUILD | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) create mode 100644 user/aspell-dict-gu/APKBUILD diff --git a/user/aspell-dict-gu/APKBUILD b/user/aspell-dict-gu/APKBUILD new file mode 100644 index 000000000..600c9f556 --- /dev/null +++ b/user/aspell-dict-gu/APKBUILD @@ -0,0 +1,26 @@ +# Contributor: Kiyoshi Aman +# Maintainer: Kiyoshi Aman +pkgname=aspell-dict-gu +pkgver=0.03 +_pkgver=$pkgver-0 +pkgrel=0 +pkgdesc="Gujarati dictionaries for aspell" +url="http://aspell.net" +arch="noarch" +options="!check" # no tests +license="GPL-2.0-only" +depends="aspell" +makedepends="debianutils-which" +source="ftp://ftp.gnu.org/gnu/aspell/dict/gu/aspell6-gu-$_pkgver.tar.bz2" +builddir="$srcdir/aspell6-gu-$_pkgver" + +build() { + cd "$builddir" + ./configure --vars DESTDIR="$pkgdir" +} + +package() { + cd "$builddir" + make DESTDIR="$pkgdir" install +} +sha512sums="0cc252bd1112b8f06cb4ea9000b00d036dc405d8fbb9c380beff949ea138903b5807afa8f1419f4d8f57329a7bb1a4b7f4bd733170e5f09ac7786ac39beb87c6 aspell6-gu-0.03-0.tar.bz2" -- cgit v1.2.3-70-g09d2 From e26a7e4692e8e6840d38c4bee1451431f32f3eb4 Mon Sep 17 00:00:00 2001 From: Kiyoshi Aman Date: Sun, 16 Dec 2018 23:53:59 -0600 Subject: user/aspell-dict-gv: new package --- user/aspell-dict-gv/APKBUILD | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) create mode 100644 user/aspell-dict-gv/APKBUILD diff --git a/user/aspell-dict-gv/APKBUILD b/user/aspell-dict-gv/APKBUILD new file mode 100644 index 000000000..02665ce62 --- /dev/null +++ b/user/aspell-dict-gv/APKBUILD @@ -0,0 +1,26 @@ +# Contributor: Kiyoshi Aman +# Maintainer: Kiyoshi Aman +pkgname=aspell-dict-gv +pkgver=0.50 +_pkgver=$pkgver-0 +pkgrel=0 +pkgdesc="Manx Gaelic dictionaries for aspell" +url="http://aspell.net" +arch="noarch" +options="!check" # no tests +license="GPL-2.0-only" +depends="aspell" +makedepends="debianutils-which" +source="ftp://ftp.gnu.org/gnu/aspell/dict/gv/aspell-gv-$_pkgver.tar.bz2" +builddir="$srcdir/aspell-gv-$_pkgver" + +build() { + cd "$builddir" + ./configure --vars DESTDIR="$pkgdir" +} + +package() { + cd "$builddir" + make DESTDIR="$pkgdir" install +} +sha512sums="6ec0893bb853c9600b49958802572edfed2127b749b2e4ee5ce051863526fefbae367cf2686ccae2f3c27fa168a8c3a8611eae3561853553594fb097fd78e37d aspell-gv-0.50-0.tar.bz2" -- cgit v1.2.3-70-g09d2 From 0b39696d59fc0381ebc5949f1a7ea66154a698ba Mon Sep 17 00:00:00 2001 From: Kiyoshi Aman Date: Sun, 16 Dec 2018 23:54:39 -0600 Subject: user/aspell-dict-he: new package --- user/aspell-dict-he/APKBUILD | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) create mode 100644 user/aspell-dict-he/APKBUILD diff --git a/user/aspell-dict-he/APKBUILD b/user/aspell-dict-he/APKBUILD new file mode 100644 index 000000000..5dd974ee9 --- /dev/null +++ b/user/aspell-dict-he/APKBUILD @@ -0,0 +1,26 @@ +# Contributor: Kiyoshi Aman +# Maintainer: Kiyoshi Aman +pkgname=aspell-dict-he +pkgver=1.0 +_pkgver=$pkgver-0 +pkgrel=0 +pkgdesc="Hebrew dictionaries for aspell" +url="http://aspell.net" +arch="noarch" +options="!check" # no tests +license="GPL-2.0-only" +depends="aspell" +makedepends="debianutils-which" +source="ftp://ftp.gnu.org/gnu/aspell/dict/he/aspell6-he-$_pkgver.tar.bz2" +builddir="$srcdir/aspell6-he-$_pkgver" + +build() { + cd "$builddir" + ./configure --vars DESTDIR="$pkgdir" +} + +package() { + cd "$builddir" + make DESTDIR="$pkgdir" install +} +sha512sums="4db335c1566432ac8e18bace1f1ab892e47765b9dfb342f981b52637ee6768f592b7d9793c229e7f67f7f4770e6ef4abb9b2dd66da0feef9cc42bfd316adad88 aspell6-he-1.0-0.tar.bz2" -- cgit v1.2.3-70-g09d2 From 4069af2e2ea97720ad94cba0e666348e2a9d8c71 Mon Sep 17 00:00:00 2001 From: Kiyoshi Aman Date: Mon, 17 Dec 2018 00:00:52 -0600 Subject: user/aspell-dict-hi: new package --- user/aspell-dict-hi/APKBUILD | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) create mode 100644 user/aspell-dict-hi/APKBUILD diff --git a/user/aspell-dict-hi/APKBUILD b/user/aspell-dict-hi/APKBUILD new file mode 100644 index 000000000..e5b1b860c --- /dev/null +++ b/user/aspell-dict-hi/APKBUILD @@ -0,0 +1,26 @@ +# Contributor: Kiyoshi Aman +# Maintainer: Kiyoshi Aman +pkgname=aspell-dict-hi +pkgver=0.02 +_pkgver=$pkgver-0 +pkgrel=0 +pkgdesc="Hindi dictionaries for aspell" +url="http://aspell.net" +arch="noarch" +options="!check" # no tests +license="GPL-2.0-only" +depends="aspell" +makedepends="debianutils-which" +source="ftp://ftp.gnu.org/gnu/aspell/dict/hi/aspell6-hi-$_pkgver.tar.bz2" +builddir="$srcdir/aspell6-hi-$_pkgver" + +build() { + cd "$builddir" + ./configure --vars DESTDIR="$pkgdir" +} + +package() { + cd "$builddir" + make DESTDIR="$pkgdir" install +} +sha512sums="298743e1e5988e26081d89ee6cdea3b2f3185ad81b3449b5fa3f644a2beaf488320f9468fbeeb7e6c7bcb3ae4b7116bd02f64c4e6f4c60f80c1a7c3b84946a93 aspell6-hi-0.02-0.tar.bz2" -- cgit v1.2.3-70-g09d2 From 3abcce9b1a418c7ce4683215e845d6d84721c823 Mon Sep 17 00:00:00 2001 From: Kiyoshi Aman Date: Mon, 17 Dec 2018 00:01:53 -0600 Subject: user/aspell-dict-hil: new package --- user/aspell-dict-hil/APKBUILD | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) create mode 100644 user/aspell-dict-hil/APKBUILD diff --git a/user/aspell-dict-hil/APKBUILD b/user/aspell-dict-hil/APKBUILD new file mode 100644 index 000000000..c5ebd6aa8 --- /dev/null +++ b/user/aspell-dict-hil/APKBUILD @@ -0,0 +1,26 @@ +# Contributor: Kiyoshi Aman +# Maintainer: Kiyoshi Aman +pkgname=aspell-dict-hil +pkgver=0.11 +_pkgver=$pkgver-0 +pkgrel=0 +pkgdesc="Hiligaynon dictionaries for aspell" +url="http://aspell.net" +arch="noarch" +options="!check" # no tests +license="GPL-2.0-only" +depends="aspell" +makedepends="debianutils-which" +source="ftp://ftp.gnu.org/gnu/aspell/dict/hil/aspell5-hil-$_pkgver.tar.bz2" +builddir="$srcdir/aspell5-hil-$_pkgver" + +build() { + cd "$builddir" + ./configure --vars DESTDIR="$pkgdir" +} + +package() { + cd "$builddir" + make DESTDIR="$pkgdir" install +} +sha512sums="274c353f48da1a769a454cff0fa54d0e5cfd84a2da7ed979693335aa8e45c5c562b0f92cc5bdeb77a5ff54d0f79f747e792ff4e3f8a0427bbd131879659af432 aspell5-hil-0.11-0.tar.bz2" -- cgit v1.2.3-70-g09d2 From 6b81eb2adab8ee4ed688d70d519991841a2f8f42 Mon Sep 17 00:00:00 2001 From: Kiyoshi Aman Date: Mon, 17 Dec 2018 00:02:33 -0600 Subject: user/aspell-dict-hr: new package --- user/aspell-dict-hr/APKBUILD | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) create mode 100644 user/aspell-dict-hr/APKBUILD diff --git a/user/aspell-dict-hr/APKBUILD b/user/aspell-dict-hr/APKBUILD new file mode 100644 index 000000000..f0af841aa --- /dev/null +++ b/user/aspell-dict-hr/APKBUILD @@ -0,0 +1,26 @@ +# Contributor: Kiyoshi Aman +# Maintainer: Kiyoshi Aman +pkgname=aspell-dict-hr +pkgver=0.51 +_pkgver=$pkgver-0 +pkgrel=0 +pkgdesc="Croatian dictionaries for aspell" +url="http://aspell.net" +arch="noarch" +options="!check" # no tests +license="GPL-2.0-only" +depends="aspell" +makedepends="debianutils-which" +source="ftp://ftp.gnu.org/gnu/aspell/dict/hr/aspell-hr-$_pkgver.tar.bz2" +builddir="$srcdir/aspell-hr-$_pkgver" + +build() { + cd "$builddir" + ./configure --vars DESTDIR="$pkgdir" +} + +package() { + cd "$builddir" + make DESTDIR="$pkgdir" install +} +sha512sums="d6d891f3e55252fdbc5e0534c623cc42311c25cd1219351ce8a8160c3c3c49a6f219706e02f2c1c27174ef77c64e17f8cc25844befb17a43802b0a09ab42b1ad aspell-hr-0.51-0.tar.bz2" -- cgit v1.2.3-70-g09d2 From 985284f6602027efc5fb255975da49f6a545f1d2 Mon Sep 17 00:00:00 2001 From: Kiyoshi Aman Date: Mon, 17 Dec 2018 00:04:16 -0600 Subject: user/aspell-dict-hsb: new package --- user/aspell-dict-hsb/APKBUILD | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) create mode 100644 user/aspell-dict-hsb/APKBUILD diff --git a/user/aspell-dict-hsb/APKBUILD b/user/aspell-dict-hsb/APKBUILD new file mode 100644 index 000000000..f1130074b --- /dev/null +++ b/user/aspell-dict-hsb/APKBUILD @@ -0,0 +1,26 @@ +# Contributor: Kiyoshi Aman +# Maintainer: Kiyoshi Aman +pkgname=aspell-dict-hsb +pkgver=0.02 +_pkgver=$pkgver-0 +pkgrel=0 +pkgdesc="Upper Sorbian dictionaries for aspell" +url="http://aspell.net" +arch="noarch" +options="!check" # no tests +license="GPL-2.0-only" +depends="aspell" +makedepends="debianutils-which" +source="ftp://ftp.gnu.org/gnu/aspell/dict/hsb/aspell6-hsb-$_pkgver.tar.bz2" +builddir="$srcdir/aspell6-hsb-$_pkgver" + +build() { + cd "$builddir" + ./configure --vars DESTDIR="$pkgdir" +} + +package() { + cd "$builddir" + make DESTDIR="$pkgdir" install +} +sha512sums="b8e49bf6d85e149365378a33b56ab61767c34ddfd4545eedeedad012b2b396dff54bb3dcba56fb4d3c0a92a0c3e13fddf0548591568295709d91f18c45ca1274 aspell6-hsb-0.02-0.tar.bz2" -- cgit v1.2.3-70-g09d2 From c9a2e94e91d25b5bac10e23264a091eb35769661 Mon Sep 17 00:00:00 2001 From: Kiyoshi Aman Date: Mon, 17 Dec 2018 00:04:58 -0600 Subject: user/aspell-dict-hu: new package --- user/aspell-dict-hu/APKBUILD | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) create mode 100644 user/aspell-dict-hu/APKBUILD diff --git a/user/aspell-dict-hu/APKBUILD b/user/aspell-dict-hu/APKBUILD new file mode 100644 index 000000000..dc2e3ace2 --- /dev/null +++ b/user/aspell-dict-hu/APKBUILD @@ -0,0 +1,26 @@ +# Contributor: Kiyoshi Aman +# Maintainer: Kiyoshi Aman +pkgname=aspell-dict-hu +pkgver=0.99.4.2 +_pkgver=$pkgver-0 +pkgrel=0 +pkgdesc="Hungarian dictionaries for aspell" +url="http://aspell.net" +arch="noarch" +options="!check" # no tests +license="GPL-2.0-only" +depends="aspell" +makedepends="debianutils-which" +source="ftp://ftp.gnu.org/gnu/aspell/dict/hu/aspell6-hu-$_pkgver.tar.bz2" +builddir="$srcdir/aspell6-hu-$_pkgver" + +build() { + cd "$builddir" + ./configure --vars DESTDIR="$pkgdir" +} + +package() { + cd "$builddir" + make DESTDIR="$pkgdir" install +} +sha512sums="95922401f2a8aeac61b117c464b4b83b8101fbe1e0ee758b3284a67c188348db55d900c2898eaa8639ee2db99c3b27e85f9677fc6a4d54caae57dd72101cb320 aspell6-hu-0.99.4.2-0.tar.bz2" -- cgit v1.2.3-70-g09d2 From 17746204a54e249ded89594780888b314d2a1faa Mon Sep 17 00:00:00 2001 From: Kiyoshi Aman Date: Mon, 17 Dec 2018 00:05:26 -0600 Subject: user/aspell-dict-hus: new package --- user/aspell-dict-hus/APKBUILD | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) create mode 100644 user/aspell-dict-hus/APKBUILD diff --git a/user/aspell-dict-hus/APKBUILD b/user/aspell-dict-hus/APKBUILD new file mode 100644 index 000000000..1412d578b --- /dev/null +++ b/user/aspell-dict-hus/APKBUILD @@ -0,0 +1,26 @@ +# Contributor: Kiyoshi Aman +# Maintainer: Kiyoshi Aman +pkgname=aspell-dict-hus +pkgver=0.03 +_pkgver=$pkgver-1 +pkgrel=0 +pkgdesc="Huastec Tenek dictionaries for aspell" +url="http://aspell.net" +arch="noarch" +options="!check" # no tests +license="GPL-2.0-only" +depends="aspell" +makedepends="debianutils-which" +source="ftp://ftp.gnu.org/gnu/aspell/dict/hus/aspell6-hus-$_pkgver.tar.bz2" +builddir="$srcdir/aspell6-hus-$_pkgver" + +build() { + cd "$builddir" + ./configure --vars DESTDIR="$pkgdir" +} + +package() { + cd "$builddir" + make DESTDIR="$pkgdir" install +} +sha512sums="2d1f8458f04bda64068ddd3c5017ed129c2b7549e2474acdcc39f76283dae1a0fe557ab67526fa31ce300f615bd5d2ded4aa0414f3a5b6ee8e59389c8ac20c70 aspell6-hus-0.03-1.tar.bz2" -- cgit v1.2.3-70-g09d2 From fb2aa8d4200b4c718a558c506fc6e8189136e8a5 Mon Sep 17 00:00:00 2001 From: Kiyoshi Aman Date: Mon, 17 Dec 2018 00:07:21 -0600 Subject: user/aspell-dict-hy: new package --- user/aspell-dict-hy/APKBUILD | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) create mode 100644 user/aspell-dict-hy/APKBUILD diff --git a/user/aspell-dict-hy/APKBUILD b/user/aspell-dict-hy/APKBUILD new file mode 100644 index 000000000..64e637d1c --- /dev/null +++ b/user/aspell-dict-hy/APKBUILD @@ -0,0 +1,26 @@ +# Contributor: Kiyoshi Aman +# Maintainer: Kiyoshi Aman +pkgname=aspell-dict-hy +pkgver=0.10.0 +_pkgver=$pkgver-0 +pkgrel=0 +pkgdesc="Armenian dictionaries for aspell" +url="http://aspell.net" +arch="noarch" +options="!check" # no tests +license="GPL-2.0-only" +depends="aspell" +makedepends="debianutils-which" +source="ftp://ftp.gnu.org/gnu/aspell/dict/hy/aspell6-hy-$_pkgver.tar.bz2" +builddir="$srcdir/aspell6-hy-$_pkgver" + +build() { + cd "$builddir" + ./configure --vars DESTDIR="$pkgdir" +} + +package() { + cd "$builddir" + make DESTDIR="$pkgdir" install +} +sha512sums="b2157c1d04e4d4726851fe4cda91fcc3cf0dba8d5cfaaea74deed77d9c5f94473e13784526f884ba483789a098dd3efee936c456606913a731a165ec3eb145a3 aspell6-hy-0.10.0-0.tar.bz2" -- cgit v1.2.3-70-g09d2 From 0552d429811e106bdbe45b31eeaa26ebdf534de8 Mon Sep 17 00:00:00 2001 From: Kiyoshi Aman Date: Mon, 17 Dec 2018 00:11:24 -0600 Subject: user/aspell-dict-ia: new package --- user/aspell-dict-ia/APKBUILD | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) create mode 100644 user/aspell-dict-ia/APKBUILD diff --git a/user/aspell-dict-ia/APKBUILD b/user/aspell-dict-ia/APKBUILD new file mode 100644 index 000000000..6ec8ab4bf --- /dev/null +++ b/user/aspell-dict-ia/APKBUILD @@ -0,0 +1,26 @@ +# Contributor: Kiyoshi Aman +# Maintainer: Kiyoshi Aman +pkgname=aspell-dict-ia +pkgver=0.50 +_pkgver=$pkgver-1 +pkgrel=0 +pkgdesc="Interlingua dictionaries for aspell" +url="http://aspell.net" +arch="noarch" +options="!check" # no tests +license="GPL-2.0-only" +depends="aspell" +makedepends="debianutils-which" +source="ftp://ftp.gnu.org/gnu/aspell/dict/ia/aspell-ia-$_pkgver.tar.bz2" +builddir="$srcdir/aspell-ia-$_pkgver" + +build() { + cd "$builddir" + ./configure --vars DESTDIR="$pkgdir" +} + +package() { + cd "$builddir" + make DESTDIR="$pkgdir" install +} +sha512sums="5cdd7b91393043d7b537166c1df100aa76e911cf1c389b34b916839e907abc3cdbdc368f2876a5ecfbd625414b67858950e9d79af184560b9ddd667030dc608d aspell-ia-0.50-1.tar.bz2" -- cgit v1.2.3-70-g09d2 From 9ce7d5f81a9e41eaabd75eee99461feedcd1c3db Mon Sep 17 00:00:00 2001 From: Kiyoshi Aman Date: Mon, 17 Dec 2018 00:12:33 -0600 Subject: user/aspell-dict-id: new package --- user/aspell-dict-id/APKBUILD | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) create mode 100644 user/aspell-dict-id/APKBUILD diff --git a/user/aspell-dict-id/APKBUILD b/user/aspell-dict-id/APKBUILD new file mode 100644 index 000000000..495283af4 --- /dev/null +++ b/user/aspell-dict-id/APKBUILD @@ -0,0 +1,26 @@ +# Contributor: Kiyoshi Aman +# Maintainer: Kiyoshi Aman +pkgname=aspell-dict-id +pkgver=1.2 +_pkgver=$pkgver-0 +pkgrel=0 +pkgdesc="Indonesian dictionaries for aspell" +url="http://aspell.net" +arch="noarch" +options="!check" # no tests +license="GPL-2.0-only" +depends="aspell" +makedepends="debianutils-which" +source="ftp://ftp.gnu.org/gnu/aspell/dict/id/aspell5-id-$_pkgver.tar.bz2" +builddir="$srcdir/aspell5-id-$_pkgver" + +build() { + cd "$builddir" + ./configure --vars DESTDIR="$pkgdir" +} + +package() { + cd "$builddir" + make DESTDIR="$pkgdir" install +} +sha512sums="bc33c5d6c68027304b0dc299454f8dd221e0138b079bcc423e287fda5e9204b0d6dc14a5a0617b4d018259e011c979453ee13b9050be5516d2379e86ac9cb86a aspell5-id-1.2-0.tar.bz2" -- cgit v1.2.3-70-g09d2 From ddf087305d61e2e780a08e9ab8df50d93843ba44 Mon Sep 17 00:00:00 2001 From: Kiyoshi Aman Date: Mon, 17 Dec 2018 00:13:57 -0600 Subject: user/aspell-dict-is: new package --- user/aspell-dict-is/APKBUILD | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) create mode 100644 user/aspell-dict-is/APKBUILD diff --git a/user/aspell-dict-is/APKBUILD b/user/aspell-dict-is/APKBUILD new file mode 100644 index 000000000..e10e36ed1 --- /dev/null +++ b/user/aspell-dict-is/APKBUILD @@ -0,0 +1,26 @@ +# Contributor: Kiyoshi Aman +# Maintainer: Kiyoshi Aman +pkgname=aspell-dict-is +pkgver=0.51.1 +_pkgver=$pkgver-0 +pkgrel=0 +pkgdesc="Icelandic dictionaries for aspell" +url="http://aspell.net" +arch="noarch" +options="!check" # no tests +license="GPL-2.0-only" +depends="aspell" +makedepends="debianutils-which" +source="ftp://ftp.gnu.org/gnu/aspell/dict/is/aspell-is-$_pkgver.tar.bz2" +builddir="$srcdir/aspell-is-$_pkgver" + +build() { + cd "$builddir" + ./configure --vars DESTDIR="$pkgdir" +} + +package() { + cd "$builddir" + make DESTDIR="$pkgdir" install +} +sha512sums="b96aeb407c1de700a20ca18bbd9e1bc1a4c086379ef7fbd0467178d11b9ed70e547a81a4659619e7385f89926638cb2a5e807cc701b444a7bf0d246905795bf2 aspell-is-0.51.1-0.tar.bz2" -- cgit v1.2.3-70-g09d2 From c591fa64e1389951f0ce6bf82cffb969c6e94204 Mon Sep 17 00:00:00 2001 From: Kiyoshi Aman Date: Mon, 17 Dec 2018 00:17:54 -0600 Subject: user/aspell-dict-it: new package --- user/aspell-dict-it/APKBUILD | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) create mode 100644 user/aspell-dict-it/APKBUILD diff --git a/user/aspell-dict-it/APKBUILD b/user/aspell-dict-it/APKBUILD new file mode 100644 index 000000000..e9edbe9b0 --- /dev/null +++ b/user/aspell-dict-it/APKBUILD @@ -0,0 +1,26 @@ +# Contributor: Kiyoshi Aman +# Maintainer: Kiyoshi Aman +pkgname=aspell-dict-it +pkgver=2.2.20050523 +_pkgver=${pkgver%.*}_${pkgver#*.*.}-0 +pkgrel=0 +pkgdesc="Italian dictionaries for aspell" +url="http://aspell.net" +arch="noarch" +options="!check" # no tests +license="GPL-2.0-only" +depends="aspell" +makedepends="debianutils-which" +source="ftp://ftp.gnu.org/gnu/aspell/dict/it/aspell6-it-$_pkgver.tar.bz2" +builddir="$srcdir/aspell6-it-$_pkgver" + +build() { + cd "$builddir" + ./configure --vars DESTDIR="$pkgdir" +} + +package() { + cd "$builddir" + make DESTDIR="$pkgdir" install +} +sha512sums="2a2ccdbb8bb52e8e08525a40f985c1a2987c00d5e9fd39f57b8dc8689f3503f63751efe9ae4bec45fc5efea64666cd64abbda3e437ad0819f15b5a96987cda5a aspell6-it-2.2_20050523-0.tar.bz2" -- cgit v1.2.3-70-g09d2 From 69be9bd4c05224b132f2f4b195676914306ffb9d Mon Sep 17 00:00:00 2001 From: Kiyoshi Aman Date: Mon, 17 Dec 2018 00:18:48 -0600 Subject: user/aspell-dict-kn: new package --- user/aspell-dict-kn/APKBUILD | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) create mode 100644 user/aspell-dict-kn/APKBUILD diff --git a/user/aspell-dict-kn/APKBUILD b/user/aspell-dict-kn/APKBUILD new file mode 100644 index 000000000..e005594cc --- /dev/null +++ b/user/aspell-dict-kn/APKBUILD @@ -0,0 +1,26 @@ +# Contributor: Kiyoshi Aman +# Maintainer: Kiyoshi Aman +pkgname=aspell-dict-kn +pkgver=0.01 +_pkgver=$pkgver-1 +pkgrel=0 +pkgdesc="Kannada dictionaries for aspell" +url="http://aspell.net" +arch="noarch" +options="!check" # no tests +license="GPL-2.0-only" +depends="aspell" +makedepends="debianutils-which" +source="ftp://ftp.gnu.org/gnu/aspell/dict/kn/aspell6-kn-$_pkgver.tar.bz2" +builddir="$srcdir/aspell6-kn-$_pkgver" + +build() { + cd "$builddir" + ./configure --vars DESTDIR="$pkgdir" +} + +package() { + cd "$builddir" + make DESTDIR="$pkgdir" install +} +sha512sums="892f93c0ed33f4aedb240d8c673d7888318760ccb2ca0cfb8377a2770f757c5410583a7c18314f3fb7cd58704a531e8931bc8be44d9de80b1421d2238e4229c3 aspell6-kn-0.01-1.tar.bz2" -- cgit v1.2.3-70-g09d2 From 8e5fbcecada6d9aa7086a78a6cb114c0edc8614c Mon Sep 17 00:00:00 2001 From: Kiyoshi Aman Date: Mon, 17 Dec 2018 00:27:26 -0600 Subject: user/aspell-dict-ku: new package --- user/aspell-dict-ku/APKBUILD | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) create mode 100644 user/aspell-dict-ku/APKBUILD diff --git a/user/aspell-dict-ku/APKBUILD b/user/aspell-dict-ku/APKBUILD new file mode 100644 index 000000000..13b344fbf --- /dev/null +++ b/user/aspell-dict-ku/APKBUILD @@ -0,0 +1,26 @@ +# Contributor: Kiyoshi Aman +# Maintainer: Kiyoshi Aman +pkgname=aspell-dict-ku +pkgver=0.20 +_pkgver=$pkgver-1 +pkgrel=0 +pkgdesc="Kurdi dictionaries for aspell" +url="http://aspell.net" +arch="noarch" +options="!check" # no tests +license="GPL-2.0-only" +depends="aspell" +makedepends="debianutils-which" +source="ftp://ftp.gnu.org/gnu/aspell/dict/ku/aspell5-ku-$_pkgver.tar.bz2" +builddir="$srcdir/aspell5-ku-$_pkgver" + +build() { + cd "$builddir" + ./configure --vars DESTDIR="$pkgdir" +} + +package() { + cd "$builddir" + make DESTDIR="$pkgdir" install +} +sha512sums="b1aadc13e4cc494bb7b8bdb1ef96215abb72dfe2ec398d4c383984a2540323117d18a940c675ed0266cbbdf14958525975083a9fe35e93b7885c8f0216362d84 aspell5-ku-0.20-1.tar.bz2" -- cgit v1.2.3-70-g09d2 From 0c3fdb36880623b9bf2f32d7e55cb2f78835e699 Mon Sep 17 00:00:00 2001 From: Kiyoshi Aman Date: Mon, 17 Dec 2018 00:28:02 -0600 Subject: user/aspell-dict-ky: new package --- user/aspell-dict-ky/APKBUILD | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) create mode 100644 user/aspell-dict-ky/APKBUILD diff --git a/user/aspell-dict-ky/APKBUILD b/user/aspell-dict-ky/APKBUILD new file mode 100644 index 000000000..eb2ddad5d --- /dev/null +++ b/user/aspell-dict-ky/APKBUILD @@ -0,0 +1,26 @@ +# Contributor: Kiyoshi Aman +# Maintainer: Kiyoshi Aman +pkgname=aspell-dict-ky +pkgver=0.01 +_pkgver=$pkgver-0 +pkgrel=0 +pkgdesc="Kirghiz dictionaries for aspell" +url="http://aspell.net" +arch="noarch" +options="!check" # no tests +license="GPL-2.0-only" +depends="aspell" +makedepends="debianutils-which" +source="ftp://ftp.gnu.org/gnu/aspell/dict/ky/aspell6-ky-$_pkgver.tar.bz2" +builddir="$srcdir/aspell6-ky-$_pkgver" + +build() { + cd "$builddir" + ./configure --vars DESTDIR="$pkgdir" +} + +package() { + cd "$builddir" + make DESTDIR="$pkgdir" install +} +sha512sums="94389905505ffc0c469dd5f4ea31e2e76fed695e8cb7b903e248a57a8677e45311e525a07c43da0be87bfdc7825b1af4ae8dd1993d35948dd1ace4b1af9fa307 aspell6-ky-0.01-0.tar.bz2" -- cgit v1.2.3-70-g09d2 From 9a926048711fca75d6aede015c17d0c8773216fc Mon Sep 17 00:00:00 2001 From: Kiyoshi Aman Date: Mon, 17 Dec 2018 00:28:46 -0600 Subject: user/aspell-dict-la: new package --- user/aspell-dict-la/APKBUILD | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) create mode 100644 user/aspell-dict-la/APKBUILD diff --git a/user/aspell-dict-la/APKBUILD b/user/aspell-dict-la/APKBUILD new file mode 100644 index 000000000..f2172f219 --- /dev/null +++ b/user/aspell-dict-la/APKBUILD @@ -0,0 +1,26 @@ +# Contributor: Kiyoshi Aman +# Maintainer: Kiyoshi Aman +pkgname=aspell-dict-la +pkgver=20020503 +_pkgver=$pkgver-0 +pkgrel=0 +pkgdesc="Latin dictionaries for aspell" +url="http://aspell.net" +arch="noarch" +options="!check" # no tests +license="GPL-2.0-only" +depends="aspell" +makedepends="debianutils-which" +source="ftp://ftp.gnu.org/gnu/aspell/dict/la/aspell6-la-20020503-0.tar.bz2" +builddir="$srcdir/aspell6-la-$_pkgver" + +build() { + cd "$builddir" + ./configure --vars DESTDIR="$pkgdir" +} + +package() { + cd "$builddir" + make DESTDIR="$pkgdir" install +} +sha512sums="b167541050546edfdb6148f06952eb07f67c8a5115d40ea777d566b722d4476147e986de06ebc8ffdfdadf1f201e3c1b5f000527ca489da96e2b3f764e487e5f aspell6-la-20020503-0.tar.bz2" -- cgit v1.2.3-70-g09d2 From ac34e5dbec61d740419571fada01d867da93f6ae Mon Sep 17 00:00:00 2001 From: Kiyoshi Aman Date: Mon, 17 Dec 2018 00:31:58 -0600 Subject: user/aspell-dict-lt: new package --- user/aspell-dict-lt/APKBUILD | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) create mode 100644 user/aspell-dict-lt/APKBUILD diff --git a/user/aspell-dict-lt/APKBUILD b/user/aspell-dict-lt/APKBUILD new file mode 100644 index 000000000..938f8d707 --- /dev/null +++ b/user/aspell-dict-lt/APKBUILD @@ -0,0 +1,26 @@ +# Contributor: Kiyoshi Aman +# Maintainer: Kiyoshi Aman +pkgname=aspell-dict-lt +pkgver=1.2.1 +_pkgver=$pkgver-0 +pkgrel=0 +pkgdesc="Lithuanian dictionaries for aspell" +url="http://aspell.net" +arch="noarch" +options="!check" # no tests +license="GPL-2.0-only" +depends="aspell" +makedepends="debianutils-which" +source="ftp://ftp.gnu.org/gnu/aspell/dict/lt/aspell6-lt-$_pkgver.tar.bz2" +builddir="$srcdir/aspell6-lt-$_pkgver" + +build() { + cd "$builddir" + ./configure --vars DESTDIR="$pkgdir" +} + +package() { + cd "$builddir" + make DESTDIR="$pkgdir" install +} +sha512sums="d0dcea087a926f7defbab0180d9c04c93a53da8843fe374f7f59284362453ee6b198568066053ad591df4c194d7c3b0ac59331611698b78e2ded558aa5e7775b aspell6-lt-1.2.1-0.tar.bz2" -- cgit v1.2.3-70-g09d2 From 98540dc256e5f8ef66f133a4f11c6f2d6ffd234b Mon Sep 17 00:00:00 2001 From: Kiyoshi Aman Date: Mon, 17 Dec 2018 00:33:33 -0600 Subject: user/aspell-dict-lv: new package --- user/aspell-dict-lv/APKBUILD | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) create mode 100644 user/aspell-dict-lv/APKBUILD diff --git a/user/aspell-dict-lv/APKBUILD b/user/aspell-dict-lv/APKBUILD new file mode 100644 index 000000000..4c7f6b872 --- /dev/null +++ b/user/aspell-dict-lv/APKBUILD @@ -0,0 +1,26 @@ +# Contributor: Kiyoshi Aman +# Maintainer: Kiyoshi Aman +pkgname=aspell-dict-lv +pkgver=0.5.5 +_pkgver=$pkgver-1 +pkgrel=0 +pkgdesc="Latvian dictionaries for aspell" +url="http://aspell.net" +arch="noarch" +options="!check" # no tests +license="GPL-2.0-only" +depends="aspell" +makedepends="debianutils-which" +source="ftp://ftp.gnu.org/gnu/aspell/dict/lv/aspell6-lv-$_pkgver.tar.bz2" +builddir="$srcdir/aspell6-lv-$_pkgver" + +build() { + cd "$builddir" + ./configure --vars DESTDIR="$pkgdir" +} + +package() { + cd "$builddir" + make DESTDIR="$pkgdir" install +} +sha512sums="94a9c6da3fd29f17fbe5d02cd4764bf24379abef526725bb34c0726f7ff385fcb876df24b741bc66518295c3bb75c800aa6010130454c6dc1d6372d12d2eb98e aspell6-lv-0.5.5-1.tar.bz2" -- cgit v1.2.3-70-g09d2 From 685e78ab10e612a986f4ed78b2928cd812745730 Mon Sep 17 00:00:00 2001 From: Kiyoshi Aman Date: Mon, 17 Dec 2018 00:34:12 -0600 Subject: user/aspell-dict-mg: new package --- user/aspell-dict-mg/APKBUILD | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) create mode 100644 user/aspell-dict-mg/APKBUILD diff --git a/user/aspell-dict-mg/APKBUILD b/user/aspell-dict-mg/APKBUILD new file mode 100644 index 000000000..6bd0c3459 --- /dev/null +++ b/user/aspell-dict-mg/APKBUILD @@ -0,0 +1,26 @@ +# Contributor: Kiyoshi Aman +# Maintainer: Kiyoshi Aman +pkgname=aspell-dict-mg +pkgver=0.03 +_pkgver=$pkgver-0 +pkgrel=0 +pkgdesc="Malagasy dictionaries for aspell" +url="http://aspell.net" +arch="noarch" +options="!check" # no tests +license="GPL-2.0-only" +depends="aspell" +makedepends="debianutils-which" +source="ftp://ftp.gnu.org/gnu/aspell/dict/mg/aspell5-mg-$_pkgver.tar.bz2" +builddir="$srcdir/aspell5-mg-$_pkgver" + +build() { + cd "$builddir" + ./configure --vars DESTDIR="$pkgdir" +} + +package() { + cd "$builddir" + make DESTDIR="$pkgdir" install +} +sha512sums="a9c0861b925b40bf9bba5e1d02f3e225a516f929a2e72c6760ec5bedbc513e18e8bda0205e83e17c09b6a37256877e54576c8085e6000f67783147d4cd9ec6df aspell5-mg-0.03-0.tar.bz2" -- cgit v1.2.3-70-g09d2 From 3faa0fc950c7d07644664e62d400e049ba902a91 Mon Sep 17 00:00:00 2001 From: Kiyoshi Aman Date: Mon, 17 Dec 2018 05:41:46 -0600 Subject: user/aspell-dict-mi: new package --- user/aspell-dict-mi/APKBUILD | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) create mode 100644 user/aspell-dict-mi/APKBUILD diff --git a/user/aspell-dict-mi/APKBUILD b/user/aspell-dict-mi/APKBUILD new file mode 100644 index 000000000..12d8366cc --- /dev/null +++ b/user/aspell-dict-mi/APKBUILD @@ -0,0 +1,26 @@ +# Contributor: Kiyoshi Aman +# Maintainer: Kiyoshi Aman +pkgname=aspell-dict-mi +pkgver=0.50 +_pkgver=$pkgver-0 +pkgrel=0 +pkgdesc="Maori dictionaries for aspell" +url="http://aspell.net" +arch="noarch" +options="!check" # no tests +license="GPL-2.0-only" +depends="aspell" +makedepends="debianutils-which" +source="ftp://ftp.gnu.org/gnu/aspell/dict/mi/aspell-mi-$_pkgver.tar.bz2" +builddir="$srcdir/aspell-mi-$_pkgver" + +build() { + cd "$builddir" + ./configure --vars DESTDIR="$pkgdir" +} + +package() { + cd "$builddir" + make DESTDIR="$pkgdir" install +} +sha512sums="cba0a646612f6cd24d1e1d91326dcf1c7a6ec01c04ad0661a95fcd745b4d1a3bb50aef84c382d3a6c9108d4e9589ee7661f4988930c7198950396eeb029062a0 aspell-mi-0.50-0.tar.bz2" -- cgit v1.2.3-70-g09d2 From ce228f812465ff8d7e8eb0e8dc222c742f35e78b Mon Sep 17 00:00:00 2001 From: Kiyoshi Aman Date: Mon, 17 Dec 2018 05:42:25 -0600 Subject: user/aspell-dict-mk: new package --- user/aspell-dict-mk/APKBUILD | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) create mode 100644 user/aspell-dict-mk/APKBUILD diff --git a/user/aspell-dict-mk/APKBUILD b/user/aspell-dict-mk/APKBUILD new file mode 100644 index 000000000..72eb946f8 --- /dev/null +++ b/user/aspell-dict-mk/APKBUILD @@ -0,0 +1,26 @@ +# Contributor: Kiyoshi Aman +# Maintainer: Kiyoshi Aman +pkgname=aspell-dict-mk +pkgver=0.50 +_pkgver=$pkgver-0 +pkgrel=0 +pkgdesc="Macedonian dictionaries for aspell" +url="http://aspell.net" +arch="noarch" +options="!check" # no tests +license="GPL-2.0-only" +depends="aspell" +makedepends="debianutils-which" +source="ftp://ftp.gnu.org/gnu/aspell/dict/mk/aspell-mk-$_pkgver.tar.bz2" +builddir="$srcdir/aspell-mk-$_pkgver" + +build() { + cd "$builddir" + ./configure --vars DESTDIR="$pkgdir" +} + +package() { + cd "$builddir" + make DESTDIR="$pkgdir" install +} +sha512sums="6bcd57338ce76b7daf22a4be28a2f583c6c1d73ff2d8d5db2e3d5122d89c41617d44a40019dfe647c8e1e07509bee20be6ba136e872710bd77871adbac29e947 aspell-mk-0.50-0.tar.bz2" -- cgit v1.2.3-70-g09d2 From d66130d04728579a0e1d012c76480643bf6f7e25 Mon Sep 17 00:00:00 2001 From: Kiyoshi Aman Date: Mon, 17 Dec 2018 05:43:04 -0600 Subject: user/aspell-dict-ml: new package --- user/aspell-dict-ml/APKBUILD | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) create mode 100644 user/aspell-dict-ml/APKBUILD diff --git a/user/aspell-dict-ml/APKBUILD b/user/aspell-dict-ml/APKBUILD new file mode 100644 index 000000000..95d337d8c --- /dev/null +++ b/user/aspell-dict-ml/APKBUILD @@ -0,0 +1,26 @@ +# Contributor: Kiyoshi Aman +# Maintainer: Kiyoshi Aman +pkgname=aspell-dict-ml +pkgver=0.03 +_pkgver=$pkgver-1 +pkgrel=0 +pkgdesc="Malayalam dictionaries for aspell" +url="http://aspell.net" +arch="noarch" +options="!check" # no tests +license="GPL-2.0-only" +depends="aspell" +makedepends="debianutils-which" +source="ftp://ftp.gnu.org/gnu/aspell/dict/ml/aspell6-ml-$_pkgver.tar.bz2" +builddir="$srcdir/aspell6-ml-$_pkgver" + +build() { + cd "$builddir" + ./configure --vars DESTDIR="$pkgdir" +} + +package() { + cd "$builddir" + make DESTDIR="$pkgdir" install +} +sha512sums="78c3bc296a70a3b205427bcffe29b69ae6f673ffd22fd8a1ef5550ae271ed1f7704fff15c4948dcee2d7722c5d4b279766ef74d0661969b13bbca4d3a53971da aspell6-ml-0.03-1.tar.bz2" -- cgit v1.2.3-70-g09d2 From 9388e5aee9143acf5d589707528c154cbcaa0f1c Mon Sep 17 00:00:00 2001 From: Kiyoshi Aman Date: Mon, 17 Dec 2018 05:44:06 -0600 Subject: user/aspell-dict-mn: new package --- user/aspell-dict-mn/APKBUILD | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) create mode 100644 user/aspell-dict-mn/APKBUILD diff --git a/user/aspell-dict-mn/APKBUILD b/user/aspell-dict-mn/APKBUILD new file mode 100644 index 000000000..7876ae110 --- /dev/null +++ b/user/aspell-dict-mn/APKBUILD @@ -0,0 +1,26 @@ +# Contributor: Kiyoshi Aman +# Maintainer: Kiyoshi Aman +pkgname=aspell-dict-mn +pkgver=0.06 +_pkgver=$pkgver-2 +pkgrel=0 +pkgdesc="Mongolian dictionaries for aspell" +url="http://aspell.net" +arch="noarch" +options="!check" # no tests +license="GPL-2.0-only" +depends="aspell" +makedepends="debianutils-which" +source="ftp://ftp.gnu.org/gnu/aspell/dict/mn/aspell6-mn-$_pkgver.tar.bz2" +builddir="$srcdir/aspell6-mn-$_pkgver" + +build() { + cd "$builddir" + ./configure --vars DESTDIR="$pkgdir" +} + +package() { + cd "$builddir" + make DESTDIR="$pkgdir" install +} +sha512sums="c0cf603169eaf8b4b858fd7573374d1ec47b9794e2514cb241b8fc3b053bce715dad6a15bd73eeef443f0d6a4308ffb384acae825d33315ee983a69ceacf9201 aspell6-mn-0.06-2.tar.bz2" -- cgit v1.2.3-70-g09d2 From 00b1f3e84b86bcb06fc10492d9caeb7c59e88cf6 Mon Sep 17 00:00:00 2001 From: Kiyoshi Aman Date: Mon, 17 Dec 2018 05:44:47 -0600 Subject: user/aspell-dict-mr: new package --- user/aspell-dict-mr/APKBUILD | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) create mode 100644 user/aspell-dict-mr/APKBUILD diff --git a/user/aspell-dict-mr/APKBUILD b/user/aspell-dict-mr/APKBUILD new file mode 100644 index 000000000..cdcb23249 --- /dev/null +++ b/user/aspell-dict-mr/APKBUILD @@ -0,0 +1,26 @@ +# Contributor: Kiyoshi Aman +# Maintainer: Kiyoshi Aman +pkgname=aspell-dict-mr +pkgver=0.10 +_pkgver=$pkgver-0 +pkgrel=0 +pkgdesc="Marathi dictionaries for aspell" +url="http://aspell.net" +arch="noarch" +options="!check" # no tests +license="GPL-2.0-only" +depends="aspell" +makedepends="debianutils-which" +source="ftp://ftp.gnu.org/gnu/aspell/dict/mr/aspell6-mr-$_pkgver.tar.bz2" +builddir="$srcdir/aspell6-mr-$_pkgver" + +build() { + cd "$builddir" + ./configure --vars DESTDIR="$pkgdir" +} + +package() { + cd "$builddir" + make DESTDIR="$pkgdir" install +} +sha512sums="4137a9d6f3dc67db81479a2df628c33c3989214a629f48fc9bb6421e4ce723bdf559eb2f0981c2172315ec140ccd160a10b9556a6618f2fd3383dec184352732 aspell6-mr-0.10-0.tar.bz2" -- cgit v1.2.3-70-g09d2 From 35617cf1703f14e0ee62d41fff3c0474a8de3e9d Mon Sep 17 00:00:00 2001 From: Kiyoshi Aman Date: Mon, 17 Dec 2018 05:46:59 -0600 Subject: user/aspell-dict-ms: new package --- user/aspell-dict-ms/APKBUILD | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) create mode 100644 user/aspell-dict-ms/APKBUILD diff --git a/user/aspell-dict-ms/APKBUILD b/user/aspell-dict-ms/APKBUILD new file mode 100644 index 000000000..b5ea67914 --- /dev/null +++ b/user/aspell-dict-ms/APKBUILD @@ -0,0 +1,26 @@ +# Contributor: Kiyoshi Aman +# Maintainer: Kiyoshi Aman +pkgname=aspell-dict-ms +pkgver=0.50 +_pkgver=$pkgver-0 +pkgrel=0 +pkgdesc="Malay dictionaries for aspell" +url="http://aspell.net" +arch="noarch" +options="!check" # no tests +license="GPL-2.0-only" +depends="aspell" +makedepends="debianutils-which" +source="ftp://ftp.gnu.org/gnu/aspell/dict/ms/aspell-ms-$_pkgver.tar.bz2" +builddir="$srcdir/aspell-ms-$_pkgver" + +build() { + cd "$builddir" + ./configure --vars DESTDIR="$pkgdir" +} + +package() { + cd "$builddir" + make DESTDIR="$pkgdir" install +} +sha512sums="270a6ad18d9b317588e781eab84b59c83450383d703fab815856b3afa58a19ffa0eec3c7cbc418993302703d586cb92678878aea51fff753733f7583d8c2b0e9 aspell-ms-0.50-0.tar.bz2" -- cgit v1.2.3-70-g09d2 From da342f6c33ace947c4a4e6e01664926b7f2dbfbf Mon Sep 17 00:00:00 2001 From: Kiyoshi Aman Date: Mon, 17 Dec 2018 05:47:51 -0600 Subject: user/aspell-dict-mt: new package --- user/aspell-dict-mt/APKBUILD | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) create mode 100644 user/aspell-dict-mt/APKBUILD diff --git a/user/aspell-dict-mt/APKBUILD b/user/aspell-dict-mt/APKBUILD new file mode 100644 index 000000000..2dfee313a --- /dev/null +++ b/user/aspell-dict-mt/APKBUILD @@ -0,0 +1,26 @@ +# Contributor: Kiyoshi Aman +# Maintainer: Kiyoshi Aman +pkgname=aspell-dict-mt +pkgver=0.50 +_pkgver=$pkgver-0 +pkgrel=0 +pkgdesc="Maltese dictionaries for aspell" +url="http://aspell.net" +arch="noarch" +options="!check" # no tests +license="GPL-2.0-only" +depends="aspell" +makedepends="debianutils-which" +source="ftp://ftp.gnu.org/gnu/aspell/dict/mt/aspell-mt-$_pkgver.tar.bz2" +builddir="$srcdir/aspell-mt-$_pkgver" + +build() { + cd "$builddir" + ./configure --vars DESTDIR="$pkgdir" +} + +package() { + cd "$builddir" + make DESTDIR="$pkgdir" install +} +sha512sums="aadcc59b0dbbfdf4d715bfe6735bfa2a91e6fae382634a25c0cdf8367710050b2daeac1db18df3a71184720ff9339a852983c8a266f8c97e0ffba1e8be50eaa1 aspell-mt-0.50-0.tar.bz2" -- cgit v1.2.3-70-g09d2 From 9b1d9dd4909005038c9d7250b12bc7cd23a9d6b8 Mon Sep 17 00:00:00 2001 From: Kiyoshi Aman Date: Mon, 17 Dec 2018 05:48:46 -0600 Subject: user/aspell-dict-nb: new package --- user/aspell-dict-nb/APKBUILD | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) create mode 100644 user/aspell-dict-nb/APKBUILD diff --git a/user/aspell-dict-nb/APKBUILD b/user/aspell-dict-nb/APKBUILD new file mode 100644 index 000000000..abd87a410 --- /dev/null +++ b/user/aspell-dict-nb/APKBUILD @@ -0,0 +1,26 @@ +# Contributor: Kiyoshi Aman +# Maintainer: Kiyoshi Aman +pkgname=aspell-dict-nb +pkgver=0.50.1 +_pkgver=$pkgver-0 +pkgrel=0 +pkgdesc="Norwegian dictionaries for aspell" +url="http://aspell.net" +arch="noarch" +options="!check" # no tests +license="GPL-2.0-only" +depends="aspell" +makedepends="debianutils-which" +source="ftp://ftp.gnu.org/gnu/aspell/dict/nb/aspell-nb-$_pkgver.tar.bz2" +builddir="$srcdir/aspell-nb-$_pkgver" + +build() { + cd "$builddir" + ./configure --vars DESTDIR="$pkgdir" +} + +package() { + cd "$builddir" + make DESTDIR="$pkgdir" install +} +sha512sums="e30dcf7e757ab1ceb5de349927f9cfa4d9de4015bd9cc9449739fd2f17f6f033f698e71da0270b4e1ebd76be2195c42422630266ad9cadd2173184706d651c13 aspell-nb-0.50.1-0.tar.bz2" -- cgit v1.2.3-70-g09d2 From c8f091b9ea093cdaa995f7943b1e943168e4557a Mon Sep 17 00:00:00 2001 From: Kiyoshi Aman Date: Mon, 17 Dec 2018 05:49:23 -0600 Subject: user/aspell-dict-nds: new package --- user/aspell-dict-nds/APKBUILD | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) create mode 100644 user/aspell-dict-nds/APKBUILD diff --git a/user/aspell-dict-nds/APKBUILD b/user/aspell-dict-nds/APKBUILD new file mode 100644 index 000000000..d6563b3aa --- /dev/null +++ b/user/aspell-dict-nds/APKBUILD @@ -0,0 +1,26 @@ +# Contributor: Kiyoshi Aman +# Maintainer: Kiyoshi Aman +pkgname=aspell-dict-nds +pkgver=0.01 +_pkgver=$pkgver-0 +pkgrel=0 +pkgdesc="Low Saxon dictionaries for aspell" +url="http://aspell.net" +arch="noarch" +options="!check" # no tests +license="GPL-2.0-only" +depends="aspell" +makedepends="debianutils-which" +source="ftp://ftp.gnu.org/gnu/aspell/dict/nds/aspell6-nds-$_pkgver.tar.bz2" +builddir="$srcdir/aspell6-nds-$_pkgver" + +build() { + cd "$builddir" + ./configure --vars DESTDIR="$pkgdir" +} + +package() { + cd "$builddir" + make DESTDIR="$pkgdir" install +} +sha512sums="88ef6f6773e8699a5200ff8ae3ef9935fee21958fa35868bc10d37c22b55ea721ad9c59ab4843fdc6fedbf5a9ed10c7ea144548713742b8094b99c3c46a552a5 aspell6-nds-0.01-0.tar.bz2" -- cgit v1.2.3-70-g09d2 From 4a5b905f1ba8d9c0aa923f2092a5f24d20b5099d Mon Sep 17 00:00:00 2001 From: Kiyoshi Aman Date: Mon, 17 Dec 2018 05:51:05 -0600 Subject: user/aspell-dict-nl: new package --- user/aspell-dict-nl/APKBUILD | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) create mode 100644 user/aspell-dict-nl/APKBUILD diff --git a/user/aspell-dict-nl/APKBUILD b/user/aspell-dict-nl/APKBUILD new file mode 100644 index 000000000..3d288aa76 --- /dev/null +++ b/user/aspell-dict-nl/APKBUILD @@ -0,0 +1,26 @@ +# Contributor: Kiyoshi Aman +# Maintainer: Kiyoshi Aman +pkgname=aspell-dict-nl +pkgver=0.50.2 +_pkgver=${pkgver%.*}-${pkgver#*.*.} +pkgrel=0 +pkgdesc="Dutch dictionaries for aspell" +url="http://aspell.net" +arch="noarch" +options="!check" # no tests +license="GPL-2.0-only" +depends="aspell" +makedepends="debianutils-which" +source="ftp://ftp.gnu.org/gnu/aspell/dict/nl/aspell-nl-$_pkgver.tar.bz2" +builddir="$srcdir/aspell-nl-$_pkgver" + +build() { + cd "$builddir" + ./configure --vars DESTDIR="$pkgdir" +} + +package() { + cd "$builddir" + make DESTDIR="$pkgdir" install +} +sha512sums="bee6218b476f8655fa325940ba5ea1035ff483b5b47b9b547f60fd63786e8ff08daa03a30dd0ccd988c2f01827bb06075021e1a1fa79c640db82e72a3ccd3152 aspell-nl-0.50-2.tar.bz2" -- cgit v1.2.3-70-g09d2 From 85debb0e01cf2bfe270365a52bf9d5189c1f98d7 Mon Sep 17 00:00:00 2001 From: Kiyoshi Aman Date: Mon, 17 Dec 2018 05:52:45 -0600 Subject: user/aspell-dict-nn: new package --- user/aspell-dict-nn/APKBUILD | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) create mode 100644 user/aspell-dict-nn/APKBUILD diff --git a/user/aspell-dict-nn/APKBUILD b/user/aspell-dict-nn/APKBUILD new file mode 100644 index 000000000..14be7c042 --- /dev/null +++ b/user/aspell-dict-nn/APKBUILD @@ -0,0 +1,26 @@ +# Contributor: Kiyoshi Aman +# Maintainer: Kiyoshi Aman +pkgname=aspell-dict-nn +pkgver=0.50.1.1 +_pkgver=${pkgver%.*}-${pkgver#*.*.*.} +pkgrel=0 +pkgdesc="Norwegian (Nynorsk) dictionaries for aspell" +url="http://aspell.net" +arch="noarch" +options="!check" # no tests +license="GPL-2.0-only" +depends="aspell" +makedepends="debianutils-which" +source="ftp://ftp.gnu.org/gnu/aspell/dict/nn/aspell-nn-$_pkgver.tar.bz2" +builddir="$srcdir/aspell-nn-$_pkgver" + +build() { + cd "$builddir" + ./configure --vars DESTDIR="$pkgdir" +} + +package() { + cd "$builddir" + make DESTDIR="$pkgdir" install +} +sha512sums="a4db6fe937a62758f51d713e246f70ea6e0b2726c8ddb23af084925394a2d8168442fccbd74378f4773db121f0d506d848c01573138e974efc79f295f3ebe551 aspell-nn-0.50.1-1.tar.bz2" -- cgit v1.2.3-70-g09d2 From fc2ad9b7f1712c4b153d9399604e557e89d7bef0 Mon Sep 17 00:00:00 2001 From: Kiyoshi Aman Date: Mon, 17 Dec 2018 05:53:38 -0600 Subject: user/aspell-dict-nb: fix pkgdesc --- user/aspell-dict-nb/APKBUILD | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/user/aspell-dict-nb/APKBUILD b/user/aspell-dict-nb/APKBUILD index abd87a410..118bb8c45 100644 --- a/user/aspell-dict-nb/APKBUILD +++ b/user/aspell-dict-nb/APKBUILD @@ -4,7 +4,7 @@ pkgname=aspell-dict-nb pkgver=0.50.1 _pkgver=$pkgver-0 pkgrel=0 -pkgdesc="Norwegian dictionaries for aspell" +pkgdesc="Norwegian (Bokmal) dictionaries for aspell" url="http://aspell.net" arch="noarch" options="!check" # no tests -- cgit v1.2.3-70-g09d2 From 661357bacd35ea3f5a2b4da314ab11773a441108 Mon Sep 17 00:00:00 2001 From: Kiyoshi Aman Date: Mon, 17 Dec 2018 05:55:08 -0600 Subject: user/aspell-dict-ny: new package --- user/aspell-dict-ny/APKBUILD | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) create mode 100644 user/aspell-dict-ny/APKBUILD diff --git a/user/aspell-dict-ny/APKBUILD b/user/aspell-dict-ny/APKBUILD new file mode 100644 index 000000000..258dcd0a7 --- /dev/null +++ b/user/aspell-dict-ny/APKBUILD @@ -0,0 +1,26 @@ +# Contributor: Kiyoshi Aman +# Maintainer: Kiyoshi Aman +pkgname=aspell-dict-ny +pkgver=0.01.0 +_pkgver=${pkgver%.*}-${pkgver#*.*.} +pkgrel=0 +pkgdesc="Chichewa dictionaries for aspell" +url="http://aspell.net" +arch="noarch" +options="!check" # no tests +license="GPL-2.0-only" +depends="aspell" +makedepends="debianutils-which" +source="ftp://ftp.gnu.org/gnu/aspell/dict/ny/aspell5-ny-$_pkgver.tar.bz2" +builddir="$srcdir/aspell5-ny-$_pkgver" + +build() { + cd "$builddir" + ./configure --vars DESTDIR="$pkgdir" +} + +package() { + cd "$builddir" + make DESTDIR="$pkgdir" install +} +sha512sums="52f4526d605a2f0577217af1dc8e44da20484fe7f725ceee1f8fdf9ba0fc1457910d55567ea9287465cbf37955af9a11b2caba084cece59aec29755cb147cb05 aspell5-ny-0.01-0.tar.bz2" -- cgit v1.2.3-70-g09d2 From 7a4becd453edf5462e003dcb373b556c10610144 Mon Sep 17 00:00:00 2001 From: Kiyoshi Aman Date: Mon, 17 Dec 2018 05:56:13 -0600 Subject: user/aspell-dict-or: new package --- user/aspell-dict-or/APKBUILD | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) create mode 100644 user/aspell-dict-or/APKBUILD diff --git a/user/aspell-dict-or/APKBUILD b/user/aspell-dict-or/APKBUILD new file mode 100644 index 000000000..97703ffa8 --- /dev/null +++ b/user/aspell-dict-or/APKBUILD @@ -0,0 +1,26 @@ +# Contributor: Kiyoshi Aman +# Maintainer: Kiyoshi Aman +pkgname=aspell-dict-or +pkgver=0.03.1 +_pkgver=${pkgver%.*}-${pkgver#*.*.} +pkgrel=0 +pkgdesc="Oriya dictionaries for aspell" +url="http://aspell.net" +arch="noarch" +options="!check" # no tests +license="GPL-2.0-only" +depends="aspell" +makedepends="debianutils-which" +source="ftp://ftp.gnu.org/gnu/aspell/dict/or/aspell6-or-$_pkgver.tar.bz2" +builddir="$srcdir/aspell6-or-$_pkgver" + +build() { + cd "$builddir" + ./configure --vars DESTDIR="$pkgdir" +} + +package() { + cd "$builddir" + make DESTDIR="$pkgdir" install +} +sha512sums="4f5c13e37054266a782cc9d9aa6a03de77ca383907ce05f23ab5812581b815276f4d79a2f8626226f30a59f8ab9ecf0f0186835f7f30881e4a358f99a75b708a aspell6-or-0.03-1.tar.bz2" -- cgit v1.2.3-70-g09d2 From 993391990c2e08985c84957ca485de7766adf051 Mon Sep 17 00:00:00 2001 From: Kiyoshi Aman Date: Mon, 17 Dec 2018 05:57:05 -0600 Subject: user/aspell-dict-pa: new package --- user/aspell-dict-pa/APKBUILD | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) create mode 100644 user/aspell-dict-pa/APKBUILD diff --git a/user/aspell-dict-pa/APKBUILD b/user/aspell-dict-pa/APKBUILD new file mode 100644 index 000000000..83d4ae61f --- /dev/null +++ b/user/aspell-dict-pa/APKBUILD @@ -0,0 +1,26 @@ +# Contributor: Kiyoshi Aman +# Maintainer: Kiyoshi Aman +pkgname=aspell-dict-pa +pkgver=0.01.1 +_pkgver=${pkgver%.*}-${pkgver#*.*.} +pkgrel=0 +pkgdesc="Punjabi dictionaries for aspell" +url="http://aspell.net" +arch="noarch" +options="!check" # no tests +license="GPL-2.0-only" +depends="aspell" +makedepends="debianutils-which" +source="ftp://ftp.gnu.org/gnu/aspell/dict/pa/aspell6-pa-$_pkgver.tar.bz2" +builddir="$srcdir/aspell6-pa-$_pkgver" + +build() { + cd "$builddir" + ./configure --vars DESTDIR="$pkgdir" +} + +package() { + cd "$builddir" + make DESTDIR="$pkgdir" install +} +sha512sums="6a0d2d7f1b1a935b6ac4b373963e525083d16c26953cce5d7a29d391aaed36f5430d27ea69efe59f081230822830dc4d4143bc155049bb5384580ffd66b5ee61 aspell6-pa-0.01-1.tar.bz2" -- cgit v1.2.3-70-g09d2 From f38cf8011e38ebc48b8f9002efef228a210e4c43 Mon Sep 17 00:00:00 2001 From: Kiyoshi Aman Date: Mon, 17 Dec 2018 05:59:11 -0600 Subject: user/aspell-dict-pl: new package --- user/aspell-dict-pl/APKBUILD | 27 +++++++++++++++++++++++++++ 1 file changed, 27 insertions(+) create mode 100644 user/aspell-dict-pl/APKBUILD diff --git a/user/aspell-dict-pl/APKBUILD b/user/aspell-dict-pl/APKBUILD new file mode 100644 index 000000000..f57d8bec4 --- /dev/null +++ b/user/aspell-dict-pl/APKBUILD @@ -0,0 +1,27 @@ +# Contributor: Kiyoshi Aman +# Maintainer: Kiyoshi Aman +pkgname=aspell-dict-pl +pkgver=6.0.20061121.0 +_pkgver=${pkgver%.*.*}_${pkgver#*.*.} +_pkgver=${_pkgver%.*}-${pkgver#*.*.*.} +pkgrel=0 +pkgdesc="Polish dictionaries for aspell" +url="http://aspell.net" +arch="noarch" +options="!check" # no tests +license="GPL-2.0-only" +depends="aspell" +makedepends="debianutils-which" +source="ftp://ftp.gnu.org/gnu/aspell/dict/pl/aspell6-pl-$_pkgver.tar.bz2" +builddir="$srcdir/aspell6-pl-$_pkgver" + +build() { + cd "$builddir" + ./configure --vars DESTDIR="$pkgdir" +} + +package() { + cd "$builddir" + make DESTDIR="$pkgdir" install +} +sha512sums="424842fd3b4b2a00445590527a64393044e067b32ab973d07d90d5f35cd146ea7ae88c4f4b473a68759aa0d27a5c0fcd75b9ef0bb8ceb76e731eafd3aefc81c6 aspell6-pl-6.0_20061121-0.tar.bz2" -- cgit v1.2.3-70-g09d2 From 7106797df5152c8dd216d645fe312c12b8546ac8 Mon Sep 17 00:00:00 2001 From: Kiyoshi Aman Date: Mon, 17 Dec 2018 06:06:13 -0600 Subject: user/aspell-dict-pt_BR: new package --- user/aspell-dict-pt_BR/APKBUILD | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) create mode 100644 user/aspell-dict-pt_BR/APKBUILD diff --git a/user/aspell-dict-pt_BR/APKBUILD b/user/aspell-dict-pt_BR/APKBUILD new file mode 100644 index 000000000..5ac5dc4e8 --- /dev/null +++ b/user/aspell-dict-pt_BR/APKBUILD @@ -0,0 +1,26 @@ +# Contributor: Kiyoshi Aman +# Maintainer: Kiyoshi Aman +pkgname=aspell-dict-pt_BR +pkgver=20090702.0 +_pkgver=${pkgver%.*}-${pkgver#*.} +pkgrel=0 +pkgdesc="Brazilian Portuguese dictionaries for aspell" +url="http://aspell.net" +arch="noarch" +options="!check" # no tests +license="GPL-2.0-only" +depends="aspell" +makedepends="debianutils-which" +source="ftp://ftp.gnu.org/gnu/aspell/dict/pt_BR/aspell6-pt_BR-$_pkgver.tar.bz2" +builddir="$srcdir/aspell6-pt_BR-$_pkgver" + +build() { + cd "$builddir" + ./configure --vars DESTDIR="$pkgdir" +} + +package() { + cd "$builddir" + make DESTDIR="$pkgdir" install +} +sha512sums="4c2606dad177881db7b7996c707a8d5a087fc9ec6ac46fac08b2bbb9c7acb51c7f0b3cb936f46257d03dd8e4e7a23b0244331db68a8208f5b7625d79ea6522d1 aspell6-pt_BR-20090702-0.tar.bz2" -- cgit v1.2.3-70-g09d2 From 9637ced01a0c7dd6649437779aecfac69d9098a0 Mon Sep 17 00:00:00 2001 From: Kiyoshi Aman Date: Mon, 17 Dec 2018 06:07:09 -0600 Subject: user/aspell-dict-pt_PT: new package --- user/aspell-dict-pt_PT/APKBUILD | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) create mode 100644 user/aspell-dict-pt_PT/APKBUILD diff --git a/user/aspell-dict-pt_PT/APKBUILD b/user/aspell-dict-pt_PT/APKBUILD new file mode 100644 index 000000000..72c92641b --- /dev/null +++ b/user/aspell-dict-pt_PT/APKBUILD @@ -0,0 +1,26 @@ +# Contributor: Kiyoshi Aman +# Maintainer: Kiyoshi Aman +pkgname=aspell-dict-pt_PT +pkgver=20070510.0 +_pkgver=${pkgver%.*}-${pkgver#*.} +pkgrel=0 +pkgdesc="Portuguese dictionaries for aspell" +url="http://aspell.net" +arch="noarch" +options="!check" # no tests +license="GPL-2.0-only" +depends="aspell" +makedepends="debianutils-which" +source="ftp://ftp.gnu.org/gnu/aspell/dict/pt_PT/aspell6-pt_PT-20070510-0.tar.bz2" +builddir="$srcdir/aspell6-pt_PT-$_pkgver" + +build() { + cd "$builddir" + ./configure --vars DESTDIR="$pkgdir" +} + +package() { + cd "$builddir" + make DESTDIR="$pkgdir" install +} +sha512sums="eab60bfed51e4b044519e8e91fa2a4abb45d02431372310a45334c80abafd2022982331f3c0d39294d5029674d75536ad153877c23db01971f4b3d54b7b90cd6 aspell6-pt_PT-20070510-0.tar.bz2" -- cgit v1.2.3-70-g09d2 From db336964078492444ed146395ecb055040bdb343 Mon Sep 17 00:00:00 2001 From: Kiyoshi Aman Date: Mon, 17 Dec 2018 06:08:16 -0600 Subject: user/aspell-dict-qu: new package --- user/aspell-dict-qu/APKBUILD | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) create mode 100644 user/aspell-dict-qu/APKBUILD diff --git a/user/aspell-dict-qu/APKBUILD b/user/aspell-dict-qu/APKBUILD new file mode 100644 index 000000000..4641181d7 --- /dev/null +++ b/user/aspell-dict-qu/APKBUILD @@ -0,0 +1,26 @@ +# Contributor: Kiyoshi Aman +# Maintainer: Kiyoshi Aman +pkgname=aspell-dict-qu +pkgver=0.02.0 +_pkgver=${pkgver%.*}-${pkgver#*.*.} +pkgrel=0 +pkgdesc="Quechua dictionaries for aspell" +url="http://aspell.net" +arch="noarch" +options="!check" # no tests +license="GPL-2.0-only" +depends="aspell" +makedepends="debianutils-which" +source="ftp://ftp.gnu.org/gnu/aspell/dict/qu/aspell6-qu-$_pkgver.tar.bz2" +builddir="$srcdir/aspell6-qu-$_pkgver" + +build() { + cd "$builddir" + ./configure --vars DESTDIR="$pkgdir" +} + +package() { + cd "$builddir" + make DESTDIR="$pkgdir" install +} +sha512sums="aac1caea88e9bd896ec5a9a2e7fa4a569626fa5e6f6bf1188614db10ca2b34196b589c496027b3bc562ef9435245e215b428a49e91a8d0eb215801ae8c9bb512 aspell6-qu-0.02-0.tar.bz2" -- cgit v1.2.3-70-g09d2 From 708fcc31d068a9c0f67c2b176d26c62f5770372b Mon Sep 17 00:00:00 2001 From: Kiyoshi Aman Date: Mon, 17 Dec 2018 06:54:22 -0600 Subject: user/aspell-dict-ro: new package --- user/aspell-dict-ro/APKBUILD | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) create mode 100644 user/aspell-dict-ro/APKBUILD diff --git a/user/aspell-dict-ro/APKBUILD b/user/aspell-dict-ro/APKBUILD new file mode 100644 index 000000000..a116d1d50 --- /dev/null +++ b/user/aspell-dict-ro/APKBUILD @@ -0,0 +1,26 @@ +# Contributor: Kiyoshi Aman +# Maintainer: Kiyoshi Aman +pkgname=aspell-dict-ro +pkgver=3.3.2 +_pkgver=${pkgver%.*}-${pkgver#*.*.} +pkgrel=0 +pkgdesc="Romanian dictionaries for aspell" +url="http://aspell.net" +arch="noarch" +options="!check" # no tests +license="GPL-2.0-only" +depends="aspell" +makedepends="debianutils-which" +source="ftp://ftp.gnu.org/gnu/aspell/dict/ro/aspell5-ro-$_pkgver.tar.bz2" +builddir="$srcdir/aspell5-ro-$_pkgver" + +build() { + cd "$builddir" + ./configure --vars DESTDIR="$pkgdir" +} + +package() { + cd "$builddir" + make DESTDIR="$pkgdir" install +} +sha512sums="0027334b6201e24b038d78d5b01b8495a661dc41df44b099b6c27156d11f33c26db1dd7bc9dbf45263695820b20da3891da58a30584f5e285579dec199b5acd3 aspell5-ro-3.3-2.tar.bz2" -- cgit v1.2.3-70-g09d2 From 762743c5997868f56065952220d1f07cae1c2071 Mon Sep 17 00:00:00 2001 From: Kiyoshi Aman Date: Mon, 17 Dec 2018 06:55:19 -0600 Subject: user/aspell-dict-ru: new package --- user/aspell-dict-ru/APKBUILD | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) create mode 100644 user/aspell-dict-ru/APKBUILD diff --git a/user/aspell-dict-ru/APKBUILD b/user/aspell-dict-ru/APKBUILD new file mode 100644 index 000000000..cd2b6d5f5 --- /dev/null +++ b/user/aspell-dict-ru/APKBUILD @@ -0,0 +1,26 @@ +# Contributor: Kiyoshi Aman +# Maintainer: Kiyoshi Aman +pkgname=aspell-dict-ru +pkgver=0.99f7.1 +_pkgver=${pkgver%.*}-${pkgver#*.*.} +pkgrel=0 +pkgdesc="Russian dictionaries for aspell" +url="http://aspell.net" +arch="noarch" +options="!check" # no tests +license="GPL-2.0-only" +depends="aspell" +makedepends="debianutils-which" +source="ftp://ftp.gnu.org/gnu/aspell/dict/ru/aspell6-ru-0.99f7-1.tar.bz2" +builddir="$srcdir/aspell6-ru-$_pkgver" + +build() { + cd "$builddir" + ./configure --vars DESTDIR="$pkgdir" +} + +package() { + cd "$builddir" + make DESTDIR="$pkgdir" install +} +sha512sums="789fe15f5502b54008a41f2afb5635dcb7bb0a36e61b300ee48b2429c339793f5c4808d6063f13f1f8455ce251912433890e7d01ca59d8b0924ecd2987ceb430 aspell6-ru-0.99f7-1.tar.bz2" -- cgit v1.2.3-70-g09d2 From 57ae8b5c250c7a276cad98f1be04341ebe1b3bcf Mon Sep 17 00:00:00 2001 From: Kiyoshi Aman Date: Mon, 17 Dec 2018 06:56:19 -0600 Subject: user/aspell-dict-rw: new package --- user/aspell-dict-rw/APKBUILD | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) create mode 100644 user/aspell-dict-rw/APKBUILD diff --git a/user/aspell-dict-rw/APKBUILD b/user/aspell-dict-rw/APKBUILD new file mode 100644 index 000000000..accb77d6c --- /dev/null +++ b/user/aspell-dict-rw/APKBUILD @@ -0,0 +1,26 @@ +# Contributor: Kiyoshi Aman +# Maintainer: Kiyoshi Aman +pkgname=aspell-dict-rw +pkgver=0.50.0 +_pkgver=${pkgver%.*}-${pkgver#*.*.} +pkgrel=0 +pkgdesc="Kinyarwanda dictionaries for aspell" +url="http://aspell.net" +arch="noarch" +options="!check" # no tests +license="GPL-2.0-only" +depends="aspell" +makedepends="debianutils-which" +source="ftp://ftp.gnu.org/gnu/aspell/dict/rw/aspell-rw-$_pkgver.tar.bz2" +builddir="$srcdir/aspell-rw-$_pkgver" + +build() { + cd "$builddir" + ./configure --vars DESTDIR="$pkgdir" +} + +package() { + cd "$builddir" + make DESTDIR="$pkgdir" install +} +sha512sums="a987fe90b091c5f8d4c28713ad50ca917d2a8fd120df55bd413e3112913cb7e9e8fdc740994aa881bbfdd9ac38fa5ebe728c9e62e25a0e7cc8eac13c2380c56a aspell-rw-0.50-0.tar.bz2" -- cgit v1.2.3-70-g09d2 From c33555af3e0576c420202b27b030df47a6f53497 Mon Sep 17 00:00:00 2001 From: Kiyoshi Aman Date: Mon, 17 Dec 2018 06:57:07 -0600 Subject: user/aspell-dict-sc: new package --- user/aspell-dict-sc/APKBUILD | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) create mode 100644 user/aspell-dict-sc/APKBUILD diff --git a/user/aspell-dict-sc/APKBUILD b/user/aspell-dict-sc/APKBUILD new file mode 100644 index 000000000..8e447c831 --- /dev/null +++ b/user/aspell-dict-sc/APKBUILD @@ -0,0 +1,25 @@ +# Contributor: Kiyoshi Aman +# Maintainer: Kiyoshi Aman +pkgname=aspell-dict-sc +pkgver=1.0 +pkgrel=0 +pkgdesc="Sardinian dictionaries for aspell" +url="http://aspell.net" +arch="noarch" +options="!check" # no tests +license="GPL-2.0-only" +depends="aspell" +makedepends="debianutils-which" +source="ftp://ftp.gnu.org/gnu/aspell/dict/sc/aspell5-sc-$pkgver.tar.bz2" +builddir="$srcdir/aspell5-sc-$pkgver" + +build() { + cd "$builddir" + ./configure --vars DESTDIR="$pkgdir" +} + +package() { + cd "$builddir" + make DESTDIR="$pkgdir" install +} +sha512sums="3cad49510894645b9bc97bbae877641e64af0440a2abcb6f96197da95390d4dd59d1374008c0ade9dc17772a32c367b9b03e6be65e7f190268365f25069d2a23 aspell5-sc-1.0.tar.bz2" -- cgit v1.2.3-70-g09d2 From 284df3407da4f646f699eb19a7df3631f4e2ebd4 Mon Sep 17 00:00:00 2001 From: Kiyoshi Aman Date: Mon, 17 Dec 2018 06:58:44 -0600 Subject: user/aspell-dict-sk: new package --- user/aspell-dict-sk/APKBUILD | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) create mode 100644 user/aspell-dict-sk/APKBUILD diff --git a/user/aspell-dict-sk/APKBUILD b/user/aspell-dict-sk/APKBUILD new file mode 100644 index 000000000..df481fad4 --- /dev/null +++ b/user/aspell-dict-sk/APKBUILD @@ -0,0 +1,26 @@ +# Contributor: Kiyoshi Aman +# Maintainer: Kiyoshi Aman +pkgname=aspell-dict-sk +pkgver=2.01.2 +_pkgver=${pkgver%.*}-${pkgver#*.*.} +pkgrel=0 +pkgdesc="Slovak dictionaries for aspell" +url="http://aspell.net" +arch="noarch" +options="!check" # no tests +license="GPL-2.0-only" +depends="aspell" +makedepends="debianutils-which" +source="ftp://ftp.gnu.org/gnu/aspell/dict/sk/aspell6-sk-$_pkgver.tar.bz2" +builddir="$srcdir/aspell6-sk-$_pkgver" + +build() { + cd "$builddir" + ./configure --vars DESTDIR="$pkgdir" +} + +package() { + cd "$builddir" + make DESTDIR="$pkgdir" install +} +sha512sums="020de459d4ff9c6e0c88428d43c9feea346bf8fadb9fa1233e9e54471ee23f970524a9a47cc6a45d04d6857387c9d9d1ecc1af2062325298354ee6c2d9c314b4 aspell6-sk-2.01-2.tar.bz2" -- cgit v1.2.3-70-g09d2 From 8c1ed5e5aabe51994abc56f83d00464134afbd70 Mon Sep 17 00:00:00 2001 From: Kiyoshi Aman Date: Mon, 17 Dec 2018 07:02:45 -0600 Subject: user/aspell-dict-sl: new package --- user/aspell-dict-sl/APKBUILD | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) create mode 100644 user/aspell-dict-sl/APKBUILD diff --git a/user/aspell-dict-sl/APKBUILD b/user/aspell-dict-sl/APKBUILD new file mode 100644 index 000000000..ab8dc8621 --- /dev/null +++ b/user/aspell-dict-sl/APKBUILD @@ -0,0 +1,26 @@ +# Contributor: Kiyoshi Aman +# Maintainer: Kiyoshi Aman +pkgname=aspell-dict-sl +pkgver=0.50.0 +_pkgver=${pkgver%.*}-${pkgver#*.*.} +pkgrel=0 +pkgdesc="Slovenian dictionaries for aspell" +url="http://aspell.net" +arch="noarch" +options="!check" # no tests +license="GPL-2.0-only" +depends="aspell" +makedepends="debianutils-which" +source="ftp://ftp.gnu.org/gnu/aspell/dict/sl/aspell-sl-$_pkgver.tar.bz2" +builddir="$srcdir/aspell-sl-$_pkgver" + +build() { + cd "$builddir" + ./configure --vars DESTDIR="$pkgdir" +} + +package() { + cd "$builddir" + make DESTDIR="$pkgdir" install +} +sha512sums="17b74bd3c6d7fbda0b4f6d14ee529f47f39c349642593312c160eb4e7eb6eb40f704e9c34e6fb33ef9e829b861e92a224196f55326fa4d02197d12912fd4b44f aspell-sl-0.50-0.tar.bz2" -- cgit v1.2.3-70-g09d2 From 5a0be32ac818b4df643625826bdbd26ba76d6a99 Mon Sep 17 00:00:00 2001 From: Kiyoshi Aman Date: Mon, 17 Dec 2018 07:03:27 -0600 Subject: user/aspell-dict-sr: new package --- user/aspell-dict-sr/APKBUILD | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) create mode 100644 user/aspell-dict-sr/APKBUILD diff --git a/user/aspell-dict-sr/APKBUILD b/user/aspell-dict-sr/APKBUILD new file mode 100644 index 000000000..601515fcb --- /dev/null +++ b/user/aspell-dict-sr/APKBUILD @@ -0,0 +1,25 @@ +# Contributor: Kiyoshi Aman +# Maintainer: Kiyoshi Aman +pkgname=aspell-dict-sr +pkgver=0.02 +pkgrel=0 +pkgdesc="Serbian dictionaries for aspell" +url="http://aspell.net" +arch="noarch" +options="!check" # no tests +license="GPL-2.0-only" +depends="aspell" +makedepends="debianutils-which" +source="ftp://ftp.gnu.org/gnu/aspell/dict/sr/aspell6-sr-$pkgver.tar.bz2" +builddir="$srcdir/aspell6-sr-$pkgver" + +build() { + cd "$builddir" + ./configure --vars DESTDIR="$pkgdir" +} + +package() { + cd "$builddir" + make DESTDIR="$pkgdir" install +} +sha512sums="3334d98779c9eff74ca85e5168e51375e38f831ff3f2b9164d0773cf220bd9ca0076d282086bed6258c643cfae70124d985931982db6c885b8d53fc35fb0c395 aspell6-sr-0.02.tar.bz2" -- cgit v1.2.3-70-g09d2 From ab860fd2925107a2be47b0da5939f99a0dd740aa Mon Sep 17 00:00:00 2001 From: Kiyoshi Aman Date: Mon, 17 Dec 2018 07:04:21 -0600 Subject: user/aspell-dict-sv: new package --- user/aspell-dict-sv/APKBUILD | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) create mode 100644 user/aspell-dict-sv/APKBUILD diff --git a/user/aspell-dict-sv/APKBUILD b/user/aspell-dict-sv/APKBUILD new file mode 100644 index 000000000..cbdf4dfc8 --- /dev/null +++ b/user/aspell-dict-sv/APKBUILD @@ -0,0 +1,26 @@ +# Contributor: Kiyoshi Aman +# Maintainer: Kiyoshi Aman +pkgname=aspell-dict-sv +pkgver=0.51.0 +_pkgver=${pkgver%.*}-${pkgver#*.*.} +pkgrel=0 +pkgdesc="Swedish dictionaries for aspell" +url="http://aspell.net" +arch="noarch" +options="!check" # no tests +license="GPL-2.0-only" +depends="aspell" +makedepends="debianutils-which" +source="ftp://ftp.gnu.org/gnu/aspell/dict/sv/aspell-sv-$_pkgver.tar.bz2" +builddir="$srcdir/aspell-sv-$_pkgver" + +build() { + cd "$builddir" + ./configure --vars DESTDIR="$pkgdir" +} + +package() { + cd "$builddir" + make DESTDIR="$pkgdir" install +} +sha512sums="f995f3ae1a1380a5dbb171786c2cf3d46670c4bc012792a1d241ff0f3de61046766583e3704c57618eb0690aa0e915b64130114420358a3f46b5b59a37d45e5c aspell-sv-0.51-0.tar.bz2" -- cgit v1.2.3-70-g09d2 From ab5f0f4d226d3ce58cc70f8de410ebc9a782b7f4 Mon Sep 17 00:00:00 2001 From: Kiyoshi Aman Date: Mon, 17 Dec 2018 07:05:31 -0600 Subject: user/aspell-dict-sw: new package --- user/aspell-dict-sw/APKBUILD | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) create mode 100644 user/aspell-dict-sw/APKBUILD diff --git a/user/aspell-dict-sw/APKBUILD b/user/aspell-dict-sw/APKBUILD new file mode 100644 index 000000000..d904ac81a --- /dev/null +++ b/user/aspell-dict-sw/APKBUILD @@ -0,0 +1,26 @@ +# Contributor: Kiyoshi Aman +# Maintainer: Kiyoshi Aman +pkgname=aspell-dict-sw +pkgver=0.50.0 +_pkgver=${pkgver%.*}-${pkgver#*.*.} +pkgrel=0 +pkgdesc="Swahili dictionaries for aspell" +url="http://aspell.net" +arch="noarch" +options="!check" # no tests +license="GPL-2.0-only" +depends="aspell" +makedepends="debianutils-which" +source="ftp://ftp.gnu.org/gnu/aspell/dict/sw/aspell-sw-$_pkgver.tar.bz2" +builddir="$srcdir/aspell-sw-$_pkgver" + +build() { + cd "$builddir" + ./configure --vars DESTDIR="$pkgdir" +} + +package() { + cd "$builddir" + make DESTDIR="$pkgdir" install +} +sha512sums="5d89a68c292b45a188f611a14bc355c955810f79c32c7784b2e3ba5a4307b48d572e5a7ca882a344b7635eabe6aa6c2f5d789e9506f3a3f4e69c93fd3675e423 aspell-sw-0.50-0.tar.bz2" -- cgit v1.2.3-70-g09d2 From a01c4f4148e9c89e8ee41d119e82930b372cdd22 Mon Sep 17 00:00:00 2001 From: Kiyoshi Aman Date: Mon, 17 Dec 2018 07:07:50 -0600 Subject: user/aspell-dict-ta: new package --- user/aspell-dict-ta/APKBUILD | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) create mode 100644 user/aspell-dict-ta/APKBUILD diff --git a/user/aspell-dict-ta/APKBUILD b/user/aspell-dict-ta/APKBUILD new file mode 100644 index 000000000..50cbf030c --- /dev/null +++ b/user/aspell-dict-ta/APKBUILD @@ -0,0 +1,26 @@ +# Contributor: Kiyoshi Aman +# Maintainer: Kiyoshi Aman +pkgname=aspell-dict-ta +pkgver=20040424.1 +_pkgver=${pkgver%.*}-${pkgver#*.} +pkgrel=0 +pkgdesc="Tamil dictionaries for aspell" +url="http://aspell.net" +arch="noarch" +options="!check" # no tests +license="GPL-2.0-only" +depends="aspell" +makedepends="debianutils-which" +source="ftp://ftp.gnu.org/gnu/aspell/dict/ta/aspell6-ta-$_pkgver.tar.bz2" +builddir="$srcdir/aspell6-ta-$_pkgver" + +build() { + cd "$builddir" + ./configure --vars DESTDIR="$pkgdir" +} + +package() { + cd "$builddir" + make DESTDIR="$pkgdir" install +} +sha512sums="8809948f25bf197207c3cbd865bf4c7e73cee552fd1518533d48fcabdc79c95765df253d9ef6c7f904748f24898f04acdeb64800ce9856ced8ccab086ddb664e aspell6-ta-20040424-1.tar.bz2" -- cgit v1.2.3-70-g09d2 From 112e5752590e9fcace9ebfa3ef5d861b64ad1569 Mon Sep 17 00:00:00 2001 From: Kiyoshi Aman Date: Mon, 17 Dec 2018 07:08:34 -0600 Subject: user/aspell-dict-te: new package --- user/aspell-dict-te/APKBUILD | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) create mode 100644 user/aspell-dict-te/APKBUILD diff --git a/user/aspell-dict-te/APKBUILD b/user/aspell-dict-te/APKBUILD new file mode 100644 index 000000000..fbd2bbef9 --- /dev/null +++ b/user/aspell-dict-te/APKBUILD @@ -0,0 +1,26 @@ +# Contributor: Kiyoshi Aman +# Maintainer: Kiyoshi Aman +pkgname=aspell-dict-te +pkgver=0.01.2 +_pkgver=${pkgver%.*}-${pkgver#*.*.} +pkgrel=0 +pkgdesc="Telugu dictionaries for aspell" +url="http://aspell.net" +arch="noarch" +options="!check" # no tests +license="GPL-2.0-only" +depends="aspell" +makedepends="debianutils-which" +source="ftp://ftp.gnu.org/gnu/aspell/dict/te/aspell6-te-$_pkgver.tar.bz2" +builddir="$srcdir/aspell6-te-$_pkgver" + +build() { + cd "$builddir" + ./configure --vars DESTDIR="$pkgdir" +} + +package() { + cd "$builddir" + make DESTDIR="$pkgdir" install +} +sha512sums="09566d44de03e3e990f575d8e665bad9079f7bafec2474a6aa4a430a1ff71641dd4989d24bc5ecf3b19ca8c4f61b9365ea792b16f271c89bffaab159e8ed0129 aspell6-te-0.01-2.tar.bz2" -- cgit v1.2.3-70-g09d2 From d62bffc1a926010831decf44ca7f3cd9bd317785 Mon Sep 17 00:00:00 2001 From: Kiyoshi Aman Date: Mon, 17 Dec 2018 07:10:03 -0600 Subject: user/aspell-dict-tet: new package --- user/aspell-dict-tet/APKBUILD | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) create mode 100644 user/aspell-dict-tet/APKBUILD diff --git a/user/aspell-dict-tet/APKBUILD b/user/aspell-dict-tet/APKBUILD new file mode 100644 index 000000000..392c24a62 --- /dev/null +++ b/user/aspell-dict-tet/APKBUILD @@ -0,0 +1,25 @@ +# Contributor: Kiyoshi Aman +# Maintainer: Kiyoshi Aman +pkgname=aspell-dict-tet +pkgver=0.1.1 +pkgrel=0 +pkgdesc="Tetum dictionaries for aspell" +url="http://aspell.net" +arch="noarch" +options="!check" # no tests +license="GPL-2.0-only" +depends="aspell" +makedepends="debianutils-which" +source="ftp://ftp.gnu.org/gnu/aspell/dict/tet/aspell5-tet-$pkgver.tar.bz2" +builddir="$srcdir/aspell5-tet-$pkgver" + +build() { + cd "$builddir" + ./configure --vars DESTDIR="$pkgdir" +} + +package() { + cd "$builddir" + make DESTDIR="$pkgdir" install +} +sha512sums="6dc691b40cedd054a677197219f97ae5afc21bcf4820bf452d23963ae04a716bf7e38d1cff0eb050e13fd24fd2e8f3b0d24f9b19e7de3868faeca8aa16881802 aspell5-tet-0.1.1.tar.bz2" -- cgit v1.2.3-70-g09d2 From d687077ac917fbb3be181e1a2a6f9a6604913723 Mon Sep 17 00:00:00 2001 From: Kiyoshi Aman Date: Mon, 17 Dec 2018 07:10:41 -0600 Subject: user/aspell-dict-tk: new package --- user/aspell-dict-tk/APKBUILD | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) create mode 100644 user/aspell-dict-tk/APKBUILD diff --git a/user/aspell-dict-tk/APKBUILD b/user/aspell-dict-tk/APKBUILD new file mode 100644 index 000000000..f02b20fd0 --- /dev/null +++ b/user/aspell-dict-tk/APKBUILD @@ -0,0 +1,26 @@ +# Contributor: Kiyoshi Aman +# Maintainer: Kiyoshi Aman +pkgname=aspell-dict-tk +pkgver=0.01.0 +_pkgver=${pkgver%.*}-${pkgver#*.*.} +pkgrel=0 +pkgdesc="Turkmen dictionaries for aspell" +url="http://aspell.net" +arch="noarch" +options="!check" # no tests +license="GPL-2.0-only" +depends="aspell" +makedepends="debianutils-which" +source="ftp://ftp.gnu.org/gnu/aspell/dict/tk/aspell5-tk-$_pkgver.tar.bz2" +builddir="$srcdir/aspell5-tk-$_pkgver" + +build() { + cd "$builddir" + ./configure --vars DESTDIR="$pkgdir" +} + +package() { + cd "$builddir" + make DESTDIR="$pkgdir" install +} +sha512sums="0a4a0c3be9b9322187677d47f56c091f6c3ae2662b8d6831e9fa2e18720277f76c79e9e0c65ee37474459a19dc5a99519af8492645b241cdc076775afc4a700f aspell5-tk-0.01-0.tar.bz2" -- cgit v1.2.3-70-g09d2 From 6cfbbf7cc1af752db54e5865af099e80da867323 Mon Sep 17 00:00:00 2001 From: Kiyoshi Aman Date: Mon, 17 Dec 2018 07:11:25 -0600 Subject: user/aspell-dict-tl: new package --- user/aspell-dict-tl/APKBUILD | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) create mode 100644 user/aspell-dict-tl/APKBUILD diff --git a/user/aspell-dict-tl/APKBUILD b/user/aspell-dict-tl/APKBUILD new file mode 100644 index 000000000..7146e8b7f --- /dev/null +++ b/user/aspell-dict-tl/APKBUILD @@ -0,0 +1,26 @@ +# Contributor: Kiyoshi Aman +# Maintainer: Kiyoshi Aman +pkgname=aspell-dict-tl +pkgver=0.02.1 +_pkgver=${pkgver%.*}-${pkgver#*.*.} +pkgrel=0 +pkgdesc="Tagalog dictionaries for aspell" +url="http://aspell.net" +arch="noarch" +options="!check" # no tests +license="GPL-2.0-only" +depends="aspell" +makedepends="debianutils-which" +source="ftp://ftp.gnu.org/gnu/aspell/dict/tl/aspell5-tl-$_pkgver.tar.bz2" +builddir="$srcdir/aspell5-tl-$_pkgver" + +build() { + cd "$builddir" + ./configure --vars DESTDIR="$pkgdir" +} + +package() { + cd "$builddir" + make DESTDIR="$pkgdir" install +} +sha512sums="2bff0f0191104312b8674ef65ee77a8e80225bc9bb6afe651aeb94a03db8781e8545b5b09f0143f557092c868f0873c17c55055b8cdd66f18a648ba2c805a6f0 aspell5-tl-0.02-1.tar.bz2" -- cgit v1.2.3-70-g09d2 From 4d9ee375e0f2ada13a36ffbab0e86b60f5738bd1 Mon Sep 17 00:00:00 2001 From: Kiyoshi Aman Date: Mon, 17 Dec 2018 07:12:40 -0600 Subject: user/aspell-dict-tn: new package --- user/aspell-dict-tn/APKBUILD | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) create mode 100644 user/aspell-dict-tn/APKBUILD diff --git a/user/aspell-dict-tn/APKBUILD b/user/aspell-dict-tn/APKBUILD new file mode 100644 index 000000000..4a404b4da --- /dev/null +++ b/user/aspell-dict-tn/APKBUILD @@ -0,0 +1,26 @@ +# Contributor: Kiyoshi Aman +# Maintainer: Kiyoshi Aman +pkgname=aspell-dict-tn +pkgver=1.0.1.0 +_pkgver=${pkgver%.*}-${pkgver#*.*.*.} +pkgrel=0 +pkgdesc="Setswana dictionaries for aspell" +url="http://aspell.net" +arch="noarch" +options="!check" # no tests +license="GPL-2.0-only" +depends="aspell" +makedepends="debianutils-which" +source="ftp://ftp.gnu.org/gnu/aspell/dict/tn/aspell5-tn-$_pkgver.tar.bz2" +builddir="$srcdir/aspell5-tn-$_pkgver" + +build() { + cd "$builddir" + ./configure --vars DESTDIR="$pkgdir" +} + +package() { + cd "$builddir" + make DESTDIR="$pkgdir" install +} +sha512sums="ff3258c3eec392f45b34ba7754bbd6af7ffa0ac812fc1743985fec301755be81387a3e567b36ff145a7a3f9b906e991efde8b4fafc33be14f07a581f4af111dc aspell5-tn-1.0.1-0.tar.bz2" -- cgit v1.2.3-70-g09d2 From 66bd5e6d05b6e2b75585da048164fa5411c552bb Mon Sep 17 00:00:00 2001 From: Kiyoshi Aman Date: Mon, 17 Dec 2018 07:13:26 -0600 Subject: user/aspell-dict-tr: new package --- user/aspell-dict-tr/APKBUILD | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) create mode 100644 user/aspell-dict-tr/APKBUILD diff --git a/user/aspell-dict-tr/APKBUILD b/user/aspell-dict-tr/APKBUILD new file mode 100644 index 000000000..6e32881a1 --- /dev/null +++ b/user/aspell-dict-tr/APKBUILD @@ -0,0 +1,26 @@ +# Contributor: Kiyoshi Aman +# Maintainer: Kiyoshi Aman +pkgname=aspell-dict-tr +pkgver=0.50.0 +_pkgver=${pkgver%.*}-${pkgver#*.*.} +pkgrel=0 +pkgdesc="Turkish dictionaries for aspell" +url="http://aspell.net" +arch="noarch" +options="!check" # no tests +license="GPL-2.0-only" +depends="aspell" +makedepends="debianutils-which" +source="ftp://ftp.gnu.org/gnu/aspell/dict/tr/aspell-tr-$_pkgver.tar.bz2" +builddir="$srcdir/aspell-tr-$_pkgver" + +build() { + cd "$builddir" + ./configure --vars DESTDIR="$pkgdir" +} + +package() { + cd "$builddir" + make DESTDIR="$pkgdir" install +} +sha512sums="0054eef2089a916695b7501676d9cedb1d14defdea76deb01656a6a644b4e646db46470040227814f750e0d69dcc72b1023967eb7924b42ddcefd3d604709059 aspell-tr-0.50-0.tar.bz2" -- cgit v1.2.3-70-g09d2 From 9b1f3f5628b7e789df36bdd129a8ab8f43775d1d Mon Sep 17 00:00:00 2001 From: Kiyoshi Aman Date: Mon, 17 Dec 2018 07:14:17 -0600 Subject: user/aspell-dict-uk: new package --- user/aspell-dict-uk/APKBUILD | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) create mode 100644 user/aspell-dict-uk/APKBUILD diff --git a/user/aspell-dict-uk/APKBUILD b/user/aspell-dict-uk/APKBUILD new file mode 100644 index 000000000..d812753ad --- /dev/null +++ b/user/aspell-dict-uk/APKBUILD @@ -0,0 +1,26 @@ +# Contributor: Kiyoshi Aman +# Maintainer: Kiyoshi Aman +pkgname=aspell-dict-uk +pkgver=1.4.0.0 +_pkgver=${pkgver%.*}-${pkgver#*.*.*.} +pkgrel=0 +pkgdesc="Ukrainian dictionaries for aspell" +url="http://aspell.net" +arch="noarch" +options="!check" # no tests +license="GPL-2.0-only" +depends="aspell" +makedepends="debianutils-which" +source="ftp://ftp.gnu.org/gnu/aspell/dict/uk/aspell6-uk-$_pkgver.tar.bz2" +builddir="$srcdir/aspell6-uk-$_pkgver" + +build() { + cd "$builddir" + ./configure --vars DESTDIR="$pkgdir" +} + +package() { + cd "$builddir" + make DESTDIR="$pkgdir" install +} +sha512sums="2e66465d17695dd3147241f13d611571f8a80a15886c69728d2f34019fb4834e56e4c0834d9e898927522b54d75f78a32dd3435b2c16eb86cf9cfa11070f0799 aspell6-uk-1.4.0-0.tar.bz2" -- cgit v1.2.3-70-g09d2 From 8f0eb77f0ff5cf3ac49b8597bd1026b7721beb78 Mon Sep 17 00:00:00 2001 From: Kiyoshi Aman Date: Mon, 17 Dec 2018 07:15:09 -0600 Subject: user/aspell-dict-uz: new package --- user/aspell-dict-uz/APKBUILD | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) create mode 100644 user/aspell-dict-uz/APKBUILD diff --git a/user/aspell-dict-uz/APKBUILD b/user/aspell-dict-uz/APKBUILD new file mode 100644 index 000000000..cc9e0b28a --- /dev/null +++ b/user/aspell-dict-uz/APKBUILD @@ -0,0 +1,26 @@ +# Contributor: Kiyoshi Aman +# Maintainer: Kiyoshi Aman +pkgname=aspell-dict-uz +pkgver=0.6.0 +_pkgver=${pkgver%.*}-${pkgver#*.*.} +pkgrel=0 +pkgdesc="Uzbek dictionaries for aspell" +url="http://aspell.net" +arch="noarch" +options="!check" # no tests +license="GPL-2.0-only" +depends="aspell" +makedepends="debianutils-which" +source="ftp://ftp.gnu.org/gnu/aspell/dict/uz/aspell6-uz-$_pkgver.tar.bz2" +builddir="$srcdir/aspell6-uz-$_pkgver" + +build() { + cd "$builddir" + ./configure --vars DESTDIR="$pkgdir" +} + +package() { + cd "$builddir" + make DESTDIR="$pkgdir" install +} +sha512sums="0542a83c149ad761d8bb964be556bfb2387404fce21e0e38d3c0fa8efef2d1587db0fa80140cf7de72da7f08bbb807ff931a95bb63c2a84771a197f5841e545b aspell6-uz-0.6-0.tar.bz2" -- cgit v1.2.3-70-g09d2 From b9d02714cb8598f3ded1473866e61ef230d80167 Mon Sep 17 00:00:00 2001 From: Kiyoshi Aman Date: Mon, 17 Dec 2018 07:16:00 -0600 Subject: user/aspell-dict-vi: new package --- user/aspell-dict-vi/APKBUILD | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) create mode 100644 user/aspell-dict-vi/APKBUILD diff --git a/user/aspell-dict-vi/APKBUILD b/user/aspell-dict-vi/APKBUILD new file mode 100644 index 000000000..12a23ae79 --- /dev/null +++ b/user/aspell-dict-vi/APKBUILD @@ -0,0 +1,26 @@ +# Contributor: Kiyoshi Aman +# Maintainer: Kiyoshi Aman +pkgname=aspell-dict-vi +pkgver=0.01.1.1 +_pkgver=${pkgver%.*}-${pkgver#*.*.*.} +pkgrel=0 +pkgdesc="Vietnamese dictionaries for aspell" +url="http://aspell.net" +arch="noarch" +options="!check" # no tests +license="GPL-2.0-only" +depends="aspell" +makedepends="debianutils-which" +source="ftp://ftp.gnu.org/gnu/aspell/dict/vi/aspell6-vi-$_pkgver.tar.bz2" +builddir="$srcdir/aspell6-vi-$_pkgver" + +build() { + cd "$builddir" + ./configure --vars DESTDIR="$pkgdir" +} + +package() { + cd "$builddir" + make DESTDIR="$pkgdir" install +} +sha512sums="d6b0a85ea3edf3193327f6df1b9c24947663fe711f060f10122e2c60aea2717d70277fd516fa685d9886c725baeebfc72d3f33e240ee8d182be669da716bb5c5 aspell6-vi-0.01.1-1.tar.bz2" -- cgit v1.2.3-70-g09d2 From 26b0f253bdeca2d98e9a22cc21cb05098eaaba2f Mon Sep 17 00:00:00 2001 From: Kiyoshi Aman Date: Mon, 17 Dec 2018 07:17:21 -0600 Subject: user/aspell-dict-wa: new package --- user/aspell-dict-wa/APKBUILD | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) create mode 100644 user/aspell-dict-wa/APKBUILD diff --git a/user/aspell-dict-wa/APKBUILD b/user/aspell-dict-wa/APKBUILD new file mode 100644 index 000000000..35ed79b6b --- /dev/null +++ b/user/aspell-dict-wa/APKBUILD @@ -0,0 +1,26 @@ +# Contributor: Kiyoshi Aman +# Maintainer: Kiyoshi Aman +pkgname=aspell-dict-wa +pkgver=0.50.0 +_pkgver=${pkgver%.*}-${pkgver#*.*.} +pkgrel=0 +pkgdesc="Walloon dictionaries for aspell" +url="http://aspell.net" +arch="noarch" +options="!check" # no tests +license="GPL-2.0-only" +depends="aspell" +makedepends="debianutils-which" +source="ftp://ftp.gnu.org/gnu/aspell/dict/wa/aspell-wa-$_pkgver.tar.bz2" +builddir="$srcdir/aspell-wa-$_pkgver" + +build() { + cd "$builddir" + ./configure --vars DESTDIR="$pkgdir" +} + +package() { + cd "$builddir" + make DESTDIR="$pkgdir" install +} +sha512sums="67e8fbb80a2622b921e28a37b978fc998713f7e281beccc921afd8e289ac76094f589e905da2e9386c585fcfae53179ca1e9b24a39c8a021cb3f2685461e3a8c aspell-wa-0.50-0.tar.bz2" -- cgit v1.2.3-70-g09d2 From bcb0d8fc2adb100df9791f726a0673f529a55cd8 Mon Sep 17 00:00:00 2001 From: Kiyoshi Aman Date: Mon, 17 Dec 2018 07:18:15 -0600 Subject: user/aspell-dict-yi: new package --- user/aspell-dict-yi/APKBUILD | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) create mode 100644 user/aspell-dict-yi/APKBUILD diff --git a/user/aspell-dict-yi/APKBUILD b/user/aspell-dict-yi/APKBUILD new file mode 100644 index 000000000..f3b55aaaa --- /dev/null +++ b/user/aspell-dict-yi/APKBUILD @@ -0,0 +1,26 @@ +# Contributor: Kiyoshi Aman +# Maintainer: Kiyoshi Aman +pkgname=aspell-dict-yi +pkgver=0.01.1.1 +_pkgver=${pkgver%.*}-${pkgver#*.*.*.} +pkgrel=0 +pkgdesc="Yiddish dictionaries for aspell" +url="http://aspell.net" +arch="noarch" +options="!check" # no tests +license="GPL-2.0-only" +depends="aspell" +makedepends="debianutils-which" +source="ftp://ftp.gnu.org/gnu/aspell/dict/yi/aspell6-yi-$_pkgver.tar.bz2" +builddir="$srcdir/aspell6-yi-$_pkgver" + +build() { + cd "$builddir" + ./configure --vars DESTDIR="$pkgdir" +} + +package() { + cd "$builddir" + make DESTDIR="$pkgdir" install +} +sha512sums="a8d96ba192e61193469596ce1bf6e808bbb03e3fa3a75e545bdee4b6cfa607b681d0a9631465d004ce6e0e25453af732391e76b134138acc7c28991a3664f346 aspell6-yi-0.01.1-1.tar.bz2" -- cgit v1.2.3-70-g09d2 From d8619efe4adc35d55560d99749f90726aa705a9c Mon Sep 17 00:00:00 2001 From: Kiyoshi Aman Date: Mon, 17 Dec 2018 07:19:05 -0600 Subject: user/aspell-dict-zu: new package --- user/aspell-dict-zu/APKBUILD | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) create mode 100644 user/aspell-dict-zu/APKBUILD diff --git a/user/aspell-dict-zu/APKBUILD b/user/aspell-dict-zu/APKBUILD new file mode 100644 index 000000000..6beb5fb89 --- /dev/null +++ b/user/aspell-dict-zu/APKBUILD @@ -0,0 +1,26 @@ +# Contributor: Kiyoshi Aman +# Maintainer: Kiyoshi Aman +pkgname=aspell-dict-zu +pkgver=0.50.0 +_pkgver=${pkgver%.*}-${pkgver#*.*.} +pkgrel=0 +pkgdesc="Zulu dictionaries for aspell" +url="http://aspell.net" +arch="noarch" +options="!check" # no tests +license="GPL-2.0-only" +depends="aspell" +makedepends="debianutils-which" +source="ftp://ftp.gnu.org/gnu/aspell/dict/zu/aspell-zu-$_pkgver.tar.bz2" +builddir="$srcdir/aspell-zu-$_pkgver" + +build() { + cd "$builddir" + ./configure --vars DESTDIR="$pkgdir" +} + +package() { + cd "$builddir" + make DESTDIR="$pkgdir" install +} +sha512sums="c79679a41e8aa1b80532c9eea0cf49c3a4bcdaa00f3d0d9e9f6eb7f4037992e40eaad0af711e5d5c29935afe6d0a2fb1c7b49dfdb2add07526a64cb2efac6ea9 aspell-zu-0.50-0.tar.bz2" -- cgit v1.2.3-70-g09d2 From e8ea961cf71d87ff11329a1e2d56b9f7626c1f2c Mon Sep 17 00:00:00 2001 From: Kiyoshi Aman Date: Mon, 17 Dec 2018 07:57:01 -0600 Subject: user/aspell-dict-*: fix versioning for af through nds --- user/aspell-dict-af/APKBUILD | 4 ++-- user/aspell-dict-am/APKBUILD | 4 ++-- user/aspell-dict-ar/APKBUILD | 4 ++-- user/aspell-dict-az/APKBUILD | 4 ++-- user/aspell-dict-bg/APKBUILD | 4 ++-- user/aspell-dict-bn/APKBUILD | 4 ++-- user/aspell-dict-br/APKBUILD | 4 ++-- user/aspell-dict-ca/APKBUILD | 4 ++-- user/aspell-dict-cs/APKBUILD | 4 ++-- user/aspell-dict-csb/APKBUILD | 4 ++-- user/aspell-dict-cy/APKBUILD | 4 ++-- user/aspell-dict-da/APKBUILD | 4 ++-- user/aspell-dict-de-alt/APKBUILD | 4 ++-- user/aspell-dict-de/APKBUILD | 4 ++-- user/aspell-dict-el/APKBUILD | 4 ++-- user/aspell-dict-en/APKBUILD | 4 ++-- user/aspell-dict-eo/APKBUILD | 5 +++-- user/aspell-dict-es/APKBUILD | 4 ++-- user/aspell-dict-et/APKBUILD | 4 ++-- user/aspell-dict-fa/APKBUILD | 4 ++-- user/aspell-dict-fi/APKBUILD | 4 ++-- user/aspell-dict-fo/APKBUILD | 4 ++-- user/aspell-dict-fr/APKBUILD | 4 ++-- user/aspell-dict-fy/APKBUILD | 4 ++-- user/aspell-dict-ga/APKBUILD | 4 ++-- user/aspell-dict-gd/APKBUILD | 4 ++-- user/aspell-dict-gl/APKBUILD | 5 +++-- user/aspell-dict-grc/APKBUILD | 4 ++-- user/aspell-dict-gu/APKBUILD | 4 ++-- user/aspell-dict-gv/APKBUILD | 4 ++-- user/aspell-dict-he/APKBUILD | 4 ++-- user/aspell-dict-hi/APKBUILD | 4 ++-- user/aspell-dict-hil/APKBUILD | 4 ++-- user/aspell-dict-hr/APKBUILD | 4 ++-- user/aspell-dict-hsb/APKBUILD | 4 ++-- user/aspell-dict-hu/APKBUILD | 4 ++-- user/aspell-dict-hus/APKBUILD | 4 ++-- user/aspell-dict-hy/APKBUILD | 4 ++-- user/aspell-dict-ia/APKBUILD | 4 ++-- user/aspell-dict-id/APKBUILD | 4 ++-- user/aspell-dict-is/APKBUILD | 4 ++-- user/aspell-dict-it/APKBUILD | 5 +++-- user/aspell-dict-kn/APKBUILD | 4 ++-- user/aspell-dict-ku/APKBUILD | 4 ++-- user/aspell-dict-ky/APKBUILD | 4 ++-- user/aspell-dict-la/APKBUILD | 4 ++-- user/aspell-dict-lt/APKBUILD | 4 ++-- user/aspell-dict-lv/APKBUILD | 4 ++-- user/aspell-dict-mg/APKBUILD | 4 ++-- user/aspell-dict-mi/APKBUILD | 4 ++-- user/aspell-dict-mk/APKBUILD | 4 ++-- user/aspell-dict-ml/APKBUILD | 4 ++-- user/aspell-dict-mn/APKBUILD | 4 ++-- user/aspell-dict-mr/APKBUILD | 4 ++-- user/aspell-dict-ms/APKBUILD | 4 ++-- user/aspell-dict-mt/APKBUILD | 4 ++-- user/aspell-dict-nb/APKBUILD | 4 ++-- user/aspell-dict-nds/APKBUILD | 4 ++-- 58 files changed, 119 insertions(+), 116 deletions(-) diff --git a/user/aspell-dict-af/APKBUILD b/user/aspell-dict-af/APKBUILD index 78d3b2604..b06ffd33f 100644 --- a/user/aspell-dict-af/APKBUILD +++ b/user/aspell-dict-af/APKBUILD @@ -1,8 +1,8 @@ # Contributor: Kiyoshi Aman # Maintainer: Kiyoshi Aman pkgname=aspell-dict-af -pkgver=0.50 -_pkgver=$pkgver-0 +pkgver=0.50.0 +_pkgver=${pkgver%.*}-${pkgver#*.*.} pkgrel=0 pkgdesc="Afrikaans dictionaries for aspell" url="http://aspell.net" diff --git a/user/aspell-dict-am/APKBUILD b/user/aspell-dict-am/APKBUILD index 834003c56..a4be5ad68 100644 --- a/user/aspell-dict-am/APKBUILD +++ b/user/aspell-dict-am/APKBUILD @@ -1,8 +1,8 @@ # Contributor: Kiyoshi Aman # Maintainer: Kiyoshi Aman pkgname=aspell-dict-am -pkgver=0.03 -_pkgver=$pkgver-1 +pkgver=0.03.1 +_pkgver=${pkgver%.*}-${pkgver#*.*.} pkgrel=0 pkgdesc="Amharic dictionaries for aspell" url="http://aspell.net" diff --git a/user/aspell-dict-ar/APKBUILD b/user/aspell-dict-ar/APKBUILD index 80f018cc9..34ffabad4 100644 --- a/user/aspell-dict-ar/APKBUILD +++ b/user/aspell-dict-ar/APKBUILD @@ -1,8 +1,8 @@ # Contributor: Kiyoshi Aman # Maintainer: Kiyoshi Aman pkgname=aspell-dict-ar -pkgver=1.2 -_pkgver=$pkgver-0 +pkgver=1.2.0 +_pkgver=${pkgver%.*}-${pkgver#*.*.} pkgrel=0 pkgdesc="Arabic dictionaries for aspell" url="http://aspell.net" diff --git a/user/aspell-dict-az/APKBUILD b/user/aspell-dict-az/APKBUILD index 46710d12f..62cc4508d 100644 --- a/user/aspell-dict-az/APKBUILD +++ b/user/aspell-dict-az/APKBUILD @@ -1,8 +1,8 @@ # Contributor: Kiyoshi Aman # Maintainer: Kiyoshi Aman pkgname=aspell-dict-az -pkgver=0.02 -_pkgver=$pkgver-0 +pkgver=0.02.0 +_pkgver=${pkgver%.*}-${pkgver#*.*.} pkgrel=0 pkgdesc="Azerbaijani dictionaries for aspell" url="http://aspell.net" diff --git a/user/aspell-dict-bg/APKBUILD b/user/aspell-dict-bg/APKBUILD index 0d78d98af..3af15fa3a 100644 --- a/user/aspell-dict-bg/APKBUILD +++ b/user/aspell-dict-bg/APKBUILD @@ -1,8 +1,8 @@ # Contributor: Kiyoshi Aman # Maintainer: Kiyoshi Aman pkgname=aspell-dict-bg -pkgver=4.1 -_pkgver=$pkgver-0 +pkgver=4.1.0 +_pkgver=${pkgver%.*}-${pkgver#*.*.} pkgrel=0 pkgdesc="Bulgarian dictionaries for aspell" url="http://aspell.net" diff --git a/user/aspell-dict-bn/APKBUILD b/user/aspell-dict-bn/APKBUILD index 56be451fa..a2a9c9eac 100644 --- a/user/aspell-dict-bn/APKBUILD +++ b/user/aspell-dict-bn/APKBUILD @@ -1,8 +1,8 @@ # Contributor: Kiyoshi Aman # Maintainer: Kiyoshi Aman pkgname=aspell-dict-bn -pkgver=0.01.1 -_pkgver=$pkgver-1 +pkgver=0.01.1.1 +_pkgver=${pkgver%.*}-${pkgver#*.*.*.} pkgrel=0 pkgdesc="Bengali dictionaries for aspell" url="http://aspell.net" diff --git a/user/aspell-dict-br/APKBUILD b/user/aspell-dict-br/APKBUILD index 6cdf1eb77..60204987a 100644 --- a/user/aspell-dict-br/APKBUILD +++ b/user/aspell-dict-br/APKBUILD @@ -1,8 +1,8 @@ # Contributor: Kiyoshi Aman # Maintainer: Kiyoshi Aman pkgname=aspell-dict-br -pkgver=0.50 -_pkgver=$pkgver-2 +pkgver=0.50.2 +_pkgver=${pkgver%.*}-${pkgver#*.*.} pkgrel=0 pkgdesc="Breton dictionaries for aspell" url="http://aspell.net" diff --git a/user/aspell-dict-ca/APKBUILD b/user/aspell-dict-ca/APKBUILD index 54ab4cba2..9facc23cf 100644 --- a/user/aspell-dict-ca/APKBUILD +++ b/user/aspell-dict-ca/APKBUILD @@ -1,8 +1,8 @@ # Contributor: Kiyoshi Aman # Maintainer: Kiyoshi Aman pkgname=aspell-dict-ca -pkgver=2.1.5 -_pkgver=$pkgver-1 +pkgver=2.1.5.1 +_pkgver=${pkgver%.*}-${pkgver#*.*.*.} pkgrel=0 pkgdesc="Catalan dictionaries for aspell" url="http://aspell.net" diff --git a/user/aspell-dict-cs/APKBUILD b/user/aspell-dict-cs/APKBUILD index 7f1a05b25..768829bb9 100644 --- a/user/aspell-dict-cs/APKBUILD +++ b/user/aspell-dict-cs/APKBUILD @@ -1,8 +1,8 @@ # Contributor: Kiyoshi Aman # Maintainer: Kiyoshi Aman pkgname=aspell-dict-cs -pkgver=20040614 -_pkgver=$pkgver-1 +pkgver=20040614.1 +_pkgver=${pkgver%.*}-${pkgver#*.} pkgrel=0 pkgdesc="Czech dictionaries for aspell" url="http://aspell.net" diff --git a/user/aspell-dict-csb/APKBUILD b/user/aspell-dict-csb/APKBUILD index 3dbb2007b..c2ceff90b 100644 --- a/user/aspell-dict-csb/APKBUILD +++ b/user/aspell-dict-csb/APKBUILD @@ -1,8 +1,8 @@ # Contributor: Kiyoshi Aman # Maintainer: Kiyoshi Aman pkgname=aspell-dict-csb -pkgver=0.02 -_pkgver=$pkgver-0 +pkgver=0.02.0 +_pkgver=${pkgver%.*}-${pkgver#*.*.} pkgrel=0 pkgdesc="Kashubian dictionaries for aspell" url="http://aspell.net" diff --git a/user/aspell-dict-cy/APKBUILD b/user/aspell-dict-cy/APKBUILD index db7036833..4cdd1a287 100644 --- a/user/aspell-dict-cy/APKBUILD +++ b/user/aspell-dict-cy/APKBUILD @@ -1,8 +1,8 @@ # Contributor: Kiyoshi Aman # Maintainer: Kiyoshi Aman pkgname=aspell-dict-cy -pkgver=0.50 -_pkgver=$pkgver-3 +pkgver=0.50.3 +_pkgver=${pkgver%.*}-${pkgver#*.*.} pkgrel=0 pkgdesc="Welsh dictionaries for aspell" url="http://aspell.net" diff --git a/user/aspell-dict-da/APKBUILD b/user/aspell-dict-da/APKBUILD index 1b77cfa67..230fabcdd 100644 --- a/user/aspell-dict-da/APKBUILD +++ b/user/aspell-dict-da/APKBUILD @@ -1,8 +1,8 @@ # Contributor: Kiyoshi Aman # Maintainer: Kiyoshi Aman pkgname=aspell-dict-da -pkgver=1.4.42 -_pkgver=$pkgver-1 +pkgver=1.4.42.1 +_pkgver=${pkgver%.*}-${pkgver#*.*.*.} pkgrel=0 pkgdesc="Danish dictionaries for aspell" url="http://aspell.net" diff --git a/user/aspell-dict-de-alt/APKBUILD b/user/aspell-dict-de-alt/APKBUILD index 513ccfb9b..0d8effa19 100644 --- a/user/aspell-dict-de-alt/APKBUILD +++ b/user/aspell-dict-de-alt/APKBUILD @@ -1,8 +1,8 @@ # Contributor: Kiyoshi Aman # Maintainer: Kiyoshi Aman pkgname=aspell-dict-de-alt -pkgver=2.1 -_pkgver=$pkgver-1 +pkgver=2.1.1 +_pkgver=${pkgver%.*}-${pkgver#*.*.} pkgrel=0 pkgdesc="German (Old Spelling) dictionaries for aspell" url="http://aspell.net" diff --git a/user/aspell-dict-de/APKBUILD b/user/aspell-dict-de/APKBUILD index 4cb6979b4..90b8097a5 100644 --- a/user/aspell-dict-de/APKBUILD +++ b/user/aspell-dict-de/APKBUILD @@ -1,8 +1,8 @@ # Contributor: Kiyoshi Aman # Maintainer: Kiyoshi Aman pkgname=aspell-dict-de -pkgver=20030222 -_pkgver=$pkgver-1 +pkgver=20030222.1 +_pkgver=${pkgver%.*}-${pkgver#*.} pkgrel=0 pkgdesc="German dictionaries for aspell" url="http://aspell.net" diff --git a/user/aspell-dict-el/APKBUILD b/user/aspell-dict-el/APKBUILD index d7aeb646c..37149af35 100644 --- a/user/aspell-dict-el/APKBUILD +++ b/user/aspell-dict-el/APKBUILD @@ -1,8 +1,8 @@ # Contributor: Kiyoshi Aman # Maintainer: Kiyoshi Aman pkgname=aspell-dict-el -pkgver=0.08 -_pkgver=$pkgver-0 +pkgver=0.08.0 +_pkgver=${pkgver%.*}-${pkgver#*.*.} pkgrel=0 pkgdesc="Greek dictionaries for aspell" url="http://aspell.net" diff --git a/user/aspell-dict-en/APKBUILD b/user/aspell-dict-en/APKBUILD index 00eb10438..c3a848440 100644 --- a/user/aspell-dict-en/APKBUILD +++ b/user/aspell-dict-en/APKBUILD @@ -1,8 +1,8 @@ # Contributor: Kiyoshi Aman # Maintainer: Kiyoshi Aman pkgname=aspell-dict-en -pkgver=2018.04.16 -_pkgver=$pkgver-0 +pkgver=2018.04.16.0 +_pkgver=${pkgver%.*}-${pkgver#*.*.*.} pkgrel=0 pkgdesc="English dictionaries for aspell" url="http://aspell.net/" diff --git a/user/aspell-dict-eo/APKBUILD b/user/aspell-dict-eo/APKBUILD index 0d1d2487b..a03d2b2c8 100644 --- a/user/aspell-dict-eo/APKBUILD +++ b/user/aspell-dict-eo/APKBUILD @@ -1,8 +1,9 @@ # Contributor: Kiyoshi Aman # Maintainer: Kiyoshi Aman pkgname=aspell-dict-eo -pkgver=2.1.20000225a -_pkgver=$pkgver-2 +pkgver=2.1.20000225.a2 +_pkgver=${pkgver%.*}${pkgver#*.*.*.} +_pkgver=${_pkgver%[0-9]}-${pkgver#*.*.*.[a-z]} pkgrel=0 pkgdesc="Esperanto dictionaries for aspell" url="http://aspell.net" diff --git a/user/aspell-dict-es/APKBUILD b/user/aspell-dict-es/APKBUILD index cdb2a0084..9216f3bec 100644 --- a/user/aspell-dict-es/APKBUILD +++ b/user/aspell-dict-es/APKBUILD @@ -1,8 +1,8 @@ # Contributor: Kiyoshi Aman # Maintainer: Kiyoshi Aman pkgname=aspell-dict-es -pkgver=1.11 -_pkgver=$pkgver-2 +pkgver=1.11.2 +_pkgver=${pkgver%.*}-${pkgver#*.*.} pkgrel=0 pkgdesc="Spanish dictionaries for aspell" url="http://aspell.net" diff --git a/user/aspell-dict-et/APKBUILD b/user/aspell-dict-et/APKBUILD index 3a6bc4e47..d352e745e 100644 --- a/user/aspell-dict-et/APKBUILD +++ b/user/aspell-dict-et/APKBUILD @@ -1,8 +1,8 @@ # Contributor: Kiyoshi Aman # Maintainer: Kiyoshi Aman pkgname=aspell-dict-et -pkgver=0.1.21 -_pkgver=$pkgver-1 +pkgver=0.1.21.1 +_pkgver=${pkgver%.*}-${pkgver#*.*.*.} pkgrel=0 pkgdesc="Estonian dictionaries for aspell" url="http://aspell.net" diff --git a/user/aspell-dict-fa/APKBUILD b/user/aspell-dict-fa/APKBUILD index 630c84e8f..d08a32657 100644 --- a/user/aspell-dict-fa/APKBUILD +++ b/user/aspell-dict-fa/APKBUILD @@ -1,8 +1,8 @@ # Contributor: Kiyoshi Aman # Maintainer: Kiyoshi Aman pkgname=aspell-dict-fa -pkgver=0.11 -_pkgver=$pkgver-0 +pkgver=0.11.0 +_pkgver=${pkgver%.*}-${pkgver#*.*.} pkgrel=0 pkgdesc="Persian dictionaries for aspell" url="http://aspell.net" diff --git a/user/aspell-dict-fi/APKBUILD b/user/aspell-dict-fi/APKBUILD index 9db69362b..6a4666ded 100644 --- a/user/aspell-dict-fi/APKBUILD +++ b/user/aspell-dict-fi/APKBUILD @@ -1,8 +1,8 @@ # Contributor: Kiyoshi Aman # Maintainer: Kiyoshi Aman pkgname=aspell-dict-fi -pkgver=0.7 -_pkgver=$pkgver-0 +pkgver=0.7.0 +_pkgver=${pkgver%.*}-${pkgver#*.*.} pkgrel=0 pkgdesc="Finnish dictionaries for aspell" url="http://aspell.net" diff --git a/user/aspell-dict-fo/APKBUILD b/user/aspell-dict-fo/APKBUILD index 0408f8b13..eef2193a8 100644 --- a/user/aspell-dict-fo/APKBUILD +++ b/user/aspell-dict-fo/APKBUILD @@ -1,8 +1,8 @@ # Contributor: Kiyoshi Aman # Maintainer: Kiyoshi Aman pkgname=aspell-dict-fo -pkgver=0.2.16 -_pkgver=$pkgver-1 +pkgver=0.2.16.1 +_pkgver=${pkgver%.*}-${pkgver#*.*.*.} pkgrel=0 pkgdesc="Faroese dictionaries for aspell" url="http://aspell.net" diff --git a/user/aspell-dict-fr/APKBUILD b/user/aspell-dict-fr/APKBUILD index 118cff501..0685c068f 100644 --- a/user/aspell-dict-fr/APKBUILD +++ b/user/aspell-dict-fr/APKBUILD @@ -1,8 +1,8 @@ # Contributor: Kiyoshi Aman # Maintainer: Kiyoshi Aman pkgname=aspell-dict-fr -pkgver=0.50 -_pkgver=$pkgver-3 +pkgver=0.50.3 +_pkgver=${pkgver%.*}-${pkgver#*.*.} pkgrel=0 pkgdesc="French dictionaries for aspell" url="http://aspell.net" diff --git a/user/aspell-dict-fy/APKBUILD b/user/aspell-dict-fy/APKBUILD index abe6e83dc..6eee693fe 100644 --- a/user/aspell-dict-fy/APKBUILD +++ b/user/aspell-dict-fy/APKBUILD @@ -1,8 +1,8 @@ # Contributor: Kiyoshi Aman # Maintainer: Kiyoshi Aman pkgname=aspell-dict-fy -pkgver=0.12 -_pkgver=$pkgver-0 +pkgver=0.12.0 +_pkgver=${pkgver%.*}-${pkgver#*.*.} pkgrel=0 pkgdesc="Frisian dictionaries for aspell" url="http://aspell.net" diff --git a/user/aspell-dict-ga/APKBUILD b/user/aspell-dict-ga/APKBUILD index 8cd90e399..d845f8f46 100644 --- a/user/aspell-dict-ga/APKBUILD +++ b/user/aspell-dict-ga/APKBUILD @@ -1,8 +1,8 @@ # Contributor: Kiyoshi Aman # Maintainer: Kiyoshi Aman pkgname=aspell-dict-ga -pkgver=4.5 -_pkgver=$pkgver-0 +pkgver=4.5.0 +_pkgver=${pkgver%.*}-${pkgver#*.*.} pkgrel=0 pkgdesc="Irish dictionaries for aspell" url="http://aspell.net" diff --git a/user/aspell-dict-gd/APKBUILD b/user/aspell-dict-gd/APKBUILD index 24a4d9ed2..fa14b77b8 100644 --- a/user/aspell-dict-gd/APKBUILD +++ b/user/aspell-dict-gd/APKBUILD @@ -1,8 +1,8 @@ # Contributor: Kiyoshi Aman # Maintainer: Kiyoshi Aman pkgname=aspell-dict-gd -pkgver=0.1.1 -_pkgver=$pkgver-1 +pkgver=0.1.1.1 +_pkgver=${pkgver%.*}-${pkgver#*.*.*.} pkgrel=0 pkgdesc="Scottish Gaelic dictionaries for aspell" url="http://aspell.net" diff --git a/user/aspell-dict-gl/APKBUILD b/user/aspell-dict-gl/APKBUILD index b909ff87c..e586b4682 100644 --- a/user/aspell-dict-gl/APKBUILD +++ b/user/aspell-dict-gl/APKBUILD @@ -1,8 +1,9 @@ # Contributor: Kiyoshi Aman # Maintainer: Kiyoshi Aman pkgname=aspell-dict-gl -pkgver=0.5a -_pkgver=$pkgver-2 +pkgver=0.5.a2 +_pkgver=${pkgver%.*}${pkgver#*.*.} +_pkgver=${_pkgver%[0-9]}-${pkgver#*.*.[a-z]} pkgrel=0 pkgdesc="Galician dictionaries for aspell" url="http://aspell.net" diff --git a/user/aspell-dict-grc/APKBUILD b/user/aspell-dict-grc/APKBUILD index 2d30a6403..39bd4b1b8 100644 --- a/user/aspell-dict-grc/APKBUILD +++ b/user/aspell-dict-grc/APKBUILD @@ -1,8 +1,8 @@ # Contributor: Kiyoshi Aman # Maintainer: Kiyoshi Aman pkgname=aspell-dict-grc -pkgver=0.02 -_pkgver=$pkgver-0 +pkgver=0.02.0 +_pkgver=${pkgver%.*}-${pkgver#*.*.} pkgrel=0 pkgdesc="Ancient Greek dictionaries for aspell" url="http://aspell.net" diff --git a/user/aspell-dict-gu/APKBUILD b/user/aspell-dict-gu/APKBUILD index 600c9f556..04fac1de1 100644 --- a/user/aspell-dict-gu/APKBUILD +++ b/user/aspell-dict-gu/APKBUILD @@ -1,8 +1,8 @@ # Contributor: Kiyoshi Aman # Maintainer: Kiyoshi Aman pkgname=aspell-dict-gu -pkgver=0.03 -_pkgver=$pkgver-0 +pkgver=0.03.0 +_pkgver=${pkgver%.*}-${pkgver#*.*.} pkgrel=0 pkgdesc="Gujarati dictionaries for aspell" url="http://aspell.net" diff --git a/user/aspell-dict-gv/APKBUILD b/user/aspell-dict-gv/APKBUILD index 02665ce62..a2aa1779e 100644 --- a/user/aspell-dict-gv/APKBUILD +++ b/user/aspell-dict-gv/APKBUILD @@ -1,8 +1,8 @@ # Contributor: Kiyoshi Aman # Maintainer: Kiyoshi Aman pkgname=aspell-dict-gv -pkgver=0.50 -_pkgver=$pkgver-0 +pkgver=0.50.0 +_pkgver=${pkgver%.*}-${pkgver#*.*.} pkgrel=0 pkgdesc="Manx Gaelic dictionaries for aspell" url="http://aspell.net" diff --git a/user/aspell-dict-he/APKBUILD b/user/aspell-dict-he/APKBUILD index 5dd974ee9..99166d52a 100644 --- a/user/aspell-dict-he/APKBUILD +++ b/user/aspell-dict-he/APKBUILD @@ -1,8 +1,8 @@ # Contributor: Kiyoshi Aman # Maintainer: Kiyoshi Aman pkgname=aspell-dict-he -pkgver=1.0 -_pkgver=$pkgver-0 +pkgver=1.0.0 +_pkgver=${pkgver%.*}-${pkgver#*.*.} pkgrel=0 pkgdesc="Hebrew dictionaries for aspell" url="http://aspell.net" diff --git a/user/aspell-dict-hi/APKBUILD b/user/aspell-dict-hi/APKBUILD index e5b1b860c..26223d8df 100644 --- a/user/aspell-dict-hi/APKBUILD +++ b/user/aspell-dict-hi/APKBUILD @@ -1,8 +1,8 @@ # Contributor: Kiyoshi Aman # Maintainer: Kiyoshi Aman pkgname=aspell-dict-hi -pkgver=0.02 -_pkgver=$pkgver-0 +pkgver=0.02.0 +_pkgver=${pkgver%.*}-${pkgver#*.*.} pkgrel=0 pkgdesc="Hindi dictionaries for aspell" url="http://aspell.net" diff --git a/user/aspell-dict-hil/APKBUILD b/user/aspell-dict-hil/APKBUILD index c5ebd6aa8..bc4d3af07 100644 --- a/user/aspell-dict-hil/APKBUILD +++ b/user/aspell-dict-hil/APKBUILD @@ -1,8 +1,8 @@ # Contributor: Kiyoshi Aman # Maintainer: Kiyoshi Aman pkgname=aspell-dict-hil -pkgver=0.11 -_pkgver=$pkgver-0 +pkgver=0.11.0 +_pkgver=${pkgver%.*}-${pkgver#*.*.} pkgrel=0 pkgdesc="Hiligaynon dictionaries for aspell" url="http://aspell.net" diff --git a/user/aspell-dict-hr/APKBUILD b/user/aspell-dict-hr/APKBUILD index f0af841aa..917f599cb 100644 --- a/user/aspell-dict-hr/APKBUILD +++ b/user/aspell-dict-hr/APKBUILD @@ -1,8 +1,8 @@ # Contributor: Kiyoshi Aman # Maintainer: Kiyoshi Aman pkgname=aspell-dict-hr -pkgver=0.51 -_pkgver=$pkgver-0 +pkgver=0.51.0 +_pkgver=${pkgver%.*}-${pkgver#*.*.} pkgrel=0 pkgdesc="Croatian dictionaries for aspell" url="http://aspell.net" diff --git a/user/aspell-dict-hsb/APKBUILD b/user/aspell-dict-hsb/APKBUILD index f1130074b..95fc32a90 100644 --- a/user/aspell-dict-hsb/APKBUILD +++ b/user/aspell-dict-hsb/APKBUILD @@ -1,8 +1,8 @@ # Contributor: Kiyoshi Aman # Maintainer: Kiyoshi Aman pkgname=aspell-dict-hsb -pkgver=0.02 -_pkgver=$pkgver-0 +pkgver=0.02.0 +_pkgver=${pkgver%.*}-${pkgver#*.*.} pkgrel=0 pkgdesc="Upper Sorbian dictionaries for aspell" url="http://aspell.net" diff --git a/user/aspell-dict-hu/APKBUILD b/user/aspell-dict-hu/APKBUILD index dc2e3ace2..690fa6841 100644 --- a/user/aspell-dict-hu/APKBUILD +++ b/user/aspell-dict-hu/APKBUILD @@ -1,8 +1,8 @@ # Contributor: Kiyoshi Aman # Maintainer: Kiyoshi Aman pkgname=aspell-dict-hu -pkgver=0.99.4.2 -_pkgver=$pkgver-0 +pkgver=0.99.4.2.0 +_pkgver=${pkgver%.*}-${pkgver#*.*.*.*.} pkgrel=0 pkgdesc="Hungarian dictionaries for aspell" url="http://aspell.net" diff --git a/user/aspell-dict-hus/APKBUILD b/user/aspell-dict-hus/APKBUILD index 1412d578b..892165847 100644 --- a/user/aspell-dict-hus/APKBUILD +++ b/user/aspell-dict-hus/APKBUILD @@ -1,8 +1,8 @@ # Contributor: Kiyoshi Aman # Maintainer: Kiyoshi Aman pkgname=aspell-dict-hus -pkgver=0.03 -_pkgver=$pkgver-1 +pkgver=0.03.1 +_pkgver=${pkgver%.*}-${pkgver#*.*.} pkgrel=0 pkgdesc="Huastec Tenek dictionaries for aspell" url="http://aspell.net" diff --git a/user/aspell-dict-hy/APKBUILD b/user/aspell-dict-hy/APKBUILD index 64e637d1c..6cd26a147 100644 --- a/user/aspell-dict-hy/APKBUILD +++ b/user/aspell-dict-hy/APKBUILD @@ -1,8 +1,8 @@ # Contributor: Kiyoshi Aman # Maintainer: Kiyoshi Aman pkgname=aspell-dict-hy -pkgver=0.10.0 -_pkgver=$pkgver-0 +pkgver=0.10.0.0 +_pkgver=${pkgver%.*}-${pkgver#*.*.*.} pkgrel=0 pkgdesc="Armenian dictionaries for aspell" url="http://aspell.net" diff --git a/user/aspell-dict-ia/APKBUILD b/user/aspell-dict-ia/APKBUILD index 6ec8ab4bf..722c08f15 100644 --- a/user/aspell-dict-ia/APKBUILD +++ b/user/aspell-dict-ia/APKBUILD @@ -1,8 +1,8 @@ # Contributor: Kiyoshi Aman # Maintainer: Kiyoshi Aman pkgname=aspell-dict-ia -pkgver=0.50 -_pkgver=$pkgver-1 +pkgver=0.50.1 +_pkgver=${pkgver%.*}-${pkgver#*.*.} pkgrel=0 pkgdesc="Interlingua dictionaries for aspell" url="http://aspell.net" diff --git a/user/aspell-dict-id/APKBUILD b/user/aspell-dict-id/APKBUILD index 495283af4..cda3e6217 100644 --- a/user/aspell-dict-id/APKBUILD +++ b/user/aspell-dict-id/APKBUILD @@ -1,8 +1,8 @@ # Contributor: Kiyoshi Aman # Maintainer: Kiyoshi Aman pkgname=aspell-dict-id -pkgver=1.2 -_pkgver=$pkgver-0 +pkgver=1.2.0 +_pkgver=${pkgver%.*}-${pkgver#*.*.} pkgrel=0 pkgdesc="Indonesian dictionaries for aspell" url="http://aspell.net" diff --git a/user/aspell-dict-is/APKBUILD b/user/aspell-dict-is/APKBUILD index e10e36ed1..1bdaab2f5 100644 --- a/user/aspell-dict-is/APKBUILD +++ b/user/aspell-dict-is/APKBUILD @@ -1,8 +1,8 @@ # Contributor: Kiyoshi Aman # Maintainer: Kiyoshi Aman pkgname=aspell-dict-is -pkgver=0.51.1 -_pkgver=$pkgver-0 +pkgver=0.51.1.0 +_pkgver=${pkgver%.*}-${pkgver#*.*.*.} pkgrel=0 pkgdesc="Icelandic dictionaries for aspell" url="http://aspell.net" diff --git a/user/aspell-dict-it/APKBUILD b/user/aspell-dict-it/APKBUILD index e9edbe9b0..8657914d9 100644 --- a/user/aspell-dict-it/APKBUILD +++ b/user/aspell-dict-it/APKBUILD @@ -1,8 +1,9 @@ # Contributor: Kiyoshi Aman # Maintainer: Kiyoshi Aman pkgname=aspell-dict-it -pkgver=2.2.20050523 -_pkgver=${pkgver%.*}_${pkgver#*.*.}-0 +pkgver=2.2.20050523.0 +_pkgver=${pkgver%.*.*}_${pkgver#*.*.} +_pkgver=${_pkgver%.*}-${_pkgver#*.*_*.} pkgrel=0 pkgdesc="Italian dictionaries for aspell" url="http://aspell.net" diff --git a/user/aspell-dict-kn/APKBUILD b/user/aspell-dict-kn/APKBUILD index e005594cc..560e222c3 100644 --- a/user/aspell-dict-kn/APKBUILD +++ b/user/aspell-dict-kn/APKBUILD @@ -1,8 +1,8 @@ # Contributor: Kiyoshi Aman # Maintainer: Kiyoshi Aman pkgname=aspell-dict-kn -pkgver=0.01 -_pkgver=$pkgver-1 +pkgver=0.01.1 +_pkgver=${pkgver%.*}-${pkgver#*.*.} pkgrel=0 pkgdesc="Kannada dictionaries for aspell" url="http://aspell.net" diff --git a/user/aspell-dict-ku/APKBUILD b/user/aspell-dict-ku/APKBUILD index 13b344fbf..5770b2ebb 100644 --- a/user/aspell-dict-ku/APKBUILD +++ b/user/aspell-dict-ku/APKBUILD @@ -1,8 +1,8 @@ # Contributor: Kiyoshi Aman # Maintainer: Kiyoshi Aman pkgname=aspell-dict-ku -pkgver=0.20 -_pkgver=$pkgver-1 +pkgver=0.20.1 +_pkgver=${pkgver%.*}-${pkgver#*.*.} pkgrel=0 pkgdesc="Kurdi dictionaries for aspell" url="http://aspell.net" diff --git a/user/aspell-dict-ky/APKBUILD b/user/aspell-dict-ky/APKBUILD index eb2ddad5d..86cb8c757 100644 --- a/user/aspell-dict-ky/APKBUILD +++ b/user/aspell-dict-ky/APKBUILD @@ -1,8 +1,8 @@ # Contributor: Kiyoshi Aman # Maintainer: Kiyoshi Aman pkgname=aspell-dict-ky -pkgver=0.01 -_pkgver=$pkgver-0 +pkgver=0.01.0 +_pkgver=${pkgver%.*}-${pkgver#*.*.} pkgrel=0 pkgdesc="Kirghiz dictionaries for aspell" url="http://aspell.net" diff --git a/user/aspell-dict-la/APKBUILD b/user/aspell-dict-la/APKBUILD index f2172f219..b2d3473b0 100644 --- a/user/aspell-dict-la/APKBUILD +++ b/user/aspell-dict-la/APKBUILD @@ -1,8 +1,8 @@ # Contributor: Kiyoshi Aman # Maintainer: Kiyoshi Aman pkgname=aspell-dict-la -pkgver=20020503 -_pkgver=$pkgver-0 +pkgver=20020503.0 +_pkgver=${pkgver%.*}-${pkgver#*.} pkgrel=0 pkgdesc="Latin dictionaries for aspell" url="http://aspell.net" diff --git a/user/aspell-dict-lt/APKBUILD b/user/aspell-dict-lt/APKBUILD index 938f8d707..256ba69e1 100644 --- a/user/aspell-dict-lt/APKBUILD +++ b/user/aspell-dict-lt/APKBUILD @@ -1,8 +1,8 @@ # Contributor: Kiyoshi Aman # Maintainer: Kiyoshi Aman pkgname=aspell-dict-lt -pkgver=1.2.1 -_pkgver=$pkgver-0 +pkgver=1.2.1.0 +_pkgver=${pkgver%.*}-${pkgver#*.*.*.} pkgrel=0 pkgdesc="Lithuanian dictionaries for aspell" url="http://aspell.net" diff --git a/user/aspell-dict-lv/APKBUILD b/user/aspell-dict-lv/APKBUILD index 4c7f6b872..bd102c589 100644 --- a/user/aspell-dict-lv/APKBUILD +++ b/user/aspell-dict-lv/APKBUILD @@ -1,8 +1,8 @@ # Contributor: Kiyoshi Aman # Maintainer: Kiyoshi Aman pkgname=aspell-dict-lv -pkgver=0.5.5 -_pkgver=$pkgver-1 +pkgver=0.5.5.1 +_pkgver=${pkgver%.*}-${pkgver#*.*.*.} pkgrel=0 pkgdesc="Latvian dictionaries for aspell" url="http://aspell.net" diff --git a/user/aspell-dict-mg/APKBUILD b/user/aspell-dict-mg/APKBUILD index 6bd0c3459..0a1963250 100644 --- a/user/aspell-dict-mg/APKBUILD +++ b/user/aspell-dict-mg/APKBUILD @@ -1,8 +1,8 @@ # Contributor: Kiyoshi Aman # Maintainer: Kiyoshi Aman pkgname=aspell-dict-mg -pkgver=0.03 -_pkgver=$pkgver-0 +pkgver=0.03.0 +_pkgver=${pkgver%.*}-${pkgver#*.*.} pkgrel=0 pkgdesc="Malagasy dictionaries for aspell" url="http://aspell.net" diff --git a/user/aspell-dict-mi/APKBUILD b/user/aspell-dict-mi/APKBUILD index 12d8366cc..dbcd853e0 100644 --- a/user/aspell-dict-mi/APKBUILD +++ b/user/aspell-dict-mi/APKBUILD @@ -1,8 +1,8 @@ # Contributor: Kiyoshi Aman # Maintainer: Kiyoshi Aman pkgname=aspell-dict-mi -pkgver=0.50 -_pkgver=$pkgver-0 +pkgver=0.50.0 +_pkgver=${pkgver%.*}-${pkgver#*.*.} pkgrel=0 pkgdesc="Maori dictionaries for aspell" url="http://aspell.net" diff --git a/user/aspell-dict-mk/APKBUILD b/user/aspell-dict-mk/APKBUILD index 72eb946f8..f620067e3 100644 --- a/user/aspell-dict-mk/APKBUILD +++ b/user/aspell-dict-mk/APKBUILD @@ -1,8 +1,8 @@ # Contributor: Kiyoshi Aman # Maintainer: Kiyoshi Aman pkgname=aspell-dict-mk -pkgver=0.50 -_pkgver=$pkgver-0 +pkgver=0.50.0 +_pkgver=${pkgver%.*}-${pkgver#*.*.} pkgrel=0 pkgdesc="Macedonian dictionaries for aspell" url="http://aspell.net" diff --git a/user/aspell-dict-ml/APKBUILD b/user/aspell-dict-ml/APKBUILD index 95d337d8c..074c106af 100644 --- a/user/aspell-dict-ml/APKBUILD +++ b/user/aspell-dict-ml/APKBUILD @@ -1,8 +1,8 @@ # Contributor: Kiyoshi Aman # Maintainer: Kiyoshi Aman pkgname=aspell-dict-ml -pkgver=0.03 -_pkgver=$pkgver-1 +pkgver=0.03.1 +_pkgver=${pkgver%.*}-${pkgver#*.*.} pkgrel=0 pkgdesc="Malayalam dictionaries for aspell" url="http://aspell.net" diff --git a/user/aspell-dict-mn/APKBUILD b/user/aspell-dict-mn/APKBUILD index 7876ae110..cbaad148f 100644 --- a/user/aspell-dict-mn/APKBUILD +++ b/user/aspell-dict-mn/APKBUILD @@ -1,8 +1,8 @@ # Contributor: Kiyoshi Aman # Maintainer: Kiyoshi Aman pkgname=aspell-dict-mn -pkgver=0.06 -_pkgver=$pkgver-2 +pkgver=0.06.2 +_pkgver=${pkgver%.*}-${pkgver#*.*.} pkgrel=0 pkgdesc="Mongolian dictionaries for aspell" url="http://aspell.net" diff --git a/user/aspell-dict-mr/APKBUILD b/user/aspell-dict-mr/APKBUILD index cdcb23249..029d4001a 100644 --- a/user/aspell-dict-mr/APKBUILD +++ b/user/aspell-dict-mr/APKBUILD @@ -1,8 +1,8 @@ # Contributor: Kiyoshi Aman # Maintainer: Kiyoshi Aman pkgname=aspell-dict-mr -pkgver=0.10 -_pkgver=$pkgver-0 +pkgver=0.10.0 +_pkgver=${pkgver%.*}-${pkgver#*.*.} pkgrel=0 pkgdesc="Marathi dictionaries for aspell" url="http://aspell.net" diff --git a/user/aspell-dict-ms/APKBUILD b/user/aspell-dict-ms/APKBUILD index b5ea67914..a8187eb00 100644 --- a/user/aspell-dict-ms/APKBUILD +++ b/user/aspell-dict-ms/APKBUILD @@ -1,8 +1,8 @@ # Contributor: Kiyoshi Aman # Maintainer: Kiyoshi Aman pkgname=aspell-dict-ms -pkgver=0.50 -_pkgver=$pkgver-0 +pkgver=0.50.0 +_pkgver=${pkgver%.*}-${pkgver#*.*.} pkgrel=0 pkgdesc="Malay dictionaries for aspell" url="http://aspell.net" diff --git a/user/aspell-dict-mt/APKBUILD b/user/aspell-dict-mt/APKBUILD index 2dfee313a..e7c3cef1c 100644 --- a/user/aspell-dict-mt/APKBUILD +++ b/user/aspell-dict-mt/APKBUILD @@ -1,8 +1,8 @@ # Contributor: Kiyoshi Aman # Maintainer: Kiyoshi Aman pkgname=aspell-dict-mt -pkgver=0.50 -_pkgver=$pkgver-0 +pkgver=0.50.0 +_pkgver=${pkgver%.*}-${pkgver#*.*.} pkgrel=0 pkgdesc="Maltese dictionaries for aspell" url="http://aspell.net" diff --git a/user/aspell-dict-nb/APKBUILD b/user/aspell-dict-nb/APKBUILD index 118bb8c45..7dd694e35 100644 --- a/user/aspell-dict-nb/APKBUILD +++ b/user/aspell-dict-nb/APKBUILD @@ -1,8 +1,8 @@ # Contributor: Kiyoshi Aman # Maintainer: Kiyoshi Aman pkgname=aspell-dict-nb -pkgver=0.50.1 -_pkgver=$pkgver-0 +pkgver=0.50.1.0 +_pkgver=${pkgver%.*}-${pkgver#*.*.*.} pkgrel=0 pkgdesc="Norwegian (Bokmal) dictionaries for aspell" url="http://aspell.net" diff --git a/user/aspell-dict-nds/APKBUILD b/user/aspell-dict-nds/APKBUILD index d6563b3aa..688ce1c4e 100644 --- a/user/aspell-dict-nds/APKBUILD +++ b/user/aspell-dict-nds/APKBUILD @@ -1,8 +1,8 @@ # Contributor: Kiyoshi Aman # Maintainer: Kiyoshi Aman pkgname=aspell-dict-nds -pkgver=0.01 -_pkgver=$pkgver-0 +pkgver=0.01.0 +_pkgver=${pkgver%.*}-${pkgver#*.*.} pkgrel=0 pkgdesc="Low Saxon dictionaries for aspell" url="http://aspell.net" -- cgit v1.2.3-70-g09d2