pkgsrc-Changes archive

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

CVS commit: pkgsrc/devel/ocaml-batteries



Module Name:    pkgsrc
Committed By:   jaapb
Date:           Thu Aug 18 10:07:41 UTC 2016

Modified Files:
        pkgsrc/devel/ocaml-batteries: Makefile PLIST distinfo

Log Message:
Updated package to latest release, 2.5.2. Package upstream has moved
to github. Changes include:
- BatIO: make the ?cleanup parameter of BatIO.input_channel true by default:
  closing the returned input will close the underlying input channel
  #109, #489
  (Simon Cruanes, report by Michael Ekstrand)
- BatArray: add split : 'a BatOrd.ord -> 'a array -> 'a -> int * int
  search for the range equal to a given element in a sorted array
  #443, #470
  (Simon Cruanes, Gabriel Scherer, request by Fran?ois Berenger)
- BatEnum: BatEnum.combine is now curried, just like List.combine,
  its signature changes from:
    val combine: 'a t * 'b t -> ('a * 'b) t
  to
    val combine: 'a t -> 'b t -> ('a * 'b) t
  #578
  (Fran?ois Berenger)
- PSet: add a ?cmp argument to every function that creates a PSet:
    of_enum, of_list, of_array
  are changed. The default value is Pervasives.compare.
  #679
(Cedric Cellier)


To generate a diff of this commit:
cvs rdiff -u -r1.9 -r1.10 pkgsrc/devel/ocaml-batteries/Makefile
cvs rdiff -u -r1.3 -r1.4 pkgsrc/devel/ocaml-batteries/PLIST
cvs rdiff -u -r1.5 -r1.6 pkgsrc/devel/ocaml-batteries/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/ocaml-batteries/Makefile
diff -u pkgsrc/devel/ocaml-batteries/Makefile:1.9 pkgsrc/devel/ocaml-batteries/Makefile:1.10
--- pkgsrc/devel/ocaml-batteries/Makefile:1.9   Sat Jun 25 14:05:01 2016
+++ pkgsrc/devel/ocaml-batteries/Makefile       Thu Aug 18 10:07:41 2016
@@ -1,9 +1,12 @@
-# $NetBSD: Makefile,v 1.9 2016/06/25 14:05:01 jaapb Exp $
+# $NetBSD: Makefile,v 1.10 2016/08/18 10:07:41 jaapb Exp $
 
-DISTNAME=      batteries-2.5.0
+VERSION=       2.5.2
+GITHUB_PROJECT=        batteries-included
+GITHUB_TAG=    v${VERSION}
+DISTNAME=      batteries-${VERSION}
 PKGNAME=       ocaml-${DISTNAME}
 CATEGORIES=    devel
-MASTER_SITES=  http://forge.ocamlcore.org/frs/download.php/1611/
+MASTER_SITES=  ${MASTER_SITE_GITHUB:=ocaml-batteries-team/}
 
 MAINTAINER=    jaapb%NetBSD.org@localhost
 HOMEPAGE=      http://batteries.forge.ocamlcore.org/

Index: pkgsrc/devel/ocaml-batteries/PLIST
diff -u pkgsrc/devel/ocaml-batteries/PLIST:1.3 pkgsrc/devel/ocaml-batteries/PLIST:1.4
--- pkgsrc/devel/ocaml-batteries/PLIST:1.3      Sat Jun 25 14:05:01 2016
+++ pkgsrc/devel/ocaml-batteries/PLIST  Thu Aug 18 10:07:41 2016
@@ -1,4 +1,6 @@
-@comment $NetBSD: PLIST,v 1.3 2016/06/25 14:05:01 jaapb Exp $
+@comment $NetBSD: PLIST,v 1.4 2016/08/18 10:07:41 jaapb Exp $
+${OCAML_SITELIB}/batteries/BatConcreteQueue.cmi
+${PLIST.ocaml-opt}${OCAML_SITELIB}/batteries/BatConcreteQueue.cmx
 ${OCAML_SITELIB}/batteries/META
 ${OCAML_SITELIB}/batteries/batArray.cmi
 ${PLIST.ocaml-opt}${OCAML_SITELIB}/batteries/batArray.cmx
