[arch-commits] Commit in haskell-vector-algorithms/trunk (PKGBUILD)

2017-08-16 Thread Felix Yan
Date: Wednesday, August 16, 2017 @ 16:26:40
  Author: felixonmars
Revision: 251347

upgpkg: haskell-vector-algorithms 0.7.0.1-8

GHC 8.2.1 rebuild

Modified:
  haskell-vector-algorithms/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-08-16 16:26:00 UTC (rev 251346)
+++ PKGBUILD2017-08-16 16:26:40 UTC (rev 251347)
@@ -5,12 +5,13 @@
 _hkgname=vector-algorithms
 pkgname=haskell-vector-algorithms
 pkgver=0.7.0.1
-pkgrel=7
+pkgrel=8
 pkgdesc="Efficient algorithms for vector arrays"
 url="http://code.haskell.org/~dolio/;
 license=("custom:BSD3")
 arch=('i686' 'x86_64')
-depends=("ghc" "haskell-mtl" "haskell-mwc-random" "haskell-primitive" 
"haskell-vector")
+depends=('ghc-libs' "haskell-mtl" "haskell-mwc-random" "haskell-primitive" 
"haskell-vector")
+makedepends=('ghc')
 
source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
 sha256sums=('ed460a41ca068f568bc2027579ab14185fbb72c7ac469b5179ae5f8a52719070')
 
@@ -23,10 +24,9 @@
 
 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 \
 -fproperties -f-bench -f-internalchecks -f-unsafechecks 
-fboundschecks
 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
@@ -38,8 +38,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-vector-algorithms/trunk (PKGBUILD)

2017-06-15 Thread Felix Yan
Date: Thursday, June 15, 2017 @ 17:40:16
  Author: felixonmars
Revision: 237311

upgpkg: haskell-vector-algorithms 0.7.0.1-7

rebuild with ghc,8.0.2

Modified:
  haskell-vector-algorithms/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-06-15 17:35:17 UTC (rev 237310)
+++ PKGBUILD2017-06-15 17:40:16 UTC (rev 237311)
@@ -5,12 +5,12 @@
 _hkgname=vector-algorithms
 pkgname=haskell-vector-algorithms
 pkgver=0.7.0.1
-pkgrel=6
+pkgrel=7
 pkgdesc="Efficient algorithms for vector arrays"
 url="http://code.haskell.org/~dolio/;
 license=("custom:BSD3")
 arch=('i686' 'x86_64')
-depends=("ghc=8.0.1" "haskell-mtl" "haskell-mwc-random" "haskell-primitive" 
"haskell-vector")
+depends=("ghc" "haskell-mtl" "haskell-mwc-random" "haskell-primitive" 
"haskell-vector")
 
source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
 sha256sums=('ed460a41ca068f568bc2027579ab14185fbb72c7ac469b5179ae5f8a52719070')
 
@@ -21,7 +21,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 \
 -fproperties -f-bench -f-internalchecks -f-unsafechecks 
-fboundschecks
@@ -43,4 +43,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-vector-algorithms/trunk (PKGBUILD)

2017-04-09 Thread Felix Yan
Date: Sunday, April 9, 2017 @ 09:13:54
  Author: felixonmars
Revision: 221394

upgpkg: haskell-vector-algorithms 0.7.0.1-6

rebuild with primitive,0.6.2.0 vector,0.12.0.1

Modified:
  haskell-vector-algorithms/trunk/PKGBUILD

--+
 PKGBUILD |6 +-
 1 file changed, 5 insertions(+), 1 deletion(-)

Modified: PKGBUILD
===
--- PKGBUILD2017-04-09 09:10:48 UTC (rev 221393)
+++ PKGBUILD2017-04-09 09:13:54 UTC (rev 221394)
@@ -5,7 +5,7 @@
 _hkgname=vector-algorithms
 pkgname=haskell-vector-algorithms
 pkgver=0.7.0.1
-pkgrel=5
+pkgrel=6
 pkgdesc="Efficient algorithms for vector arrays"
 url="http://code.haskell.org/~dolio/;
 license=("custom:BSD3")
