[arch-commits] Commit in haskell-text-icu/trunk (PKGBUILD)

2020-12-23 Thread Felix Yan via arch-commits
Date: Wednesday, December 23, 2020 @ 21:30:18
  Author: felixonmars
Revision: 785327

upgpkg: haskell-text-icu 0.7.0.1-36: rebuild with ghc 8.10.3

Modified:
  haskell-text-icu/trunk/PKGBUILD

--+
 PKGBUILD |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

Modified: PKGBUILD
===
--- PKGBUILD2020-12-23 21:29:48 UTC (rev 785326)
+++ PKGBUILD2020-12-23 21:30:18 UTC (rev 785327)
@@ -4,7 +4,7 @@
 _hkgname=text-icu
 pkgname=haskell-text-icu
 pkgver=0.7.0.1
-pkgrel=35
+pkgrel=36
 pkgdesc="Bindings to the ICU library"
 url="https://github.com/bos/text-icu;
 license=("BSD")


[arch-commits] Commit in haskell-text-icu/trunk (PKGBUILD)

2020-12-18 Thread Felix Yan via arch-commits
Date: Saturday, December 19, 2020 @ 06:38:19
  Author: felixonmars
Revision: 779755

upgpkg: haskell-text-icu 0.7.0.1-35: icu 68.2 rebuild

Modified:
  haskell-text-icu/trunk/PKGBUILD

--+
 PKGBUILD |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

Modified: PKGBUILD
===
--- PKGBUILD2020-12-19 06:37:30 UTC (rev 779754)
+++ PKGBUILD2020-12-19 06:38:19 UTC (rev 779755)
@@ -4,7 +4,7 @@
 _hkgname=text-icu
 pkgname=haskell-text-icu
 pkgver=0.7.0.1
-pkgrel=34
+pkgrel=35
 pkgdesc="Bindings to the ICU library"
 url="https://github.com/bos/text-icu;
 license=("BSD")


[arch-commits] Commit in haskell-text-icu/trunk (PKGBUILD icu68.patch)

2020-12-18 Thread Evangelos Foutras via arch-commits
Date: Saturday, December 19, 2020 @ 06:37:30
  Author: foutrelis
Revision: 779754

Fix build with ICU 68

Added:
  haskell-text-icu/trunk/icu68.patch
Modified:
  haskell-text-icu/trunk/PKGBUILD

-+
 PKGBUILD|   11 +--
 icu68.patch |   18 ++
 2 files changed, 27 insertions(+), 2 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2020-12-19 06:32:03 UTC (rev 779753)
+++ PKGBUILD2020-12-19 06:37:30 UTC (rev 779754)
@@ -11,9 +11,16 @@
 arch=('x86_64')
 depends=('ghc-libs' 'icu')
 makedepends=('ghc')
-source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
-sha512sums=('54551ce0d629bffcca32fc855bfcdf2e24282359ce3a32578a98de4f4ad15378fa7df98c59d73323549a2ac873b10a10202bda02f5be83fbe1ab945aac5e50a9')
+source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;
+icu68.patch)
+sha512sums=('54551ce0d629bffcca32fc855bfcdf2e24282359ce3a32578a98de4f4ad15378fa7df98c59d73323549a2ac873b10a10202bda02f5be83fbe1ab945aac5e50a9'
+
'315e366a2d428df2a1ff0064fea15c26cce4581754e9259c832b0f4ad71a50b96e02e9d76548e93f5d7682930d0826d02766db17105110bcf06add542aa67a77')
 
