summaryrefslogtreecommitdiff
path: root/debian
diff options
context:
space:
mode:
authorJoey Hess2015-10-29 00:38:53 -0400
committerJoey Hess2015-10-29 00:46:49 -0400
commit39fa051833de3178639974fa4fc7c803c5918f0e (patch)
tree3e3dcae0886adb1c851bdfdbc1a1d5ee99cb26e2 /debian
parentceee9305dce89a9529b316db6d6a5eabe1ad8adb (diff)
generalize what can be output
This adds a dependency on Text, but I don't mind propellor depending on it and am somewhat surprised it doesn't already. Using Text also lets this use encodeUtf8 instead of the nasty hack it was using to go from String -> ByteString.
Diffstat (limited to 'debian')
-rw-r--r--debian/changelog2
-rw-r--r--debian/control2
2 files changed, 3 insertions, 1 deletions
diff --git a/debian/changelog b/debian/changelog
index c5538c7f..6f75bce9 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -20,7 +20,7 @@ propellor (2.13.0) UNRELEASED; urgency=medium
* Added Propellor.Property.Concurrent for concurrent properties.
* Made the execProcess exported by propellor, and everything built on it,
avoid scrambled output when run concurrently.
- * Propellor now depends on STM.
+ * Propellor now depends on STM and text.
* The cabal file now builds propellor with -O. While -O0 makes ghc
take less memory while building propellor, it can lead to bad memory
usage at runtime due to eg, disabled stream fusion.
diff --git a/debian/control b/debian/control
index 2956fdaa..97fb3e6d 100644
--- a/debian/control
+++ b/debian/control
@@ -18,6 +18,7 @@ Build-Depends:
libghc-transformers-dev,
libghc-exceptions-dev (>= 0.6),
libghc-stm-dev,
+ libghc-text-dev,
Maintainer: Gergely Nagy <algernon@madhouse-project.org>
Standards-Version: 3.9.6
Vcs-Git: git://git.joeyh.name/propellor
@@ -41,6 +42,7 @@ Depends: ${misc:Depends}, ${shlibs:Depends},
libghc-transformers-dev,
libghc-exceptions-dev (>= 0.6),
libghc-stm-dev,
+ libghc-text-dev,
git,
make,
Description: property-based host configuration management in haskell