pkgsrc-Changes archive

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

CVS commit: pkgsrc/devel/hs-witherable



Module Name:    pkgsrc
Committed By:   pho
Date:           Sat Feb  1 12:47:22 UTC 2025

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

Log Message:
devel/hs-witherable: update to witherable-0.5

0.5
---

* `FilterableWithIndex` is a superclass of `WitherableWithIndex`.
* Remove deprecated `Data.Witherable` module. Use `Witherable` module.
* Relax `FilterableWithIndex` composition law so list-like instances are lawful.
* Add `drain :: f a -> f b` method (with default implementation `drain = mapMaybe (Const Nothing)`) to the `Filterable`.


To generate a diff of this commit:
cvs rdiff -u -r1.10 -r1.11 pkgsrc/devel/hs-witherable/Makefile
cvs rdiff -u -r1.4 -r1.5 pkgsrc/devel/hs-witherable/PLIST
cvs rdiff -u -r1.8 -r1.9 pkgsrc/devel/hs-witherable/buildlink3.mk
cvs rdiff -u -r1.3 -r1.4 pkgsrc/devel/hs-witherable/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-witherable/Makefile
diff -u pkgsrc/devel/hs-witherable/Makefile:1.10 pkgsrc/devel/hs-witherable/Makefile:1.11
--- pkgsrc/devel/hs-witherable/Makefile:1.10    Thu May  9 01:32:20 2024
+++ pkgsrc/devel/hs-witherable/Makefile Sat Feb  1 12:47:22 2025
@@ -1,7 +1,6 @@
-# $NetBSD: Makefile,v 1.10 2024/05/09 01:32:20 pho Exp $
+# $NetBSD: Makefile,v 1.11 2025/02/01 12:47:22 pho Exp $
 
-DISTNAME=      witherable-0.4.2
-PKGREVISION=   7
+DISTNAME=      witherable-0.5
 CATEGORIES=    devel
 
 MAINTAINER=    pkgsrc-users%NetBSD.org@localhost
@@ -9,10 +8,7 @@ COMMENT=       Filterable traversable
 LICENSE=       modified-bsd
 
 HASKELL_UNRESTRICT_DEPENDENCIES+=      \
-       base-orphans    \
-       hashable        \
-       transformers    \
-       vector
+       hashable
 
 .include "../../devel/hs-base-orphans/buildlink3.mk"
 .include "../../devel/hs-hashable/buildlink3.mk"

Index: pkgsrc/devel/hs-witherable/PLIST
diff -u pkgsrc/devel/hs-witherable/PLIST:1.4 pkgsrc/devel/hs-witherable/PLIST:1.5
--- pkgsrc/devel/hs-witherable/PLIST:1.4        Wed May  1 14:19:42 2024
+++ pkgsrc/devel/hs-witherable/PLIST    Sat Feb  1 12:47:22 2025
@@ -1,8 +1,5 @@
-@comment $NetBSD: PLIST,v 1.4 2024/05/01 14:19:42 pho Exp $
+@comment $NetBSD: PLIST,v 1.5 2025/02/01 12:47:22 pho Exp $
 ${PLIST.shlibs}lib/${HS_PLATFORM}/libHS${HS_PKGID}-${HS_VER}.so
-${PLIST.shlibs}lib/${HS_PLATFORM}/${HS_PKGID}/Data/Witherable.dyn_hi
-lib/${HS_PLATFORM}/${HS_PKGID}/Data/Witherable.hi
-${PLIST.prof}lib/${HS_PLATFORM}/${HS_PKGID}/Data/Witherable.p_hi
 ${PLIST.shlibs}lib/${HS_PLATFORM}/${HS_PKGID}/Witherable.dyn_hi
 lib/${HS_PLATFORM}/${HS_PKGID}/Witherable.hi
 ${PLIST.prof}lib/${HS_PLATFORM}/${HS_PKGID}/Witherable.p_hi
