summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--p/haskell-language-javascript/debian/changelog6
-rw-r--r--p/haskell-language-javascript/debian/control8
-rw-r--r--p/haskell-language-javascript/debian/patches/no-utf8-happy-file8
3 files changed, 18 insertions, 4 deletions
diff --git a/p/haskell-language-javascript/debian/changelog b/p/haskell-language-javascript/debian/changelog
index 4d82df3eb..5c62f3897 100644
--- a/p/haskell-language-javascript/debian/changelog
+++ b/p/haskell-language-javascript/debian/changelog
@@ -1,3 +1,9 @@
+haskell-language-javascript (0.5.4-1) unstable; urgency=low
+
+ * New upstream version.
+
+ -- Clint Adams <clint@debian.org> Tue, 08 May 2012 17:35:14 -0400
+
haskell-language-javascript (0.4.10-2) unstable; urgency=low
* Add debian/patches/add-BangPatterns.diff. (Does not yet close #669156, but
diff --git a/p/haskell-language-javascript/debian/control b/p/haskell-language-javascript/debian/control
index d3881c879..81749dc60 100644
--- a/p/haskell-language-javascript/debian/control
+++ b/p/haskell-language-javascript/debian/control
@@ -12,15 +12,23 @@ Build-Depends: debhelper (>= 7)
, ghc-prof
, happy
, alex (>> 3)
+ , libghc-blaze-builder-dev (>> 0.2)
+ , libghc-blaze-builder-dev (<< 1)
+ , libghc-blaze-builder-prof
, libghc-mtl-dev (>> 1.1)
, libghc-mtl-dev (<< 2.9)
, libghc-mtl-prof
, libghc-utf8-light-dev (>> 0.4)
, libghc-utf8-light-dev (<< 1.0)
, libghc-utf8-light-prof
+ , libghc-utf8-string-dev (>> 0.3.7)
+ , libghc-utf8-string-dev (<< 1)
+ , libghc-utf8-string-prof
Build-Depends-Indep: ghc-doc
+ , libghc-blaze-builder-doc
, libghc-mtl-doc
, libghc-utf8-light-doc
+ , libghc-utf8-string-doc
Standards-Version: 3.9.3
Homepage: http://hackage.haskell.org/package/language-javascript
Vcs-Darcs: http://darcs.debian.org/pkg-haskell/haskell-language-javascript
diff --git a/p/haskell-language-javascript/debian/patches/no-utf8-happy-file b/p/haskell-language-javascript/debian/patches/no-utf8-happy-file
index 04457db8d..d51753ec0 100644
--- a/p/haskell-language-javascript/debian/patches/no-utf8-happy-file
+++ b/p/haskell-language-javascript/debian/patches/no-utf8-happy-file
@@ -3,10 +3,10 @@ Author: Joachim Breitner <nomeata@debian.org>
Bug-Debian: http://bugs.debian.org/640742
Forwarded: no
---- haskell-language-javascript-0.4.5.orig/src/Language/JavaScript/Parser/Grammar5.y
-+++ haskell-language-javascript-0.4.5/src/Language/JavaScript/Parser/Grammar5.y
-@@ -754,7 +754,7 @@ EmptyStatement :: { AST.JSNode }
- EmptyStatement : ';' { (AST.NS (AST.JSLiteral ";") (ss $1)) }
+--- a/src/Language/JavaScript/Parser/Grammar5.y
++++ b/src/Language/JavaScript/Parser/Grammar5.y
+@@ -911,7 +911,7 @@
+ EmptyStatement : Semi { $1 }
-- ExpressionStatement : See 12.4
--- [lookahead ∉ {{, function}] Expression ;