summaryrefslogtreecommitdiff
path: root/p/highlighting-kate
diff options
context:
space:
mode:
authorClint Adams <clint@debian.org>2014-06-10 14:52:06 +0400
committerClint Adams <clint@debian.org>2014-06-10 14:52:06 +0400
commit4613a3a72e70ee1a105aa42e599b1f432f15926d (patch)
tree3df2e8d51850a42394bb34683c2e638a33ae435e /p/highlighting-kate
parent4aa66a93d30c83eb7bb16ff18d7281d6b0a04e43 (diff)
downloadDHG_packages-4613a3a72e70ee1a105aa42e599b1f432f15926d.tar.gz
highlighting-kate: New upstream version 0.5.8.2.
Diffstat (limited to 'p/highlighting-kate')
-rw-r--r--p/highlighting-kate/debian/changelog6
-rw-r--r--p/highlighting-kate/debian/control3
-rw-r--r--p/highlighting-kate/debian/patches/series1
-rw-r--r--p/highlighting-kate/debian/patches/wrong-operator-for-pcre-light-options11
4 files changed, 9 insertions, 12 deletions
diff --git a/p/highlighting-kate/debian/changelog b/p/highlighting-kate/debian/changelog
index ca5ac9de7..db3d81e1d 100644
--- a/p/highlighting-kate/debian/changelog
+++ b/p/highlighting-kate/debian/changelog
@@ -1,3 +1,9 @@
+highlighting-kate (0.5.8.2-1) unstable; urgency=medium
+
+ * New upstream version.
+
+ -- Clint Adams <clint@debian.org> Fri, 06 Jun 2014 08:17:50 -0400
+
highlighting-kate (0.5.7-1) unstable; urgency=medium
* New upstream version.
diff --git a/p/highlighting-kate/debian/control b/p/highlighting-kate/debian/control
index 86ad7e3c1..ac14a4d2d 100644
--- a/p/highlighting-kate/debian/control
+++ b/p/highlighting-kate/debian/control
@@ -18,11 +18,14 @@ Build-Depends: cdbs
, libghc-blaze-html-prof
, libghc-mtl-dev
, libghc-mtl-prof
+ , libghc-utf8-string-dev
+ , libghc-utf8-string-prof
Build-Depends-Indep: ghc-doc
, libghc-blaze-html-doc
, libghc-parsec3-doc
, libghc-pcre-light-doc
, libghc-mtl-doc
+ , libghc-utf8-string-doc
Standards-Version: 3.9.5
Homepage: http://johnmacfarlane.net/highlighting-kate
Vcs-Darcs: http://darcs.debian.org/pkg-haskell/highlighting-kate
diff --git a/p/highlighting-kate/debian/patches/series b/p/highlighting-kate/debian/patches/series
deleted file mode 100644
index 4c161aa76..000000000
--- a/p/highlighting-kate/debian/patches/series
+++ /dev/null
@@ -1 +0,0 @@
-wrong-operator-for-pcre-light-options
diff --git a/p/highlighting-kate/debian/patches/wrong-operator-for-pcre-light-options b/p/highlighting-kate/debian/patches/wrong-operator-for-pcre-light-options
deleted file mode 100644
index 87019a711..000000000
--- a/p/highlighting-kate/debian/patches/wrong-operator-for-pcre-light-options
+++ /dev/null
@@ -1,11 +0,0 @@
---- a/Text/Highlighting/Kate/Common.hs
-+++ b/Text/Highlighting/Kate/Common.hs
-@@ -184,7 +184,7 @@
- #ifdef _PCRE_LIGHT
- compileRegex regexpStr = do
- st <- getState
-- let opts = [anchored] + [caseless | not (synStCaseSensitive st)]
-+ let opts = [anchored] ++ [caseless | not (synStCaseSensitive st)]
- return $ compile ('.' : convertOctal regexpStr) opts
- #else
- compileRegex regexpStr = do