From owner-cvs-all@FreeBSD.ORG Sat Feb 18 16:48:47 2012 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 3C23C1065674; Sat, 18 Feb 2012 16:48:47 +0000 (UTC) (envelope-from pgj@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 0EC158FC18; Sat, 18 Feb 2012 16:48:47 +0000 (UTC) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.4/8.14.4) with ESMTP id q1IGmkv7004452; Sat, 18 Feb 2012 16:48:46 GMT (envelope-from pgj@repoman.freebsd.org) Received: (from pgj@localhost) by repoman.freebsd.org (8.14.4/8.14.4/Submit) id q1IGmkGX004451; Sat, 18 Feb 2012 16:48:46 GMT (envelope-from pgj) Message-Id: <201202181648.q1IGmkGX004451@repoman.freebsd.org> From: Gabor Pali Date: Sat, 18 Feb 2012 16:48:46 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/devel Makefile ports/devel/hs-convertible-text Makefile distinfo pkg-descr ports/lang/ghc bsd.hackage.mk X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: **OBSOLETE** CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 18 Feb 2012 16:48:47 -0000 pgj 2012-02-18 16:48:46 UTC FreeBSD ports repository Modified files: devel Makefile lang/ghc bsd.hackage.mk Added files: devel/hs-convertible-text Makefile distinfo pkg-descr Log: This is a port of John Goerzen's convertible package, intended to distinguish between conversions which are guaranteed to succeed and those which might fail. It uses the attempt package, which in turn uses the failure package, so that this package is fully compatible with the failure framework. This package currently contains all of the typeclasses and instances for convertible. However, as these features are ported to the convertible package, this package will be left with only the instances for converting to and from text types (String, ByteString (lazy and strict) and Text (lazy and strict). Be aware that conversions to and from bytestrings assume UTF-8 encoding. If a different encoding is desired, you can use a newtype wrapper and declare an instance of ConvertAttempt or ConvertSuccess on it. WWW: http://github.com/snoyberg/convertible/tree/text Obtained from: FreeBSD Haskell Revision Changes Path 1.4854 +1 -0 ports/devel/Makefile 1.1 +20 -0 ports/devel/hs-convertible-text/Makefile (new) 1.1 +2 -0 ports/devel/hs-convertible-text/distinfo (new) 1.1 +17 -0 ports/devel/hs-convertible-text/pkg-descr (new) 1.134 +2 -1 ports/lang/ghc/bsd.hackage.mk