pkgsrc-Changes archive

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

CVS commit: pkgsrc/devel/hs-vector-algorithms



Module Name:    pkgsrc
Committed By:   wiz
Date:           Mon Aug 22 10:11:27 UTC 2022

Modified Files:
        pkgsrc/devel/hs-vector-algorithms: Makefile PLIST buildlink3.mk
            distinfo

Log Message:
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).


To generate a diff of this commit:
cvs rdiff -u -r1.12 -r1.13 pkgsrc/devel/hs-vector-algorithms/Makefile
cvs rdiff -u -r1.5 -r1.6 pkgsrc/devel/hs-vector-algorithms/PLIST
cvs rdiff -u -r1.13 -r1.14 pkgsrc/devel/hs-vector-algorithms/buildlink3.mk
cvs rdiff -u -r1.7 -r1.8 pkgsrc/devel/hs-vector-algorithms/distinfo

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-algorithms/Makefile
diff -u pkgsrc/devel/hs-vector-algorithms/Makefile:1.12 pkgsrc/devel/hs-vector-algorithms/Makefile:1.13
--- pkgsrc/devel/hs-vector-algorithms/Makefile:1.12     Sat Aug 20 08:08:19 2022
+++ pkgsrc/devel/hs-vector-algorithms/Makefile  Mon Aug 22 10:11:27 2022
@@ -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"

Index: pkgsrc/devel/hs-vector-algorithms/PLIST
diff -u pkgsrc/devel/hs-vector-algorithms/PLIST:1.5 pkgsrc/devel/hs-vector-algorithms/PLIST:1.6
--- pkgsrc/devel/hs-vector-algorithms/PLIST:1.5 Fri Apr 23 13:02:09 2021
+++ pkgsrc/devel/hs-vector-algorithms/PLIST     Mon Aug 22 10:11:27 2022
@@ -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-algorith
 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

Index: pkgsrc/devel/hs-vector-algorithms/buildlink3.mk
diff -u pkgsrc/devel/hs-vector-algorithms/buildlink3.mk:1.13 pkgsrc/devel/hs-vector-algorithms/buildlink3.mk:1.14
--- pkgsrc/devel/hs-vector-algorithms/buildlink3.mk:1.13        Sat Aug 20 08:08:19 2022
+++ pkgsrc/devel/hs-vector-algorithms/buildlink3.mk     Mon Aug 22 10:11:27 2022
@@ -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 @@ BUILDLINK_TREE+=       hs-vector-algorithms
 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

Index: pkgsrc/devel/hs-vector-algorithms/distinfo
diff -u pkgsrc/devel/hs-vector-algorithms/distinfo:1.7 pkgsrc/devel/hs-vector-algorithms/distinfo:1.8
--- pkgsrc/devel/hs-vector-algorithms/distinfo:1.7      Tue Oct 26 10:15:04 2021
+++ pkgsrc/devel/hs-vector-algorithms/distinfo  Mon Aug 22 10:11:27 2022
@@ -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