1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-11-27 00:57:50 +00:00

- Update to 0.15

PR:		ports/168325
Submitted by:	pgj
Approved by:	maintainer
Obtained from:	FreeBSD Haskell
This commit is contained in:
Gabor Pali 2012-06-03 22:06:36 +00:00
parent 25440f8bee
commit c4c52adb13
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=298230
3 changed files with 21 additions and 4 deletions

View File

@ -6,8 +6,7 @@
#
PORTNAME= pure-gen
PORTVERSION= 0.12
PORTREVISION= 1
PORTVERSION= 0.15
CATEGORIES= devel
MAINTAINER= lichray@gmail.com

View File

@ -1,2 +1,2 @@
SHA256 (pure/pure-gen-0.12.tar.gz) = b5d5530e12c016d828e4388ffc5c1dfd22c2748ab0e4472979d37fda531f96f8
SIZE (pure/pure-gen-0.12.tar.gz) = 57463
SHA256 (pure/pure-gen-0.15.tar.gz) = e51921028f09710564b973d4ecd279f8654a8943c5aed8ddde0355bbb8a67bc6
SIZE (pure/pure-gen-0.15.tar.gz) = 57590

View File

@ -0,0 +1,18 @@
--- ./dump-ast.hs.orig 2011-09-09 11:13:26.000000000 +0200
+++ ./dump-ast.hs 2012-05-15 20:30:49.000000000 +0200
@@ -147,13 +147,10 @@
dump (CFDefExt cFunDef) = parens $ "CFDefExt "++ dump cFunDef
-- The version of CAsmExt in the repository has an additional second
-- argument. Uncomment this if needed.
- dump (CAsmExt cStrLit _) = parens $ "CAsmExt " ++ dump cStrLit
+ dump (CAsmExt cStrLit) = parens $ "CAsmExt " ++ dump cStrLit
--dump (CAsmExt cStrLit) = parens $ "CAsmExt " ++ dump cStrLit
-cDeclFile (CDecl _ _ nodeInfo) =
- case fileOfNode nodeInfo of
- Nothing -> ""
- Just filePath -> "\"" ++ filePath ++ "\""
+cDeclFile (CDecl _ _ nodeInfo) = "\"" ++ fileOfNode nodeInfo ++ "\""
-- | C function definition (C99 6.9.1, K&R A10.1)
--