pkgsrc-Changes archive

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

CVS commit: pkgsrc/devel/hs-these



Module Name:    pkgsrc
Committed By:   pho
Date:           Sat Oct 28 20:00:48 UTC 2023

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

Log Message:
devel/hs-these: Update to 1.2

* Depend on bifunctor-classes-compat instead of bifunctors See changelog
  note in bifunctors-5.6:
  https://hackage.haskell.org/package/bifunctors-5.6/changelog This is
  breaking change, but affects only GHC-8.0 and older users. In that case
  you should check various combinations of newer/older bifunctors, these
  (and e.g. semialign) packages.
* Depend on assoc-1.1. Since version 1.1 assoc has an almost trivial
  dependency footprint, so these depends on it unconditionally.
* Add Bifoldable1 These instance
* Add Foldable1 (Data.Functor.These1 f g) instance
* Change Eq (These1 f g a), Ord, Read, Show, NFData instances similarly to
  how they are changed for Product and Sum in base-4.18.0.0.


To generate a diff of this commit:
cvs rdiff -u -r1.9 -r1.10 pkgsrc/devel/hs-these/Makefile
cvs rdiff -u -r1.2 -r1.3 pkgsrc/devel/hs-these/PLIST
cvs rdiff -u -r1.8 -r1.9 pkgsrc/devel/hs-these/buildlink3.mk
cvs rdiff -u -r1.5 -r1.6 pkgsrc/devel/hs-these/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-these/Makefile
diff -u pkgsrc/devel/hs-these/Makefile:1.9 pkgsrc/devel/hs-these/Makefile:1.10
--- pkgsrc/devel/hs-these/Makefile:1.9  Mon Oct  9 04:54:32 2023
+++ pkgsrc/devel/hs-these/Makefile      Sat Oct 28 20:00:47 2023
@@ -1,18 +1,13 @@
-# $NetBSD: Makefile,v 1.9 2023/10/09 04:54:32 pho Exp $
+# $NetBSD: Makefile,v 1.10 2023/10/28 20:00:47 pho Exp $
 
-DISTNAME=      these-1.1.1.1
-PKGREVISION=   6
+DISTNAME=      these-1.2
 CATEGORIES=    devel
 
 MAINTAINER=    pho%cielonegro.org@localhost
 COMMENT=       Either-or-both data type
 LICENSE=       modified-bsd
 
-HASKELL_UNRESTRICT_DEPENDENCIES+=      \
-       base    \
-       hashable
-
-.include "../../mk/haskell.mk"
-.include "../../devel/hs-hashable/buildlink3.mk"
 .include "../../devel/hs-assoc/buildlink3.mk"
+.include "../../devel/hs-hashable/buildlink3.mk"
+.include "../../mk/haskell.mk"
 .include "../../mk/bsd.pkg.mk"

Index: pkgsrc/devel/hs-these/PLIST
diff -u pkgsrc/devel/hs-these/PLIST:1.2 pkgsrc/devel/hs-these/PLIST:1.3
--- pkgsrc/devel/hs-these/PLIST:1.2     Thu Jan 26 11:28:33 2023
+++ pkgsrc/devel/hs-these/PLIST Sat Oct 28 20:00:47 2023
@@ -1,4 +1,4 @@
-@comment $NetBSD: PLIST,v 1.2 2023/01/26 11:28:33 pho Exp $
+@comment $NetBSD: PLIST,v 1.3 2023/10/28 20:00:47 pho Exp $
 lib/these-${PKGVERSION}/${HS_VERSION}/package-description
 lib/these-${PKGVERSION}/${HS_VERSION}/package-id
 ${PLIST.shlibs}lib/${HS_PLATFORM}/libHS${HS_PKGID}-${HS_VER}.so
@@ -13,15 +13,17 @@ lib/${HS_PLATFORM}/${HS_PKGID}/Data/Thes
 ${PLIST.prof}lib/${HS_PLATFORM}/${HS_PKGID}/Data/These/Combinators.p_hi
 lib/${HS_PLATFORM}/${HS_PKGID}/libHS${HS_PKGID}.a
 ${PLIST.prof}lib/${HS_PLATFORM}/${HS_PKGID}/libHS${HS_PKGID}_p.a
-${PLIST.doc}share/doc/${HS_PLATFORM}/these-${PKGVERSION}/LICENSE
+share/doc/${HS_PLATFORM}/these-${PKGVERSION}/LICENSE
 ${PLIST.doc}share/doc/${HS_PLATFORM}/these-${PKGVERSION}/html/Data-Functor-These.html
 ${PLIST.doc}share/doc/${HS_PLATFORM}/these-${PKGVERSION}/html/Data-These-Combinators.html
 ${PLIST.doc}share/doc/${HS_PLATFORM}/these-${PKGVERSION}/html/Data-These.html
 ${PLIST.doc}share/doc/${HS_PLATFORM}/these-${PKGVERSION}/html/doc-index.html
