pkgsrc-Changes-HG archive

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

[pkgsrc/trunk]: pkgsrc/devel/hs-vector-algorithms hs-vector-algorithms: updat...



details:   https://anonhg.NetBSD.org/pkgsrc/rev/eb2289f60dbb
branches:  trunk
changeset: 383702:eb2289f60dbb
user:      wiz <wiz%pkgsrc.org@localhost>
date:      Mon Aug 22 10:11:27 2022 +0000

description:
hs-vector-algorithms: update to 0.9.0.1.

## Version 0.9.0.1 (2022-07-28)

- Allow building with vector-0.13.*.

## Version 0.9.0.0 (2022-05-19)

- Add nub related functions.
- Add sortUniq related functions (sorts, then removes duplicates).

diffstat:

 devel/hs-vector-algorithms/Makefile      |  8 ++++----
 devel/hs-vector-algorithms/PLIST         |  6 +++++-
 devel/hs-vector-algorithms/buildlink3.mk |  5 +++--
 devel/hs-vector-algorithms/distinfo      |  8 ++++----
 4 files changed, 16 insertions(+), 11 deletions(-)

diffs (79 lines):

diff -r bd4e41f18df6 -r eb2289f60dbb devel/hs-vector-algorithms/Makefile
--- a/devel/hs-vector-algorithms/Makefile       Mon Aug 22 10:06:40 2022 +0000
+++ b/devel/hs-vector-algorithms/Makefile       Mon Aug 22 10:11:27 2022 +0000
@@ -1,14 +1,14 @@
-# $NetBSD: Makefile,v 1.12 2022/08/20 08:08:19 wiz Exp $
+# $NetBSD: Makefile,v 1.13 2022/08/22 10:11:27 wiz Exp $
 
-DISTNAME=      vector-algorithms-0.8.0.4
-PKGREVISION=   5
+DISTNAME=      vector-algorithms-0.9.0.1
 CATEGORIES=    devel
 
 MAINTAINER=    szptvlfn%NetBSD.org@localhost
 COMMENT=       Efficient algorithms for vector arrays
 LICENSE=       modified-bsd
 
-.include "../../mk/haskell.mk"
+.include "../../devel/hs-bitvec/buildlink3.mk"
 .include "../../devel/hs-primitive/buildlink3.mk"
 .include "../../devel/hs-vector/buildlink3.mk"
+.include "../../mk/haskell.mk"
 .include "../../mk/bsd.pkg.mk"
diff -r bd4e41f18df6 -r eb2289f60dbb devel/hs-vector-algorithms/PLIST
--- a/devel/hs-vector-algorithms/PLIST  Mon Aug 22 10:06:40 2022 +0000
+++ b/devel/hs-vector-algorithms/PLIST  Mon Aug 22 10:11:27 2022 +0000
@@ -1,7 +1,10 @@
-@comment $NetBSD: PLIST,v 1.5 2021/04/23 13:02:09 pho Exp $
+@comment $NetBSD: PLIST,v 1.6 2022/08/22 10:11:27 wiz Exp $
 lib/vector-algorithms-${PKGVERSION}/${HS_VERSION}/package-description
 lib/vector-algorithms-${PKGVERSION}/${HS_VERSION}/package-id
 lib/${HS_PLATFORM}/libHS${HS_PKGID}-${HS_VER}.so
+lib/${HS_PLATFORM}/${HS_PKGID}/Data/Vector/Algorithms.dyn_hi
+lib/${HS_PLATFORM}/${HS_PKGID}/Data/Vector/Algorithms.hi
+lib/${HS_PLATFORM}/${HS_PKGID}/Data/Vector/Algorithms.p_hi
 lib/${HS_PLATFORM}/${HS_PKGID}/Data/Vector/Algorithms/AmericanFlag.dyn_hi
 lib/${HS_PLATFORM}/${HS_PKGID}/Data/Vector/Algorithms/AmericanFlag.hi
 lib/${HS_PLATFORM}/${HS_PKGID}/Data/Vector/Algorithms/AmericanFlag.p_hi
