1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-10-21 20:38:45 +00:00

- Update to 0.8

This commit is contained in:
Gabor Pali 2010-06-08 12:00:06 +00:00
parent d23410d39b
commit 56c6a7d818
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=256103
4 changed files with 13 additions and 25 deletions

View File

@ -6,8 +6,7 @@
#
PORTNAME= mueval
PORTVERSION= 0.7.1
PORTREVISION= 1
PORTVERSION= 0.8
CATEGORIES= devel haskell
MAINTAINER= haskell@FreeBSD.org

View File

@ -1,3 +1,3 @@
MD5 (mueval-0.7.1.tar.gz) = 3e655a1d63468b961532c164a9b31227
SHA256 (mueval-0.7.1.tar.gz) = 8e721e207cea5fdf58ac768d03a9a038845ca48a527da0f9538c370c2aac9f25
SIZE (mueval-0.7.1.tar.gz) = 13597
MD5 (mueval-0.8.tar.gz) = 26528dd9ceb8e37779b311ae1614295b
SHA256 (mueval-0.8.tar.gz) = cb2cf474d1a94fb71b84b572e134bed85ecbceafd3dbe9daed3d0a1023504c8a
SIZE (mueval-0.8.tar.gz) = 14353

View File

@ -1,15 +0,0 @@
--- Mueval/Interpreter.hs.orig 2009-12-26 10:51:26.000000000 +0000
+++ Mueval/Interpreter.hs 2009-12-26 10:52:08.000000000 +0000
@@ -120,9 +120,9 @@
-- | Renders the input String including its exceptions using @exceptionMsg@
render :: (Control.Monad.Trans.MonadIO m) =>
- Int -> -- ^ max number of characters to include
- String -> -- ^ input
- m (String, Bool) -- ^ ( output, @True@ if we found an exception )
+ Int -- ^ max number of characters to include
+ -> String -- ^ input
+ -> m (String, Bool) -- ^ ( output, @True@ if we found an exception )
render i xs =
do (out,Any b) <- runWriterT $ render' i (toStream xs)
return (out,b)

View File

@ -1,6 +1,10 @@
WARNING: If you installed devel/hs-transformers, then before starting
"mueval" you have to:
WARNING!
If you installed devel/hs-transformers, then before starting "mueval"
you have to:
- hide it with the command: 'ghc-pkg hide transformers'
or
- pass to "mueval" the option: '-n transformers'.
- hide it with the command: 'ghc-pkg hide transformers'
or
- pass to "mueval" the option: '-n transformers'.