pkgsrc-Changes archive

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

CVS commit: pkgsrc/math/hs-mwc-random



Module Name:    pkgsrc
Committed By:   pho
Date:           Thu Jan 30 05:24:45 UTC 2025

Modified Files:
        pkgsrc/math/hs-mwc-random: Makefile PLIST buildlink3.mk distinfo

Log Message:
math/hs-mwc-random: update to mwc-random-0.15.2.0

## Changes in 0.15.2.0

  * Support for `random-1.3`.

## Changes in 0.15.1.0

  * Additon of binomial sampler using the rejection sampling method in
    Kachitvichyanukul, V. and Schmeiser, B. W.  Binomial Random
    Variate Generation.  Communications of the ACM, 31, 2 (February,
    1988) 216. <https://dl.acm.org/doi/pdf/10.1145/42372.42381>. A more
    efficient basis for e.g. the beta binomial distribution:
        `beta a b g >>= \p -> binomial n p g`.


To generate a diff of this commit:
cvs rdiff -u -r1.16 -r1.17 pkgsrc/math/hs-mwc-random/Makefile
cvs rdiff -u -r1.6 -r1.7 pkgsrc/math/hs-mwc-random/PLIST
cvs rdiff -u -r1.17 -r1.18 pkgsrc/math/hs-mwc-random/buildlink3.mk
cvs rdiff -u -r1.8 -r1.9 pkgsrc/math/hs-mwc-random/distinfo

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

Modified files:

Index: pkgsrc/math/hs-mwc-random/Makefile
diff -u pkgsrc/math/hs-mwc-random/Makefile:1.16 pkgsrc/math/hs-mwc-random/Makefile:1.17
--- pkgsrc/math/hs-mwc-random/Makefile:1.16     Thu May  9 01:32:27 2024
+++ pkgsrc/math/hs-mwc-random/Makefile  Thu Jan 30 05:24:44 2025
@@ -1,12 +1,11 @@
-# $NetBSD: Makefile,v 1.16 2024/05/09 01:32:27 pho Exp $
+# $NetBSD: Makefile,v 1.17 2025/01/30 05:24:44 pho Exp $
 
-DISTNAME=      mwc-random-0.15.0.2
-PKGREVISION=   7
+DISTNAME=      mwc-random-0.15.2.0
 CATEGORIES=    math
 
 MAINTAINER=    szptvlfn%NetBSD.org@localhost
 COMMENT=       Fast, high quality pseudo random number generation
-LICENSE=       modified-bsd
+LICENSE=       2-clause-bsd
 
 .include "../../mk/haskell.mk"
 .include "../../math/hs-math-functions/buildlink3.mk"

Index: pkgsrc/math/hs-mwc-random/PLIST
diff -u pkgsrc/math/hs-mwc-random/PLIST:1.6 pkgsrc/math/hs-mwc-random/PLIST:1.7
--- pkgsrc/math/hs-mwc-random/PLIST:1.6 Mon Apr 29 23:15:19 2024
+++ pkgsrc/math/hs-mwc-random/PLIST     Thu Jan 30 05:24:44 2025
@@ -1,4 +1,4 @@
-@comment $NetBSD: PLIST,v 1.6 2024/04/29 23:15:19 pho Exp $
+@comment $NetBSD: PLIST,v 1.7 2025/01/30 05:24:44 pho Exp $
 ${PLIST.shlibs}lib/${HS_PLATFORM}/libHS${HS_PKGID}-${HS_VER}.so
 ${PLIST.shlibs}lib/${HS_PLATFORM}/${HS_PKGID}/System/Random/MWC.dyn_hi
 lib/${HS_PLATFORM}/${HS_PKGID}/System/Random/MWC.hi
@@ -21,7 +21,9 @@ ${PLIST.doc}share/doc/${HS_PLATFORM}/mwc
 ${PLIST.doc}share/doc/${HS_PLATFORM}/mwc-random-${PKGVERSION}/html/System-Random-MWC-Distributions.html
 ${PLIST.doc}share/doc/${HS_PLATFORM}/mwc-random-${PKGVERSION}/html/System-Random-MWC-SeedSource.html
 ${PLIST.doc}share/doc/${HS_PLATFORM}/mwc-random-${PKGVERSION}/html/System-Random-MWC.html
