Received: by mail.netbsd.org (Postfix, from userid 605) id 3E22384DAF; Wed, 1 Jan 2020 05:24:56 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id BB7B584D04 for ; Wed, 1 Jan 2020 05:24:55 +0000 (UTC) X-Virus-Scanned: amavisd-new at netbsd.org Received: from mail.netbsd.org ([IPv6:::1]) by localhost (mail.netbsd.org [IPv6:::1]) (amavisd-new, port 10025) with ESMTP id TlxwLOOhsl4a for ; Wed, 1 Jan 2020 05:24:55 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.NetBSD.org [IPv6:2001:470:a085:999:28c:faff:fe03:5984]) by mail.netbsd.org (Postfix) with ESMTP id 2A65F84CDA for ; Wed, 1 Jan 2020 05:24:55 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id 1E334FA97; Wed, 1 Jan 2020 05:24:55 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1577856295223790" MIME-Version: 1.0 Date: Wed, 1 Jan 2020 05:24:55 +0000 From: "Masatake Daimon" Subject: CVS commit: pkgsrc/sysutils/hs-temporary To: pkgsrc-changes@NetBSD.org Reply-To: pho@netbsd.org X-Mailer: log_accum Message-Id: <20200101052455.1E334FA97@cvs.NetBSD.org> Sender: pkgsrc-changes-owner@NetBSD.org List-Id: pkgsrc-changes.NetBSD.org Precedence: bulk List-Unsubscribe: This is a multi-part message in MIME format. --_----------=_1577856295223790 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: pho Date: Wed Jan 1 05:24:55 UTC 2020 Modified Files: pkgsrc/sysutils/hs-temporary: Makefile buildlink3.mk distinfo Removed Files: pkgsrc/sysutils/hs-temporary: PLIST Log Message: 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 To generate a diff of this commit: cvs rdiff -u -r1.2 -r1.3 pkgsrc/sysutils/hs-temporary/Makefile \ pkgsrc/sysutils/hs-temporary/buildlink3.mk \ pkgsrc/sysutils/hs-temporary/distinfo cvs rdiff -u -r1.1 -r0 pkgsrc/sysutils/hs-temporary/PLIST Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_1577856295223790 Content-Disposition: inline Content-Length: 3015 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/sysutils/hs-temporary/Makefile diff -u pkgsrc/sysutils/hs-temporary/Makefile:1.2 pkgsrc/sysutils/hs-temporary/Makefile:1.3 --- pkgsrc/sysutils/hs-temporary/Makefile:1.2 Sun Nov 23 12:52:33 2014 +++ pkgsrc/sysutils/hs-temporary/Makefile Wed Jan 1 05:24:54 2020 @@ -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 @@ -10,5 +9,5 @@ LICENSE= modified-bsd .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" Index: pkgsrc/sysutils/hs-temporary/buildlink3.mk diff -u pkgsrc/sysutils/hs-temporary/buildlink3.mk:1.2 pkgsrc/sysutils/hs-temporary/buildlink3.mk:1.3 --- pkgsrc/sysutils/hs-temporary/buildlink3.mk:1.2 Sun Nov 23 12:52:33 2014 +++ pkgsrc/sysutils/hs-temporary/buildlink3.mk Wed Jan 1 05:24:54 2020 @@ -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 Index: pkgsrc/sysutils/hs-temporary/distinfo diff -u pkgsrc/sysutils/hs-temporary/distinfo:1.2 pkgsrc/sysutils/hs-temporary/distinfo:1.3 --- pkgsrc/sysutils/hs-temporary/distinfo:1.2 Wed Nov 4 01:32:17 2015 +++ pkgsrc/sysutils/hs-temporary/distinfo Wed Jan 1 05:24:54 2020 @@ -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 --_----------=_1577856295223790--