2010-09-10 02:54:34 +04:00
|
|
|
name: hledger-web
|
set version with CPP instead of cabal-file-th; make building more robust
hledger and hledger-web were reading their version number (and program
name) from their cabal files at compile time using cabal-file-th,
which allowed the version number be maintained in one place (per
package).
This meant you had to be in same directory as the cabal file when
building, which made life more complicated, eg emacs compilation mode
could not jump to errors. Also, it slowed down building slightly, and
is a factor in hledger Debian packages being unavailable on a number
of platforms (we also use TH for report templates).
Now, the build version is set with a CPP VERSION flag, which seems
simpler overall. For cabal builds, this needs to be configured
manually in a few more places in each cabal file. For makefile builds,
it is set it to the name of the most recent darcs tag (which should be
more useful than the old behaviour). If not set, it defaults to the
blank string, useful eg for haddock. And, all makefile builds now run
from the top directory.
2012-10-13 23:21:17 +04:00
|
|
|
-- also in cpp-options below
|
2012-10-22 00:20:35 +04:00
|
|
|
version: 0.19
|
2010-09-10 02:54:34 +04:00
|
|
|
category: Finance
|
2011-04-19 04:50:47 +04:00
|
|
|
synopsis: A web interface for the hledger accounting tool.
|
2010-09-10 02:54:34 +04:00
|
|
|
description:
|
2011-09-02 04:28:27 +04:00
|
|
|
hledger is a library and set of user tools for working
|
|
|
|
with financial data (or anything that can be tracked in a
|
|
|
|
double-entry accounting ledger.) It is a haskell port and
|
|
|
|
friendly fork of John Wiegley's Ledger. hledger provides
|
|
|
|
command-line, curses and web interfaces, and aims to be a
|
|
|
|
reliable, practical tool for daily use.
|
2011-04-19 04:50:47 +04:00
|
|
|
|
2010-09-10 02:54:34 +04:00
|
|
|
license: GPL
|
|
|
|
license-file: LICENSE
|
|
|
|
author: Simon Michael <simon@joyful.com>
|
2010-09-11 05:47:46 +04:00
|
|
|
maintainer: Simon Michael <simon@joyful.com>
|
2010-09-10 02:54:34 +04:00
|
|
|
homepage: http://hledger.org
|
|
|
|
bug-reports: http://code.google.com/p/hledger/issues
|
2010-11-26 22:59:23 +03:00
|
|
|
stability: beta
|
2012-03-30 02:09:54 +04:00
|
|
|
tested-with: GHC==7.0, GHC==7.2, GHC==7.4.1
|
2010-09-10 02:54:34 +04:00
|
|
|
cabal-version: >= 1.6
|
|
|
|
build-type: Simple
|
|
|
|
extra-tmp-files:
|
|
|
|
extra-source-files:
|
2011-10-05 04:18:30 +04:00
|
|
|
models
|
|
|
|
routes
|
2011-10-05 02:45:45 +04:00
|
|
|
static/style.css
|
|
|
|
static/hledger.js
|
|
|
|
static/jquery.js
|
|
|
|
static/jquery.url.js
|
|
|
|
static/jquery.flot.js
|
|
|
|
static/dhtmlxcommon.js
|
|
|
|
static/dhtmlxcombo.js
|
|
|
|
static/excanvas.min.js
|
|
|
|
static/combo_select.gif
|
|
|
|
static/favicon.ico
|
2010-09-10 02:54:34 +04:00
|
|
|
|
|
|
|
source-repository head
|
|
|
|
type: darcs
|
|
|
|
location: http://joyful.com/repos/hledger
|
|
|
|
|
2012-03-05 11:52:36 +04:00
|
|
|
-- Flag production
|
|
|
|
-- Description: Build fully optimised and with web files embedded (not loaded from ./static/)
|
|
|
|
-- Default: True
|
2011-10-05 03:02:57 +04:00
|
|
|
|
|
|
|
flag threaded
|
2012-03-05 11:52:36 +04:00
|
|
|
Description: Build with support for multithreaded execution.
|
2011-09-14 06:51:31 +04:00
|
|
|
Default: True
|
2010-09-11 05:47:46 +04:00
|
|
|
|
2012-06-30 03:07:19 +04:00
|
|
|
flag blaze_html_0_5
|
|
|
|
description: Use the newer 0.5 version of blaze-html and blaze-markup.
|
|
|
|
default: False
|
|
|
|
|
2012-03-05 11:52:36 +04:00
|
|
|
flag dev
|
|
|
|
Description: Turn on development settings, like auto-reload templates.
|
|
|
|
Default: False
|
|
|
|
|
|
|
|
flag library-only
|
|
|
|
Description: Build for use with "yesod devel"
|
2011-05-24 08:27:37 +04:00
|
|
|
Default: False
|
|
|
|
|
2012-03-05 11:52:36 +04:00
|
|
|
library
|
|
|
|
if flag(library-only)
|
|
|
|
Buildable: True
|
|
|
|
else
|
|
|
|
Buildable: False
|
|
|
|
|
|
|
|
exposed-modules:
|
|
|
|
Hledger.Web.Application
|
|
|
|
other-modules:
|
2011-08-06 03:55:57 +04:00
|
|
|
Hledger.Web
|
2011-09-13 03:37:55 +04:00
|
|
|
Hledger.Web.Foundation
|
2012-03-05 11:52:36 +04:00
|
|
|
Hledger.Web.Import
|
2011-09-02 21:13:47 +04:00
|
|
|
Hledger.Web.Options
|
2011-08-06 03:55:57 +04:00
|
|
|
Hledger.Web.Settings
|
2011-09-13 03:37:55 +04:00
|
|
|
Hledger.Web.Settings.StaticFiles
|
2011-08-06 03:55:57 +04:00
|
|
|
Hledger.Web.Handlers
|
2011-05-24 08:27:37 +04:00
|
|
|
|
2012-03-05 11:52:36 +04:00
|
|
|
ghc-options: -Wall -O0 -fno-warn-unused-do-bind
|
2012-10-22 00:20:35 +04:00
|
|
|
cpp-options: -DVERSION="0.19" -DDEVELOPMENT
|
2012-03-05 11:52:36 +04:00
|
|
|
|
|
|
|
extensions: TemplateHaskell
|
|
|
|
QuasiQuotes
|
|
|
|
OverloadedStrings
|
|
|
|
NoImplicitPrelude
|
|
|
|
CPP
|
|
|
|
OverloadedStrings
|
|
|
|
MultiParamTypeClasses
|
|
|
|
TypeFamilies
|
|
|
|
|
|
|
|
executable hledger-web
|
|
|
|
if flag(library-only)
|
2011-05-24 08:27:37 +04:00
|
|
|
Buildable: False
|
2012-03-05 11:52:36 +04:00
|
|
|
|
|
|
|
if flag(dev)
|
2012-10-22 00:20:35 +04:00
|
|
|
cpp-options: -DVERSION="0.19" -DDEVELOPMENT
|
2012-03-05 11:52:36 +04:00
|
|
|
ghc-options: -Wall -O0 -fno-warn-unused-do-bind
|
|
|
|
else
|
|
|
|
ghc-options: -Wall -O2 -fno-warn-unused-do-bind
|
|
|
|
|
|
|
|
if flag(threaded)
|
|
|
|
ghc-options: -threaded
|
|
|
|
|
|
|
|
extensions: TemplateHaskell
|
|
|
|
QuasiQuotes
|
|
|
|
OverloadedStrings
|
|
|
|
NoImplicitPrelude
|
|
|
|
CPP
|
|
|
|
OverloadedStrings
|
|
|
|
MultiParamTypeClasses
|
|
|
|
TypeFamilies
|
|
|
|
|
|
|
|
main-is: hledger-web.hs
|
|
|
|
|
2011-05-24 08:27:37 +04:00
|
|
|
other-modules:
|
2011-08-06 03:55:57 +04:00
|
|
|
Hledger.Web
|
2011-09-13 03:37:55 +04:00
|
|
|
Hledger.Web.Foundation
|
2012-03-05 11:52:36 +04:00
|
|
|
Hledger.Web.Application
|
|
|
|
Hledger.Web.Import
|
2011-09-02 21:13:47 +04:00
|
|
|
Hledger.Web.Options
|
2011-08-06 03:55:57 +04:00
|
|
|
Hledger.Web.Settings
|
2011-09-13 03:37:55 +04:00
|
|
|
Hledger.Web.Settings.StaticFiles
|
2011-08-06 03:55:57 +04:00
|
|
|
Hledger.Web.Handlers
|
2012-03-05 11:52:36 +04:00
|
|
|
|
|
|
|
build-depends:
|
2012-10-22 00:20:35 +04:00
|
|
|
hledger == 0.19
|
|
|
|
, hledger-lib == 0.19
|
2012-07-08 04:22:20 +04:00
|
|
|
, base >= 4.3 && < 5
|
2012-10-08 20:50:35 +04:00
|
|
|
, cmdargs >= 0.10 && < 0.11
|
2012-05-29 06:53:33 +04:00
|
|
|
, directory
|
|
|
|
, filepath
|
|
|
|
, HUnit
|
|
|
|
, io-storage >= 0.3 && < 0.4
|
|
|
|
, old-locale
|
|
|
|
, parsec
|
|
|
|
, regexpr >= 0.5.1
|
|
|
|
, safe >= 0.2
|
|
|
|
, time
|
|
|
|
|
|
|
|
, yesod == 1.0.*
|
|
|
|
, yesod-core
|
|
|
|
, yesod-default
|
|
|
|
, yesod-static
|
|
|
|
, clientsession
|
|
|
|
, hamlet
|
|
|
|
, network-conduit
|
|
|
|
, shakespeare-text
|
|
|
|
, template-haskell
|
|
|
|
, text >= 0.11 && < 0.12
|
|
|
|
, transformers >= 0.2 && < 0.4
|
|
|
|
, wai
|
|
|
|
, wai-extra
|
|
|
|
, warp
|
|
|
|
, yaml
|
2012-06-30 03:07:19 +04:00
|
|
|
if flag(blaze_html_0_5)
|
2012-07-08 04:18:39 +04:00
|
|
|
cpp-options: -DBLAZE_HTML_0_5
|
2012-06-30 03:07:19 +04:00
|
|
|
build-depends:
|
|
|
|
blaze-html >= 0.5 && < 0.6
|
|
|
|
, blaze-markup >= 0.5.1 && < 0.6
|
|
|
|
else
|
|
|
|
build-depends:
|
|
|
|
blaze-html >= 0.4 && < 0.5
|
2012-03-05 11:52:36 +04:00
|
|
|
|
|
|
|
|
|
|
|
-- if flag(production)
|
|
|
|
-- cpp-options: -DPRODUCTION
|
|
|
|
-- ghc-options: -O2
|
|
|
|
-- else
|
|
|
|
-- ghc-options: -Wall
|
|
|
|
-- if flag(threaded)
|
|
|
|
-- ghc-options: -threaded
|