+${PLIST.doc}share/doc/${HS_PLATFORM}/these-${PKGVERSION}/html/doc-index.json
 ${PLIST.doc}share/doc/${HS_PLATFORM}/these-${PKGVERSION}/html/haddock-bundle.min.js
 ${PLIST.doc}share/doc/${HS_PLATFORM}/these-${PKGVERSION}/html/index.html
 ${PLIST.doc}share/doc/${HS_PLATFORM}/these-${PKGVERSION}/html/linuwial.css
 ${PLIST.doc}share/doc/${HS_PLATFORM}/these-${PKGVERSION}/html/meta.json
 ${PLIST.doc}share/doc/${HS_PLATFORM}/these-${PKGVERSION}/html/quick-jump.css
+${PLIST.doc}share/doc/${HS_PLATFORM}/these-${PKGVERSION}/html/quick-jump.min.js
 ${PLIST.doc}share/doc/${HS_PLATFORM}/these-${PKGVERSION}/html/synopsis.png
 ${PLIST.doc}share/doc/${HS_PLATFORM}/these-${PKGVERSION}/html/these.haddock

Index: pkgsrc/devel/hs-these/buildlink3.mk
diff -u pkgsrc/devel/hs-these/buildlink3.mk:1.8 pkgsrc/devel/hs-these/buildlink3.mk:1.9
--- pkgsrc/devel/hs-these/buildlink3.mk:1.8     Mon Oct  9 04:54:32 2023
+++ pkgsrc/devel/hs-these/buildlink3.mk Sat Oct 28 20:00:47 2023
@@ -1,16 +1,16 @@
-# $NetBSD: buildlink3.mk,v 1.8 2023/10/09 04:54:32 pho Exp $
+# $NetBSD: buildlink3.mk,v 1.9 2023/10/28 20:00:47 pho Exp $
 
 BUILDLINK_TREE+=       hs-these
 
 .if !defined(HS_THESE_BUILDLINK3_MK)
 HS_THESE_BUILDLINK3_MK:=
 
-BUILDLINK_API_DEPENDS.hs-these+=       hs-these>=1.1.1
-BUILDLINK_ABI_DEPENDS.hs-these+=       hs-these>=1.1.1.1nb6
+BUILDLINK_API_DEPENDS.hs-these+=       hs-these>=1.2
+BUILDLINK_ABI_DEPENDS.hs-these+=       hs-these>=1.2
 BUILDLINK_PKGSRCDIR.hs-these?=         ../../devel/hs-these
 
-.include "../../devel/hs-hashable/buildlink3.mk"
 .include "../../devel/hs-assoc/buildlink3.mk"
+.include "../../devel/hs-hashable/buildlink3.mk"
 .endif # HS_THESE_BUILDLINK3_MK
 
 BUILDLINK_TREE+=       -hs-these

Index: pkgsrc/devel/hs-these/distinfo
diff -u pkgsrc/devel/hs-these/distinfo:1.5 pkgsrc/devel/hs-these/distinfo:1.6
--- pkgsrc/devel/hs-these/distinfo:1.5  Thu Jan 26 11:28:33 2023
+++ pkgsrc/devel/hs-these/distinfo      Sat Oct 28 20:00:47 2023
@@ -1,5 +1,5 @@
-$NetBSD: distinfo,v 1.5 2023/01/26 11:28:33 pho Exp $
+$NetBSD: distinfo,v 1.6 2023/10/28 20:00:47 pho Exp $
 
-BLAKE2s (these-1.1.1.1.tar.gz) = ae732bf5d79d631125d9c44c98bf3fc9a5f2d632ed0385bf503a6dc1eddf0bb2
-SHA512 (these-1.1.1.1.tar.gz) = 23246164648bf4cb028719e7cb2e5f450ab55558af9e1dc7f0ddec323ca4ce124afbfd3bf367446c2d69ec91abe42daf77e11a26a13f2898275dafbc095637d5
-Size (these-1.1.1.1.tar.gz) = 9804 bytes
+BLAKE2s (these-1.2.tar.gz) = 87b5613e0ea5371195d93be879f3673063478a664565b5e2173ddcc4bf26ea9f
+SHA512 (these-1.2.tar.gz) = f05210a9a4023638ed0eba7089466f9fb8475fb30bd61bfeb36ea2f7382ea27eb3103233473087a0384208b34903b04218e64d4482da8cb8010fb7342af53d1a
+Size (these-1.2.tar.gz) = 10606 bytes



Home | Main Index | Thread Index | Old Index