@@ -14,6 +14,10 @@
 
source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
 sha256sums=('ed460a41ca068f568bc2027579ab14185fbb72c7ac469b5179ae5f8a52719070')
 
+prepare() {
+sed -i 's/vector >= 0.6 && < 0.12,/vector >= 0.6 \&\& < 0.13,/' 
${_hkgname}-${pkgver}/${_hkgname}.cabal
+}
+
 build() {
 cd "${srcdir}/${_hkgname}-${pkgver}"
 


[arch-commits] Commit in haskell-vector-algorithms/trunk (PKGBUILD)

2017-01-23 Thread Felix Yan
Date: Tuesday, January 24, 2017 @ 06:32:18
  Author: felixonmars
Revision: 208770

use https source

Modified:
  haskell-vector-algorithms/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-01-24 06:31:35 UTC (rev 208769)
+++ PKGBUILD2017-01-24 06:32:18 UTC (rev 208770)
@@ -11,7 +11,7 @@
 license=("custom:BSD3")
 arch=('i686' 'x86_64')
 depends=("ghc=8.0.1" "haskell-mtl" "haskell-mwc-random" "haskell-primitive" 
"haskell-vector")
-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=('ed460a41ca068f568bc2027579ab14185fbb72c7ac469b5179ae5f8a52719070')
 
 build() {


[arch-commits] Commit in haskell-vector-algorithms/trunk (PKGBUILD)

2016-12-08 Thread Felix Yan
Date: Friday, December 9, 2016 @ 05:36:06
  Author: felixonmars
Revision: 198549

upgpkg: haskell-vector-algorithms 0.7.0.1-5

rebuild with mwc-random-0.13.5.0

Modified:
  haskell-vector-algorithms/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-12-09 05:33:38 UTC (rev 198548)
+++ PKGBUILD2016-12-09 05:36:06 UTC (rev 198549)
@@ -5,7 +5,7 @@
 _hkgname=vector-algorithms
 pkgname=haskell-vector-algorithms
 pkgver=0.7.0.1
-pkgrel=4
+pkgrel=5
 pkgdesc="Efficient algorithms for vector arrays"
 url="http://code.haskell.org/~dolio/;
 license=("custom:BSD3")


[arch-commits] Commit in haskell-vector-algorithms/trunk (PKGBUILD)

2016-02-20 Thread Felix Yan
Date: Saturday, February 20, 2016 @ 16:37:23
  Author: fyan
Revision: 162819

upgpkg: haskell-vector-algorithms 0.7.0.1-3

rebuild with cryptonite-0.12, aeson-0.11.0.0, mwc-random-0.13.4.0

Modified:
  haskell-vector-algorithms/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-02-20 15:34:21 UTC (rev 162818)
+++ PKGBUILD2016-02-20 15:37:23 UTC (rev 162819)
@@ -5,7 +5,7 @@
 _hkgname=vector-algorithms
 pkgname=haskell-vector-algorithms
 pkgver=0.7.0.1
-pkgrel=2
+pkgrel=3
 pkgdesc="Efficient algorithms for vector arrays"
 url="http://code.haskell.org/~dolio/;
 license=("custom:BSD3")


[arch-commits] Commit in haskell-vector-algorithms/trunk (PKGBUILD)

2016-01-19 Thread Felix Yan
Date: Wednesday, January 20, 2016 @ 07:21:19
  Author: fyan
Revision: 157888

upgpkg: haskell-vector-algorithms 0.7.0.1-2

rebuild with text-1.2.2.0, primitive-0.6.1.0

Modified:
  haskell-vector-algorithms/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-01-20 06:20:38 UTC (rev 157887)
+++ PKGBUILD2016-01-20 06:21:19 UTC (rev 157888)
@@ -5,7 +5,7 @@
 _hkgname=vector-algorithms
 pkgname=haskell-vector-algorithms
 pkgver=0.7.0.1
-pkgrel=1
+pkgrel=2
 pkgdesc="Efficient algorithms for vector arrays"
 url="http://code.haskell.org/~dolio/;
 license=("custom:BSD3")


<    1   2