Skip site navigation (1)Skip section navigation (2)
Date:      Fri, 19 Feb 2016 20:50:24 +0000 (UTC)
From:      Gabor Pali <pgj@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r409207 - in head/www/hs-activehs: . files
Message-ID:  <201602192050.u1JKoOaa030299@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: pgj
Date: Fri Feb 19 20:50:24 2016
New Revision: 409207
URL: https://svnweb.freebsd.org/changeset/ports/409207

Log:
  - Fix a run-time issue
  
  Obtained from:	FreeBSD Haskell

Modified:
  head/www/hs-activehs/Makefile
  head/www/hs-activehs/files/patch-Converter.hs

Modified: head/www/hs-activehs/Makefile
==============================================================================
--- head/www/hs-activehs/Makefile	Fri Feb 19 20:49:11 2016	(r409206)
+++ head/www/hs-activehs/Makefile	Fri Feb 19 20:50:24 2016	(r409207)
@@ -2,7 +2,7 @@
 
 PORTNAME=	activehs
 PORTVERSION=	0.3.1
-PORTREVISION=	11
+PORTREVISION=	12
 CATEGORIES=	www haskell
 
 MAINTAINER=	haskell@FreeBSD.org

Modified: head/www/hs-activehs/files/patch-Converter.hs
==============================================================================
--- head/www/hs-activehs/files/patch-Converter.hs	Fri Feb 19 20:49:11 2016	(r409206)
+++ head/www/hs-activehs/files/patch-Converter.hs	Fri Feb 19 20:50:24 2016	(r409207)
@@ -18,12 +18,13 @@
  
  showBlockSimple :: Language -> String -> String -> Int -> String -> [Block]
  
-@@ -244,13 +244,13 @@ mkImport m d 
+@@ -244,13 +244,14 @@ mkImport m d 
          , HSyn.importSrc = False
          , HSyn.importPkg = Nothing
          , HSyn.importAs = Nothing
 -        , HSyn.importSpecs = Just (True, map (HSyn.IVar . mkName) d)
 +        , HSyn.importSpecs = Just (True, map (HSyn.IVar HSyn.NoNamespace . mkName) d)
++        , HSyn.importSafe = False
          }
  
  mkName :: String -> HSyn.Name



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201602192050.u1JKoOaa030299>