[arch-commits] Commit in hunspell-es/repos/extra-any (PKGBUILD PKGBUILD)
Date: Wednesday, June 24, 2020 @ 20:05:02 Author: arojas Revision: 390414 archrelease: copy trunk to extra-any Added: hunspell-es/repos/extra-any/PKGBUILD (from rev 390413, hunspell-es/trunk/PKGBUILD) Deleted: hunspell-es/repos/extra-any/PKGBUILD --+ PKGBUILD | 340 ++--- 1 file changed, 170 insertions(+), 170 deletions(-) Deleted: PKGBUILD === --- PKGBUILD2020-06-24 20:04:47 UTC (rev 390413) +++ PKGBUILD2020-06-24 20:05:02 UTC (rev 390414) @@ -1,170 +0,0 @@ -# Maintainer: Angel Velasquez -# Maintainer: AndyRTR - -pkgbase=hunspell-es -pkgname=(hunspell-es_any hyphen-es mythes-es) -pkgver=2.5 -pkgrel=3 -epoch=1 -arch=(any) -url="https://github.com/sbosio/rla-es"; -license=(LGPL3) -makedepends=(qt5-webengine) -_countries=( - 'AR "Argentina"' - 'BO "Bolivia"' - 'CL "Chile"' - 'CO "Colombia"' - 'CR "Costa Rica"' - 'CU "Cuba"' - 'DO "Dominican Republic"' - 'EC "Ecuador"' - 'ES "Spain"' - 'GT "Guatemala"' - 'HN "Honduras"' - 'MX "Mexico"' - 'NI "Nicaragua"' - 'PA "Panama"' - 'PE "Peru"' - 'PR "Puerto Rico"' - 'PY "Paraguay"' - 'SV "El Salvador"' - 'UY "Uruguay"' - 'VE "Venezuela"' -) - -source=(https://github.com/sbosio/rla-es/releases/download/v$pkgver/es_ANY.oxt) -noextract=(es_ANY.oxt) - -for _co in "${_countries[@]}"; do - _code=${_co%% *} - noextract+=(es_$_code.oxt) - source+=("https://github.com/sbosio/rla-es/releases/download/v$pkgver/es_$_code.oxt";) - _pkgname=hunspell-es_${_code,,} - pkgname+=($_pkgname) - eval "package_$_pkgname() { -_package $_co - }" -done - -sha256sums=('55a7be2423dc106557fa762c8f921c89071ff7cc8a54019af8cafc3c833e3571' -'03c2d2123d8878e320a2b00ed6d774deab1b4130a93ff441718771d2f974f01c' -'25571eb8f612f46e33434de1f51e5ab9a7ff682070fc743c30bcb024a16b5075' -'d920be97cf2461c8af4dac3a73f1b7c3ea6e224bae9f3f6b3742fb55c35f2343' -'77727e25209fea5924dadebc6cab9073bf0b14cc1c1610eec80afc4fc519ece6' -'01de57648f1574bdb4ba202b0ab299d888af6c1f3f5e921f7db2a3ccdf63ec4e' -'2a641171114843347bea0dc21acab47a96306b93fc1a5e3f6ef6716d364ea93a' -'0029d089a530eb7b8611957a731ef25bd8d5b4399a161e3f0c604b5beeaf2bc6' -'2ba3219bd4ad5f57e40831e44fbdcc95a8a5237864189505e8d681fb300fc990' -'22a3b973f1667ddfd2d5c130623a16e22f9722a27437ba66d1de4fe569d32d0f' -'986331bc087ba745a106863dae80f1c9cc1c9ebd6eff39f54da8d5eda572742a' -'baa77e8afbe5a020040ddb110349e5d1b3e2175b6b83c5cd2592e68a0f865ccd' -'ca0283a44e91a727a1eed8d423e078d9214e84861f00681e40f22ac94c6fb1da' -'79a203a285329f11507e1f721f1f47c354f04bae6a8b344b2f072f3684ffc9a2' -'28c1de0c6fa068fba45805f79b9eb9390f5e6438bff9e78dea96d56c61ce93f7' -'3fe0b1e8818a984b23cce5d75f0e08e457bcddbf399500b5193c17d922fb8566' -'20615ff4b5245cf91541f928f328d0e87a6d888fe2262aeaf0c8572835b94edd' -'804adfaa115423cab482baa0fc1966fd1f7417d7c8cd0caeb55ea8d498fd4428' -'ce1b8a025df061fd91502b0cd4a76e3ba94da3d5b8ecf3c3162cdb4ee15a4490' -'3eaeba94eedf5b37ab2b2362282c6e78a40b640043d7429dea824e2642c7cbbe' -'cb2e2e43e9f3f1ed7b10967a5e44d3883c3e0bb4385ec04355d1cd56a628d92d') - -_package() { - pkgdesc="Spanish ($2) hunspell dictionary" - depends=(hunspell) - conflicts=(hunspell-es) - - LANG=en_US.utf8 bsdtar -xf es_$1.oxt - - install -dm755 "$pkgdir"/usr/share/hunspell - install -Dm644 es_$1.dic es_$1.aff "$pkgdir/usr/share/hunspell" - - install -d "$pkgdir"/usr/share/myspell/dicts - pushd "$pkgdir/usr/share/myspell/dicts" -for _file in "$pkgdir"/usr/share/hunspell/*; do - ln -sv /usr/share/hunspell/$(basename $_file) . -done - popd - -# Install webengine dictionaries - install -d "$pkgdir"/usr/share/qt/qtwebengine_dictionaries/ - for _file in "$pkgdir"/usr/share/hunspell/*.dic; do -_filename=$(basename $_file) -qwebengine_convert_dict $_file "$pkgdir"/usr/share/qt/qtwebengine_dictionaries/${_filename/\.dic/\.bdic} - done - - install -Dm644 README.txt -t "$pkgdir/usr/share/doc/$pkgname" -} - -package_hunspell-es_any() { - pkgdesc="Spanish (generic) hunspell dictionary" - depends=(hunspell) - conflicts=(hunspell-es) - replaces=(hunspell-es) - - LANG=en_US.utf8 bsdtar -xf es_ANY.oxt - - install -Dm644 es_ANY.dic es_ANY.aff -t "$pkgdir"/usr/share/hunspell - - install -d "${pkgdir}/usr/share/myspell/dicts" - pushd "$pkgdir/usr/share/myspell/dicts" -for file in "$pkgdir"/usr/share/hunspell/*; do - ln -sv /usr/share/hunspell/$(basename $file) . -done - popd - -# Install webengine dictionaries - install -d "$pkgdir"/usr/share/qt/qtwebengine_dictionaries/ - for _file in "$pkgdir"/usr/share/hunspell/*.dic; do - _filename=$(basename $_file) -qwebengine_convert_dict $_file "$pkgdir"/usr/share/qt/qtwebengine_dictionaries/${_fi
[arch-commits] Commit in hunspell-es/repos/extra-any (PKGBUILD PKGBUILD)
Date: Monday, September 30, 2019 @ 19:26:16 Author: arojas Revision: 363585 archrelease: copy trunk to extra-any Added: hunspell-es/repos/extra-any/PKGBUILD (from rev 363584, hunspell-es/trunk/PKGBUILD) Deleted: hunspell-es/repos/extra-any/PKGBUILD --+ PKGBUILD | 340 ++--- 1 file changed, 170 insertions(+), 170 deletions(-) Deleted: PKGBUILD === --- PKGBUILD2019-09-30 19:25:45 UTC (rev 363584) +++ PKGBUILD2019-09-30 19:26:16 UTC (rev 363585) @@ -1,170 +0,0 @@ -# Maintainer: Angel Velasquez -# Maintainer: AndyRTR - -pkgbase=hunspell-es -pkgname=(hunspell-es_any hyphen-es mythes-es) -pkgver=2.4 -pkgrel=2 -epoch=1 -arch=(any) -url="https://github.com/sbosio/rla-es"; -license=(LGPL3) -makedepends=(qt5-webengine) -_countries=( - 'AR "Argentina"' - 'BO "Bolivia"' - 'CL "Chile"' - 'CO "Colombia"' - 'CR "Costa Rica"' - 'CU "Cuba"' - 'DO "Dominican Republic"' - 'EC "Ecuador"' - 'ES "Spain"' - 'GT "Guatemala"' - 'HN "Honduras"' - 'MX "Mexico"' - 'NI "Nicaragua"' - 'PA "Paraguay"' - 'PE "Peru"' - 'PR "Puerto Rico"' - 'PY "Paraguay"' - 'SV "El Salvador"' - 'UY "Uruguay"' - 'VE "Venezuela"' -) - -source=(https://github.com/sbosio/rla-es/releases/download/v$pkgver/es_ANY.oxt) -noextract=(es_ANY.oxt) - -for _co in "${_countries[@]}"; do - _code=${_co%% *} - noextract+=(es_$_code.oxt) - source+=("https://github.com/sbosio/rla-es/releases/download/v$pkgver/es_$_code.oxt";) - _pkgname=hunspell-es_${_code,,} - pkgname+=($_pkgname) - eval "package_$_pkgname() { -_package $_co - }" -done - -sha256sums=('36507ebabce67d64056c51ee071b4bce2f2c2ebb150278561761480937a27f9a' -'1744460e6ba4420583abeed848b542808886b223cc893e3c63a416ae6298085c' -'dddbc2aba787b44044ec47b9ef9eea16a3b50c28fed67d8d9a3abb764a7ada19' -'8831dbc59385890555d147e4597c8399c386fc78a2b378e6702f152d6b0c4418' -'e58670a36b02db69f7123eeb414c721252923f875ed702da9de14e62e90ef169' -'88c648dd97eec3e3fbeb9753e152b027d63d79191d6ea2031539c4f5dfa37d2c' -'90c39c7e64f77920102a8ba7ccf85a97c7db88bbd75759fceb40fc8ed6995a18' -'63ba5d5d7475207f31d221cb98843401932018b06b9f7f77b6f0f74b4268849a' -'aff1eec6657e184242771be82094aece25bb9f07051f076662c0465e76e89006' -'c1b47643e694b1bb1002d964684b8669a9a4976ca3db48d4a20f5bc3f9d8d40e' -'57011e91855f2345db1d15064ca4690a7a7be546d0cfd45104822807e6e24fc9' -'9acb3106a5625ca37418f0a56a0bd4da1a2e6b9fb352685cffb138b82c80b2a8' -'737d15890134d8117830491f8115c3d5bbe7dd2cd5e1781371625bcefdd5e6fb' -'7e64b2ee7ab56811ff599fc659c2f737e960cd2835f1616111089032bac4dff5' -'f42b128fd6b1c5e0adf6427b29fcee60f094b3c938499dccdf2582bf37e805a2' -'b7ad2ff019d6b0e310bc0eef0e9d812fa8dbc0bf44af1bff8d71e4c617f562dc' -'d7309671abd23b1af4efd0af8603090cfefdf3164750fa8b3423f458329adef8' -'dd4ce4225560d2b168f816bb3d7b05000f850a084e833d8f27b93ce8a5d16edb' -'6027bbd08f73b38be789ad823d0e1779d56a9a8e737b12d965d4ab90579f3161' -'1a39be8e7da4b3662993ef83ae012084e666f290a2bf4e6190426f3fc27f0d2b' -'0a75f88c656de0bca7d819975816612ae4b88343b986b23b12893cc3bc876396') - -_package() { - pkgdesc="Spanish ($2) hunspell dictionary" - depends=(hunspell) - conflicts=(hunspell-es) - - LANG=en_US.utf8 bsdtar -xf es_$1.oxt - - install -dm755 "$pkgdir"/usr/share/hunspell - install -Dm644 es_$1.dic es_$1.aff "$pkgdir/usr/share/hunspell" - - install -d "$pkgdir"/usr/share/myspell/dicts - pushd "$pkgdir/usr/share/myspell/dicts" -for _file in "$pkgdir"/usr/share/hunspell/*; do - ln -sv /usr/share/hunspell/$(basename $_file) . -done - popd - -# Install webengine dictionaries - install -d "$pkgdir"/usr/share/qt/qtwebengine_dictionaries/ - for _file in "$pkgdir"/usr/share/hunspell/*.dic; do -_filename=$(basename $_file) -qwebengine_convert_dict $_file "$pkgdir"/usr/share/qt/qtwebengine_dictionaries/${_filename/\.dic/\.bdic} - done - - install -Dm644 README.txt -t "$pkgdir/usr/share/doc/$pkgname" -} - -package_hunspell-es_any() { - pkgdesc="Spanish (generic) hunspell dictionary" - depends=(hunspell) - conflicts=(hunspell-es) - replaces=(hunspell-es) - - LANG=en_US.utf8 bsdtar -xf es_ANY.oxt - - install -Dm644 es_ANY.dic es_ANY.aff -t "$pkgdir"/usr/share/hunspell - - install -d "${pkgdir}/usr/share/myspell/dicts" - pushd "$pkgdir/usr/share/myspell/dicts" -for file in "$pkgdir"/usr/share/hunspell/*; do - ln -sv /usr/share/hunspell/$(basename $file) . -done - popd - -# Install webengine dictionaries - install -d "$pkgdir"/usr/share/qt/qtwebengine_dictionaries/ - for _file in "$pkgdir"/usr/share/hunspell/*.dic; do - _filename=$(basename $_file) -qwebengine_convert_dict $_file "$pkgdir"/usr/share/qt/qtwebengine_dictionaries/$
[arch-commits] Commit in hunspell-es/repos/extra-any (PKGBUILD PKGBUILD)
Date: Sunday, September 8, 2019 @ 11:21:11 Author: arojas Revision: 362039 archrelease: copy trunk to extra-any Added: hunspell-es/repos/extra-any/PKGBUILD (from rev 362038, hunspell-es/trunk/PKGBUILD) Deleted: hunspell-es/repos/extra-any/PKGBUILD --+ PKGBUILD | 325 +++-- 1 file changed, 170 insertions(+), 155 deletions(-) Deleted: PKGBUILD === --- PKGBUILD2019-09-08 11:20:51 UTC (rev 362038) +++ PKGBUILD2019-09-08 11:21:11 UTC (rev 362039) @@ -1,155 +0,0 @@ -# Maintainer: Angel Velasquez -# Maintainer: AndyRTR - -pkgbase=hunspell-es -pkgname=(hunspell-es_any hyphen-es mythes-es) -pkgver=2.4 -pkgrel=1 -epoch=1 -arch=(any) -url="https://github.com/sbosio/rla-es"; -license=(LGPL3) -_countries=( - 'AR "Argentina"' - 'BO "Bolivia"' - 'CL "Chile"' - 'CO "Colombia"' - 'CR "Costa Rica"' - 'CU "Cuba"' - 'DO "Dominican Republic"' - 'EC "Ecuador"' - 'ES "Spain"' - 'GT "Guatemala"' - 'HN "Honduras"' - 'MX "Mexico"' - 'NI "Nicaragua"' - 'PA "Paraguay"' - 'PE "Peru"' - 'PR "Puerto Rico"' - 'PY "Paraguay"' - 'SV "El Salvador"' - 'UY "Uruguay"' - 'VE "Venezuela"' -) - -source=(https://github.com/sbosio/rla-es/releases/download/v$pkgver/es_ANY.oxt) -noextract=(es_ANY.oxt) - -for _co in "${_countries[@]}"; do - _code=${_co%% *} - noextract+=(es_$_code.oxt) - source+=("https://github.com/sbosio/rla-es/releases/download/v$pkgver/es_$_code.oxt";) - _pkgname=hunspell-es_${_code,,} - pkgname+=($_pkgname) - eval "package_$_pkgname() { -_package $_co - }" -done - -sha256sums=('36507ebabce67d64056c51ee071b4bce2f2c2ebb150278561761480937a27f9a' -'1744460e6ba4420583abeed848b542808886b223cc893e3c63a416ae6298085c' -'dddbc2aba787b44044ec47b9ef9eea16a3b50c28fed67d8d9a3abb764a7ada19' -'8831dbc59385890555d147e4597c8399c386fc78a2b378e6702f152d6b0c4418' -'e58670a36b02db69f7123eeb414c721252923f875ed702da9de14e62e90ef169' -'88c648dd97eec3e3fbeb9753e152b027d63d79191d6ea2031539c4f5dfa37d2c' -'90c39c7e64f77920102a8ba7ccf85a97c7db88bbd75759fceb40fc8ed6995a18' -'63ba5d5d7475207f31d221cb98843401932018b06b9f7f77b6f0f74b4268849a' -'aff1eec6657e184242771be82094aece25bb9f07051f076662c0465e76e89006' -'c1b47643e694b1bb1002d964684b8669a9a4976ca3db48d4a20f5bc3f9d8d40e' -'57011e91855f2345db1d15064ca4690a7a7be546d0cfd45104822807e6e24fc9' -'9acb3106a5625ca37418f0a56a0bd4da1a2e6b9fb352685cffb138b82c80b2a8' -'737d15890134d8117830491f8115c3d5bbe7dd2cd5e1781371625bcefdd5e6fb' -'7e64b2ee7ab56811ff599fc659c2f737e960cd2835f1616111089032bac4dff5' -'f42b128fd6b1c5e0adf6427b29fcee60f094b3c938499dccdf2582bf37e805a2' -'b7ad2ff019d6b0e310bc0eef0e9d812fa8dbc0bf44af1bff8d71e4c617f562dc' -'d7309671abd23b1af4efd0af8603090cfefdf3164750fa8b3423f458329adef8' -'dd4ce4225560d2b168f816bb3d7b05000f850a084e833d8f27b93ce8a5d16edb' -'6027bbd08f73b38be789ad823d0e1779d56a9a8e737b12d965d4ab90579f3161' -'1a39be8e7da4b3662993ef83ae012084e666f290a2bf4e6190426f3fc27f0d2b' -'0a75f88c656de0bca7d819975816612ae4b88343b986b23b12893cc3bc876396') - -_package() { - pkgdesc="Spanish ($2) hunspell dictionary" - depends=(hunspell) - conflicts=(hunspell-es) - - LANG=en_US.utf8 bsdtar -xf es_$1.oxt - - install -dm755 "${pkgdir}/usr/share/hunspell" - install -Dm644 es_$1.dic es_$1.aff "$pkgdir/usr/share/hunspell" - - install -d "${pkgdir}/usr/share/myspell/dicts" - pushd "$pkgdir/usr/share/myspell/dicts" -for file in "$pkgdir"/usr/share/hunspell/*; do - ln -sv /usr/share/hunspell/$(basename $file) . -done - popd - - install -Dm644 README.txt -t "$pkgdir/usr/share/doc/$pkgname" -} - -package_hunspell-es_any() { - pkgdesc="Spanish (generic) hunspell dictionary" - depends=(hunspell) - conflicts=(hunspell-es) - replaces=(hunspell-es) - - LANG=en_US.utf8 bsdtar -xf es_ANY.oxt - - install -Dm644 es_ANY.dic es_ANY.aff -t "$pkgdir"/usr/share/hunspell - - install -d "${pkgdir}/usr/share/myspell/dicts" - pushd "$pkgdir/usr/share/myspell/dicts" -for file in "$pkgdir"/usr/share/hunspell/*; do - ln -sv /usr/share/hunspell/$(basename $file) . -done - popd - - install -Dm644 README.txt -t "$pkgdir/usr/share/doc/$pkgname" -} - -package_hyphen-es() { - pkgdesc="Spanish hyphenation rules" - depends=(hyphen) - - install -Dm644 hyph_es_ANY.dic -t "$pkgdir"/usr/share/hyphen/ - - pushd "$pkgdir"/usr/share/hyphen/ - for _co in "${_countries[@]}"; do -ln -s hyph_es_ANY.dic hyph_es_${_co%% *}.dic - done - popd - - install -d "$pkgdir"/usr/share/myspell/dicts - pushd "$pkgdir"/usr/share/myspell/dicts -for file in "$pkgdir"/usr/share/hyphen/*; do - ln -sv /usr/share/hyphen/$(basename $file) . -done - popd - - install -Dm644 README_hy
[arch-commits] Commit in hunspell-es/repos/extra-any (PKGBUILD PKGBUILD)
Date: Thursday, January 10, 2019 @ 21:55:48 Author: arojas Revision: 343526 archrelease: copy trunk to extra-any Added: hunspell-es/repos/extra-any/PKGBUILD (from rev 343525, hunspell-es/trunk/PKGBUILD) Deleted: hunspell-es/repos/extra-any/PKGBUILD --+ PKGBUILD | 311 ++--- 1 file changed, 155 insertions(+), 156 deletions(-) Deleted: PKGBUILD === --- PKGBUILD2019-01-10 21:54:40 UTC (rev 343525) +++ PKGBUILD2019-01-10 21:55:48 UTC (rev 343526) @@ -1,156 +0,0 @@ -# $Id$ -# Maintainer: Angel Velasquez -# Maintainer: AndyRTR - -pkgbase=hunspell-es -pkgname=(hunspell-es_any hyphen-es mythes-es) -pkgver=2.3 -pkgrel=2 -epoch=1 -arch=(any) -url="https://github.com/sbosio/rla-es"; -license=(LGPL3) -_countries=( - 'AR "Argentina"' - 'BO "Bolivia"' - 'CL "Chile"' - 'CO "Colombia"' - 'CR "Costa Rica"' - 'CU "Cuba"' - 'DO "Dominican Republic"' - 'EC "Ecuador"' - 'ES "Spain"' - 'GT "Guatemala"' - 'HN "Honduras"' - 'MX "Mexico"' - 'NI "Nicaragua"' - 'PA "Paraguay"' - 'PE "Peru"' - 'PR "Puerto Rico"' - 'PY "Paraguay"' - 'SV "El Salvador"' - 'UY "Uruguay"' - 'VE "Venezuela"' -) - -source=(https://github.com/sbosio/rla-es/releases/download/v$pkgver/es_ANY.oxt) -noextract=(es_ANY.oxt) - -for _co in "${_countries[@]}"; do - _code=${_co%% *} - noextract+=(es_$_code.oxt) - source+=("https://github.com/sbosio/rla-es/releases/download/v$pkgver/es_$_code.oxt";) - _pkgname=hunspell-es_${_code,,} - pkgname+=($_pkgname) - eval "package_$_pkgname() { -_package $_co - }" -done - -sha256sums=('428148e473091229ab3918d9282ee0fb39e4c842f592a7aa3924a31452fd' -'8d0952c6eb3bf40bcbc60cd8ea8f876f8e0c4ff714b65e06556ee06bfeaa0a7e' -'97e3b37efb3bb0149405bee38666b75a44d4c683a3f0b3b77ff442299a5987a2' -'15c99c78cbeae09a02a74a8eff0beda219ae639e2673100fad9cec9ad93aca99' -'bc876b22df92211791655fee3eb2f74a9c52e10cc1f2143239fd5326c0a1fefa' -'5f834d9a6570b351702adeaa0d160c0514b4510147623d8c70cc1d3e5c49dcfe' -'2051ce3aea6b8e50b3ec305b6915320ced630b2f6e89c27126b33bd5d58f8476' -'a63fd1ad3db6dc1bfd1585320c18775fd58df4f7e7fc3dce9903284053536412' -'7c48d2845312bcd83c5f85cf20672fcdbeb632ab7fde5403bd393c61fafc3b55' -'837fe70fe5dade69a5991f5088e68368a139ec76655bb551ebfc1c2ae1c4a71a' -'1fdf774bff8e923e03177beb5a8b2d8c47760274617adf59a78904bdc22356f5' -'b7710785e7079b62609ab800fa1fe9f4de337454fbac15bc5d10955a2af298ab' -'ec4fb742a1bce1cb7de92ca544bb9583c7956dcf562465ca9d41fd6eff44c492' -'9d3990fb1f3686fa2a0880ba42bc6e3a9ca9702500cb5d9a2a16e226a8859514' -'b631d583bf153d02d117724cfeace26269eb2c24f390bc3d989ae32bc7b59e5f' -'8960855f46f0a5febcc433882f5fc29a7d85a7861e0f1005b8d97c51434aa59b' -'46652a01289460926fabf01ee89cdd162bd22499e3dd48cc2e9b31cee8b3a232' -'fbc2dc7ac633cc81592d4ac5f3170415dbb786669e3a93f8b72b9a2b7fec9f78' -'ea3ccd70b22f57d31ecfd6c4cf5e8545c59f8b0bff558619f824a0116bfdeaa4' -'c516f12a801161497c765d58021a04f7596e9957c22d915527596c76b5bd7ec3' -'b53bffc7b041831df47babefc667a5a00f01ba5bad77f264219b05eaf8670bc8') - -_package() { - pkgdesc="Spanish ($2) hunspell dictionary" - depends=(hunspell) - conflicts=(hunspell-es) - - LANG=en_US.utf8 bsdtar -xf es_$1.oxt - - install -dm755 "${pkgdir}/usr/share/hunspell" - install -Dm644 es_$1.dic es_$1.aff "$pkgdir/usr/share/hunspell" - - install -d "${pkgdir}/usr/share/myspell/dicts" - pushd "$pkgdir/usr/share/myspell/dicts" -for file in "$pkgdir"/usr/share/hunspell/*; do - ln -sv /usr/share/hunspell/$(basename $file) . -done - popd - - install -Dm644 README.txt -t "$pkgdir/usr/share/doc/$pkgname" -} - -package_hunspell-es_any() { - pkgdesc="Spanish (generic) hunspell dictionary" - depends=(hunspell) - conflicts=(hunspell-es) - replaces=(hunspell-es) - - LANG=en_US.utf8 bsdtar -xf es_ANY.oxt - - install -Dm644 es_ANY.dic es_ANY.aff -t "$pkgdir"/usr/share/hunspell - - install -d "${pkgdir}/usr/share/myspell/dicts" - pushd "$pkgdir/usr/share/myspell/dicts" -for file in "$pkgdir"/usr/share/hunspell/*; do - ln -sv /usr/share/hunspell/$(basename $file) . -done - popd - - install -Dm644 README.txt -t "$pkgdir/usr/share/doc/$pkgname" -} - -package_hyphen-es() { - pkgdesc="Spanish hyphenation rules" - depends=(hyphen) - - install -Dm644 hyph_es_ANY.dic -t "$pkgdir"/usr/share/hyphen/ - - pushd "$pkgdir"/usr/share/hyphen/ - for _co in "${_countries[@]}"; do -ln -s hyph_es_ANY.dic hyph_es_${_co%% *}.dic - done - popd - - install -d "$pkgdir"/usr/share/myspell/dicts - pushd "$pkgdir"/usr/share/myspell/dicts -for file in "$pkgdir"/usr/share/hyphen/*; do - ln -sv /usr/share/hyphen/$(basename $file) . -done - popd - - install -Dm644
[arch-commits] Commit in hunspell-es/repos/extra-any (PKGBUILD PKGBUILD)
Date: Tuesday, July 17, 2018 @ 18:56:00 Author: arojas Revision: 328900 archrelease: copy trunk to extra-any Added: hunspell-es/repos/extra-any/PKGBUILD (from rev 328899, hunspell-es/trunk/PKGBUILD) Deleted: hunspell-es/repos/extra-any/PKGBUILD --+ PKGBUILD | 291 - 1 file changed, 156 insertions(+), 135 deletions(-) Deleted: PKGBUILD === --- PKGBUILD2018-07-17 18:55:33 UTC (rev 328899) +++ PKGBUILD2018-07-17 18:56:00 UTC (rev 328900) @@ -1,135 +0,0 @@ -# $Id$ -# Maintainer: Angel Velasquez -# Maintainer: AndyRTR - -pkgbase=hunspell-es -pkgname=(hunspell-es hyphen-es mythes-es) -pkgver=2.3 -pkgrel=1 -epoch=1 -pkgdesc="Spanish hunspell dictionaries" -arch=(any) -url="https://github.com/sbosio/rla-es"; -license=('LGPL3') -noextract=(es_ANY.oxt es_AR.oxt es_BO.oxt es_CL.oxt es_CO.oxt - es_CR.oxt es_CU.oxt es_DO.oxt es_EC.oxt es_ES.oxt - es_GT.oxt es_HN.oxt es_MX.oxt es_NI.oxt es_PA.oxt - es_PE.oxt es_PR.oxt es_PY.oxt es_SV.oxt es_UY.oxt es_VE.oxt) -source=("https://github.com/sbosio/rla-es/releases/download/v$pkgver/es_ANY.oxt"; -"https://github.com/sbosio/rla-es/releases/download/v$pkgver/es_AR.oxt"; -"https://github.com/sbosio/rla-es/releases/download/v$pkgver/es_BO.oxt"; -"https://github.com/sbosio/rla-es/releases/download/v$pkgver/es_CL.oxt"; -"https://github.com/sbosio/rla-es/releases/download/v$pkgver/es_CO.oxt"; -"https://github.com/sbosio/rla-es/releases/download/v$pkgver/es_CR.oxt"; -"https://github.com/sbosio/rla-es/releases/download/v$pkgver/es_CU.oxt"; -"https://github.com/sbosio/rla-es/releases/download/v$pkgver/es_DO.oxt"; -"https://github.com/sbosio/rla-es/releases/download/v$pkgver/es_EC.oxt"; -"https://github.com/sbosio/rla-es/releases/download/v$pkgver/es_ES.oxt"; -"https://github.com/sbosio/rla-es/releases/download/v$pkgver/es_GT.oxt"; -"https://github.com/sbosio/rla-es/releases/download/v$pkgver/es_HN.oxt"; -"https://github.com/sbosio/rla-es/releases/download/v$pkgver/es_MX.oxt"; -"https://github.com/sbosio/rla-es/releases/download/v$pkgver/es_NI.oxt"; -"https://github.com/sbosio/rla-es/releases/download/v$pkgver/es_PA.oxt"; -"https://github.com/sbosio/rla-es/releases/download/v$pkgver/es_PE.oxt"; -"https://github.com/sbosio/rla-es/releases/download/v$pkgver/es_PR.oxt"; -"https://github.com/sbosio/rla-es/releases/download/v$pkgver/es_PY.oxt"; -"https://github.com/sbosio/rla-es/releases/download/v$pkgver/es_SV.oxt"; -"https://github.com/sbosio/rla-es/releases/download/v$pkgver/es_UY.oxt"; - "https://github.com/sbosio/rla-es/releases/download/v$pkgver/es_VE.oxt";) -sha256sums=('428148e473091229ab3918d9282ee0fb39e4c842f592a7aa3924a31452fd' -'8d0952c6eb3bf40bcbc60cd8ea8f876f8e0c4ff714b65e06556ee06bfeaa0a7e' -'97e3b37efb3bb0149405bee38666b75a44d4c683a3f0b3b77ff442299a5987a2' -'15c99c78cbeae09a02a74a8eff0beda219ae639e2673100fad9cec9ad93aca99' -'bc876b22df92211791655fee3eb2f74a9c52e10cc1f2143239fd5326c0a1fefa' -'5f834d9a6570b351702adeaa0d160c0514b4510147623d8c70cc1d3e5c49dcfe' -'2051ce3aea6b8e50b3ec305b6915320ced630b2f6e89c27126b33bd5d58f8476' -'a63fd1ad3db6dc1bfd1585320c18775fd58df4f7e7fc3dce9903284053536412' -'7c48d2845312bcd83c5f85cf20672fcdbeb632ab7fde5403bd393c61fafc3b55' -'837fe70fe5dade69a5991f5088e68368a139ec76655bb551ebfc1c2ae1c4a71a' -'1fdf774bff8e923e03177beb5a8b2d8c47760274617adf59a78904bdc22356f5' -'b7710785e7079b62609ab800fa1fe9f4de337454fbac15bc5d10955a2af298ab' -'ec4fb742a1bce1cb7de92ca544bb9583c7956dcf562465ca9d41fd6eff44c492' -'9d3990fb1f3686fa2a0880ba42bc6e3a9ca9702500cb5d9a2a16e226a8859514' -'b631d583bf153d02d117724cfeace26269eb2c24f390bc3d989ae32bc7b59e5f' -'8960855f46f0a5febcc433882f5fc29a7d85a7861e0f1005b8d97c51434aa59b' -'46652a01289460926fabf01ee89cdd162bd22499e3dd48cc2e9b31cee8b3a232' -'fbc2dc7ac633cc81592d4ac5f3170415dbb786669e3a93f8b72b9a2b7fec9f78' -'ea3ccd70b22f57d31ecfd6c4cf5e8545c59f8b0bff558619f824a0116bfdeaa4' -'c516f12a801161497c765d58021a04f7596e9957c22d915527596c76b5bd7ec3' -'b53bffc7b041831df47babefc667a5a00f01ba5bad77f264219b05eaf8670bc8') - -package_hunspell-es() { - optdepends=('hunspell: the spell checking libraries and apps') - - for file in *.oxt; do -LANG=en_US.utf8 bsdtar -xf $file - done - - install -dm755 "${pkgdir}/usr/share/hunspell" - install -m644 es_*.dic es_*.aff "$pkgdir/usr/share/hunspell" - - # the symlinks - install -dm755 "${pkgdir}/usr/share/myspell/dicts" - pushd "$pkgdir/usr/share/myspell/dicts" -for file in "$pkgdir"/usr/share/hu
[arch-commits] Commit in hunspell-es/repos/extra-any (PKGBUILD PKGBUILD)
Date: Wednesday, January 24, 2018 @ 21:49:23 Author: arojas Revision: 315418 archrelease: copy trunk to extra-any Added: hunspell-es/repos/extra-any/PKGBUILD (from rev 315417, hunspell-es/trunk/PKGBUILD) Deleted: hunspell-es/repos/extra-any/PKGBUILD --+ PKGBUILD | 270 ++--- 1 file changed, 135 insertions(+), 135 deletions(-) Deleted: PKGBUILD === --- PKGBUILD2018-01-24 21:48:24 UTC (rev 315417) +++ PKGBUILD2018-01-24 21:49:23 UTC (rev 315418) @@ -1,135 +0,0 @@ -# $Id$ -# Maintainer: Angel Velasquez -# Maintainer: AndyRTR - -pkgbase=hunspell-es -pkgname=(hunspell-es hyphen-es mythes-es) -pkgver=2.2 -pkgrel=1 -epoch=1 -pkgdesc="Spanish hunspell dictionaries" -arch=(any) -url="https://github.com/sbosio/rla-es"; -license=('LGPL3') -noextract=(es_ANY.oxt es_AR.oxt es_BO.oxt es_CL.oxt es_CO.oxt - es_CR.oxt es_CU.oxt es_DO.oxt es_EC.oxt es_ES.oxt - es_GT.oxt es_HN.oxt es_MX.oxt es_NI.oxt es_PA.oxt - es_PE.oxt es_PR.oxt es_PY.oxt es_SV.oxt es_UY.oxt es_VE.oxt) -source=("https://github.com/sbosio/rla-es/releases/download/v$pkgver/es_ANY.oxt"; -"https://github.com/sbosio/rla-es/releases/download/v$pkgver/es_AR.oxt"; -"https://github.com/sbosio/rla-es/releases/download/v$pkgver/es_BO.oxt"; -"https://github.com/sbosio/rla-es/releases/download/v$pkgver/es_CL.oxt"; -"https://github.com/sbosio/rla-es/releases/download/v$pkgver/es_CO.oxt"; -"https://github.com/sbosio/rla-es/releases/download/v$pkgver/es_CR.oxt"; -"https://github.com/sbosio/rla-es/releases/download/v$pkgver/es_CU.oxt"; -"https://github.com/sbosio/rla-es/releases/download/v$pkgver/es_DO.oxt"; -"https://github.com/sbosio/rla-es/releases/download/v$pkgver/es_EC.oxt"; -"https://github.com/sbosio/rla-es/releases/download/v$pkgver/es_ES.oxt"; -"https://github.com/sbosio/rla-es/releases/download/v$pkgver/es_GT.oxt"; -"https://github.com/sbosio/rla-es/releases/download/v$pkgver/es_HN.oxt"; -"https://github.com/sbosio/rla-es/releases/download/v$pkgver/es_MX.oxt"; -"https://github.com/sbosio/rla-es/releases/download/v$pkgver/es_NI.oxt"; -"https://github.com/sbosio/rla-es/releases/download/v$pkgver/es_PA.oxt"; -"https://github.com/sbosio/rla-es/releases/download/v$pkgver/es_PE.oxt"; -"https://github.com/sbosio/rla-es/releases/download/v$pkgver/es_PR.oxt"; -"https://github.com/sbosio/rla-es/releases/download/v$pkgver/es_PY.oxt"; -"https://github.com/sbosio/rla-es/releases/download/v$pkgver/es_SV.oxt"; -"https://github.com/sbosio/rla-es/releases/download/v$pkgver/es_UY.oxt"; - "https://github.com/sbosio/rla-es/releases/download/v$pkgver/es_VE.oxt";) -md5sums=('5d2a621da5e00871f5d43537b343a7c5' - '9c2e0eb4124a4f8bcc1f90fbcc22a729' - '2ff909220bf829bb08651ad1243f766f' - '631ff1bd78a377077a84e91895db8554' - 'b8030f0e018b9a0b879916c2bc6b99cc' - 'bfb8b65dc58cfadb456247b3739a830b' - '607df889fcd7f7f70cd31e5143a0ab22' - '97ffa11e769f53f76f939dc1c5c45c6b' - '7639d8d83c64d45b34f88b2cb30771ad' - '8f6d52b55a41c1108234f625232131e4' - '21291ce4ca017306321879706d6b8f52' - 'e7076ac541f547a314359d1795255ee6' - '69919517517437a75603173d0fa9cb2c' - 'cd573e82a11eacccd1cb12cfa6e89797' - 'cd1a3ce9cf60621261b50c1cd975ba42' - '5a8216aabea79171b7e2edaeb0077d6f' - '7953ae81200fb978a0d44d11fcc6b7fd' - '35795c6e097d2cff48774da834416988' - '5a2b8f9a15542724a3ae12d7206af256' - 'baea8f23e87f509023461df40d1239b2' - '9c71676888b8fab9f4dd7b8a88a44c68') - -package_hunspell-es() { - optdepends=('hunspell: the spell checking libraries and apps') - - for file in *.oxt; do -LANG=en_US.utf8 bsdtar -xf $file - done - - install -dm755 "${pkgdir}/usr/share/hunspell" - install -m644 es_*.dic es_*.aff "$pkgdir/usr/share/hunspell" - - # the symlinks - install -dm755 "${pkgdir}/usr/share/myspell/dicts" - pushd "$pkgdir/usr/share/myspell/dicts" -for file in "$pkgdir"/usr/share/hunspell/*; do - ln -sv /usr/share/hunspell/$(basename $file) . -done - popd - - # docs - install -dm755 "${pkgdir}/usr/share/doc/$pkgname" - install -m644 README.txt "$pkgdir/usr/share/doc/$pkgname" -} - -package_hyphen-es() { - pkgdesc="Spanish hyphenation rules" - optdepends=('hyphen: offers hyphenation library functions') - - install -Dm644 hyph_es_ANY.dic "$pkgdir/usr/share/hyphen/hyph_es_ANY.dic" - - pushd "$pkgdir/usr/share/hyphen/" - es_ES_aliases="es_AR es_BO es_CL es_CO es_CR es_CU es_DO es_EC es_ES es_GT es_HN es_MX es_NI es_PA es_PE es_PR es_SV es_UY es_VE" - for lang in $es_ES_aliases; do -ln -s hyph_es_ANY.dic hyph_$lang.dic - done - popd - - # the symlinks - install -dm755 "
[arch-commits] Commit in hunspell-es/repos/extra-any (PKGBUILD PKGBUILD)
Date: Wednesday, November 23, 2016 @ 19:54:22 Author: arojas Revision: 281977 archrelease: copy trunk to extra-any Added: hunspell-es/repos/extra-any/PKGBUILD (from rev 281976, hunspell-es/trunk/PKGBUILD) Deleted: hunspell-es/repos/extra-any/PKGBUILD --+ PKGBUILD | 271 ++--- 1 file changed, 135 insertions(+), 136 deletions(-) Deleted: PKGBUILD === --- PKGBUILD2016-11-23 19:53:58 UTC (rev 281976) +++ PKGBUILD2016-11-23 19:54:22 UTC (rev 281977) @@ -1,136 +0,0 @@ -# $Id$ -# Maintainer: Angel Velasquez -# Maintainer: AndyRTR - -pkgbase=hunspell-es -pkgname=(hunspell-es hyphen-es mythes-es) -pkgver=2.1.1 -pkgrel=1 -epoch=1 -pkgdesc="Spanish hunspell dictionaries" -arch=(any) -url="https://github.com/sbosio/rla-es"; -license=('LGPL3') -optdepends=('hunspell: the spell checking libraries and apps') -noextract=(es_ANY.oxt es_AR.oxt es_BO.oxt es_CL.oxt es_CO.oxt - es_CR.oxt es_CU.oxt es_DO.oxt es_EC.oxt es_ES.oxt - es_GT.oxt es_HN.oxt es_MX.oxt es_NI.oxt es_PA.oxt - es_PE.oxt es_PR.oxt es_PY.oxt es_SV.oxt es_UY.oxt es_VE.oxt) -source=("https://github.com/sbosio/rla-es/releases/download/v$pkgver/es_ANY.oxt"; -"https://github.com/sbosio/rla-es/releases/download/v$pkgver/es_AR.oxt"; -"https://github.com/sbosio/rla-es/releases/download/v$pkgver/es_BO.oxt"; -"https://github.com/sbosio/rla-es/releases/download/v$pkgver/es_CL.oxt"; -"https://github.com/sbosio/rla-es/releases/download/v$pkgver/es_CO.oxt"; -"https://github.com/sbosio/rla-es/releases/download/v$pkgver/es_CR.oxt"; -"https://github.com/sbosio/rla-es/releases/download/v$pkgver/es_CU.oxt"; -"https://github.com/sbosio/rla-es/releases/download/v$pkgver/es_DO.oxt"; -"https://github.com/sbosio/rla-es/releases/download/v$pkgver/es_EC.oxt"; -"https://github.com/sbosio/rla-es/releases/download/v$pkgver/es_ES.oxt"; -"https://github.com/sbosio/rla-es/releases/download/v$pkgver/es_GT.oxt"; -"https://github.com/sbosio/rla-es/releases/download/v$pkgver/es_HN.oxt"; -"https://github.com/sbosio/rla-es/releases/download/v$pkgver/es_MX.oxt"; -"https://github.com/sbosio/rla-es/releases/download/v$pkgver/es_NI.oxt"; -"https://github.com/sbosio/rla-es/releases/download/v$pkgver/es_PA.oxt"; -"https://github.com/sbosio/rla-es/releases/download/v$pkgver/es_PE.oxt"; -"https://github.com/sbosio/rla-es/releases/download/v$pkgver/es_PR.oxt"; -"https://github.com/sbosio/rla-es/releases/download/v$pkgver/es_PY.oxt"; -"https://github.com/sbosio/rla-es/releases/download/v$pkgver/es_SV.oxt"; -"https://github.com/sbosio/rla-es/releases/download/v$pkgver/es_UY.oxt"; - "https://github.com/sbosio/rla-es/releases/download/v$pkgver/es_VE.oxt";) -md5sums=('05c257b89373d068eb33debccafaba1d' - '734c4926d8ada7ea7209636035739fe2' - '17812d2473dd4e18e14cbe5a92af3e17' - 'ad00085f2caffdc762515e6944afa850' - '4d4f710dbd147c0aea97331d75b1a35c' - '3427143afec8833ab4752220be5d70b1' - '8874b4ab59c193b0e81cec9d3b87eda0' - 'e7ab39bdff1991273c8f8144ab83a7f5' - '8a9bc2ca06a66102d66f92c7d6389cdc' - 'ee9b7f7eb7c8ff9adab90eda3e506923' - '5075980a9e5380cfbe41d8c1f1a4bc8e' - '0a4515bd8229f119a75f75a66d844bba' - 'ec2c12efdce4a2366323dffdea0c10bf' - 'c6008281b5ada374e5edfa29bd2beb36' - '570ce39f322d2796db7a0a2e9891a021' - 'dfe4947d55e4bac1e931d95e24c4ec57' - '61e46c42e08741246f04dfd80badf316' - 'cdc8bde78fb2c4e1bf2cdefcbca0ca92' - 'd15bceb79dea5a014441b4e71b1976b8' - '865eea12715c68226b0b874d57f3b256' - '2f0684ec913a8496721410dc34e5d91d') - -package_hunspell-es() { - makedepends=('hunspell') - - for file in *.oxt; do -LANG=en_US.utf8 bsdtar -xf $file - done - - install -dm755 "${pkgdir}/usr/share/hunspell" - install -m644 es_*.dic es_*.aff "$pkgdir/usr/share/hunspell" - - # the symlinks - install -dm755 "${pkgdir}/usr/share/myspell/dicts" - pushd "$pkgdir/usr/share/myspell/dicts" -for file in "$pkgdir"/usr/share/hunspell/*; do - ln -sv /usr/share/hunspell/$(basename $file) . -done - popd - - # docs - install -dm755 "${pkgdir}/usr/share/doc/$pkgname" - install -m644 README.txt "$pkgdir/usr/share/doc/$pkgname" -} - -package_hyphen-es() { - pkgdesc="Spanish hyphenation rules" - optdepends=('hyphen: offers hyphenation library functions') - - install -Dm644 hyph_es_ANY.dic "$pkgdir/usr/share/hyphen/hyph_es_ANY.dic" - - pushd "$pkgdir/usr/share/hyphen/" - es_ES_aliases="es_AR es_BO es_CL es_CO es_CR es_CU es_DO es_EC es_ES es_GT es_HN es_MX es_NI es_PA es_PE es_PR es_SV es_UY es_VE" - for lang in $es_ES_aliases; do -ln -s hyph_es_ANY.dic hyph_$lang.dic - done - popd - - # the
[arch-commits] Commit in hunspell-es/repos/extra-any (PKGBUILD PKGBUILD)
Date: Tuesday, August 9, 2016 @ 18:45:57 Author: arojas Revision: 273545 archrelease: copy trunk to extra-any Added: hunspell-es/repos/extra-any/PKGBUILD (from rev 273544, hunspell-es/trunk/PKGBUILD) Deleted: hunspell-es/repos/extra-any/PKGBUILD --+ PKGBUILD | 219 + 1 file changed, 136 insertions(+), 83 deletions(-) Deleted: PKGBUILD === --- PKGBUILD2016-08-09 18:45:24 UTC (rev 273544) +++ PKGBUILD2016-08-09 18:45:57 UTC (rev 273545) @@ -1,83 +0,0 @@ -# $Id$ -# Maintainer: Angel Velasquez -# Maintainer: AndyRTR - -pkgname=hunspell-es -pkgver=2.0 -pkgrel=1 -epoch=1 -pkgdesc="Spanish hunspell dictionaries" -arch=(any) -url="https://github.com/sbosio/rla-es"; -license=('LGPL3') -makedepends=('hunspell') -optdepends=('hunspell: the spell checking libraries and apps') -noextract=(es_ANY.oxt es_AR.oxt es_BO.oxt es_CL.oxt es_CO.oxt - es_CR.oxt es_CU.oxt es_DO.oxt es_EC.oxt es_ES.oxt - es_GT.oxt es_HN.oxt es_MX.oxt es_NI.oxt es_PA.oxt - es_PE.oxt es_PR.oxt es_PY.oxt es_SV.oxt es_UY.oxt es_VE.oxt) -source=("https://github.com/sbosio/rla-es/releases/download/v$pkgver/es_ANY.oxt"; -"https://github.com/sbosio/rla-es/releases/download/v$pkgver/es_AR.oxt"; -"https://github.com/sbosio/rla-es/releases/download/v$pkgver/es_BO.oxt"; -"https://github.com/sbosio/rla-es/releases/download/v$pkgver/es_CL.oxt"; -"https://github.com/sbosio/rla-es/releases/download/v$pkgver/es_CO.oxt"; -"https://github.com/sbosio/rla-es/releases/download/v$pkgver/es_CR.oxt"; -"https://github.com/sbosio/rla-es/releases/download/v$pkgver/es_CU.oxt"; -"https://github.com/sbosio/rla-es/releases/download/v$pkgver/es_DO.oxt"; -"https://github.com/sbosio/rla-es/releases/download/v$pkgver/es_EC.oxt"; -"https://github.com/sbosio/rla-es/releases/download/v$pkgver/es_ES.oxt"; -"https://github.com/sbosio/rla-es/releases/download/v$pkgver/es_GT.oxt"; -"https://github.com/sbosio/rla-es/releases/download/v$pkgver/es_HN.oxt"; -"https://github.com/sbosio/rla-es/releases/download/v$pkgver/es_MX.oxt"; -"https://github.com/sbosio/rla-es/releases/download/v$pkgver/es_NI.oxt"; -"https://github.com/sbosio/rla-es/releases/download/v$pkgver/es_PA.oxt"; -"https://github.com/sbosio/rla-es/releases/download/v$pkgver/es_PE.oxt"; -"https://github.com/sbosio/rla-es/releases/download/v$pkgver/es_PR.oxt"; -"https://github.com/sbosio/rla-es/releases/download/v$pkgver/es_PY.oxt"; -"https://github.com/sbosio/rla-es/releases/download/v$pkgver/es_SV.oxt"; -"https://github.com/sbosio/rla-es/releases/download/v$pkgver/es_UY.oxt"; - "https://github.com/sbosio/rla-es/releases/download/v$pkgver/es_VE.oxt";) -md5sums=('3a7ffc0796bb375ff27bbf3e909c6caf' - '42740a3546a1c37d44fd57f40fe8bd3b' - 'fc15d8f6395e9a3eb165a8bc9dd3aca2' - '65b0b76727e8c811b78f03e71ff8fb93' - '9babb38c8eb438de9275e4584732062f' - '84f149025f487c4debfc3bc3e44b8cb8' - 'd3cec9c5bacfa775cc4bf1d13bbf5072' - 'bc8132739e8fa40ba5204776c01a08cd' - '2611104aef958ee0b864e1f0a025d935' - 'd593342c6ccbc55119c784c3cc43f6f9' - 'ced1b261d6cbc707c7d577d43b7ca513' - 'd3644dd3b51d5d6c3e2d3ef4bbe173b5' - '5075920abe34d9505b4457df2ed68d46' - '12f6ad8e855cad40fcbcc15990a0659b' - '04c679e772374e89855c7891e9fbbe67' - '9674bcb06eadae133b5653f6b0d32627' - 'ad3266ffd6be53446f422b34b8efba02' - '9be037dda99a21211643c63671d91487' - '5db0b4b7de421682ce4e75717b605bbf' - '46972565466c0f2c7272d348dd4ce190' - '69de53e8d6e29cc42247dfe5cbaafaa2') - -package() { - cd "$srcdir" - for file in *.oxt; do -LANG=en_US.utf8 bsdtar -xf $file - done - - install -dm755 "${pkgdir}/usr/share/hunspell" - install -m644 es_*.dic es_*.aff "$pkgdir/usr/share/hunspell" - - # the symlinks - install -dm755 "${pkgdir}/usr/share/myspell/dicts" - pushd "$pkgdir/usr/share/myspell/dicts" -for file in "$pkgdir"/usr/share/hunspell/*; do - ln -sv /usr/share/hunspell/$(basename $file) . -done - popd - - # docs - install -dm755 "${pkgdir}/usr/share/doc/$pkgname" - install -m644 README.txt "$pkgdir/usr/share/doc/$pkgname" -} - Copied: hunspell-es/repos/extra-any/PKGBUILD (from rev 273544, hunspell-es/trunk/PKGBUILD) === --- PKGBUILD(rev 0) +++ PKGBUILD2016-08-09 18:45:57 UTC (rev 273545) @@ -0,0 +1,136 @@ +# $Id$ +# Maintainer: Angel Velasquez +# Maintainer: AndyRTR + +pkgbase=hunspell-es +pkgname=(hunspell-es hyphen-es mythes-es) +pkgver=2.1.1 +pkgrel=1 +epoch=1 +pkgdesc="Spanish hunspell dictionaries" +arch=(any) +url="https://github.com/sbosio/rla-es"
[arch-commits] Commit in hunspell-es/repos/extra-any (PKGBUILD PKGBUILD)
Date: Sunday, March 6, 2016 @ 00:34:19 Author: arojas Revision: 260991 archrelease: copy trunk to extra-any Added: hunspell-es/repos/extra-any/PKGBUILD (from rev 260990, hunspell-es/trunk/PKGBUILD) Deleted: hunspell-es/repos/extra-any/PKGBUILD --+ PKGBUILD | 166 ++--- 1 file changed, 83 insertions(+), 83 deletions(-) Deleted: PKGBUILD === --- PKGBUILD2016-03-05 23:33:51 UTC (rev 260990) +++ PKGBUILD2016-03-05 23:34:19 UTC (rev 260991) @@ -1,83 +0,0 @@ -# $Id$ -# Maintainer: Angel Velasquez -# Maintainer: AndyRTR - -pkgname=hunspell-es -pkgver=0.8 -pkgrel=1 -epoch=1 -pkgdesc="Spanish hunspell dictionaries" -arch=(any) -url="https://github.com/sbosio/rla-es"; -license=('LGPL3') -makedepends=('hunspell') -optdepends=('hunspell: the spell checking libraries and apps') -noextract=(es_ANY.oxt es_AR.oxt es_BO.oxt es_CL.oxt es_CO.oxt - es_CR.oxt es_CU.oxt es_DO.oxt es_EC.oxt es_ES.oxt - es_GT.oxt es_HN.oxt es_MX.oxt es_NI.oxt es_PA.oxt - es_PE.oxt es_PR.oxt es_PY.oxt es_SV.oxt es_UY.oxt es_VE.oxt) -source=("https://github.com/sbosio/rla-es/releases/download/v$pkgver/es_ANY.oxt"; -"https://github.com/sbosio/rla-es/releases/download/v$pkgver/es_AR.oxt"; -"https://github.com/sbosio/rla-es/releases/download/v$pkgver/es_BO.oxt"; -"https://github.com/sbosio/rla-es/releases/download/v$pkgver/es_CL.oxt"; -"https://github.com/sbosio/rla-es/releases/download/v$pkgver/es_CO.oxt"; -"https://github.com/sbosio/rla-es/releases/download/v$pkgver/es_CR.oxt"; -"https://github.com/sbosio/rla-es/releases/download/v$pkgver/es_CU.oxt"; -"https://github.com/sbosio/rla-es/releases/download/v$pkgver/es_DO.oxt"; -"https://github.com/sbosio/rla-es/releases/download/v$pkgver/es_EC.oxt"; -"https://github.com/sbosio/rla-es/releases/download/v$pkgver/es_ES.oxt"; -"https://github.com/sbosio/rla-es/releases/download/v$pkgver/es_GT.oxt"; -"https://github.com/sbosio/rla-es/releases/download/v$pkgver/es_HN.oxt"; -"https://github.com/sbosio/rla-es/releases/download/v$pkgver/es_MX.oxt"; -"https://github.com/sbosio/rla-es/releases/download/v$pkgver/es_NI.oxt"; -"https://github.com/sbosio/rla-es/releases/download/v$pkgver/es_PA.oxt"; -"https://github.com/sbosio/rla-es/releases/download/v$pkgver/es_PE.oxt"; -"https://github.com/sbosio/rla-es/releases/download/v$pkgver/es_PR.oxt"; -"https://github.com/sbosio/rla-es/releases/download/v$pkgver/es_PY.oxt"; -"https://github.com/sbosio/rla-es/releases/download/v$pkgver/es_SV.oxt"; -"https://github.com/sbosio/rla-es/releases/download/v$pkgver/es_UY.oxt"; - "https://github.com/sbosio/rla-es/releases/download/v$pkgver/es_VE.oxt";) -md5sums=('719839f3381ac3da5eb601c950658710' - '8ccf803a8a197fef83e13c66b61d9ecc' - '5c4148898ada48149d8ca87fb404fede' - '4b78739de82ab4cc27ec60747d23d46b' - '8d023b2ba18a9de3de899e5d892fdc4d' - '31c8a90204eb4b980599eba94b8ec6bc' - 'ddaaa5452e182fd1f9a1e3fdd3b7abbf' - '481ff06565a8bf6ec27644316f809d75' - '9795ebd7d5a5215b7b9884bf5203fe32' - '1b999fcef948148e269161a08e7acf20' - '02e21977929e7f58f53b9f324d518c1a' - '226266993367552b9c69a710ca54ba11' - '2dd9abfd34be1fc5f5529ed3d25b880f' - 'a22126f1514a4f760e5228b4ba75c928' - '96b2bb0842e5ce4729e25cfe622fc972' - '23098afb7400613f89e18ec534cd4983' - '2012e290def734bb7fc2bdcdee8e5ac7' - 'a51756240a8c6ab63171fbfa6264d414' - '8062760f828434d8a8adb3ea649913ff' - '678de223759ef901db08a9bcea0bb21e' - 'fcd15cb76cec775ae9b56c3f23656a5b') - -package() { - cd "$srcdir" - for file in *.oxt; do -LANG=en_US.utf8 bsdtar -xf $file - done - - install -dm755 "${pkgdir}/usr/share/hunspell" - install -m644 es_*.dic es_*.aff "$pkgdir/usr/share/hunspell" - - # the symlinks - install -dm755 "${pkgdir}/usr/share/myspell/dicts" - pushd "$pkgdir/usr/share/myspell/dicts" -for file in "$pkgdir"/usr/share/hunspell/*; do - ln -sv /usr/share/hunspell/$(basename $file) . -done - popd - - # docs - install -dm755 "${pkgdir}/usr/share/doc/$pkgname" - install -m644 README.txt "$pkgdir/usr/share/doc/$pkgname" -} - Copied: hunspell-es/repos/extra-any/PKGBUILD (from rev 260990, hunspell-es/trunk/PKGBUILD) === --- PKGBUILD(rev 0) +++ PKGBUILD2016-03-05 23:34:19 UTC (rev 260991) @@ -0,0 +1,83 @@ +# $Id$ +# Maintainer: Angel Velasquez +# Maintainer: AndyRTR + +pkgname=hunspell-es +pkgver=2.0 +pkgrel=1 +epoch=1 +pkgdesc="Spanish hunspell dictionaries" +arch=(any) +url="https://github.com/sbosio/rla-es"; +license=('LGPL3') +makedepends=('hunspell') +o
[arch-commits] Commit in hunspell-es/repos/extra-any (PKGBUILD PKGBUILD)
Date: Sunday, June 21, 2015 @ 16:52:16 Author: arojas Revision: 241164 archrelease: copy trunk to extra-any Added: hunspell-es/repos/extra-any/PKGBUILD (from rev 241163, hunspell-es/trunk/PKGBUILD) Deleted: hunspell-es/repos/extra-any/PKGBUILD --+ PKGBUILD | 166 ++--- 1 file changed, 83 insertions(+), 83 deletions(-) Deleted: PKGBUILD === --- PKGBUILD2015-06-21 14:51:17 UTC (rev 241163) +++ PKGBUILD2015-06-21 14:52:16 UTC (rev 241164) @@ -1,83 +0,0 @@ -# $Id$ -# Maintainer: Angel Velasquez -# Maintainer: AndyRTR - -pkgname=hunspell-es -pkgver=0.7 -pkgrel=2 -epoch=1 -pkgdesc="Spanish hunspell dictionaries" -arch=(any) -url="https://forja.rediris.es/projects/rla-es/"; -license=('LGPL3') -makedepends=('hunspell') -optdepends=('hunspell: the spell checking libraries and apps') -noextract=(es_ANY.oxt es_AR.oxt es_BO.oxt es_CL.oxt es_CO.oxt - es_CR.oxt es_CU.oxt es_DO.oxt es_EC.oxt es_ES.oxt - es_GT.oxt es_HN.oxt es_MX.oxt es_NI.oxt es_PA.oxt - es_PE.oxt es_PR.oxt es_PY.oxt es_SV.oxt es_UY.oxt es_VE.oxt) -source=('http://forja.rediris.es/frs/download.php/2933/es_ANY.oxt' -'http://forja.rediris.es/frs/download.php/2953/es_AR.oxt' -'http://forja.rediris.es/frs/download.php/2952/es_BO.oxt' -'http://forja.rediris.es/frs/download.php/2951/es_CL.oxt' -'http://forja.rediris.es/frs/download.php/2950/es_CO.oxt' -'http://forja.rediris.es/frs/download.php/2949/es_CR.oxt' -'http://forja.rediris.es/frs/download.php/2948/es_CU.oxt' -'http://forja.rediris.es/frs/download.php/2947/es_DO.oxt' -'http://forja.rediris.es/frs/download.php/2946/es_EC.oxt' -'http://forja.rediris.es/frs/download.php/2945/es_ES.oxt' -'http://forja.rediris.es/frs/download.php/2944/es_GT.oxt' -'http://forja.rediris.es/frs/download.php/2943/es_HN.oxt' -'http://forja.rediris.es/frs/download.php/2942/es_MX.oxt' -'http://forja.rediris.es/frs/download.php/2941/es_NI.oxt' -'http://forja.rediris.es/frs/download.php/2940/es_PA.oxt' -'http://forja.rediris.es/frs/download.php/2939/es_PE.oxt' -'http://forja.rediris.es/frs/download.php/2938/es_PR.oxt' -'http://forja.rediris.es/frs/download.php/2937/es_PY.oxt' -'http://forja.rediris.es/frs/download.php/2936/es_SV.oxt' -'http://forja.rediris.es/frs/download.php/2935/es_UY.oxt' -'http://forja.rediris.es/frs/download.php/2934/es_VE.oxt') -md5sums=('e3d4b38f280e7376178529db2ece982b' - '68ee8f4ebc89a1fa461045d4dbb9b7be' - '1ebf11b6094e0bfece8e95cc34e7a409' - '092a388101350b77af4fd789668582bd' - 'fc440fd9fc55ca2dfb9bfa34a1e63864' - '7510fd0f4eb3c6e65523a8d0960f77dd' - '0ab4b9638f58ddd3d95d1265918ff39e' - '24a20fd4d887693afef539e6f1a3b58e' - '5d7343a246323ceda58cfbbf1428e279' - '59dd45e6785ed644adbbd73f4f126182' - 'b1a9be80687e3117c67ac46aad6b8d66' - 'd0db5bebd6925738b524de9709950f22' - '0de780714f84955112f38f35fb63a894' - 'd259d7be17c34df76c7de40c80720a39' - '085fbdbed6a2e248630c801881563b7a' - 'f4673063246888995d4eaa2d4a24ee3d' - 'e67bcf891ba9eeaeb57a60ec8e57f1ac' - 'ba98e3197c81db4c572def2c5cca942d' - 'c68ca9d188cb23c88cdd34a069c5a013' - 'aeb9d39e4d17e9c904c1f3567178aad6' - '8afa9619aede2d9708e799e0f5d0fcab') - -package() { - cd "$srcdir" - for file in *.oxt; do -LANG=en_US.utf8 bsdtar -xf $file - done - - install -dm755 "${pkgdir}/usr/share/hunspell" - install -m644 es_*.dic es_*.aff "$pkgdir/usr/share/hunspell" - - # the symlinks - install -dm755 "${pkgdir}/usr/share/myspell/dicts" - pushd "$pkgdir/usr/share/myspell/dicts" -for file in "$pkgdir"/usr/share/hunspell/*; do - ln -sv /usr/share/hunspell/$(basename $file) . -done - popd - - # docs - install -dm755 "${pkgdir}/usr/share/doc/$pkgname" - install -m644 README.txt "$pkgdir/usr/share/doc/$pkgname" -} - Copied: hunspell-es/repos/extra-any/PKGBUILD (from rev 241163, hunspell-es/trunk/PKGBUILD) === --- PKGBUILD(rev 0) +++ PKGBUILD2015-06-21 14:52:16 UTC (rev 241164) @@ -0,0 +1,83 @@ +# $Id$ +# Maintainer: Angel Velasquez +# Maintainer: AndyRTR + +pkgname=hunspell-es +pkgver=0.8 +pkgrel=1 +epoch=1 +pkgdesc="Spanish hunspell dictionaries" +arch=(any) +url="https://github.com/sbosio/rla-es"; +license=('LGPL3') +makedepends=('hunspell') +optdepends=('hunspell: the spell checking libraries and apps') +noextract=(es_ANY.oxt es_AR.oxt es_BO.oxt es_CL.oxt es_CO.oxt + es_CR.oxt es_CU.oxt es_DO.oxt es_EC.oxt es_ES.oxt + es_GT.oxt es_HN.oxt es_MX.oxt es_NI.oxt es_PA.oxt + es_PE.oxt es_PR.oxt es_PY.oxt es_SV.oxt es_
[arch-commits] Commit in hunspell-es/repos/extra-any (PKGBUILD PKGBUILD)
Date: Wednesday, November 27, 2013 @ 09:27:58 Author: angvp Revision: 200372 archrelease: copy trunk to extra-any Added: hunspell-es/repos/extra-any/PKGBUILD (from rev 200371, hunspell-es/trunk/PKGBUILD) Deleted: hunspell-es/repos/extra-any/PKGBUILD --+ PKGBUILD | 163 +++-- 1 file changed, 83 insertions(+), 80 deletions(-) Deleted: PKGBUILD === --- PKGBUILD2013-11-27 08:27:14 UTC (rev 200371) +++ PKGBUILD2013-11-27 08:27:58 UTC (rev 200372) @@ -1,80 +0,0 @@ -# $Id$ -# Maintainer: Angel Velasquez -# Maintainer: AndyRTR - -pkgname=hunspell-es -pkgver=0.7 -pkgrel=1 -epoch=1 -pkgdesc="Spanish hunspell dictionaries" -arch=(any) -url="https://forja.rediris.es/projects/rla-es/"; -license=('LGPL3') -makedepends=('hunspell') -optdepends=('hunspell: the spell checking libraries and apps') -noextract=(es_ANY.oxt es_AR.oxt es_BO.oxt es_CL.oxt es_CO.oxt - es_CR.oxt es_CU.oxt es_DO.oxt es_EC.oxt es_ES.oxt - es_GT.oxt es_HN.oxt es_MX.oxt es_NI.oxt es_PA.oxt - es_PE.oxt es_PR.oxt es_SV.oxt es_UY.oxt es_VE.oxt) -source=('http://forja.rediris.es/frs/download.php/2618/es_ANY.oxt' -'http://forja.rediris.es/frs/download.php/2619/es_AR.oxt' -'http://forja.rediris.es/frs/download.php/2620/es_BO.oxt' -'http://forja.rediris.es/frs/download.php/2621/es_CL.oxt' -'http://forja.rediris.es/frs/download.php/2622/es_CO.oxt' -'http://forja.rediris.es/frs/download.php/2623/es_CR.oxt' -'http://forja.rediris.es/frs/download.php/2624/es_CU.oxt' -'http://forja.rediris.es/frs/download.php/2625/es_DO.oxt' -'http://forja.rediris.es/frs/download.php/2626/es_EC.oxt' -'http://forja.rediris.es/frs/download.php/2627/es_ES.oxt' -'http://forja.rediris.es/frs/download.php/2628/es_GT.oxt' -'http://forja.rediris.es/frs/download.php/2629/es_HN.oxt' -'http://forja.rediris.es/frs/download.php/2630/es_MX.oxt' -'http://forja.rediris.es/frs/download.php/2631/es_NI.oxt' -'http://forja.rediris.es/frs/download.php/2632/es_PA.oxt' -'http://forja.rediris.es/frs/download.php/2633/es_PE.oxt' -'http://forja.rediris.es/frs/download.php/2634/es_PR.oxt' -'http://forja.rediris.es/frs/download.php/2635/es_SV.oxt' -'http://forja.rediris.es/frs/download.php/2636/es_UY.oxt' -'http://forja.rediris.es/frs/download.php/2637/es_VE.oxt') - -package() { - cd "$srcdir" - for file in *.oxt; do -LANG=en_US.utf8 bsdtar -xf $file - done - - install -dm755 "${pkgdir}/usr/share/hunspell" - install -m644 es_*.dic es_*.aff "$pkgdir/usr/share/hunspell" - - # the symlinks - install -dm755 "${pkgdir}/usr/share/myspell/dicts" - pushd "$pkgdir/usr/share/myspell/dicts" -for file in "$pkgdir"/usr/share/hunspell/*; do - ln -sv /usr/share/hunspell/$(basename $file) . -done - popd - - # docs - install -dm755 "${pkgdir}/usr/share/doc/$pkgname" - install -m644 README.txt "$pkgdir/usr/share/doc/$pkgname" -} -md5sums=('9676e94487e4a09a1c7adb8e2357774d' - '15a2bbadfbdaed50a85cee048e0448e1' - 'a946fa01accc85bba4ac4c8a65bda990' - '63156d580f93eb5eabe150a64e891180' - '2e598c9f6425144c6a74ef075df55536' - '023f3308e7f2bda68409eadf55cffc1a' - '8076fddccbfc8119afce7e63797a86f1' - 'c0b96ecfe25b90eba9dfd455a44e876d' - 'e40a866e0f4fa43d19c606be2c78a919' - '28776430bb77547fd70cf6db504bda63' - '5bba781582ffa42acfdd3c5dd3899add' - 'cc4a81266f2aa06a3980dfaef3dc' - 'e237488413344febc567d41c716d1608' - 'e5396b996777854860e1071953bf1159' - '3c77326ae63077d08bd167039831506d' - 'a0fe867554ff50d79a92534e904204f4' - 'b9e10ee9f910b4e983c088da31635cc4' - '17987e5ab82801d3b0a583bcc617cc25' - '8b511d64b06ddec5c8589cdc1f74a39c' - '2c0312e7100b6a5347f16fa33f1a29ba') Copied: hunspell-es/repos/extra-any/PKGBUILD (from rev 200371, hunspell-es/trunk/PKGBUILD) === --- PKGBUILD(rev 0) +++ PKGBUILD2013-11-27 08:27:58 UTC (rev 200372) @@ -0,0 +1,83 @@ +# $Id$ +# Maintainer: Angel Velasquez +# Maintainer: AndyRTR + +pkgname=hunspell-es +pkgver=0.7 +pkgrel=2 +epoch=1 +pkgdesc="Spanish hunspell dictionaries" +arch=(any) +url="https://forja.rediris.es/projects/rla-es/"; +license=('LGPL3') +makedepends=('hunspell') +optdepends=('hunspell: the spell checking libraries and apps') +noextract=(es_ANY.oxt es_AR.oxt es_BO.oxt es_CL.oxt es_CO.oxt + es_CR.oxt es_CU.oxt es_DO.oxt es_EC.oxt es_ES.oxt + es_GT.oxt es_HN.oxt es_MX.oxt es_NI.oxt es_PA.oxt + es_PE.oxt es_PR.oxt es_PY.oxt es_SV.oxt es_UY.oxt es_VE.oxt) +source=('http://forja.rediris.es/frs/download.php/2933/es_ANY.oxt' +'http://forja.
[arch-commits] Commit in hunspell-es/repos/extra-any (PKGBUILD PKGBUILD)
Date: Wednesday, November 27, 2013 @ 09:03:22 Author: angvp Revision: 200366 archrelease: copy trunk to extra-any Added: hunspell-es/repos/extra-any/PKGBUILD (from rev 200365, hunspell-es/trunk/PKGBUILD) Deleted: hunspell-es/repos/extra-any/PKGBUILD --+ PKGBUILD | 159 ++--- 1 file changed, 80 insertions(+), 79 deletions(-) Deleted: PKGBUILD === --- PKGBUILD2013-11-27 08:02:44 UTC (rev 200365) +++ PKGBUILD2013-11-27 08:03:22 UTC (rev 200366) @@ -1,79 +0,0 @@ -# $Id$ -# Maintainer: AndyRTR - -pkgname=hunspell-es -pkgver=0.6 -pkgrel=1 -epoch=1 -pkgdesc="Spanish hunspell dictionaries" -arch=(any) -url="https://forja.rediris.es/projects/rla-es/"; -license=('LGPL3') -makedepends=('hunspell') -optdepends=('hunspell: the spell checking libraries and apps') -noextract=(es_ANY.oxt es_AR.oxt es_BO.oxt es_CL.oxt es_CO.oxt - es_CR.oxt es_CU.oxt es_DO.oxt es_EC.oxt es_ES.oxt - es_GT.oxt es_HN.oxt es_MX.oxt es_NI.oxt es_PA.oxt - es_PE.oxt es_PR.oxt es_SV.oxt es_UY.oxt es_VE.oxt) -source=('http://forja.rediris.es/frs/download.php/2618/es_ANY.oxt' -'http://forja.rediris.es/frs/download.php/2619/es_AR.oxt' -'http://forja.rediris.es/frs/download.php/2620/es_BO.oxt' -'http://forja.rediris.es/frs/download.php/2621/es_CL.oxt' -'http://forja.rediris.es/frs/download.php/2622/es_CO.oxt' -'http://forja.rediris.es/frs/download.php/2623/es_CR.oxt' -'http://forja.rediris.es/frs/download.php/2624/es_CU.oxt' -'http://forja.rediris.es/frs/download.php/2625/es_DO.oxt' -'http://forja.rediris.es/frs/download.php/2626/es_EC.oxt' -'http://forja.rediris.es/frs/download.php/2627/es_ES.oxt' -'http://forja.rediris.es/frs/download.php/2628/es_GT.oxt' -'http://forja.rediris.es/frs/download.php/2629/es_HN.oxt' -'http://forja.rediris.es/frs/download.php/2630/es_MX.oxt' -'http://forja.rediris.es/frs/download.php/2631/es_NI.oxt' -'http://forja.rediris.es/frs/download.php/2632/es_PA.oxt' -'http://forja.rediris.es/frs/download.php/2633/es_PE.oxt' -'http://forja.rediris.es/frs/download.php/2634/es_PR.oxt' -'http://forja.rediris.es/frs/download.php/2635/es_SV.oxt' -'http://forja.rediris.es/frs/download.php/2636/es_UY.oxt' -'http://forja.rediris.es/frs/download.php/2637/es_VE.oxt') -md5sums=('9676e94487e4a09a1c7adb8e2357774d' - '15a2bbadfbdaed50a85cee048e0448e1' - 'a946fa01accc85bba4ac4c8a65bda990' - '63156d580f93eb5eabe150a64e891180' - '2e598c9f6425144c6a74ef075df55536' - '023f3308e7f2bda68409eadf55cffc1a' - '8076fddccbfc8119afce7e63797a86f1' - 'c0b96ecfe25b90eba9dfd455a44e876d' - 'e40a866e0f4fa43d19c606be2c78a919' - '28776430bb77547fd70cf6db504bda63' - '5bba781582ffa42acfdd3c5dd3899add' - 'cc4a81266f2aa06a3980dfaef3dc' - 'e237488413344febc567d41c716d1608' - 'e5396b996777854860e1071953bf1159' - '3c77326ae63077d08bd167039831506d' - 'a0fe867554ff50d79a92534e904204f4' - 'b9e10ee9f910b4e983c088da31635cc4' - '17987e5ab82801d3b0a583bcc617cc25' - '8b511d64b06ddec5c8589cdc1f74a39c' - '2c0312e7100b6a5347f16fa33f1a29ba') - -package() { - cd "$srcdir" - for file in *.oxt; do -LANG=en_US.utf8 bsdtar -xf $file - done - - install -dm755 "${pkgdir}/usr/share/hunspell" - install -m644 es_*.dic es_*.aff "$pkgdir/usr/share/hunspell" - - # the symlinks - install -dm755 "${pkgdir}/usr/share/myspell/dicts" - pushd "$pkgdir/usr/share/myspell/dicts" -for file in "$pkgdir"/usr/share/hunspell/*; do - ln -sv /usr/share/hunspell/$(basename $file) . -done - popd - - # docs - install -dm755 "${pkgdir}/usr/share/doc/$pkgname" - install -m644 README.txt "$pkgdir/usr/share/doc/$pkgname" -} Copied: hunspell-es/repos/extra-any/PKGBUILD (from rev 200365, hunspell-es/trunk/PKGBUILD) === --- PKGBUILD(rev 0) +++ PKGBUILD2013-11-27 08:03:22 UTC (rev 200366) @@ -0,0 +1,80 @@ +# $Id$ +# Maintainer: Angel Velasquez +# Maintainer: AndyRTR + +pkgname=hunspell-es +pkgver=0.7 +pkgrel=1 +epoch=1 +pkgdesc="Spanish hunspell dictionaries" +arch=(any) +url="https://forja.rediris.es/projects/rla-es/"; +license=('LGPL3') +makedepends=('hunspell') +optdepends=('hunspell: the spell checking libraries and apps') +noextract=(es_ANY.oxt es_AR.oxt es_BO.oxt es_CL.oxt es_CO.oxt + es_CR.oxt es_CU.oxt es_DO.oxt es_EC.oxt es_ES.oxt + es_GT.oxt es_HN.oxt es_MX.oxt es_NI.oxt es_PA.oxt + es_PE.oxt es_PR.oxt es_SV.oxt es_UY.oxt es_VE.oxt) +source=('http://forja.rediris.es/frs/download.php/2618/es_ANY.oxt' +'http://forja.rediris.es/frs/download.php/2619/es_AR.oxt'
[arch-commits] Commit in hunspell-es/repos/extra-any (PKGBUILD PKGBUILD)
Date: Sunday, October 14, 2012 @ 01:36:46 Author: eric Revision: 168689 archrelease: copy trunk to extra-any Added: hunspell-es/repos/extra-any/PKGBUILD (from rev 168688, hunspell-es/trunk/PKGBUILD) Deleted: hunspell-es/repos/extra-any/PKGBUILD --+ PKGBUILD | 150 - 1 file changed, 79 insertions(+), 71 deletions(-) Deleted: PKGBUILD === --- PKGBUILD2012-10-14 05:36:33 UTC (rev 168688) +++ PKGBUILD2012-10-14 05:36:46 UTC (rev 168689) @@ -1,71 +0,0 @@ -# $Id$ -# Maintainer: AndyRTR - -pkgname=hunspell-es -pkgver=20051101 -pkgrel=1 -pkgdesc="Spanish hunspell dictionaries" -arch=(any) -url="http://hunspell.sourceforge.net/"; -license=('LGPL') -makedepends=('hunspell') -optdepends=('hunspell: the spell checking libraries and apps') -source=('http://ftp.osuosl.org/pub/openoffice/contrib/dictionaries/es_AR.zip' - 'http://ftp.osuosl.org/pub/openoffice/contrib/dictionaries/es_BO.zip' - 'http://ftp.osuosl.org/pub/openoffice/contrib/dictionaries/es_CL.zip' - 'http://ftp.osuosl.org/pub/openoffice/contrib/dictionaries/es_CO.zip' - 'http://ftp.osuosl.org/pub/openoffice/contrib/dictionaries/es_CR.zip' - 'http://ftp.osuosl.org/pub/openoffice/contrib/dictionaries/es_CU.zip' - 'http://ftp.osuosl.org/pub/openoffice/contrib/dictionaries/es_DO.zip' - 'http://ftp.osuosl.org/pub/openoffice/contrib/dictionaries/es_EC.zip' - 'http://ftp.osuosl.org/pub/openoffice/contrib/dictionaries/es_ES.zip' - 'http://ftp.osuosl.org/pub/openoffice/contrib/dictionaries/es_GT.zip' - 'http://ftp.osuosl.org/pub/openoffice/contrib/dictionaries/es_HN.zip' - 'http://ftp.osuosl.org/pub/openoffice/contrib/dictionaries/es_MX.zip' - 'http://ftp.osuosl.org/pub/openoffice/contrib/dictionaries/es_NI.zip' - 'http://ftp.osuosl.org/pub/openoffice/contrib/dictionaries/es_PA.zip' - 'http://ftp.osuosl.org/pub/openoffice/contrib/dictionaries/es_PE.zip' - 'http://ftp.osuosl.org/pub/openoffice/contrib/dictionaries/es_PR.zip' - 'http://ftp.osuosl.org/pub/openoffice/contrib/dictionaries/es_PY.zip' - 'http://ftp.osuosl.org/pub/openoffice/contrib/dictionaries/es_SV.zip' - 'http://ftp.osuosl.org/pub/openoffice/contrib/dictionaries/es_UY.zip' - 'http://ftp.osuosl.org/pub/openoffice/contrib/dictionaries/es_VE.zip') -md5sums=('4c634da95fad11093ba65f6367ee5e19' - '564921b9f82d9f2f46ea4b53e516975b' - 'b75c996c3665d2a73bab21588b9ee258' - 'cbc916ab3433755592868565a60471b8' - 'f2641aa3187a4b411b7a918046100848' - 'b13e5bbf7c5eddef292dac61c9f7b7fb' - 'e38aba8b2f43041b41df36bb383a59e2' - '88bde5878d2a79807b4c38bc785001aa' - '4b272f7c958dd619b2ddc007c45db53b' - 'cc0f781cb0d1662954692da3e03cb46d' - 'b13d8e86654c7552d2834c1024bbd391' - 'e32f5ec8c94fd902a9823dae4040a019' - '87ac50f7fc714452b421dc91d581b476' - '2f71f67090afb7963e7bcbbffbe317de' - '0be27bea02ecdca8b651fad52193ab96' - 'b95eadbad8ae02bddb5e1fed25075e15' - 'd1f06558dc4fac30c7926f26216b3fec' - '928536ead27886e819a5910d8fa1052f' - '23c13ab1e0902f4b3d936839074daa12' - '748e15e39e7c5b52877bd7f96304') -es_langs="es_AR es_BO es_CL es_CO es_CR es_CU es_DO es_EC es_ES es_GT es_HN es_MX es_NI es_PA es_PE es_PR es_PY es_SV es_UY es_VE" # <- obsolete? it's not used in the pkg - -package() { - cd "$srcdir" - install -dm755 ${pkgdir}/usr/share/hunspell - cp -p *.dic *.aff $pkgdir/usr/share/hunspell - - # the symlinks - install -dm755 ${pkgdir}/usr/share/myspell/dicts - pushd $pkgdir/usr/share/myspell/dicts -for file in $pkgdir/usr/share/hunspell/*; do - ln -sv /usr/share/hunspell/$(basename $file) . -done - popd - - # docs - install -dm755 ${pkgdir}/usr/share/doc/$pkgname - cp -p README_*.txt $pkgdir/usr/share/doc/$pkgname -} Copied: hunspell-es/repos/extra-any/PKGBUILD (from rev 168688, hunspell-es/trunk/PKGBUILD) === --- PKGBUILD(rev 0) +++ PKGBUILD2012-10-14 05:36:46 UTC (rev 168689) @@ -0,0 +1,79 @@ +# $Id$ +# Maintainer: AndyRTR + +pkgname=hunspell-es +pkgver=0.6 +pkgrel=1 +epoch=1 +pkgdesc="Spanish hunspell dictionaries" +arch=(any) +url="https://forja.rediris.es/projects/rla-es/"; +license=('LGPL3') +makedepends=('hunspell') +optdepends=('hunspell: the spell checking libraries and apps') +noextract=(es_ANY.oxt es_AR.oxt es_BO.oxt es_CL.oxt es_CO.oxt + es_CR.oxt es_CU.oxt es_DO.oxt es_EC.oxt es_ES.oxt + es_GT.oxt es_HN.oxt es_MX.oxt es_NI.oxt es_PA.oxt + es_PE.oxt es_PR.oxt es_SV.oxt es_UY.oxt es_VE.oxt) +source=('http://forja.rediris.es/frs/download.php/2618/es_ANY.oxt' +'http://forja.rediris.es/frs/download.php/2619/es_AR.oxt' +'http://
[arch-commits] Commit in hunspell-es/repos/extra-any (PKGBUILD PKGBUILD)
Date: Saturday, February 18, 2012 @ 19:37:36 Author: allan Revision: 150623 archrelease: copy trunk to extra-any Added: hunspell-es/repos/extra-any/PKGBUILD (from rev 150622, hunspell-es/trunk/PKGBUILD) Deleted: hunspell-es/repos/extra-any/PKGBUILD --+ PKGBUILD | 146 + 1 file changed, 71 insertions(+), 75 deletions(-) Deleted: PKGBUILD === --- PKGBUILD2012-02-19 00:37:03 UTC (rev 150622) +++ PKGBUILD2012-02-19 00:37:36 UTC (rev 150623) @@ -1,75 +0,0 @@ -# $Id$ -# Maintainer: AndyRTR - -pkgname=hunspell-es -pkgver=20051101 -pkgrel=1 -pkgdesc="Spanish hunspell dictionaries" -arch=(any) -url="http://hunspell.sourceforge.net/"; -license=('LGPL') -makedepends=('hunspell') -optdepends=('hunspell: the spell checking libraries and apps') -source=('http://ftp.osuosl.org/pub/openoffice/contrib/dictionaries/es_AR.zip' - 'http://ftp.osuosl.org/pub/openoffice/contrib/dictionaries/es_BO.zip' - 'http://ftp.osuosl.org/pub/openoffice/contrib/dictionaries/es_CL.zip' - 'http://ftp.osuosl.org/pub/openoffice/contrib/dictionaries/es_CO.zip' - 'http://ftp.osuosl.org/pub/openoffice/contrib/dictionaries/es_CR.zip' - 'http://ftp.osuosl.org/pub/openoffice/contrib/dictionaries/es_CU.zip' - 'http://ftp.osuosl.org/pub/openoffice/contrib/dictionaries/es_DO.zip' - 'http://ftp.osuosl.org/pub/openoffice/contrib/dictionaries/es_EC.zip' - 'http://ftp.osuosl.org/pub/openoffice/contrib/dictionaries/es_ES.zip' - 'http://ftp.osuosl.org/pub/openoffice/contrib/dictionaries/es_GT.zip' - 'http://ftp.osuosl.org/pub/openoffice/contrib/dictionaries/es_HN.zip' - 'http://ftp.osuosl.org/pub/openoffice/contrib/dictionaries/es_MX.zip' - 'http://ftp.osuosl.org/pub/openoffice/contrib/dictionaries/es_NI.zip' - 'http://ftp.osuosl.org/pub/openoffice/contrib/dictionaries/es_PA.zip' - 'http://ftp.osuosl.org/pub/openoffice/contrib/dictionaries/es_PE.zip' - 'http://ftp.osuosl.org/pub/openoffice/contrib/dictionaries/es_PR.zip' - 'http://ftp.osuosl.org/pub/openoffice/contrib/dictionaries/es_PY.zip' - 'http://ftp.osuosl.org/pub/openoffice/contrib/dictionaries/es_SV.zip' - 'http://ftp.osuosl.org/pub/openoffice/contrib/dictionaries/es_UY.zip' - 'http://ftp.osuosl.org/pub/openoffice/contrib/dictionaries/es_VE.zip') -md5sums=('4c634da95fad11093ba65f6367ee5e19' - '564921b9f82d9f2f46ea4b53e516975b' - 'b75c996c3665d2a73bab21588b9ee258' - 'cbc916ab3433755592868565a60471b8' - 'f2641aa3187a4b411b7a918046100848' - 'b13e5bbf7c5eddef292dac61c9f7b7fb' - 'e38aba8b2f43041b41df36bb383a59e2' - '88bde5878d2a79807b4c38bc785001aa' - '4b272f7c958dd619b2ddc007c45db53b' - 'cc0f781cb0d1662954692da3e03cb46d' - 'b13d8e86654c7552d2834c1024bbd391' - 'e32f5ec8c94fd902a9823dae4040a019' - '87ac50f7fc714452b421dc91d581b476' - '2f71f67090afb7963e7bcbbffbe317de' - '0be27bea02ecdca8b651fad52193ab96' - 'b95eadbad8ae02bddb5e1fed25075e15' - 'd1f06558dc4fac30c7926f26216b3fec' - '928536ead27886e819a5910d8fa1052f' - '23c13ab1e0902f4b3d936839074daa12' - '748e15e39e7c5b52877bd7f96304') -es_langs="es_AR es_BO es_CL es_CO es_CR es_CU es_DO es_EC es_ES es_GT es_HN es_MX es_NI es_PA es_PE es_PR es_PY es_SV es_UY es_VE" # <- obsolete? it's not used in the pkg - -build() { - /bin/true -} - -package() { - cd "$srcdir" - install -dm755 ${pkgdir}/usr/share/hunspell - cp -p *.dic *.aff $pkgdir/usr/share/hunspell - - # the symlinks - install -dm755 ${pkgdir}/usr/share/myspell/dicts - pushd $pkgdir/usr/share/myspell/dicts -for file in $pkgdir/usr/share/hunspell/*; do - ln -sv /usr/share/hunspell/$(basename $file) . -done - popd - - # docs - install -dm755 ${pkgdir}/usr/share/doc/$pkgname - cp -p README_*.txt $pkgdir/usr/share/doc/$pkgname -} Copied: hunspell-es/repos/extra-any/PKGBUILD (from rev 150622, hunspell-es/trunk/PKGBUILD) === --- PKGBUILD(rev 0) +++ PKGBUILD2012-02-19 00:37:36 UTC (rev 150623) @@ -0,0 +1,71 @@ +# $Id$ +# Maintainer: AndyRTR + +pkgname=hunspell-es +pkgver=20051101 +pkgrel=1 +pkgdesc="Spanish hunspell dictionaries" +arch=(any) +url="http://hunspell.sourceforge.net/"; +license=('LGPL') +makedepends=('hunspell') +optdepends=('hunspell: the spell checking libraries and apps') +source=('http://ftp.osuosl.org/pub/openoffice/contrib/dictionaries/es_AR.zip' + 'http://ftp.osuosl.org/pub/openoffice/contrib/dictionaries/es_BO.zip' + 'http://ftp.osuosl.org/pub/openoffice/contrib/dictionaries/es_CL.zip' + 'http://ftp.osuosl.org/pub/openoffice/contrib/dictionaries/es_CO.zip' + 'http://ftp.osuosl.org/pub/openoffice/contrib/dictionaries/es_CR.
[arch-commits] Commit in hunspell-es/repos/extra-any (PKGBUILD PKGBUILD)
Date: Saturday, February 18, 2012 @ 19:35:34 Author: allan Revision: 150621 archrelease: copy trunk to extra-any Added: hunspell-es/repos/extra-any/PKGBUILD (from rev 150620, hunspell-es/trunk/PKGBUILD) Deleted: hunspell-es/repos/extra-any/PKGBUILD --+ PKGBUILD | 150 ++--- 1 file changed, 75 insertions(+), 75 deletions(-) Deleted: PKGBUILD === --- PKGBUILD2012-02-19 00:34:08 UTC (rev 150620) +++ PKGBUILD2012-02-19 00:35:34 UTC (rev 150621) @@ -1,75 +0,0 @@ -# $Id$ -# Maintainer: AndyRTR - -pkgname=hunspell-es -pkgver=20050510 -pkgrel=1 -pkgdesc="Spanish hunspell dictionaries" -arch=(any) -url="http://hunspell.sourceforge.net/"; -license=('LGPL') -makedepends=('hunspell') -optdepends=('hunspell: the spell checking libraries and apps') -source=('http://ftp.osuosl.org/pub/openoffice/contrib/dictionaries/es_AR.zip' - 'http://ftp.osuosl.org/pub/openoffice/contrib/dictionaries/es_BO.zip' - 'http://ftp.osuosl.org/pub/openoffice/contrib/dictionaries/es_CL.zip' - 'http://ftp.osuosl.org/pub/openoffice/contrib/dictionaries/es_CO.zip' - 'http://ftp.osuosl.org/pub/openoffice/contrib/dictionaries/es_CR.zip' - 'http://ftp.osuosl.org/pub/openoffice/contrib/dictionaries/es_CU.zip' - 'http://ftp.osuosl.org/pub/openoffice/contrib/dictionaries/es_DO.zip' - 'http://ftp.osuosl.org/pub/openoffice/contrib/dictionaries/es_EC.zip' - 'http://ftp.osuosl.org/pub/openoffice/contrib/dictionaries/es_ES.zip' - 'http://ftp.osuosl.org/pub/openoffice/contrib/dictionaries/es_GT.zip' - 'http://ftp.osuosl.org/pub/openoffice/contrib/dictionaries/es_HN.zip' - 'http://ftp.osuosl.org/pub/openoffice/contrib/dictionaries/es_MX.zip' - 'http://ftp.osuosl.org/pub/openoffice/contrib/dictionaries/es_NI.zip' - 'http://ftp.osuosl.org/pub/openoffice/contrib/dictionaries/es_PA.zip' - 'http://ftp.osuosl.org/pub/openoffice/contrib/dictionaries/es_PE.zip' - 'http://ftp.osuosl.org/pub/openoffice/contrib/dictionaries/es_PR.zip' - 'http://ftp.osuosl.org/pub/openoffice/contrib/dictionaries/es_PY.zip' - 'http://ftp.osuosl.org/pub/openoffice/contrib/dictionaries/es_SV.zip' - 'http://ftp.osuosl.org/pub/openoffice/contrib/dictionaries/es_UY.zip' - 'http://ftp.osuosl.org/pub/openoffice/contrib/dictionaries/es_VE.zip') -md5sums=('4c634da95fad11093ba65f6367ee5e19' - '564921b9f82d9f2f46ea4b53e516975b' - 'b75c996c3665d2a73bab21588b9ee258' - 'cbc916ab3433755592868565a60471b8' - 'f2641aa3187a4b411b7a918046100848' - 'b13e5bbf7c5eddef292dac61c9f7b7fb' - 'e38aba8b2f43041b41df36bb383a59e2' - '88bde5878d2a79807b4c38bc785001aa' - '4b272f7c958dd619b2ddc007c45db53b' - 'cc0f781cb0d1662954692da3e03cb46d' - 'b13d8e86654c7552d2834c1024bbd391' - 'e32f5ec8c94fd902a9823dae4040a019' - '87ac50f7fc714452b421dc91d581b476' - '2f71f67090afb7963e7bcbbffbe317de' - '0be27bea02ecdca8b651fad52193ab96' - 'b95eadbad8ae02bddb5e1fed25075e15' - 'd1f06558dc4fac30c7926f26216b3fec' - '928536ead27886e819a5910d8fa1052f' - '23c13ab1e0902f4b3d936839074daa12' - '748e15e39e7c5b52877bd7f96304') -es_langs="es_AR es_BO es_CL es_CO es_CR es_CU es_DO es_EC es_ES es_GT es_HN es_MX es_NI es_PA es_PE es_PR es_PY es_SV es_UY es_VE" # <- obsolete? it's not used in the pkg - -build() { - /bin/true -} - -package() { - cd "$srcdir" - install -dm755 ${pkgdir}/usr/share/hunspell - cp -p *.dic *.aff $pkgdir/usr/share/hunspell - - # the symlinks - install -dm755 ${pkgdir}/usr/share/myspell/dicts - pushd $pkgdir/usr/share/myspell/dicts -for file in $pkgdir/usr/share/hunspell/*; do - ln -sv /usr/share/hunspell/$(basename $file) . -done - popd - - # docs - install -dm755 ${pkgdir}/usr/share/doc/$pkgname - cp -p README_*.txt $pkgdir/usr/share/doc/$pkgname -} Copied: hunspell-es/repos/extra-any/PKGBUILD (from rev 150620, hunspell-es/trunk/PKGBUILD) === --- PKGBUILD(rev 0) +++ PKGBUILD2012-02-19 00:35:34 UTC (rev 150621) @@ -0,0 +1,75 @@ +# $Id$ +# Maintainer: AndyRTR + +pkgname=hunspell-es +pkgver=20051101 +pkgrel=1 +pkgdesc="Spanish hunspell dictionaries" +arch=(any) +url="http://hunspell.sourceforge.net/"; +license=('LGPL') +makedepends=('hunspell') +optdepends=('hunspell: the spell checking libraries and apps') +source=('http://ftp.osuosl.org/pub/openoffice/contrib/dictionaries/es_AR.zip' + 'http://ftp.osuosl.org/pub/openoffice/contrib/dictionaries/es_BO.zip' + 'http://ftp.osuosl.org/pub/openoffice/contrib/dictionaries/es_CL.zip' + 'http://ftp.osuosl.org/pub/openoffice/contrib/dictionaries/es_CO.zip' + 'http://ftp.osuosl.org/pub/openoffice/contrib/dictionaries/es_CR.