pkgsrc-Changes archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

CVS commit: pkgsrc/devel/hs-vector



Module Name:    pkgsrc
Committed By:   pho
Date:           Wed Jan  1 02:43:36 UTC 2020

Modified Files:
        pkgsrc/devel/hs-vector: Makefile PLIST buildlink3.mk distinfo
Added Files:
        pkgsrc/devel/hs-vector/patches: patch-vector.cabal

Log Message:
Update to vector-0.12.0.3

Changes in version 0.12.0.3
* Add support for ghc >=8.8 monad fail

Changes in version 0.12.0.2
* Fixes issue #220, compact heap operations crashing on boxed vectors
  constructed using traverse.
* remove usage of Data.Primitive.Address and clarify the memset Prim
  Storable smuggling trick in Vector.Storable.Mutable
* backport injective type family support

Changes in version 0.12.0.1
* Make sure `length` can be inlined
* Include modules that test-suites depend on in other-modules

Changes in version 0.12.0.0
* Documentation fixes/additions
* New functions: createT, iscanl/r, iterateNM, unfoldrM, uniq
* New instances for various vector types: Semigroup, MonadZip
* Made `Storable` vectors respect memory alignment
* Changed some macros to ConstraintKinds
  * Dropped compatibility with old GHCs to support this
* Add `Eq1`, `Ord1`, `Show1`, and `Read1` `Vector` instances, and
  related helper functions.
* Relax context for `Unbox (Complex a)`.


To generate a diff of this commit:
cvs rdiff -u -r1.6 -r1.7 pkgsrc/devel/hs-vector/Makefile \
    pkgsrc/devel/hs-vector/distinfo
cvs rdiff -u -r1.2 -r1.3 pkgsrc/devel/hs-vector/PLIST
cvs rdiff -u -r1.8 -r1.9 pkgsrc/devel/hs-vector/buildlink3.mk
cvs rdiff -u -r0 -r1.1 pkgsrc/devel/hs-vector/patches/patch-vector.cabal

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: pkgsrc/devel/hs-vector/Makefile
diff -u pkgsrc/devel/hs-vector/Makefile:1.6 pkgsrc/devel/hs-vector/Makefile:1.7
--- pkgsrc/devel/hs-vector/Makefile:1.6 Sun Dec 13 14:08:12 2015
+++ pkgsrc/devel/hs-vector/Makefile     Wed Jan  1 02:43:35 2020
@@ -1,6 +1,6 @@
-# $NetBSD: Makefile,v 1.6 2015/12/13 14:08:12 szptvlfn Exp $
+# $NetBSD: Makefile,v 1.7 2020/01/01 02:43:35 pho Exp $
 
-DISTNAME=      vector-0.11.0.0
+DISTNAME=      vector-0.12.0.3
 CATEGORIES=    devel
 
 MAINTAINER=    pho%cielonegro.org@localhost
@@ -9,4 +9,6 @@ LICENSE=        modified-bsd
 
 .include "../../mk/haskell.mk"
 .include "../../devel/hs-primitive/buildlink3.mk"
+.include "../../devel/hs-fail/buildlink3.mk"
+.include "../../math/hs-semigroups/buildlink3.mk"
 .include "../../mk/bsd.pkg.mk"
Index: pkgsrc/devel/hs-vector/distinfo
diff -u pkgsrc/devel/hs-vector/distinfo:1.6 pkgsrc/devel/hs-vector/distinfo:1.7
--- pkgsrc/devel/hs-vector/distinfo:1.6 Sun Dec 13 14:08:12 2015
+++ pkgsrc/devel/hs-vector/distinfo     Wed Jan  1 02:43:35 2020
@@ -1,6 +1,7 @@
-$NetBSD: distinfo,v 1.6 2015/12/13 14:08:12 szptvlfn Exp $
+$NetBSD: distinfo,v 1.7 2020/01/01 02:43:35 pho Exp $
 
