diff options
author | Will Thompson <will@willthompson.co.uk> | 2018-07-24 22:14:13 +0100 |
---|---|---|
committer | Will Thompson <will@willthompson.co.uk> | 2018-07-24 22:16:34 +0100 |
commit | 584536df934ae897fddfeae047cef1988eb98d70 (patch) | |
tree | c0df7ddb1e48ec3b4378b1a9ecf35e05423a7203 | |
parent | dc0dab9be4109ea56ea60097571477211dc4c1fe (diff) |
bustle.cabal: fix warnings from sdist
Now I know about this autogen-modules field! This is what I was looking
for in 0cb3ac56d5531ae3d181162d2296f7f05e42432e.
-rw-r--r-- | bustle.cabal | 17 |
1 files changed, 11 insertions, 6 deletions
diff --git a/bustle.cabal b/bustle.cabal index bba11b2..a1ec37a 100644 --- a/bustle.cabal +++ b/bustle.cabal @@ -1,10 +1,10 @@ Name: bustle Category: Network, Desktop Version: 0.7.1.1 -Cabal-Version: >= 2.0 +Cabal-Version: 2.0 Tested-With: GHC == 8.4.3 Synopsis: Draw sequence diagrams of D-Bus traffic -Description: Draw sequence diagrams of D-Bus traffic +Description: Bustle records and draws sequence diagrams of D-Bus activity, showing signal emissions, method calls and their corresponding returns, with timestamps for each individual event and the duration of each method call. This can help you check for unwanted D-Bus traffic, and pinpoint why your D-Bus-based application isn't performing as well as you like. It also provides statistics like signal frequencies and average method call times. License: OtherLicense License-file: LICENSE Author: Will Thompson <will@willthompson.co.uk> @@ -105,6 +105,7 @@ Executable bustle , Bustle.Util , Bustle.VariantFormatter , Paths_bustle + autogen-modules: Paths_bustle default-language: Haskell2010 Ghc-options: -Wall -fno-warn-unused-do-bind @@ -133,7 +134,8 @@ Executable bustle if flag(hgettext) Build-Depends: hgettext >= 0.1.5 , setlocale - -- Other-Modules: GetText_bustle + other-modules: GetText_bustle + autogen-modules: GetText_bustle hs-source-dirs: . , src-hgettext else @@ -159,7 +161,8 @@ Executable dump-messages if flag(hgettext) Build-Depends: hgettext >= 0.1.5 , setlocale - -- Other-Modules: GetText_bustle + other-modules: GetText_bustle + autogen-modules: GetText_bustle hs-source-dirs: . , src-hgettext else @@ -183,7 +186,8 @@ Test-suite test-pcap-crash if flag(hgettext) Build-Depends: hgettext >= 0.1.5 , setlocale - -- Other-Modules: GetText_bustle + other-modules: GetText_bustle + autogen-modules: GetText_bustle hs-source-dirs: . , src-hgettext else @@ -228,7 +232,8 @@ Test-suite test-renderer if flag(hgettext) Build-Depends: hgettext >= 0.1.5 , setlocale - -- Other-Modules: GetText_bustle + other-modules: GetText_bustle + autogen-modules: GetText_bustle hs-source-dirs: . , src-hgettext else |