[arch-commits] Commit in hunspell-es/repos/extra-any (PKGBUILD PKGBUILD)

Antonio Rojas arojas at archlinux.org
Sun Jun 21 14:52:16 UTC 2015


    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
===================================================================
--- PKGBUILD	2015-06-21 14:51:17 UTC (rev 241163)
+++ PKGBUILD	2015-06-21 14:52:16 UTC (rev 241164)
@@ -1,83 +0,0 @@
-# $Id$
-# Maintainer: Angel Velasquez <angvp at archlinux.org> 
-# Maintainer: AndyRTR <andyrtr at archlinux.org>
-
-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)
+++ PKGBUILD	2015-06-21 14:52:16 UTC (rev 241164)
@@ -0,0 +1,83 @@
+# $Id$
+# Maintainer: Angel Velasquez <angvp at archlinux.org> 
+# Maintainer: AndyRTR <andyrtr at archlinux.org>
+
+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"
+}
+



More information about the arch-commits mailing list