+prepare() {
+cd $_hkgname-$pkgver
+patch -Np1 -i ../icu68.patch
+}
+
 build() {
 cd $_hkgname-$pkgver
 

Added: icu68.patch
===
--- icu68.patch (rev 0)
+++ icu68.patch 2020-12-19 06:37:30 UTC (rev 779754)
@@ -0,0 +1,18 @@
+diff -upr text-icu-0.7.0.1.orig/cbits/text_icu.c 
text-icu-0.7.0.1/cbits/text_icu.c
+--- text-icu-0.7.0.1.orig/cbits/text_icu.c 2015-01-09 06:58:03.0 
+0200
 text-icu-0.7.0.1/cbits/text_icu.c  2020-12-19 08:34:48.487152611 +0200
+@@ -1,3 +1,5 @@
++#include 
++
+ #include "hs_text_icu.h"
+ 
+ UBreakIterator* __hs_ubrk_open(UBreakIteratorType type, const char *locale,
+@@ -305,7 +307,7 @@ int32_t __hs_u_strFoldCase(UChar *dest,
+ 
+ int32_t __hs_u_strCompareIter(UCharIterator *iter1, UCharIterator *iter2)
+ {
+-return u_strCompareIter(iter1, iter2, TRUE);
++return u_strCompareIter(iter1, iter2, true);
+ }
+ 
+ UBlockCode __hs_ublock_getCode(UChar32 c)


[arch-commits] Commit in haskell-text-icu/trunk (PKGBUILD)

2020-08-30 Thread Felix Yan via arch-commits
Date: Sunday, August 30, 2020 @ 20:06:04
  Author: felixonmars
Revision: 693058

upgpkg: haskell-text-icu 0.7.0.1-34: rebuild with happy 1.20.0

Modified:
  haskell-text-icu/trunk/PKGBUILD

--+
 PKGBUILD |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

Modified: PKGBUILD
===
--- PKGBUILD2020-08-30 20:04:59 UTC (rev 693057)
+++ PKGBUILD2020-08-30 20:06:04 UTC (rev 693058)
@@ -4,7 +4,7 @@
 _hkgname=text-icu
 pkgname=haskell-text-icu
 pkgver=0.7.0.1
-pkgrel=33
+pkgrel=34
 pkgdesc="Bindings to the ICU library"
 url="https://github.com/bos/text-icu;
 license=("BSD")


[arch-commits] Commit in haskell-text-icu/trunk (PKGBUILD)

2020-08-17 Thread Felix Yan via arch-commits
Date: Monday, August 17, 2020 @ 08:18:28
  Author: felixonmars
Revision: 682531

upgpkg: haskell-text-icu 0.7.0.1-33: rebuild with ghc 8.10.2

Modified:
  haskell-text-icu/trunk/PKGBUILD

--+
 PKGBUILD |4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2020-08-17 08:17:32 UTC (rev 682530)
+++ PKGBUILD2020-08-17 08:18:28 UTC (rev 682531)
@@ -4,7 +4,7 @@
 _hkgname=text-icu
 pkgname=haskell-text-icu
 pkgver=0.7.0.1
-pkgrel=32
+pkgrel=33
 pkgdesc="Bindings to the ICU library"
 url="https://github.com/bos/text-icu;
 license=("BSD")
@@ -20,7 +20,7 @@
 runhaskell Setup configure -O --enable-shared --enable-executable-dynamic 
--disable-library-vanilla \
 --prefix=/usr --docdir=/usr/share/doc/$pkgname \
 --dynlibdir=/usr/lib --libsubdir=\$compiler/site-local/\$pkgid
-runhaskell Setup build
+runhaskell Setup build $MAKEFLAGS
 runhaskell Setup register --gen-script
 runhaskell Setup unregister --gen-script
 sed -i -r -e "s|ghc-pkg.*update[^ ]* |&'--force' |" register.sh


[arch-commits] Commit in haskell-text-icu/trunk (PKGBUILD)

2020-04-27 Thread Evangelos Foutras via arch-commits
Date: Monday, April 27, 2020 @ 08:00:39
  Author: foutrelis
Revision: 621796

icu 67.1 rebuild

Modified:
  haskell-text-icu/trunk/PKGBUILD

--+
 PKGBUILD |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

Modified: PKGBUILD
===
--- PKGBUILD2020-04-27 07:54:27 UTC (rev 621795)
+++ PKGBUILD2020-04-27 08:00:39 UTC (rev 621796)
@@ -4,7 +4,7 @@
 _hkgname=text-icu
 pkgname=haskell-text-icu
 pkgver=0.7.0.1
-pkgrel=31
+pkgrel=32
 pkgdesc="Bindings to the ICU library"
 url="https://github.com/bos/text-icu;
 license=("BSD")


[arch-commits] Commit in haskell-text-icu/trunk (PKGBUILD)

2020-04-23 Thread Felix Yan via arch-commits
Date: Thursday, April 23, 2020 @ 22:35:09
  Author: felixonmars
Revision: 618337

upgpkg: haskell-text-icu 0.7.0.1-31: rebuild with ghc 8.10.1

Modified:
  haskell-text-icu/trunk/PKGBUILD

--+
 PKGBUILD |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

Modified: PKGBUILD
===
--- PKGBUILD2020-04-23 22:34:32 UTC (rev 618336)
+++ PKGBUILD2020-04-23 22:35:09 UTC (rev 618337)
@@ -4,7 +4,7 @@
 _hkgname=text-icu
 pkgname=haskell-text-icu
 pkgver=0.7.0.1
-pkgrel=30
+pkgrel=31
 pkgdesc="Bindings to the ICU library"
 url="https://github.com/bos/text-icu;
 license=("BSD")


[arch-commits] Commit in haskell-text-icu/trunk (PKGBUILD)

2020-02-26 Thread Felix Yan via arch-commits
Date: Wednesday, February 26, 2020 @ 23:34:31
  Author: felixonmars
Revision: 583599

upgpkg: haskell-text-icu 0.7.0.1-30: rebuild with ghc 8.8.3

Modified:
  haskell-text-icu/trunk/PKGBUILD

--+
 PKGBUILD |6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2020-02-26 23:33:43 UTC (rev 583598)
+++ PKGBUILD2020-02-26 23:34:31 UTC (rev 583599)
@@ -4,7 +4,7 @@
 _hkgname=text-icu
 pkgname=haskell-text-icu
 pkgver=0.7.0.1
-pkgrel=29
+pkgrel=30
 pkgdesc="Bindings to the ICU library"
 url="https://github.com/bos/text-icu;
 license=("BSD")
@@ -33,6 +33,6 @@
 install -D -m744 register.sh 
"$pkgdir"/usr/share/haskell/register/$pkgname.sh
 install -D -m744 unregister.sh 
"$pkgdir"/usr/share/haskell/unregister/$pkgname.sh
 runhaskell Setup copy --destdir="$pkgdir"
-install -D -m644 "LICENSE" 
"${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
-rm -f "${pkgdir}/usr/share/doc/${pkgname}/LICENSE"
+install -D -m644 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
+rm -f "$pkgdir"/usr/share/doc/$pkgname/LICENSE
 }


[arch-commits] Commit in haskell-text-icu/trunk (PKGBUILD)

2020-02-15 Thread Felix Yan via arch-commits
Date: Saturday, February 15, 2020 @ 16:26:19
  Author: felixonmars
Revision: 571709

upgpkg: haskell-text-icu 0.7.0.1-29: rebuild with ghc 8.8.2

Modified:
  haskell-text-icu/trunk/PKGBUILD

--+
 PKGBUILD |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

Modified: PKGBUILD
===
--- PKGBUILD2020-02-15 16:25:27 UTC (rev 571708)
+++ PKGBUILD2020-02-15 16:26:19 UTC (rev 571709)
@@ -4,7 +4,7 @@
 _hkgname=text-icu
 pkgname=haskell-text-icu
 pkgver=0.7.0.1
-pkgrel=28
+pkgrel=29
 pkgdesc="Bindings to the ICU library"
 url="https://github.com/bos/text-icu;
 license=("BSD")


[arch-commits] Commit in haskell-text-icu/trunk (PKGBUILD)

2020-01-08 Thread Felix Yan via arch-commits
Date: Wednesday, January 8, 2020 @ 22:49:56
  Author: felixonmars
Revision: 550796

upgpkg: haskell-text-icu 0.7.0.1-28: rebuild with ghc 8.8.1, cabal-doctest 
1.0.7, polyparse 1.13, primitive 0.7.0.0, regex-base 0.94.0.0, regex-pcre 
0.95.0.0, regex-posix 0.96.0.0, regex-tdfa 1.3.1.0, easytest 0.3

Modified:
  haskell-text-icu/trunk/PKGBUILD

--+
 PKGBUILD |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

Modified: PKGBUILD
===
--- PKGBUILD2020-01-08 22:49:10 UTC (rev 550795)
+++ PKGBUILD2020-01-08 22:49:56 UTC (rev 550796)
@@ -4,7 +4,7 @@
 _hkgname=text-icu
 pkgname=haskell-text-icu
 pkgver=0.7.0.1
-pkgrel=27
+pkgrel=28
 pkgdesc="Bindings to the ICU library"
 url="https://github.com/bos/text-icu;
 license=("BSD")


[arch-commits] Commit in haskell-text-icu/trunk (PKGBUILD)

2019-11-11 Thread Felix Yan via arch-commits
Date: Monday, November 11, 2019 @ 21:47:41
  Author: felixonmars
Revision: 526832

icu 65.1 / poppler 0.82.0 rebuild

Modified:
  haskell-text-icu/trunk/PKGBUILD

--+
 PKGBUILD |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

Modified: PKGBUILD
===
--- PKGBUILD2019-11-11 21:30:27 UTC (rev 526831)
+++ PKGBUILD2019-11-11 21:47:41 UTC (rev 526832)
@@ -4,7 +4,7 @@
 _hkgname=text-icu
 pkgname=haskell-text-icu
 pkgver=0.7.0.1
-pkgrel=26
+pkgrel=27
 pkgdesc="Bindings to the ICU library"
 url="https://github.com/bos/text-icu;
 license=("BSD")


[arch-commits] Commit in haskell-text-icu/trunk (PKGBUILD)

2019-04-25 Thread Felix Yan via arch-commits
Date: Thursday, April 25, 2019 @ 16:17:00
  Author: felixonmars
Revision: 453957

upgpkg: haskell-text-icu 0.7.0.1-26

rebuild with ghc 8.6.5

Modified:
  haskell-text-icu/trunk/PKGBUILD

--+
 PKGBUILD |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

Modified: PKGBUILD
===
--- PKGBUILD2019-04-25 16:16:12 UTC (rev 453956)
+++ PKGBUILD2019-04-25 16:17:00 UTC (rev 453957)
@@ -4,7 +4,7 @@
 _hkgname=text-icu
 pkgname=haskell-text-icu
 pkgver=0.7.0.1
-pkgrel=25
+pkgrel=26
 pkgdesc="Bindings to the ICU library"
 url="https://github.com/bos/text-icu;
 license=("BSD")


[arch-commits] Commit in haskell-text-icu/trunk (PKGBUILD)

2019-04-05 Thread Evangelos Foutras via arch-commits
Date: Friday, April 5, 2019 @ 10:32:20
  Author: foutrelis
Revision: 449776

icu 64.1 rebuild

Modified:
  haskell-text-icu/trunk/PKGBUILD

--+
 PKGBUILD |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

Modified: PKGBUILD
===
--- PKGBUILD2019-04-05 10:31:51 UTC (rev 449775)
+++ PKGBUILD2019-04-05 10:32:20 UTC (rev 449776)
@@ -4,7 +4,7 @@
 _hkgname=text-icu
 pkgname=haskell-text-icu
 pkgver=0.7.0.1
-pkgrel=24
+pkgrel=25
 pkgdesc="Bindings to the ICU library"
 url="https://github.com/bos/text-icu;
 license=("BSD")


[arch-commits] Commit in haskell-text-icu/trunk (PKGBUILD)

2019-03-09 Thread Felix Yan via arch-commits
Date: Saturday, March 9, 2019 @ 23:28:57
  Author: felixonmars
Revision: 438732

upgpkg: haskell-text-icu 0.7.0.1-24

rebuild with ghc 8.6.4

Modified:
  haskell-text-icu/trunk/PKGBUILD

--+
 PKGBUILD |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

Modified: PKGBUILD
===
--- PKGBUILD2019-03-09 23:28:20 UTC (rev 438731)
+++ PKGBUILD2019-03-09 23:28:57 UTC (rev 438732)
@@ -4,7 +4,7 @@
 _hkgname=text-icu
 pkgname=haskell-text-icu
 pkgver=0.7.0.1
-pkgrel=23
+pkgrel=24
 pkgdesc="Bindings to the ICU library"
 url="https://github.com/bos/text-icu;
 license=("BSD")


[arch-commits] Commit in haskell-text-icu/trunk (PKGBUILD)

2018-12-09 Thread Felix Yan via arch-commits
Date: Sunday, December 9, 2018 @ 23:20:37
  Author: felixonmars
Revision: 413477

upgpkg: haskell-text-icu 0.7.0.1-23

rebuild with ghc 8.6.3, cmark-gfm 0.1.6

Modified:
  haskell-text-icu/trunk/PKGBUILD

--+
 PKGBUILD |4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2018-12-09 23:19:56 UTC (rev 413476)
+++ PKGBUILD2018-12-09 23:20:37 UTC (rev 413477)
@@ -4,10 +4,10 @@
 _hkgname=text-icu
 pkgname=haskell-text-icu
 pkgver=0.7.0.1
-pkgrel=22
+pkgrel=23
 pkgdesc="Bindings to the ICU library"
 url="https://github.com/bos/text-icu;
-license=("custom:BSD3")
+license=("BSD")
 arch=('x86_64')
 depends=('ghc-libs' 'icu')
 makedepends=('ghc')


[arch-commits] Commit in haskell-text-icu/trunk (PKGBUILD)

2018-11-06 Thread Felix Yan via arch-commits
Date: Tuesday, November 6, 2018 @ 21:01:56
  Author: felixonmars
Revision: 402178

upgpkg: haskell-text-icu 0.7.0.1-22

rebuild with ghc 8.6.2

Modified:
  haskell-text-icu/trunk/PKGBUILD

--+
 PKGBUILD |   14 +++---
 1 file changed, 7 insertions(+), 7 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2018-11-06 21:01:19 UTC (rev 402177)
+++ PKGBUILD2018-11-06 21:01:56 UTC (rev 402178)
@@ -4,7 +4,7 @@
 _hkgname=text-icu
 pkgname=haskell-text-icu
 pkgver=0.7.0.1
-pkgrel=21
+pkgrel=22
 pkgdesc="Bindings to the ICU library"
 url="https://github.com/bos/text-icu;
 license=("custom:BSD3")
@@ -15,10 +15,10 @@
 
sha512sums=('54551ce0d629bffcca32fc855bfcdf2e24282359ce3a32578a98de4f4ad15378fa7df98c59d73323549a2ac873b10a10202bda02f5be83fbe1ab945aac5e50a9')
 
 build() {
-cd "${srcdir}/${_hkgname}-${pkgver}"
+cd $_hkgname-$pkgver
 
 runhaskell Setup configure -O --enable-shared --enable-executable-dynamic 
--disable-library-vanilla \
---prefix=/usr --docdir="/usr/share/doc/${pkgname}" \
+--prefix=/usr --docdir=/usr/share/doc/$pkgname \
 --dynlibdir=/usr/lib --libsubdir=\$compiler/site-local/\$pkgid
 runhaskell Setup build
 runhaskell Setup register --gen-script
@@ -28,11 +28,11 @@
 }
 
 package() {
-cd "${srcdir}/${_hkgname}-${pkgver}"
+cd $_hkgname-$pkgver
 
-install -D -m744 register.sh   
"${pkgdir}/usr/share/haskell/register/${pkgname}.sh"
-install -D -m744 unregister.sh 
"${pkgdir}/usr/share/haskell/unregister/${pkgname}.sh"
-runhaskell Setup copy --destdir="${pkgdir}"
+install -D -m744 register.sh 
"$pkgdir"/usr/share/haskell/register/$pkgname.sh
+install -D -m744 unregister.sh 
"$pkgdir"/usr/share/haskell/unregister/$pkgname.sh
+runhaskell Setup copy --destdir="$pkgdir"
 install -D -m644 "LICENSE" 
"${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
 rm -f "${pkgdir}/usr/share/doc/${pkgname}/LICENSE"
 }


[arch-commits] Commit in haskell-text-icu/trunk (PKGBUILD)

2018-10-22 Thread Evangelos Foutras via arch-commits
Date: Monday, October 22, 2018 @ 19:23:34
  Author: foutrelis
Revision: 398471

icu 63.1 / poppler 0.70.0 rebuild

Modified:
  haskell-text-icu/trunk/PKGBUILD

--+
 PKGBUILD |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

Modified: PKGBUILD
===
--- PKGBUILD2018-10-22 19:22:45 UTC (rev 398470)
+++ PKGBUILD2018-10-22 19:23:34 UTC (rev 398471)
@@ -4,7 +4,7 @@
 _hkgname=text-icu
 pkgname=haskell-text-icu
 pkgver=0.7.0.1
-pkgrel=20
+pkgrel=21
 pkgdesc="Bindings to the ICU library"
 url="https://github.com/bos/text-icu;
 license=("custom:BSD3")


[arch-commits] Commit in haskell-text-icu/trunk (PKGBUILD)

2018-10-14 Thread Felix Yan via arch-commits
Date: Sunday, October 14, 2018 @ 23:11:01
  Author: felixonmars
Revision: 393915

upgpkg: haskell-text-icu 0.7.0.1-20

rebuild with ghc 8.6.1

Modified:
  haskell-text-icu/trunk/PKGBUILD

--+
 PKGBUILD |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

Modified: PKGBUILD
===
--- PKGBUILD2018-10-14 23:10:17 UTC (rev 393914)
+++ PKGBUILD2018-10-14 23:11:01 UTC (rev 393915)
@@ -4,7 +4,7 @@
 _hkgname=text-icu
 pkgname=haskell-text-icu
 pkgver=0.7.0.1
-pkgrel=19
+pkgrel=20
 pkgdesc="Bindings to the ICU library"
 url="https://github.com/bos/text-icu;
 license=("custom:BSD3")


[arch-commits] Commit in haskell-text-icu/trunk (PKGBUILD)

2018-08-06 Thread Felix Yan via arch-commits
Date: Monday, August 6, 2018 @ 15:23:47
  Author: felixonmars
Revision: 369822

icu 62.1 / poppler 0.67.0 rebuild

Modified:
  haskell-text-icu/trunk/PKGBUILD

--+
 PKGBUILD |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

Modified: PKGBUILD
===
--- PKGBUILD2018-08-06 13:07:56 UTC (rev 369821)
+++ PKGBUILD2018-08-06 15:23:47 UTC (rev 369822)
@@ -5,7 +5,7 @@
 _hkgname=text-icu
 pkgname=haskell-text-icu
 pkgver=0.7.0.1
-pkgrel=18
+pkgrel=19
 pkgdesc="Bindings to the ICU library"
 url="https://github.com/bos/text-icu;
 license=("custom:BSD3")


[arch-commits] Commit in haskell-text-icu/trunk (PKGBUILD)

2018-06-01 Thread Felix Yan via arch-commits
Date: Friday, June 1, 2018 @ 09:39:34
  Author: felixonmars
Revision: 335798

upgpkg: haskell-text-icu 0.7.0.1-18

rebuild with ghc 8.4.3

Modified:
  haskell-text-icu/trunk/PKGBUILD

--+
 PKGBUILD |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

Modified: PKGBUILD
===
--- PKGBUILD2018-06-01 09:38:53 UTC (rev 335797)
+++ PKGBUILD2018-06-01 09:39:34 UTC (rev 335798)
@@ -5,7 +5,7 @@
 _hkgname=text-icu
 pkgname=haskell-text-icu
 pkgver=0.7.0.1
-pkgrel=17
+pkgrel=18
 pkgdesc="Bindings to the ICU library"
 url="https://github.com/bos/text-icu;
 license=("custom:BSD3")


[arch-commits] Commit in haskell-text-icu/trunk (PKGBUILD)

2018-05-17 Thread Felix Yan via arch-commits
Date: Thursday, May 17, 2018 @ 12:34:02
  Author: felixonmars
Revision: 323720

upgpkg: haskell-text-icu 0.7.0.1-17

rebuild with ghc 8.4.2

Modified:
  haskell-text-icu/trunk/PKGBUILD

--+
 PKGBUILD |4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2018-05-17 12:33:14 UTC (rev 323719)
+++ PKGBUILD2018-05-17 12:34:02 UTC (rev 323720)
@@ -5,12 +5,12 @@
 _hkgname=text-icu
 pkgname=haskell-text-icu
 pkgver=0.7.0.1
-pkgrel=16
+pkgrel=17
 pkgdesc="Bindings to the ICU library"
 url="https://github.com/bos/text-icu;
 license=("custom:BSD3")
 arch=('x86_64')
-depends=('ghc-libs' 'haskell-text' 'icu')
+depends=('ghc-libs' 'icu')
 makedepends=('ghc')
 
source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
 
sha512sums=('54551ce0d629bffcca32fc855bfcdf2e24282359ce3a32578a98de4f4ad15378fa7df98c59d73323549a2ac873b10a10202bda02f5be83fbe1ab945aac5e50a9')


[arch-commits] Commit in haskell-text-icu/trunk (PKGBUILD)

2018-03-27 Thread Evangelos Foutras via arch-commits
Date: Tuesday, March 27, 2018 @ 20:46:03
  Author: foutrelis
Revision: 312923

icu 61.1 rebuild

Modified:
  haskell-text-icu/trunk/PKGBUILD

--+
 PKGBUILD |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

Modified: PKGBUILD
===
--- PKGBUILD2018-03-27 20:42:23 UTC (rev 312922)
+++ PKGBUILD2018-03-27 20:46:03 UTC (rev 312923)
@@ -5,7 +5,7 @@
 _hkgname=text-icu
 pkgname=haskell-text-icu
 pkgver=0.7.0.1
-pkgrel=15
+pkgrel=16
 pkgdesc="Bindings to the ICU library"
 url="https://github.com/bos/text-icu;
 license=("custom:BSD3")


[arch-commits] Commit in haskell-text-icu/trunk (PKGBUILD)

2018-02-27 Thread Felix Yan via arch-commits
Date: Tuesday, February 27, 2018 @ 11:17:29
  Author: felixonmars
Revision: 299170

upgpkg: haskell-text-icu 0.7.0.1-15

rebuild with mtl,2.2.2

Modified:
  haskell-text-icu/trunk/PKGBUILD

--+
 PKGBUILD |4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2018-02-27 10:13:56 UTC (rev 299169)
+++ PKGBUILD2018-02-27 11:17:29 UTC (rev 299170)
@@ -5,12 +5,12 @@
 _hkgname=text-icu
 pkgname=haskell-text-icu
 pkgver=0.7.0.1
-pkgrel=14
+pkgrel=15
 pkgdesc="Bindings to the ICU library"
 url="https://github.com/bos/text-icu;
 license=("custom:BSD3")
 arch=('x86_64')
-depends=("icu" 'ghc' "haskell-text")
+depends=('ghc-libs' 'haskell-text' 'icu')
 makedepends=('ghc')
 
source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
 
sha512sums=('54551ce0d629bffcca32fc855bfcdf2e24282359ce3a32578a98de4f4ad15378fa7df98c59d73323549a2ac873b10a10202bda02f5be83fbe1ab945aac5e50a9')


[arch-commits] Commit in haskell-text-icu/trunk (PKGBUILD)

2017-12-28 Thread Felix Yan via arch-commits
Date: Friday, December 29, 2017 @ 01:02:22
  Author: felixonmars
Revision: 276725

upgpkg: haskell-text-icu 0.7.0.1-14

rebuild with text,1.2.3.0

Modified:
  haskell-text-icu/trunk/PKGBUILD

--+
 PKGBUILD |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

Modified: PKGBUILD
===
--- PKGBUILD2017-12-29 01:01:39 UTC (rev 276724)
+++ PKGBUILD2017-12-29 01:02:22 UTC (rev 276725)
@@ -5,7 +5,7 @@
 _hkgname=text-icu
 pkgname=haskell-text-icu
 pkgver=0.7.0.1
-pkgrel=13
+pkgrel=14
 pkgdesc="Bindings to the ICU library"
 url="https://github.com/bos/text-icu;
 license=("custom:BSD3")


[arch-commits] Commit in haskell-text-icu/trunk (PKGBUILD)

2017-11-26 Thread Felix Yan via arch-commits
Date: Monday, November 27, 2017 @ 06:14:58
  Author: felixonmars
Revision: 269258

upgpkg: haskell-text-icu 0.7.0.1-13

rebuild with ghc 8.2.2

Modified:
  haskell-text-icu/trunk/PKGBUILD

--+
 PKGBUILD |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

Modified: PKGBUILD
===
--- PKGBUILD2017-11-27 06:14:14 UTC (rev 269257)
+++ PKGBUILD2017-11-27 06:14:58 UTC (rev 269258)
@@ -5,7 +5,7 @@
 _hkgname=text-icu
 pkgname=haskell-text-icu
 pkgver=0.7.0.1
-pkgrel=12
+pkgrel=13
 pkgdesc="Bindings to the ICU library"
 url="https://github.com/bos/text-icu;
 license=("custom:BSD3")


[arch-commits] Commit in haskell-text-icu/trunk (PKGBUILD)

2017-11-12 Thread Evangelos Foutras
Date: Sunday, November 12, 2017 @ 12:10:30
  Author: foutrelis
Revision: 266310

icu 60.1 rebuild

Modified:
  haskell-text-icu/trunk/PKGBUILD

--+
 PKGBUILD |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

Modified: PKGBUILD
===
--- PKGBUILD2017-11-12 12:09:38 UTC (rev 266309)
+++ PKGBUILD2017-11-12 12:10:30 UTC (rev 266310)
@@ -5,7 +5,7 @@
 _hkgname=text-icu
 pkgname=haskell-text-icu
 pkgver=0.7.0.1
-pkgrel=11
+pkgrel=12
 pkgdesc="Bindings to the ICU library"
 url="https://github.com/bos/text-icu;
 license=("custom:BSD3")


[arch-commits] Commit in haskell-text-icu/trunk (PKGBUILD)

2017-09-23 Thread Felix Yan
Date: Saturday, September 23, 2017 @ 16:41:06
  Author: felixonmars
Revision: 260144

upgpkg: haskell-text-icu 0.7.0.1-11

Modified:
  haskell-text-icu/trunk/PKGBUILD

--+
 PKGBUILD |9 +++--
 1 file changed, 3 insertions(+), 6 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2017-09-23 16:40:54 UTC (rev 260143)
+++ PKGBUILD2017-09-23 16:41:06 UTC (rev 260144)
@@ -5,7 +5,7 @@
 _hkgname=text-icu
 pkgname=haskell-text-icu
 pkgver=0.7.0.1
-pkgrel=10
+pkgrel=11
 pkgdesc="Bindings to the ICU library"
 url="https://github.com/bos/text-icu;
 license=("custom:BSD3")
@@ -13,12 +13,12 @@
 depends=("icu" 'ghc' "haskell-text")
 makedepends=('ghc')
 
source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
-sha256sums=('e2764c2749033706eed5b9fb3cda11177ad15cdf11912028f551eca39a2c7f78')
+sha512sums=('54551ce0d629bffcca32fc855bfcdf2e24282359ce3a32578a98de4f4ad15378fa7df98c59d73323549a2ac873b10a10202bda02f5be83fbe1ab945aac5e50a9')
 
 build() {
 cd "${srcdir}/${_hkgname}-${pkgver}"
 
-runhaskell Setup configure -O --enable-shared --enable-executable-dynamic \
+runhaskell Setup configure -O --enable-shared --enable-executable-dynamic 
--disable-library-vanilla \
 --prefix=/usr --docdir="/usr/share/doc/${pkgname}" \
 --dynlibdir=/usr/lib --libsubdir=\$compiler/site-local/\$pkgid
 runhaskell Setup build
@@ -36,7 +36,4 @@
 runhaskell Setup copy --destdir="${pkgdir}"
 install -D -m644 "LICENSE" 
"${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
 rm -f "${pkgdir}/usr/share/doc/${pkgname}/LICENSE"
-
-# Remove static libs
-find "$pkgdir"/usr/lib -name "*.a" -delete
 }


[arch-commits] Commit in haskell-text-icu/trunk (PKGBUILD)

2017-08-15 Thread Felix Yan
Date: Tuesday, August 15, 2017 @ 15:59:35
  Author: felixonmars
Revision: 251015

upgpkg: haskell-text-icu 0.7.0.1-10

GHC 8.2.1 rebuild

Modified:
  haskell-text-icu/trunk/PKGBUILD

--+
 PKGBUILD |   10 --
 1 file changed, 4 insertions(+), 6 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2017-08-15 15:58:01 UTC (rev 251014)
+++ PKGBUILD2017-08-15 15:59:35 UTC (rev 251015)
@@ -5,12 +5,13 @@
 _hkgname=text-icu
 pkgname=haskell-text-icu
 pkgver=0.7.0.1
-pkgrel=9
+pkgrel=10
 pkgdesc="Bindings to the ICU library"
 url="https://github.com/bos/text-icu;
 license=("custom:BSD3")
 arch=('i686' 'x86_64')
-depends=("icu" "ghc" "haskell-text")
+depends=("icu" 'ghc' "haskell-text")
+makedepends=('ghc')
 
source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
 sha256sums=('e2764c2749033706eed5b9fb3cda11177ad15cdf11912028f551eca39a2c7f78')
 
@@ -19,9 +20,8 @@
 
 runhaskell Setup configure -O --enable-shared --enable-executable-dynamic \
 --prefix=/usr --docdir="/usr/share/doc/${pkgname}" \
---libsubdir=\$compiler/site-local/\$pkgid
+--dynlibdir=/usr/lib --libsubdir=\$compiler/site-local/\$pkgid
 runhaskell Setup build
-runhaskell Setup haddock --hoogle --html
 runhaskell Setup register --gen-script
 runhaskell Setup unregister --gen-script
 sed -i -r -e "s|ghc-pkg.*update[^ ]* |&'--force' |" register.sh
@@ -33,8 +33,6 @@
 
 install -D -m744 register.sh   
"${pkgdir}/usr/share/haskell/register/${pkgname}.sh"
 install -D -m744 unregister.sh 
"${pkgdir}/usr/share/haskell/unregister/${pkgname}.sh"
-install -d -m755 "${pkgdir}/usr/share/doc/ghc/html/libraries"
-ln -s "/usr/share/doc/${pkgname}/html" 
"${pkgdir}/usr/share/doc/ghc/html/libraries/${_hkgname}"
 runhaskell Setup copy --destdir="${pkgdir}"
 install -D -m644 "LICENSE" 
"${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
 rm -f "${pkgdir}/usr/share/doc/${pkgname}/LICENSE"


[arch-commits] Commit in haskell-text-icu/trunk (PKGBUILD)

2017-06-16 Thread Felix Yan
Date: Friday, June 16, 2017 @ 08:26:00
  Author: felixonmars
Revision: 237551

upgpkg: haskell-text-icu 0.7.0.1-9

rebuild with ghc,8.0.2

Modified:
  haskell-text-icu/trunk/PKGBUILD

--+
 PKGBUILD |9 ++---
 1 file changed, 6 insertions(+), 3 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2017-06-16 08:23:54 UTC (rev 237550)
+++ PKGBUILD2017-06-16 08:26:00 UTC (rev 237551)
@@ -5,12 +5,12 @@
 _hkgname=text-icu
 pkgname=haskell-text-icu
 pkgver=0.7.0.1
-pkgrel=8
+pkgrel=9
 pkgdesc="Bindings to the ICU library"
 url="https://github.com/bos/text-icu;
 license=("custom:BSD3")
 arch=('i686' 'x86_64')
-depends=("icu" "ghc=8.0.1" "haskell-text")
+depends=("icu" "ghc" "haskell-text")
 
source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
 sha256sums=('e2764c2749033706eed5b9fb3cda11177ad15cdf11912028f551eca39a2c7f78')
 
@@ -17,7 +17,7 @@
 build() {
 cd "${srcdir}/${_hkgname}-${pkgver}"
 
-runhaskell Setup configure -O --enable-library-profiling --enable-shared \
+runhaskell Setup configure -O --enable-shared --enable-executable-dynamic \
 --prefix=/usr --docdir="/usr/share/doc/${pkgname}" \
 --libsubdir=\$compiler/site-local/\$pkgid
 runhaskell Setup build
@@ -38,4 +38,7 @@
 runhaskell Setup copy --destdir="${pkgdir}"
 install -D -m644 "LICENSE" 
"${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
 rm -f "${pkgdir}/usr/share/doc/${pkgname}/LICENSE"
+
+# Remove static libs
+find "$pkgdir"/usr/lib -name "*.a" -delete
 }


[arch-commits] Commit in haskell-text-icu/trunk (PKGBUILD)

2017-05-22 Thread Felix Yan
Date: Monday, May 22, 2017 @ 17:07:33
  Author: felixonmars
Revision: 229232

upgpkg: haskell-text-icu 0.7.0.1-8

rebuild with text,1.2.2.2

Modified:
  haskell-text-icu/trunk/PKGBUILD

--+
 PKGBUILD |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

Modified: PKGBUILD
===
--- PKGBUILD2017-05-22 17:04:49 UTC (rev 229231)
+++ PKGBUILD2017-05-22 17:07:33 UTC (rev 229232)
@@ -5,7 +5,7 @@
 _hkgname=text-icu
 pkgname=haskell-text-icu
 pkgver=0.7.0.1
-pkgrel=7
+pkgrel=8
 pkgdesc="Bindings to the ICU library"
 url="https://github.com/bos/text-icu;
 license=("custom:BSD3")


[arch-commits] Commit in haskell-text-icu/trunk (PKGBUILD)

2017-04-26 Thread Felix Yan
Date: Wednesday, April 26, 2017 @ 08:52:44
  Author: felixonmars
Revision: 225618

use https

Modified:
  haskell-text-icu/trunk/PKGBUILD

--+
 PKGBUILD |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

Modified: PKGBUILD
===
--- PKGBUILD2017-04-26 08:52:38 UTC (rev 225617)
+++ PKGBUILD2017-04-26 08:52:44 UTC (rev 225618)
@@ -11,7 +11,7 @@
 license=("custom:BSD3")
 arch=('i686' 'x86_64')
 depends=("icu" "ghc=8.0.1" "haskell-text")
-source=("http://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
+source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
 sha256sums=('e2764c2749033706eed5b9fb3cda11177ad15cdf11912028f551eca39a2c7f78')
 
 build() {


[arch-commits] Commit in haskell-text-icu/trunk (PKGBUILD)

2017-04-24 Thread Evangelos Foutras
Date: Monday, April 24, 2017 @ 20:39:12
  Author: foutrelis
Revision: 225217

icu 59.1 / hunspell 1.6.0 rebuild

Modified:
  haskell-text-icu/trunk/PKGBUILD

--+
 PKGBUILD |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

Modified: PKGBUILD
===
--- PKGBUILD2017-04-24 20:35:51 UTC (rev 225216)
+++ PKGBUILD2017-04-24 20:39:12 UTC (rev 225217)
@@ -5,7 +5,7 @@
 _hkgname=text-icu
 pkgname=haskell-text-icu
 pkgver=0.7.0.1
-pkgrel=6
+pkgrel=7
 pkgdesc="Bindings to the ICU library"
 url="https://github.com/bos/text-icu;
 license=("custom:BSD3")


[arch-commits] Commit in haskell-text-icu/trunk (PKGBUILD)

2016-11-26 Thread Evangelos Foutras
Date: Saturday, November 26, 2016 @ 12:30:49
  Author: foutrelis
Revision: 196893

icu 58.1 / poppler 0.49.0 / hunspell 1.5.0 rebuild

Modified:
  haskell-text-icu/trunk/PKGBUILD

--+
 PKGBUILD |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

Modified: PKGBUILD
===
--- PKGBUILD2016-11-26 12:28:34 UTC (rev 196892)
+++ PKGBUILD2016-11-26 12:30:49 UTC (rev 196893)
@@ -5,7 +5,7 @@
 _hkgname=text-icu
 pkgname=haskell-text-icu
 pkgver=0.7.0.1
-pkgrel=5
+pkgrel=6
 pkgdesc="Bindings to the ICU library"
 url="https://github.com/bos/text-icu;
 license=("custom:BSD3")


[arch-commits] Commit in haskell-text-icu/trunk (PKGBUILD haskell-text-icu.install)

2016-05-25 Thread Felix Yan
Date: Wednesday, May 25, 2016 @ 11:45:05
  Author: fyan
Revision: 176780

upgpkg: haskell-text-icu 0.7.0.1-5

rebuild with ghc-8.0.1, base-prelude-1.0.1.1, cabal-install-1.24.0.0, 
cairo-0.13.2.0, cmark-0.5.2.1, data-default-0.7.0, data-default-class-0.1.0, 
extra-1.4.7, generic-trie-0.3.0.2, glib-0.13.3.0, gtk3-0.14.3, 
haddock-api-2.17.2, haddock-library-1.4.1, js-jquery-1.12.4, memory-0.13, 
microlens-0.4.4.0, network-multicast-0.1.1, pango-0.13.2.0, 
simple-sendfile-0.2.24, stack-1.1.2, texmath-0.8.6.3, wai-3.2.1.1

Modified:
  haskell-text-icu/trunk/PKGBUILD
Deleted:
  haskell-text-icu/trunk/haskell-text-icu.install

--+
 PKGBUILD |   11 +--
 haskell-text-icu.install |   18 --
 2 files changed, 5 insertions(+), 24 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2016-05-25 09:43:20 UTC (rev 176779)
+++ PKGBUILD2016-05-25 09:45:05 UTC (rev 176780)
@@ -5,15 +5,13 @@
 _hkgname=text-icu
 pkgname=haskell-text-icu
 pkgver=0.7.0.1
-pkgrel=4
+pkgrel=5
 pkgdesc="Bindings to the ICU library"
 url="https://github.com/bos/text-icu;
 license=("custom:BSD3")
 arch=('i686' 'x86_64')
-depends=("icu" "ghc=7.10.3" "haskell-text")
-options=('staticlibs')
+depends=("icu" "ghc=8.0.1" "haskell-text")
 
source=("http://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
-install="${pkgname}.install"
 sha256sums=('e2764c2749033706eed5b9fb3cda11177ad15cdf11912028f551eca39a2c7f78')
 
 build() {
@@ -26,6 +24,7 @@
 runhaskell Setup haddock --hoogle --html
 runhaskell Setup register --gen-script
 runhaskell Setup unregister --gen-script
+sed -i -r -e "s|ghc-pkg.*update[^ ]* |&'--force' |" register.sh
 sed -i -r -e "s|ghc-pkg.*unregister[^ ]* |&'--force' |" unregister.sh
 }
 
@@ -32,8 +31,8 @@
 package() {
 cd "${srcdir}/${_hkgname}-${pkgver}"
 
-install -D -m744 register.sh   
"${pkgdir}/usr/share/haskell/${pkgname}/register.sh"
-install-m744 unregister.sh 
"${pkgdir}/usr/share/haskell/${pkgname}/unregister.sh"
+install -D -m744 register.sh   
"${pkgdir}/usr/share/haskell/register/${pkgname}.sh"
+install -D -m744 unregister.sh 
"${pkgdir}/usr/share/haskell/unregister/${pkgname}.sh"
 install -d -m755 "${pkgdir}/usr/share/doc/ghc/html/libraries"
 ln -s "/usr/share/doc/${pkgname}/html" 
"${pkgdir}/usr/share/doc/ghc/html/libraries/${_hkgname}"
 runhaskell Setup copy --destdir="${pkgdir}"

Deleted: haskell-text-icu.install
===
--- haskell-text-icu.install2016-05-25 09:43:20 UTC (rev 176779)
+++ haskell-text-icu.install2016-05-25 09:45:05 UTC (rev 176780)
@@ -1,18 +0,0 @@
-HS_DIR=usr/share/haskell/haskell-text-icu
-post_install() {
-  ${HS_DIR}/register.sh
-  (cd usr/share/doc/ghc/html/libraries; ./gen_contents_index)
-}
-pre_upgrade() {
-  ${HS_DIR}/unregister.sh
-}
-post_upgrade() {
-  ${HS_DIR}/register.sh
-  (cd usr/share/doc/ghc/html/libraries; ./gen_contents_index)
-}
-pre_remove() {
-  ${HS_DIR}/unregister.sh
-}
-post_remove() {
-  (cd usr/share/doc/ghc/html/libraries; ./gen_contents_index)
-}


[arch-commits] Commit in haskell-text-icu/trunk (PKGBUILD)

2016-04-02 Thread Evangelos Foutras
Date: Saturday, April 2, 2016 @ 18:56:01
  Author: foutrelis
Revision: 169252

icu 57.1 / poppler 0.42.0 rebuild

Modified:
  haskell-text-icu/trunk/PKGBUILD

--+
 PKGBUILD |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

Modified: PKGBUILD
===
--- PKGBUILD2016-04-02 16:48:21 UTC (rev 169251)
+++ PKGBUILD2016-04-02 16:56:01 UTC (rev 169252)
@@ -5,7 +5,7 @@
 _hkgname=text-icu
 pkgname=haskell-text-icu
 pkgver=0.7.0.1
-pkgrel=3
+pkgrel=4
 pkgdesc="Bindings to the ICU library"
 url="https://github.com/bos/text-icu;
 license=("custom:BSD3")


[arch-commits] Commit in haskell-text-icu/trunk (PKGBUILD)

2016-03-20 Thread Felix Yan
Date: Friday, March 18, 2016 @ 07:45:01
  Author: fyan
Revision: 167250

upgpkg: haskell-text-icu 0.7.0.1-3

rebuild with highlighting-kate-0.6.2, language-javascript-0.5.14.4, 
text-1.2.2.1, wai-extra-3.0.14.3

Modified:
  haskell-text-icu/trunk/PKGBUILD

--+
 PKGBUILD |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

Modified: PKGBUILD
===
--- PKGBUILD2016-03-18 06:44:33 UTC (rev 167249)
+++ PKGBUILD2016-03-18 06:45:01 UTC (rev 167250)
@@ -5,7 +5,7 @@
 _hkgname=text-icu
 pkgname=haskell-text-icu
 pkgver=0.7.0.1
-pkgrel=2
+pkgrel=3
 pkgdesc="Bindings to the ICU library"
 url="https://github.com/bos/text-icu;
 license=("custom:BSD3")


[arch-commits] Commit in haskell-text-icu/trunk (PKGBUILD)

2016-01-19 Thread Felix Yan
Date: Wednesday, January 20, 2016 @ 08:35:19
  Author: fyan
Revision: 157959

upgpkg: haskell-text-icu 0.7.0.1-2

rebuild with text-1.2.2.0, primitive-0.6.1.0

Modified:
  haskell-text-icu/trunk/PKGBUILD

--+
 PKGBUILD |4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2016-01-20 07:34:22 UTC (rev 157958)
+++ PKGBUILD2016-01-20 07:35:19 UTC (rev 157959)
@@ -5,9 +5,9 @@
 _hkgname=text-icu
 pkgname=haskell-text-icu
 pkgver=0.7.0.1
-pkgrel=1
+pkgrel=2
 pkgdesc="Bindings to the ICU library"
-url="https://github.com/ndmitchell/text-icu#readme;
+url="https://github.com/bos/text-icu;
 license=("custom:BSD3")
 arch=('i686' 'x86_64')
 depends=("icu" "ghc=7.10.3" "haskell-text")