Received: by mail.netbsd.org (Postfix, from userid 605) id 7D15D84E08; Mon, 30 Mar 2020 16:43:36 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id 03AB984E07 for ; Mon, 30 Mar 2020 16:43:36 +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 nDghs77DTjDF for ; Mon, 30 Mar 2020 16:43:35 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.netbsd.org [199.233.217.197]) by mail.netbsd.org (Postfix) with ESMTP id 64F3584E04 for ; Mon, 30 Mar 2020 16:43:35 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id 60AEEFB27; Mon, 30 Mar 2020 16:43:35 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1585586615262740" MIME-Version: 1.0 Date: Mon, 30 Mar 2020 16:43:35 +0000 From: "Taylor R Campbell" Subject: CVS commit: pkgsrc/devel To: pkgsrc-changes@NetBSD.org Reply-To: riastradh@netbsd.org X-Mailer: log_accum Message-Id: <20200330164335.60AEEFB27@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. --_----------=_1585586615262740 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: riastradh Date: Mon Mar 30 16:43:35 UTC 2020 Modified Files: pkgsrc/devel: Makefile Added Files: pkgsrc/devel/hs-wizards: DESCR Makefile buildlink3.mk distinfo Log Message: hs-wizards: Import version 1.0.3 To generate a diff of this commit: cvs rdiff -u -r1.3080 -r1.3081 pkgsrc/devel/Makefile cvs rdiff -u -r0 -r1.1 pkgsrc/devel/hs-wizards/DESCR \ pkgsrc/devel/hs-wizards/Makefile pkgsrc/devel/hs-wizards/buildlink3.mk \ pkgsrc/devel/hs-wizards/distinfo Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_1585586615262740 Content-Disposition: inline Content-Length: 3748 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/devel/Makefile diff -u pkgsrc/devel/Makefile:1.3080 pkgsrc/devel/Makefile:1.3081 --- pkgsrc/devel/Makefile:1.3080 Mon Mar 30 16:42:56 2020 +++ pkgsrc/devel/Makefile Mon Mar 30 16:43:35 2020 @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.3080 2020/03/30 16:42:56 riastradh Exp $ +# $NetBSD: Makefile,v 1.3081 2020/03/30 16:43:35 riastradh Exp $ # COMMENT= Development utilities @@ -589,6 +589,7 @@ SUBDIR+= hs-vector-algorithms SUBDIR+= hs-vector-binary-instances SUBDIR+= hs-vector-th-unbox SUBDIR+= hs-void +SUBDIR+= hs-wizards SUBDIR+= ht SUBDIR+= hugs-HUnit SUBDIR+= hugs-unix Added files: Index: pkgsrc/devel/hs-wizards/DESCR diff -u /dev/null pkgsrc/devel/hs-wizards/DESCR:1.1 --- /dev/null Mon Mar 30 16:43:35 2020 +++ pkgsrc/devel/hs-wizards/DESCR Mon Mar 30 16:43:35 2020 @@ -0,0 +1,17 @@ +wizards is a package designed for the quick and painless development +of interrogative programs, which revolve around a dialogue with the +user, who is asked a series of questions in a sequence much like an +installation wizard. + +Everything from interactive system scripts, to installation wizards, +to full-blown shells can be implemented with the support of wizards. + +It is developed transparently on top of a free monad, which separates +out the semantics of the program from any particular interface. A +variety of backends exist, including console-based +"System.Console.Wizard.Haskeline" and "System.Console.Wizard.BasicIO", +and the pure "System.Console.Wizard.Pure". It is also possible to +write your own backends, or extend existing back-ends with new +features. While both built-in IO backends operate on a console, there +is no reason why wizards cannot also be used for making GUI wizard +interfaces. Index: pkgsrc/devel/hs-wizards/Makefile diff -u /dev/null pkgsrc/devel/hs-wizards/Makefile:1.1 --- /dev/null Mon Mar 30 16:43:35 2020 +++ pkgsrc/devel/hs-wizards/Makefile Mon Mar 30 16:43:35 2020 @@ -0,0 +1,16 @@ +# $NetBSD: Makefile,v 1.1 2020/03/30 16:43:35 riastradh Exp $ + +DISTNAME= wizards-1.0.3 +CATEGORIES= devel +MASTER_SITES= ${MASTER_SITE_HASKELL_HACKAGE:=wizards-${PKGVERSION_NOREV}/} + +MAINTAINER= pkgsrc-users@NetBSD.org +HOMEPAGE= https://hackage.haskell.org/package/wizards +COMMENT= High level, generic library for interrogative user interfaces +LICENSE= modified-bsd + +USE_LANGUAGES= # none + +.include "../../devel/hs-control-monad-free/buildlink3.mk" +.include "../../mk/haskell.mk" +.include "../../mk/bsd.pkg.mk" Index: pkgsrc/devel/hs-wizards/buildlink3.mk diff -u /dev/null pkgsrc/devel/hs-wizards/buildlink3.mk:1.1 --- /dev/null Mon Mar 30 16:43:35 2020 +++ pkgsrc/devel/hs-wizards/buildlink3.mk Mon Mar 30 16:43:35 2020 @@ -0,0 +1,13 @@ +# $NetBSD: buildlink3.mk,v 1.1 2020/03/30 16:43:35 riastradh Exp $ + +BUILDLINK_TREE+= hs-wizards + +.if !defined(HS_WIZARDS_BUILDLINK3_MK) +HS_WIZARDS_BUILDLINK3_MK:= + +BUILDLINK_API_DEPENDS.hs-wizards+= hs-wizards>=1.0.3 +BUILDLINK_ABI_DEPENDS.hs-wizards+= hs-wizards>=1.0.3 +BUILDLINK_PKGSRCDIR.hs-wizards?= ../../devel/hs-wizards +.endif # HS_WIZARDS_BUILDLINK3_MK + +BUILDLINK_TREE+= -hs-wizards Index: pkgsrc/devel/hs-wizards/distinfo diff -u /dev/null pkgsrc/devel/hs-wizards/distinfo:1.1 --- /dev/null Mon Mar 30 16:43:35 2020 +++ pkgsrc/devel/hs-wizards/distinfo Mon Mar 30 16:43:35 2020 @@ -0,0 +1,6 @@ +$NetBSD: distinfo,v 1.1 2020/03/30 16:43:35 riastradh Exp $ + +SHA1 (wizards-1.0.3.tar.gz) = 29e9e914663151dade9fd3cf979167275ae3793b +RMD160 (wizards-1.0.3.tar.gz) = 4562593266b075ed942e61aa01b7eb26003a23a1 +SHA512 (wizards-1.0.3.tar.gz) = 74289bce609954ecd2d16729b67f4655ebfa2b5211303c2c64c1a7636e78e2b1dc3823472be8d5851fc490d9ff80559bdfbfda59cc753b60cacc4dd1b512663c +Size (wizards-1.0.3.tar.gz) = 8243 bytes --_----------=_1585586615262740--