summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorWill Thompson <will.thompson@collabora.co.uk>2011-05-17 11:51:11 +0100
committerWill Thompson <will.thompson@collabora.co.uk>2011-05-17 11:51:11 +0100
commit0c70ed844e4cc8698f49b6650648963a9a08b9d9 (patch)
tree02799d1c9ba7ef0d812d92d18e8b11e1a39988eb
parent5e64d19e23a1613d1e31ec853f1298bf33367b63 (diff)
Clean up cabal file a bit.
Also, we don't need PatternGuards any more.
-rw-r--r--tt.cabal21
-rwxr-xr-xtt.hs3
2 files changed, 15 insertions, 9 deletions
diff --git a/tt.cabal b/tt.cabal
index c55c329..cfab4cf 100644
--- a/tt.cabal
+++ b/tt.cabal
@@ -1,16 +1,23 @@
+cabal-version: >= 1.6
name: tt
version: 0.0.1
-synopsis: Test runner for Telepathy twisted tests
-description: Simplifies invoking `make check-twisted` to run Telepathy tests
-category:
+synopsis: Test runner for Telepathy components' Twisted-based tests
+description: Simplifies invoking `make check-twisted` with various
+ possibly-interesting arguments. Completely useless unless
+ you are a Telepathy hacker; very useful if you are.
+category: Testing
license: BSD3
license-file: LICENSE
author: Will Thompson
maintainer: Will Thompson <will@willthompson.co.uk>
-build-depends: base (>= 4), unix, filepath, directory, process
build-type: Simple
extra-source-files: README
-executable: tt
-main-is: tt.hs
-ghc-options: -Wall -fno-warn-unused-imports -Werror
+source-repository head
+ type: git
+ location: git://anongit.freedesktop.org/~wjt/tt
+
+executable tt
+ main-is: tt.hs
+ ghc-options: -Wall -fno-warn-unused-imports
+ build-depends: base (>= 4), unix, filepath, directory, process
diff --git a/tt.hs b/tt.hs
index 2b93545..39b9350 100755
--- a/tt.hs
+++ b/tt.hs
@@ -1,5 +1,4 @@
-{-# LANGUAGE PatternGuards #-}
-{- Helper script to run Telepathy components' Twisted tests -}
+{- Test runner for Telepathy components' Twisted-based tests -}
module Main where
import System.Console.GetOpt