+${PLIST.doc}share/doc/${HS_PLATFORM}/mwc-random-${PKGVERSION}/html/changelog.md
 ${PLIST.doc}share/doc/${HS_PLATFORM}/mwc-random-${PKGVERSION}/html/doc-index.html
+${PLIST.doc}share/doc/${HS_PLATFORM}/mwc-random-${PKGVERSION}/html/docs/RecreateFigure.svg
 ${PLIST.doc}share/doc/${HS_PLATFORM}/mwc-random-${PKGVERSION}/html/haddock-bundle.min.js
 ${PLIST.doc}share/doc/${HS_PLATFORM}/mwc-random-${PKGVERSION}/html/index.html
 ${PLIST.doc}share/doc/${HS_PLATFORM}/mwc-random-${PKGVERSION}/html/linuwial.css

Index: pkgsrc/math/hs-mwc-random/buildlink3.mk
diff -u pkgsrc/math/hs-mwc-random/buildlink3.mk:1.17 pkgsrc/math/hs-mwc-random/buildlink3.mk:1.18
--- pkgsrc/math/hs-mwc-random/buildlink3.mk:1.17        Thu May  9 01:32:27 2024
+++ pkgsrc/math/hs-mwc-random/buildlink3.mk     Thu Jan 30 05:24:44 2025
@@ -1,12 +1,12 @@
-# $NetBSD: buildlink3.mk,v 1.17 2024/05/09 01:32:27 pho Exp $
+# $NetBSD: buildlink3.mk,v 1.18 2025/01/30 05:24:44 pho Exp $
 
 BUILDLINK_TREE+=       hs-mwc-random
 
 .if !defined(HS_MWC_RANDOM_BUILDLINK3_MK)
 HS_MWC_RANDOM_BUILDLINK3_MK:=
 
-BUILDLINK_API_DEPENDS.hs-mwc-random+=  hs-mwc-random>=0.15.0
-BUILDLINK_ABI_DEPENDS.hs-mwc-random+=  hs-mwc-random>=0.15.0.2nb7
+BUILDLINK_API_DEPENDS.hs-mwc-random+=  hs-mwc-random>=0.15.2
+BUILDLINK_ABI_DEPENDS.hs-mwc-random+=  hs-mwc-random>=0.15.2.0
 BUILDLINK_PKGSRCDIR.hs-mwc-random?=    ../../math/hs-mwc-random
 
 .include "../../math/hs-math-functions/buildlink3.mk"

Index: pkgsrc/math/hs-mwc-random/distinfo
diff -u pkgsrc/math/hs-mwc-random/distinfo:1.8 pkgsrc/math/hs-mwc-random/distinfo:1.9
--- pkgsrc/math/hs-mwc-random/distinfo:1.8      Sat Feb 12 05:13:43 2022
+++ pkgsrc/math/hs-mwc-random/distinfo  Thu Jan 30 05:24:44 2025
@@ -1,5 +1,5 @@
-$NetBSD: distinfo,v 1.8 2022/02/12 05:13:43 pho Exp $
+$NetBSD: distinfo,v 1.9 2025/01/30 05:24:44 pho Exp $
 
-BLAKE2s (mwc-random-0.15.0.2.tar.gz) = fb8cba448e4414a4c33aa5ed433ce975a32c2dcd31b7cbe58e458bf40f72b068
-SHA512 (mwc-random-0.15.0.2.tar.gz) = 7e30a4584bca7f5e5147388dc9c081ac417d3aff1e9bd431535eac695db0779b4d20c6b3bedbda06a4780d9d57ab1f7880743f7bad20e4f5d2b7d32ce7f373bd
-Size (mwc-random-0.15.0.2.tar.gz) = 26591 bytes
+BLAKE2s (mwc-random-0.15.2.0.tar.gz) = 6cc6f5d796d5679fae56413724c253fd9b1700a9b311073b20ba8c11e5453815
+SHA512 (mwc-random-0.15.2.0.tar.gz) = d20687aaa34084587e5e294505dcb7ce3d12da1ce09a6e70b7d1f6070298da956aedb56419ab83d0539be2946d79cf0ea0389d6c7610640e75cbbe84f214e92b
+Size (mwc-random-0.15.2.0.tar.gz) = 43086 bytes



Home | Main Index | Thread Index | Old Index