@@ -42,9 +44,6 @@ ${OCAML_SITELIB}/batteries/batCharParser
 ${OCAML_SITELIB}/batteries/batComplex.cmi
 ${PLIST.ocaml-opt}${OCAML_SITELIB}/batteries/batComplex.cmx
 ${OCAML_SITELIB}/batteries/batComplex.mli
-${OCAML_SITELIB}/batteries/batConcreteQueue_403.cmi
-${PLIST.ocaml-opt}${OCAML_SITELIB}/batteries/batConcreteQueue_403.cmx
-${OCAML_SITELIB}/batteries/batConcreteQueue_403.mli
 ${OCAML_SITELIB}/batteries/batConcurrent.cmi
 ${PLIST.ocaml-opt}${OCAML_SITELIB}/batteries/batConcurrent.cmx
 ${OCAML_SITELIB}/batteries/batConcurrent.mli
@@ -164,6 +163,8 @@ ${OCAML_SITELIB}/batteries/batNumber.mli
 ${OCAML_SITELIB}/batteries/batOo.cmi
 ${PLIST.ocaml-opt}${OCAML_SITELIB}/batteries/batOo.cmx
 ${OCAML_SITELIB}/batteries/batOo.mli
+${OCAML_SITELIB}/batteries/batOpaqueInnerSys.cmi
+${PLIST.ocaml-opt}${OCAML_SITELIB}/batteries/batOpaqueInnerSys.cmx
 ${OCAML_SITELIB}/batteries/batOptParse.cmi
 ${PLIST.ocaml-opt}${OCAML_SITELIB}/batteries/batOptParse.cmx
 ${OCAML_SITELIB}/batteries/batOptParse.mli

Index: pkgsrc/devel/ocaml-batteries/distinfo
diff -u pkgsrc/devel/ocaml-batteries/distinfo:1.5 pkgsrc/devel/ocaml-batteries/distinfo:1.6
--- pkgsrc/devel/ocaml-batteries/distinfo:1.5   Sat Jun 25 14:05:01 2016
+++ pkgsrc/devel/ocaml-batteries/distinfo       Thu Aug 18 10:07:41 2016
@@ -1,7 +1,7 @@
-$NetBSD: distinfo,v 1.5 2016/06/25 14:05:01 jaapb Exp $
+$NetBSD: distinfo,v 1.6 2016/08/18 10:07:41 jaapb Exp $
 
-SHA1 (batteries-2.5.0.tar.gz) = db3b04c6c67c617068d7de5624a76298f6e61571
-RMD160 (batteries-2.5.0.tar.gz) = 6217c29f23406ccb42f254349b1d10b38e807588
-SHA512 (batteries-2.5.0.tar.gz) = 95683687fa3ccf320293dc37ad0227b19faaa60fea7c60f374c9b2be65a0ddab0b8f56934714e8c03dac8bf0bb0447975cd900aa090a423108fa60f4895a22c1
-Size (batteries-2.5.0.tar.gz) = 746553 bytes
+SHA1 (batteries-2.5.2.tar.gz) = 348d9dccfe9a64f9e5897c31824a8388896975bb
+RMD160 (batteries-2.5.2.tar.gz) = 2efd4f323f1b29e292cc9630c5a96d0d399c7d77
+SHA512 (batteries-2.5.2.tar.gz) = 310a2c88986cefe06424d428579203a5e147515fcd839a19daaedeca25803ef593d8eeb68027f26509fd820794b7928bf5ae56ff1aef852523ee91a4ce0d4d0d
+Size (batteries-2.5.2.tar.gz) = 750624 bytes
 SHA1 (patch-Makefile) = 916f5bb2eeffca3830865e0a63dfdb9a48e1e40f



Home | Main Index | Thread Index | Old Index