Received: by mail.netbsd.org (Postfix, from userid 605) id DB82984E24; Fri, 3 Jan 2020 07:42:19 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id 5FEB884E1F for ; Fri, 3 Jan 2020 07:42:19 +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 wctOAP_D7RIm for ; Fri, 3 Jan 2020 07:42:18 +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 BC56A84D5A for ; Fri, 3 Jan 2020 07:42:18 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id AB0DAFA97; Fri, 3 Jan 2020 07:42:18 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_157803733899100" MIME-Version: 1.0 Date: Fri, 3 Jan 2020 07:42:18 +0000 From: "Masatake Daimon" Subject: CVS commit: pkgsrc/devel/hs-mono-traversable To: pkgsrc-changes@NetBSD.org Reply-To: pho@netbsd.org X-Mailer: log_accum Message-Id: <20200103074218.AB0DAFA97@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. --_----------=_157803733899100 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: pho Date: Fri Jan 3 07:42:18 UTC 2020 Added Files: pkgsrc/devel/hs-mono-traversable: DESCR Makefile buildlink3.mk distinfo Log Message: Import mono-traversable-1.0.15.1 Type classes for mapping, folding, and traversing monomorphic and polymorphic containers. Haskell is good at operating over polymorphic containers such as a list [a]. A monomorphic container is one such as Text which has a type Text that does not expose a type variable for the underlying characters. To generate a diff of this commit: cvs rdiff -u -r0 -r1.1 pkgsrc/devel/hs-mono-traversable/DESCR \ pkgsrc/devel/hs-mono-traversable/Makefile \ pkgsrc/devel/hs-mono-traversable/buildlink3.mk \ pkgsrc/devel/hs-mono-traversable/distinfo Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_157803733899100 Content-Disposition: inline Content-Length: 3259 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Added files: Index: pkgsrc/devel/hs-mono-traversable/DESCR diff -u /dev/null pkgsrc/devel/hs-mono-traversable/DESCR:1.1 --- /dev/null Fri Jan 3 07:42:18 2020 +++ pkgsrc/devel/hs-mono-traversable/DESCR Fri Jan 3 07:42:18 2020 @@ -0,0 +1,5 @@ +Type classes for mapping, folding, and traversing monomorphic and +polymorphic containers. Haskell is good at operating over polymorphic +containers such as a list [a]. A monomorphic container is one such as +Text which has a type Text that does not expose a type variable for +the underlying characters. Index: pkgsrc/devel/hs-mono-traversable/Makefile diff -u /dev/null pkgsrc/devel/hs-mono-traversable/Makefile:1.1 --- /dev/null Fri Jan 3 07:42:18 2020 +++ pkgsrc/devel/hs-mono-traversable/Makefile Fri Jan 3 07:42:18 2020 @@ -0,0 +1,18 @@ +# $NetBSD: Makefile,v 1.1 2020/01/03 07:42:18 pho Exp $ + +DISTNAME= mono-traversable-1.0.15.1 +CATEGORIES= devel + +MAINTAINER= pho@cielonegro.org +COMMENT= Type classes for traversing monomorphic containers +LICENSE= mit + +.include "../../mk/haskell.mk" +.include "../../devel/hs-hashable/buildlink3.mk" +.include "../../devel/hs-split/buildlink3.mk" +.include "../../devel/hs-text/buildlink3.mk" +.include "../../devel/hs-unordered-containers/buildlink3.mk" +.include "../../devel/hs-vector/buildlink3.mk" +.include "../../devel/hs-vector-algorithms/buildlink3.mk" +.include "../../math/hs-semigroups/buildlink3.mk" +.include "../../mk/bsd.pkg.mk" Index: pkgsrc/devel/hs-mono-traversable/buildlink3.mk diff -u /dev/null pkgsrc/devel/hs-mono-traversable/buildlink3.mk:1.1 --- /dev/null Fri Jan 3 07:42:18 2020 +++ pkgsrc/devel/hs-mono-traversable/buildlink3.mk Fri Jan 3 07:42:18 2020 @@ -0,0 +1,21 @@ +# $NetBSD: buildlink3.mk,v 1.1 2020/01/03 07:42:18 pho Exp $ + +BUILDLINK_TREE+= hs-mono-traversable + +.if !defined(HS_MONO_TRAVERSABLE_BUILDLINK3_MK) +HS_MONO_TRAVERSABLE_BUILDLINK3_MK:= + +BUILDLINK_API_DEPENDS.hs-mono-traversable+= hs-mono-traversable>=1.0.15 +BUILDLINK_ABI_DEPENDS.hs-mono-traversable+= hs-mono-traversable>=1.0.15.1 +BUILDLINK_PKGSRCDIR.hs-mono-traversable?= ../../devel/hs-mono-traversable + +.include "../../devel/hs-hashable/buildlink3.mk" +.include "../../devel/hs-split/buildlink3.mk" +.include "../../devel/hs-text/buildlink3.mk" +.include "../../devel/hs-unordered-containers/buildlink3.mk" +.include "../../devel/hs-vector/buildlink3.mk" +.include "../../devel/hs-vector-algorithms/buildlink3.mk" +.include "../../math/hs-semigroups/buildlink3.mk" +.endif # HS_MONO_TRAVERSABLE_BUILDLINK3_MK + +BUILDLINK_TREE+= -hs-mono-traversable Index: pkgsrc/devel/hs-mono-traversable/distinfo diff -u /dev/null pkgsrc/devel/hs-mono-traversable/distinfo:1.1 --- /dev/null Fri Jan 3 07:42:18 2020 +++ pkgsrc/devel/hs-mono-traversable/distinfo Fri Jan 3 07:42:18 2020 @@ -0,0 +1,6 @@ +$NetBSD: distinfo,v 1.1 2020/01/03 07:42:18 pho Exp $ + +SHA1 (mono-traversable-1.0.15.1.tar.gz) = 89791be9da3b10403e89bca9d944174ccf3edcb6 +RMD160 (mono-traversable-1.0.15.1.tar.gz) = a237864e150973285f40b9a042f1c32f51a4b0c2 +SHA512 (mono-traversable-1.0.15.1.tar.gz) = adf1af35b93af0605667d8b033415f318c6dab225499fdd1d9eab349fb1eedca2623c98f9dce83f94ed27db75b6f0aa88027daa748c7b3db05f47f68b505b0c8 +Size (mono-traversable-1.0.15.1.tar.gz) = 40815 bytes --_----------=_157803733899100--