From owner-svn-ports-all@freebsd.org Fri Feb 19 20:50:26 2016 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 2E3C4AAC9A4; Fri, 19 Feb 2016 20:50:26 +0000 (UTC) (envelope-from pgj@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 00D7D162D; Fri, 19 Feb 2016 20:50:25 +0000 (UTC) (envelope-from pgj@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u1JKoPXc030301; Fri, 19 Feb 2016 20:50:25 GMT (envelope-from pgj@FreeBSD.org) Received: (from pgj@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u1JKoOaa030299; Fri, 19 Feb 2016 20:50:24 GMT (envelope-from pgj@FreeBSD.org) Message-Id: <201602192050.u1JKoOaa030299@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: pgj set sender to pgj@FreeBSD.org using -f From: Gabor Pali Date: Fri, 19 Feb 2016 20:50:24 +0000 (UTC) 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 X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 19 Feb 2016 20:50:26 -0000 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