Skip to content
This repository was archived by the owner on Feb 3, 2021. It is now read-only.

Commit 971da12

Browse files
committed
* Pugs 6.2.13.20120203 for GHC 7.4.1 compatibility.
1 parent f364756 commit 971da12

File tree

14 files changed

+17
-17
lines changed

14 files changed

+17
-17
lines changed

Pugs/Pugs.cabal

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
Name : Pugs
2-
Version : 6.2.13.20111008
2+
Version : 6.2.13.20120203
33
license : BSD3
44
license-file : LICENSE
55
cabal-version : >= 1.2.3
6-
copyright : 2005-2008, The Pugs Contributors
6+
copyright : 2005-2012, The Pugs Contributors
77
maintainer : Audrey Tang <audreyt@audreyt.org>
88
category : Language, Pugs
99
stability : experimental
@@ -12,7 +12,7 @@ homepage : http://pugscode.org/
1212
synopsis : A Perl 6 Implementation
1313
description : A Perl 6 Implementation
1414
author : Audrey Tang <audreyt@audreyt.org>
15-
Tested-With: GHC==6.8.2, GHC==6.8.3, GHC==6.10.1, GHC==6.12.1, GHC==7.0.1, GHC==7.2.1
15+
Tested-With: GHC==6.8.2, GHC==6.8.3, GHC==6.10.1, GHC==6.12.1, GHC==7.0.1, GHC==7.2.1, GHC==7.4.1
1616
data-files :
1717
blib6/pugs/perl5/lib/Parse/Yapp/Driver.pm
1818
blib6/pugs/perl5/lib/Parse/Yapp/Grammar.pm

Pugs/src/Pugs/AST.hs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
{-# OPTIONS_GHC -cpp -fglasgow-exts -fno-warn-orphans -funbox-strict-fields -fallow-overlapping-instances -fparr #-}
1+
{-# OPTIONS_GHC -cpp -fglasgow-exts -fno-warn-orphans -funbox-strict-fields -fallow-overlapping-instances #-}
22
{-# LANGUAGE GADTs #-}
33

44
{-|

Pugs/src/Pugs/AST/Functions.hs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
{-# OPTIONS_GHC -fglasgow-exts -fno-warn-orphans -fallow-overlapping-instances -fallow-undecidable-instances -fparr #-}
1+
{-# OPTIONS_GHC -fglasgow-exts -fno-warn-orphans -fallow-overlapping-instances -fallow-undecidable-instances #-}
22
module Pugs.AST.Functions where
33
import Pugs.Internals
44
import Pugs.Types

Pugs/src/Pugs/AST/Internals.hs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
{-# OPTIONS_GHC -cpp -fglasgow-exts -fno-warn-orphans -fallow-overlapping-instances -fallow-undecidable-instances -fparr #-}
1+
{-# OPTIONS_GHC -cpp -fglasgow-exts -fno-warn-orphans -fallow-overlapping-instances -fallow-undecidable-instances #-}
22
{-# LANGUAGE GADTs #-}
33

44
module Pugs.AST.Internals (

Pugs/src/Pugs/AST/Internals/Instances.hs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
{-# OPTIONS_GHC -cpp -fglasgow-exts -fno-warn-orphans -fallow-overlapping-instances -fallow-undecidable-instances -fparr #-}
1+
{-# OPTIONS_GHC -cpp -fglasgow-exts -fno-warn-orphans -fallow-overlapping-instances -fallow-undecidable-instances #-}
22
{-# LANGUAGE GADTs #-}
33

44

Pugs/src/Pugs/AST/Pad.hs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
{-# OPTIONS_GHC -fglasgow-exts -fparr #-}
1+
{-# OPTIONS_GHC -fglasgow-exts #-}
22
{-# LANGUAGE GADTs #-}
33
module Pugs.AST.Pad (
44
mkPad, unionPads, padKeys, filterPad, adjustPad, mergePadEntry,

Pugs/src/Pugs/AST/Types.hs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
{-# OPTIONS_GHC -fglasgow-exts -fno-warn-orphans -fallow-overlapping-instances -fallow-undecidable-instances -fparr #-}
1+
{-# OPTIONS_GHC -fglasgow-exts -fno-warn-orphans -fallow-overlapping-instances -fallow-undecidable-instances #-}
22
module Pugs.AST.Types where
33
import Pugs.Internals
44
import Pugs.Types

Pugs/src/Pugs/Class.hs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
{-# OPTIONS_GHC -fglasgow-exts -fparr -fallow-undecidable-instances -fallow-incoherent-instances #-}
1+
{-# OPTIONS_GHC -fglasgow-exts -fallow-undecidable-instances -fallow-incoherent-instances #-}
22

33
{-|
44
Class meta-model. (object meta-meta-model)

Pugs/src/Pugs/Compile/Pugs.hs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
{-# OPTIONS_GHC -fglasgow-exts -fallow-overlapping-instances -fparr #-}
1+
{-# OPTIONS_GHC -fglasgow-exts -fallow-overlapping-instances #-}
22
{-# LANGUAGE GADTs #-}
33

44
module Pugs.Compile.Pugs (genPugs) where

Pugs/src/Pugs/Eval.hs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
{-# OPTIONS_GHC -fglasgow-exts -cpp -fno-warn-deprecations -fallow-overlapping-instances -fparr #-}
1+
{-# OPTIONS_GHC -fglasgow-exts -cpp -fno-warn-deprecations -fallow-overlapping-instances #-}
22
{-# LANGUAGE GADTs #-}
33

44
{-|

0 commit comments

Comments
 (0)