@@ -45,6 +48,7 @@
 share/doc/${HS_PLATFORM}/vector-algorithms-${PKGVERSION}/html/Data-Vector-Algorithms-Radix.html
 share/doc/${HS_PLATFORM}/vector-algorithms-${PKGVERSION}/html/Data-Vector-Algorithms-Search.html
 share/doc/${HS_PLATFORM}/vector-algorithms-${PKGVERSION}/html/Data-Vector-Algorithms-Tim.html
+share/doc/${HS_PLATFORM}/vector-algorithms-${PKGVERSION}/html/Data-Vector-Algorithms.html
 share/doc/${HS_PLATFORM}/vector-algorithms-${PKGVERSION}/html/doc-index.html
 share/doc/${HS_PLATFORM}/vector-algorithms-${PKGVERSION}/html/haddock-bundle.min.js
 share/doc/${HS_PLATFORM}/vector-algorithms-${PKGVERSION}/html/index.html
diff -r bd4e41f18df6 -r eb2289f60dbb devel/hs-vector-algorithms/buildlink3.mk
--- a/devel/hs-vector-algorithms/buildlink3.mk  Mon Aug 22 10:06:40 2022 +0000
+++ b/devel/hs-vector-algorithms/buildlink3.mk  Mon Aug 22 10:11:27 2022 +0000
@@ -1,4 +1,4 @@
-# $NetBSD: buildlink3.mk,v 1.13 2022/08/20 08:08:19 wiz Exp $
+# $NetBSD: buildlink3.mk,v 1.14 2022/08/22 10:11:27 wiz Exp $
 
 BUILDLINK_TREE+=       hs-vector-algorithms
 
@@ -6,9 +6,10 @@
 HS_VECTOR_ALGORITHMS_BUILDLINK3_MK:=
 
 BUILDLINK_API_DEPENDS.hs-vector-algorithms+=   hs-vector-algorithms>=0.8.0
-BUILDLINK_ABI_DEPENDS.hs-vector-algorithms+=   hs-vector-algorithms>=0.8.0.4nb5
+BUILDLINK_ABI_DEPENDS.hs-vector-algorithms+=   hs-vector-algorithms>=0.9.0.1
 BUILDLINK_PKGSRCDIR.hs-vector-algorithms?=     ../../devel/hs-vector-algorithms
 
+.include "../../devel/hs-bitvec/buildlink3.mk"
 .include "../../devel/hs-primitive/buildlink3.mk"
 .include "../../devel/hs-vector/buildlink3.mk"
 .endif # HS_VECTOR_ALGORITHMS_BUILDLINK3_MK
diff -r bd4e41f18df6 -r eb2289f60dbb devel/hs-vector-algorithms/distinfo
--- a/devel/hs-vector-algorithms/distinfo       Mon Aug 22 10:06:40 2022 +0000
+++ b/devel/hs-vector-algorithms/distinfo       Mon Aug 22 10:11:27 2022 +0000
@@ -1,5 +1,5 @@
-$NetBSD: distinfo,v 1.7 2021/10/26 10:15:04 nia Exp $
+$NetBSD: distinfo,v 1.8 2022/08/22 10:11:27 wiz Exp $
 
-BLAKE2s (vector-algorithms-0.8.0.4.tar.gz) = bdbb4881735d0a84039750db8b6503cfdc65a5796f002371fdfb96182f362621
-SHA512 (vector-algorithms-0.8.0.4.tar.gz) = da5f52493c7f68df0a2c718724dcac9be758b09b14c8fa913aa328ee4c1286893fb239882018202d0fcd56709364ccddf3d620ff3b886d830102ef52a0868d42
-Size (vector-algorithms-0.8.0.4.tar.gz) = 26681 bytes
+BLAKE2s (vector-algorithms-0.9.0.1.tar.gz) = d823448df2a856976dbead8d09ddab52d90be95400d8ec20814502c3c7dc0814
+SHA512 (vector-algorithms-0.9.0.1.tar.gz) = 007a0aeac87ca6596cae0f67e8ab5cd3ac4120df940dd221745d86c6500fa1e732d6096248ba613472c57825283cae6a2d67d2d2a5a652496f9ad17c91f9b620
+Size (vector-algorithms-0.9.0.1.tar.gz) = 29149 bytes



Home | Main Index | Thread Index | Old Index