pkgsrc-Changes-HG archive
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]
[pkgsrc/trunk]: pkgsrc/sysutils/hs-temporary Update to temporary-1.3
details: https://anonhg.NetBSD.org/pkgsrc/rev/99a92e92d13b
branches: trunk
changeset: 407046:99a92e92d13b
user: pho <pho%pkgsrc.org@localhost>
date: Wed Jan 01 05:24:54 2020 +0000
description:
Update to temporary-1.3
1.3
* Generated directory names are now based on random hex strings rather
than PIDs.
* This got a major version bump as a courtesy to users who may depend
on the specific form of generated names, but that form is not part
of the API contract and should not be depended upon.
1.2.1.1
* Improve the docs
1.2.1
* Limit support to GHC 7.0+
* Add new functions: writeTempFile, writeSystemTempFile,
emptyTempFile, emptySystemTempFile
* Make sure that system* functions return canonicalized paths
* Modernize the code base, add tests and documentation
1.2.0.4
* Update maintainership information
* Fix the docs
diffstat:
sysutils/hs-temporary/Makefile | 7 +++----
sysutils/hs-temporary/PLIST | 21 ---------------------
sysutils/hs-temporary/buildlink3.mk | 8 ++++----
sysutils/hs-temporary/distinfo | 10 +++++-----
4 files changed, 12 insertions(+), 34 deletions(-)
diffs (84 lines):
diff -r 536f6918d1e2 -r 99a92e92d13b sysutils/hs-temporary/Makefile
--- a/sysutils/hs-temporary/Makefile Wed Jan 01 05:21:34 2020 +0000
+++ b/sysutils/hs-temporary/Makefile Wed Jan 01 05:24:54 2020 +0000
@@ -1,7 +1,6 @@
-# $NetBSD: Makefile,v 1.2 2014/11/23 12:52:33 szptvlfn Exp $
+# $NetBSD: Makefile,v 1.3 2020/01/01 05:24:54 pho Exp $
-DISTNAME= temporary-1.2.0.3
-PKGREVISION= 1
+DISTNAME= temporary-1.3
CATEGORIES= sysutils
MAINTAINER= szptvlfn%NetBSD.org@localhost
@@ -10,5 +9,5 @@
.include "../../mk/haskell.mk"
.include "../../devel/hs-exceptions/buildlink3.mk"
-.include "../../devel/hs-transformers/buildlink3.mk"
+.include "../../devel/hs-random/buildlink3.mk"
.include "../../mk/bsd.pkg.mk"
diff -r 536f6918d1e2 -r 99a92e92d13b sysutils/hs-temporary/PLIST
--- a/sysutils/hs-temporary/PLIST Wed Jan 01 05:21:34 2020 +0000
+++ /dev/null Thu Jan 01 00:00:00 1970 +0000
@@ -1,21 +0,0 @@
-@comment $NetBSD: PLIST,v 1.1 2014/09/11 21:59:29 szptvlfn Exp $
-lib/temporary-${PKGVERSION}/${HASKELL_VERSION}/Distribution/Compat/Exception.hi
-lib/temporary-${PKGVERSION}/${HASKELL_VERSION}/Distribution/Compat/TempFile.hi
-lib/temporary-${PKGVERSION}/${HASKELL_VERSION}/HStemporary-${PKGVERSION}.o
-lib/temporary-${PKGVERSION}/${HASKELL_VERSION}/System/IO/Temp.hi
-lib/temporary-${PKGVERSION}/${HASKELL_VERSION}/libHStemporary-${PKGVERSION}.a
-lib/temporary-${PKGVERSION}/${HASKELL_VERSION}/package-description
-share/doc/temporary-${PKGVERSION}/LICENSE
-${PLIST.doc}share/doc/temporary-${PKGVERSION}/html/System-IO-Temp.html
-${PLIST.doc}share/doc/temporary-${PKGVERSION}/html/doc-index.html
-${PLIST.doc}share/doc/temporary-${PKGVERSION}/html/frames.html
-${PLIST.doc}share/doc/temporary-${PKGVERSION}/html/haddock-util.js
-${PLIST.doc}share/doc/temporary-${PKGVERSION}/html/hslogo-16.png
-${PLIST.doc}share/doc/temporary-${PKGVERSION}/html/index-frames.html
-${PLIST.doc}share/doc/temporary-${PKGVERSION}/html/index.html
-${PLIST.doc}share/doc/temporary-${PKGVERSION}/html/mini_System-IO-Temp.html
-${PLIST.doc}share/doc/temporary-${PKGVERSION}/html/minus.gif
-${PLIST.doc}share/doc/temporary-${PKGVERSION}/html/ocean.css
-${PLIST.doc}share/doc/temporary-${PKGVERSION}/html/plus.gif
-${PLIST.doc}share/doc/temporary-${PKGVERSION}/html/synopsis.png
-${PLIST.doc}share/doc/temporary-${PKGVERSION}/html/temporary.haddock
diff -r 536f6918d1e2 -r 99a92e92d13b sysutils/hs-temporary/buildlink3.mk
--- a/sysutils/hs-temporary/buildlink3.mk Wed Jan 01 05:21:34 2020 +0000
+++ b/sysutils/hs-temporary/buildlink3.mk Wed Jan 01 05:24:54 2020 +0000
@@ -1,16 +1,16 @@
-# $NetBSD: buildlink3.mk,v 1.2 2014/11/23 12:52:33 szptvlfn Exp $
+# $NetBSD: buildlink3.mk,v 1.3 2020/01/01 05:24:54 pho Exp $
BUILDLINK_TREE+= hs-temporary
.if !defined(HS_TEMPORARY_BUILDLINK3_MK)
HS_TEMPORARY_BUILDLINK3_MK:=
-BUILDLINK_API_DEPENDS.hs-temporary+= hs-temporary>=1.2.0
-BUILDLINK_ABI_DEPENDS.hs-temporary+= hs-temporary>=1.2.0.3nb1
+BUILDLINK_API_DEPENDS.hs-temporary+= hs-temporary>=1.3
+BUILDLINK_ABI_DEPENDS.hs-temporary+= hs-temporary>=1.3
BUILDLINK_PKGSRCDIR.hs-temporary?= ../../sysutils/hs-temporary
.include "../../devel/hs-exceptions/buildlink3.mk"
-.include "../../devel/hs-transformers/buildlink3.mk"
+.include "../../devel/hs-random/buildlink3.mk"
.endif # HS_TEMPORARY_BUILDLINK3_MK
BUILDLINK_TREE+= -hs-temporary
diff -r 536f6918d1e2 -r 99a92e92d13b sysutils/hs-temporary/distinfo
--- a/sysutils/hs-temporary/distinfo Wed Jan 01 05:21:34 2020 +0000
+++ b/sysutils/hs-temporary/distinfo Wed Jan 01 05:24:54 2020 +0000
@@ -1,6 +1,6 @@
-$NetBSD: distinfo,v 1.2 2015/11/04 01:32:17 agc Exp $
+$NetBSD: distinfo,v 1.3 2020/01/01 05:24:54 pho Exp $
-SHA1 (temporary-1.2.0.3.tar.gz) = 7f3468c837d1b82b9c684dce68581c5ab4f6b849
-RMD160 (temporary-1.2.0.3.tar.gz) = be576becdb377708ccd69973fcffc7332d755680
-SHA512 (temporary-1.2.0.3.tar.gz) = ceada89c2166c315b2a54cae0a636eb0b38e6e89481ef32d3d1e4305d4e601305b4cb88fba3069493e8fe2014e3d237348a37567aba61e617c69707f0a16dd34
-Size (temporary-1.2.0.3.tar.gz) = 5308 bytes
+SHA1 (temporary-1.3.tar.gz) = e7b96ac6866a93147c229d972c2438618fe46452
+RMD160 (temporary-1.3.tar.gz) = 87a3a76754eab4db36f5c3d716bbfb4220d36fdd
+SHA512 (temporary-1.3.tar.gz) = e3078caf54da95c4efa9e9c936b35a98b62296ecce2242cd4e103605a9d29e8a9d6c7027dbf50d02b6a893bea558ea5b07dbb1df7c59bf26d86db76ccf112f25
+Size (temporary-1.3.tar.gz) = 5686 bytes
Home |
Main Index |
Thread Index |
Old Index