-SHA1 (vector-0.11.0.0.tar.gz) = ff428de60145127a7c4de7b66a1c70eb11b87c3a
-RMD160 (vector-0.11.0.0.tar.gz) = 7d4b4839385bcfed622b9be1d40801b7b33f03b2
-SHA512 (vector-0.11.0.0.tar.gz) = 4f31e45d08a08c09e5ce73cca4da70e954bf3921d05130b9458c7f2ba267602e0aafc96496595000fd7b82f80aa9147c880917dc64086dab7bf5b2cd426539e0
-Size (vector-0.11.0.0.tar.gz) = 115558 bytes
+SHA1 (vector-0.12.0.3.tar.gz) = c57440b2887ed62f7c83526f99e3ce8201e433c7
+RMD160 (vector-0.12.0.3.tar.gz) = c030f62c6116e7701ec727b18a9c630a77f70281
+SHA512 (vector-0.12.0.3.tar.gz) = 176646ae612866064303cd200e9d940fec1645bb88176a89adb00df3b9a6df96200e3c9cf85a57af3a1481d6633b353da8e03d7a6c467c40e926275fe8d36853
+Size (vector-0.12.0.3.tar.gz) = 124899 bytes
+SHA1 (patch-vector.cabal) = 878fc2b59215ca4bcc3e418534ef7b29f24ce743

Index: pkgsrc/devel/hs-vector/PLIST
diff -u pkgsrc/devel/hs-vector/PLIST:1.2 pkgsrc/devel/hs-vector/PLIST:1.3
--- pkgsrc/devel/hs-vector/PLIST:1.2    Sun Dec 13 14:08:12 2015
+++ pkgsrc/devel/hs-vector/PLIST        Wed Jan  1 02:43:35 2020
@@ -1,4 +1,4 @@
-@comment $NetBSD: PLIST,v 1.2 2015/12/13 14:08:12 szptvlfn Exp $
+@comment $NetBSD: PLIST,v 1.3 2020/01/01 02:43:35 pho Exp $
 lib/vector-${PKGVERSION}/${HASKELL_VERSION}/Data/Vector.hi
 lib/vector-${PKGVERSION}/${HASKELL_VERSION}/Data/Vector/Fusion/Bundle.hi
 lib/vector-${PKGVERSION}/${HASKELL_VERSION}/Data/Vector/Fusion/Bundle/Monadic.hi