@@ -11,7 +8,6 @@ ${PLIST.prof}lib/${HS_PLATFORM}/${HS_PKG
 lib/witherable-${PKGVERSION}/${HS_VERSION}/package-description
 lib/witherable-${PKGVERSION}/${HS_VERSION}/package-id
 share/doc/${HS_PLATFORM}/witherable-${PKGVERSION}/LICENSE
-${PLIST.doc}share/doc/${HS_PLATFORM}/witherable-${PKGVERSION}/html/Data-Witherable.html
 ${PLIST.doc}share/doc/${HS_PLATFORM}/witherable-${PKGVERSION}/html/Witherable.html
 ${PLIST.doc}share/doc/${HS_PLATFORM}/witherable-${PKGVERSION}/html/doc-index.html
 ${PLIST.doc}share/doc/${HS_PLATFORM}/witherable-${PKGVERSION}/html/haddock-bundle.min.js

Index: pkgsrc/devel/hs-witherable/buildlink3.mk
diff -u pkgsrc/devel/hs-witherable/buildlink3.mk:1.8 pkgsrc/devel/hs-witherable/buildlink3.mk:1.9
--- pkgsrc/devel/hs-witherable/buildlink3.mk:1.8        Thu May  9 01:32:20 2024
+++ pkgsrc/devel/hs-witherable/buildlink3.mk    Sat Feb  1 12:47:22 2025
@@ -1,12 +1,12 @@
-# $NetBSD: buildlink3.mk,v 1.8 2024/05/09 01:32:20 pho Exp $
+# $NetBSD: buildlink3.mk,v 1.9 2025/02/01 12:47:22 pho Exp $
 
 BUILDLINK_TREE+=       hs-witherable
 
 .if !defined(HS_WITHERABLE_BUILDLINK3_MK)
 HS_WITHERABLE_BUILDLINK3_MK:=
 
-BUILDLINK_API_DEPENDS.hs-witherable+=  hs-witherable>=0.4.2
-BUILDLINK_ABI_DEPENDS.hs-witherable+=  hs-witherable>=0.4.2nb7
+BUILDLINK_API_DEPENDS.hs-witherable+=  hs-witherable>=0.5
+BUILDLINK_ABI_DEPENDS.hs-witherable+=  hs-witherable>=0.5
 BUILDLINK_PKGSRCDIR.hs-witherable?=    ../../devel/hs-witherable
 
 .include "../../devel/hs-base-orphans/buildlink3.mk"

Index: pkgsrc/devel/hs-witherable/distinfo
diff -u pkgsrc/devel/hs-witherable/distinfo:1.3 pkgsrc/devel/hs-witherable/distinfo:1.4
--- pkgsrc/devel/hs-witherable/distinfo:1.3     Thu Jan 26 09:43:54 2023
+++ pkgsrc/devel/hs-witherable/distinfo Sat Feb  1 12:47:22 2025
@@ -1,5 +1,5 @@
-$NetBSD: distinfo,v 1.3 2023/01/26 09:43:54 pho Exp $
+$NetBSD: distinfo,v 1.4 2025/02/01 12:47:22 pho Exp $
 
-BLAKE2s (witherable-0.4.2.tar.gz) = 7004a4dfcaab709528a19fd34d21b2083bd857fdcde0174ad56a22fdab8f5e0f
-SHA512 (witherable-0.4.2.tar.gz) = 14ad590e24b93fc25f16fecaf71d6f9f891a903dd76e052d9f6c21b464f0d28df4f019d33ac36086341a6c5bd20833d7b0c2d19543460d1530899c0c25cea852
-Size (witherable-0.4.2.tar.gz) = 11876 bytes
+BLAKE2s (witherable-0.5.tar.gz) = 51979b484fdb7f97db7f1cd6121de531ce71b924b768ef24e1bcf90438dfc928
+SHA512 (witherable-0.5.tar.gz) = 2f82f0b85928666a6ae24c08030ecfe4c9d94c87ae118e29ac8de73b7d7e9c9bccada0be40762ebd752864d79c3b862101f2ca7e59bd189d47ca6a67fae2d410
+Size (witherable-0.5.tar.gz) = 10819 bytes



Home | Main Index | Thread Index | Old Index