@@ -25,78 +25,4 @@ lib/vector-${PKGVERSION}/${HASKELL_VERSI
 lib/vector-${PKGVERSION}/${HASKELL_VERSION}/libHSvector-${PKGVERSION}.a
 lib/vector-${PKGVERSION}/${HASKELL_VERSION}/package-description
 share/doc/vector-${PKGVERSION}/LICENSE
-${PLIST.doc}share/doc/vector-${PKGVERSION}/html/Data-Vector-Fusion-Bundle-Monadic.html
-${PLIST.doc}share/doc/vector-${PKGVERSION}/html/Data-Vector-Fusion-Bundle-Size.html
-${PLIST.doc}share/doc/vector-${PKGVERSION}/html/Data-Vector-Fusion-Bundle.html
-${PLIST.doc}share/doc/vector-${PKGVERSION}/html/Data-Vector-Fusion-Stream-Monadic.html
-${PLIST.doc}share/doc/vector-${PKGVERSION}/html/Data-Vector-Fusion-Util.html
-${PLIST.doc}share/doc/vector-${PKGVERSION}/html/Data-Vector-Generic-Mutable-Base.html
-${PLIST.doc}share/doc/vector-${PKGVERSION}/html/Data-Vector-Generic-Mutable.html
-${PLIST.doc}share/doc/vector-${PKGVERSION}/html/Data-Vector-Generic-New.html
-${PLIST.doc}share/doc/vector-${PKGVERSION}/html/Data-Vector-Generic.html
-${PLIST.doc}share/doc/vector-${PKGVERSION}/html/Data-Vector-Internal-Check.html
-${PLIST.doc}share/doc/vector-${PKGVERSION}/html/Data-Vector-Mutable.html
-${PLIST.doc}share/doc/vector-${PKGVERSION}/html/Data-Vector-Primitive-Mutable.html
-${PLIST.doc}share/doc/vector-${PKGVERSION}/html/Data-Vector-Primitive.html
-${PLIST.doc}share/doc/vector-${PKGVERSION}/html/Data-Vector-Storable-Internal.html
-${PLIST.doc}share/doc/vector-${PKGVERSION}/html/Data-Vector-Storable-Mutable.html
-${PLIST.doc}share/doc/vector-${PKGVERSION}/html/Data-Vector-Storable.html
-${PLIST.doc}share/doc/vector-${PKGVERSION}/html/Data-Vector-Unboxed-Mutable.html
-${PLIST.doc}share/doc/vector-${PKGVERSION}/html/Data-Vector-Unboxed.html
-${PLIST.doc}share/doc/vector-${PKGVERSION}/html/Data-Vector.html
-${PLIST.doc}share/doc/vector-${PKGVERSION}/html/doc-index-33.html
-${PLIST.doc}share/doc/vector-${PKGVERSION}/html/doc-index-43.html
-${PLIST.doc}share/doc/vector-${PKGVERSION}/html/doc-index-47.html
-${PLIST.doc}share/doc/vector-${PKGVERSION}/html/doc-index-A.html
-${PLIST.doc}share/doc/vector-${PKGVERSION}/html/doc-index-All.html
-${PLIST.doc}share/doc/vector-${PKGVERSION}/html/doc-index-B.html
-${PLIST.doc}share/doc/vector-${PKGVERSION}/html/doc-index-C.html
-${PLIST.doc}share/doc/vector-${PKGVERSION}/html/doc-index-D.html
-${PLIST.doc}share/doc/vector-${PKGVERSION}/html/doc-index-E.html
-${PLIST.doc}share/doc/vector-${PKGVERSION}/html/doc-index-F.html
-${PLIST.doc}share/doc/vector-${PKGVERSION}/html/doc-index-G.html
-${PLIST.doc}share/doc/vector-${PKGVERSION}/html/doc-index-H.html
-${PLIST.doc}share/doc/vector-${PKGVERSION}/html/doc-index-I.html
-${PLIST.doc}share/doc/vector-${PKGVERSION}/html/doc-index-L.html
-${PLIST.doc}share/doc/vector-${PKGVERSION}/html/doc-index-M.html
-${PLIST.doc}share/doc/vector-${PKGVERSION}/html/doc-index-N.html
-${PLIST.doc}share/doc/vector-${PKGVERSION}/html/doc-index-O.html
-${PLIST.doc}share/doc/vector-${PKGVERSION}/html/doc-index-P.html
-${PLIST.doc}share/doc/vector-${PKGVERSION}/html/doc-index-R.html
-${PLIST.doc}share/doc/vector-${PKGVERSION}/html/doc-index-S.html
-${PLIST.doc}share/doc/vector-${PKGVERSION}/html/doc-index-T.html
-${PLIST.doc}share/doc/vector-${PKGVERSION}/html/doc-index-U.html
-${PLIST.doc}share/doc/vector-${PKGVERSION}/html/doc-index-V.html
-${PLIST.doc}share/doc/vector-${PKGVERSION}/html/doc-index-W.html
-${PLIST.doc}share/doc/vector-${PKGVERSION}/html/doc-index-Y.html
-${PLIST.doc}share/doc/vector-${PKGVERSION}/html/doc-index-Z.html
-${PLIST.doc}share/doc/vector-${PKGVERSION}/html/doc-index.html
-${PLIST.doc}share/doc/vector-${PKGVERSION}/html/frames.html
-${PLIST.doc}share/doc/vector-${PKGVERSION}/html/haddock-util.js
-${PLIST.doc}share/doc/vector-${PKGVERSION}/html/hslogo-16.png
-${PLIST.doc}share/doc/vector-${PKGVERSION}/html/index-frames.html
-${PLIST.doc}share/doc/vector-${PKGVERSION}/html/index.html
-${PLIST.doc}share/doc/vector-${PKGVERSION}/html/mini_Data-Vector-Fusion-Bundle-Monadic.html
-${PLIST.doc}share/doc/vector-${PKGVERSION}/html/mini_Data-Vector-Fusion-Bundle-Size.html
-${PLIST.doc}share/doc/vector-${PKGVERSION}/html/mini_Data-Vector-Fusion-Bundle.html
-${PLIST.doc}share/doc/vector-${PKGVERSION}/html/mini_Data-Vector-Fusion-Stream-Monadic.html
-${PLIST.doc}share/doc/vector-${PKGVERSION}/html/mini_Data-Vector-Fusion-Util.html
-${PLIST.doc}share/doc/vector-${PKGVERSION}/html/mini_Data-Vector-Generic-Mutable-Base.html
-${PLIST.doc}share/doc/vector-${PKGVERSION}/html/mini_Data-Vector-Generic-Mutable.html
-${PLIST.doc}share/doc/vector-${PKGVERSION}/html/mini_Data-Vector-Generic-New.html
-${PLIST.doc}share/doc/vector-${PKGVERSION}/html/mini_Data-Vector-Generic.html
-${PLIST.doc}share/doc/vector-${PKGVERSION}/html/mini_Data-Vector-Internal-Check.html
-${PLIST.doc}share/doc/vector-${PKGVERSION}/html/mini_Data-Vector-Mutable.html
-${PLIST.doc}share/doc/vector-${PKGVERSION}/html/mini_Data-Vector-Primitive-Mutable.html
-${PLIST.doc}share/doc/vector-${PKGVERSION}/html/mini_Data-Vector-Primitive.html
-${PLIST.doc}share/doc/vector-${PKGVERSION}/html/mini_Data-Vector-Storable-Internal.html
-${PLIST.doc}share/doc/vector-${PKGVERSION}/html/mini_Data-Vector-Storable-Mutable.html
-${PLIST.doc}share/doc/vector-${PKGVERSION}/html/mini_Data-Vector-Storable.html
-${PLIST.doc}share/doc/vector-${PKGVERSION}/html/mini_Data-Vector-Unboxed-Mutable.html
-${PLIST.doc}share/doc/vector-${PKGVERSION}/html/mini_Data-Vector-Unboxed.html
-${PLIST.doc}share/doc/vector-${PKGVERSION}/html/mini_Data-Vector.html
-${PLIST.doc}share/doc/vector-${PKGVERSION}/html/minus.gif
-${PLIST.doc}share/doc/vector-${PKGVERSION}/html/ocean.css
-${PLIST.doc}share/doc/vector-${PKGVERSION}/html/plus.gif
-${PLIST.doc}share/doc/vector-${PKGVERSION}/html/synopsis.png
-${PLIST.doc}share/doc/vector-${PKGVERSION}/html/vector.haddock
+@pkgdir share/doc/vector-${PKGVERSION}/html

Index: pkgsrc/devel/hs-vector/buildlink3.mk
diff -u pkgsrc/devel/hs-vector/buildlink3.mk:1.8 pkgsrc/devel/hs-vector/buildlink3.mk:1.9
--- pkgsrc/devel/hs-vector/buildlink3.mk:1.8    Sun Jan  7 13:04:04 2018
+++ pkgsrc/devel/hs-vector/buildlink3.mk        Wed Jan  1 02:43:35 2020
@@ -1,4 +1,4 @@
-# $NetBSD: buildlink3.mk,v 1.8 2018/01/07 13:04:04 rillig Exp $
+# $NetBSD: buildlink3.mk,v 1.9 2020/01/01 02:43:35 pho Exp $
 
 BUILDLINK_TREE+=       hs-vector
 
@@ -10,6 +10,8 @@ BUILDLINK_ABI_DEPENDS.hs-vector+=     hs-vec
 BUILDLINK_PKGSRCDIR.hs-vector?=                ../../devel/hs-vector
 
 .include "../../devel/hs-primitive/buildlink3.mk"
+.include "../../devel/hs-fail/buildlink3.mk"
+.include "../../math/hs-semigroups/buildlink3.mk"
 .endif # HS_VECTOR_BUILDLINK3_MK
 
 BUILDLINK_TREE+=       -hs-vector

Added files:

Index: pkgsrc/devel/hs-vector/patches/patch-vector.cabal
diff -u /dev/null pkgsrc/devel/hs-vector/patches/patch-vector.cabal:1.1
--- /dev/null   Wed Jan  1 02:43:36 2020
+++ pkgsrc/devel/hs-vector/patches/patch-vector.cabal   Wed Jan  1 02:43:36 2020
@@ -0,0 +1,15 @@
+$NetBSD: patch-vector.cabal,v 1.1 2020/01/01 02:43:36 pho Exp $
+
+Relax the upper bound on semigroups
+
+--- vector.cabal.orig  2001-09-09 01:46:40.000000000 +0000
++++ vector.cabal
+@@ -150,7 +150,7 @@ Library
+                , deepseq >= 1.1 && < 1.5
+   if !impl(ghc > 8.0)
+     Build-Depends: fail == 4.9.*
+-                 , semigroups >= 0.18 && < 0.19
++                 , semigroups >= 0.18 && < 0.20
+ 
+   Ghc-Options: -O2 -Wall
+ 



Home | Main Index | Thread Index | Old Index