2016-08-09 17:24:41 +03:00
|
|
|
name: hledger-web
|
2020-09-07 22:16:12 +03:00
|
|
|
version: 1.19.99
|
2020-03-22 20:49:02 +03:00
|
|
|
synopsis: Web-based user interface for the hledger accounting system
|
2016-08-09 21:27:00 +03:00
|
|
|
description: |
|
2020-03-22 20:49:02 +03:00
|
|
|
A simple web-based user interface for the hledger accounting system,
|
|
|
|
providing a more modern UI than the command-line or terminal interfaces.
|
|
|
|
It can be used as a local single-user UI, or as a multi-user UI for
|
2020-10-22 08:06:35 +03:00
|
|
|
viewing\/adding\/editing on the web.
|
2020-03-22 20:49:02 +03:00
|
|
|
|
|
|
|
hledger is a robust, cross-platform set of tools for tracking money,
|
|
|
|
time, or any other commodity, using double-entry accounting and a
|
|
|
|
simple, editable file format, with command-line, terminal and web
|
|
|
|
interfaces. It is a Haskell rewrite of Ledger, and one of the leading
|
|
|
|
implementations of Plain Text Accounting. Read more at:
|
|
|
|
<https://hledger.org>
|
2016-08-09 21:27:00 +03:00
|
|
|
|
2016-08-09 17:24:41 +03:00
|
|
|
category: Finance
|
2017-03-08 11:19:13 +03:00
|
|
|
license: GPL-3
|
2016-08-09 17:24:41 +03:00
|
|
|
author: Simon Michael <simon@joyful.com>
|
|
|
|
maintainer: Simon Michael <simon@joyful.com>
|
|
|
|
github: simonmichael/hledger
|
|
|
|
homepage: http://hledger.org
|
|
|
|
bug-reports: http://bugs.hledger.org
|
2017-08-26 02:31:54 +03:00
|
|
|
stability: stable
|
2020-06-07 21:50:41 +03:00
|
|
|
tested-with: GHC==8.2.2, GHC==8.4.4, GHC==8.6.5, GHC==8.8.3, GHC==8.10.0.20200123
|
|
|
|
# hledger-web is still GHC 8.0.2 compatible, but I haven't found an
|
|
|
|
# install plan where all deps build
|
2017-08-26 02:31:54 +03:00
|
|
|
|
2016-08-09 17:24:41 +03:00
|
|
|
extra-source-files:
|
2019-01-26 05:11:04 +03:00
|
|
|
- CHANGES.md
|
2020-03-22 19:07:47 +03:00
|
|
|
- README.md
|
2016-08-09 17:24:41 +03:00
|
|
|
- config/favicon.ico
|
|
|
|
- config/keter.yaml
|
|
|
|
- config/robots.txt
|
|
|
|
- config/routes
|
|
|
|
- config/settings.yml
|
|
|
|
- static/css/*.css
|
|
|
|
- static/css/*.map
|
|
|
|
- static/fonts/*.eot
|
|
|
|
- static/fonts/*.svg
|
|
|
|
- static/fonts/*.ttf
|
|
|
|
- static/fonts/*.woff
|
|
|
|
- static/hledger.css
|
|
|
|
- static/hledger.js
|
|
|
|
- static/js/*.js
|
|
|
|
- templates/*.hamlet
|
2017-12-07 05:45:01 +03:00
|
|
|
- hledger-web.1
|
|
|
|
- hledger-web.txt
|
|
|
|
- hledger-web.info
|
2017-08-26 02:31:54 +03:00
|
|
|
|
2016-08-09 21:39:42 +03:00
|
|
|
flags:
|
|
|
|
library-only:
|
|
|
|
description: Build for use with "yesod devel"
|
|
|
|
manual: false
|
|
|
|
default: false
|
|
|
|
dev:
|
|
|
|
description: Turn on development settings, like auto-reload templates.
|
|
|
|
manual: false
|
|
|
|
default: false
|
|
|
|
threaded:
|
|
|
|
description: Build with support for multithreaded execution.
|
|
|
|
manual: false
|
|
|
|
default: true
|
2017-08-26 02:31:54 +03:00
|
|
|
|
2018-10-19 00:38:20 +03:00
|
|
|
ghc-options:
|
|
|
|
- -Wall
|
|
|
|
- -fwarn-tabs
|
2019-11-29 01:58:32 +03:00
|
|
|
- -Wcompat
|
|
|
|
- -Wincomplete-uni-patterns
|
|
|
|
- -Wincomplete-record-updates
|
|
|
|
- -Wredundant-constraints
|
2018-10-19 00:38:20 +03:00
|
|
|
|
2017-08-26 02:31:54 +03:00
|
|
|
when:
|
|
|
|
- condition: (flag(dev)) || (flag(library-only))
|
|
|
|
cpp-options: -DDEVELOPMENT
|
2018-12-04 01:05:01 +03:00
|
|
|
# This causes a warning when uploading to hackage:
|
|
|
|
#Package check reported the following warnings:
|
|
|
|
# 'ghc-options: -O0' is not needed. Use the --disable-optimization configure flag.
|
2017-08-26 02:31:54 +03:00
|
|
|
- condition: flag(dev)
|
|
|
|
ghc-options: -O0
|
|
|
|
|
2016-08-09 17:24:41 +03:00
|
|
|
library:
|
2018-06-18 12:23:44 +03:00
|
|
|
source-dirs: .
|
2020-09-07 22:16:12 +03:00
|
|
|
cpp-options: -DVERSION="1.19.99"
|
2016-08-09 17:24:41 +03:00
|
|
|
exposed-modules:
|
|
|
|
- Hledger.Web
|
2018-06-18 12:23:44 +03:00
|
|
|
- Hledger.Web.Application
|
|
|
|
- Hledger.Web.Foundation
|
|
|
|
- Hledger.Web.Handler.AddR
|
|
|
|
- Hledger.Web.Handler.EditR
|
|
|
|
- Hledger.Web.Handler.JournalR
|
2019-02-19 10:57:58 +03:00
|
|
|
- Hledger.Web.Handler.MiscR
|
2018-06-18 12:23:44 +03:00
|
|
|
- Hledger.Web.Handler.RegisterR
|
|
|
|
- Hledger.Web.Handler.UploadR
|
|
|
|
- Hledger.Web.Import
|
2016-08-09 17:24:41 +03:00
|
|
|
- Hledger.Web.Main
|
2018-06-18 12:23:44 +03:00
|
|
|
- Hledger.Web.Settings
|
|
|
|
- Hledger.Web.Settings.StaticFiles
|
2016-08-09 17:24:41 +03:00
|
|
|
- Hledger.Web.WebOptions
|
2018-06-18 12:23:44 +03:00
|
|
|
- Hledger.Web.Widget.AddForm
|
|
|
|
- Hledger.Web.Widget.Common
|
2018-06-17 02:04:13 +03:00
|
|
|
dependencies:
|
2020-09-07 22:16:12 +03:00
|
|
|
- hledger-lib >=1.19.99 && <1.20
|
|
|
|
- hledger >=1.19.99 && <1.20
|
2020-06-24 00:55:42 +03:00
|
|
|
- aeson >=1
|
2020-01-26 19:12:25 +03:00
|
|
|
- base >=4.9 && <4.15
|
2018-06-17 02:04:13 +03:00
|
|
|
- blaze-html
|
|
|
|
- blaze-markup
|
|
|
|
- bytestring
|
2018-06-18 00:53:24 +03:00
|
|
|
- case-insensitive
|
2018-06-17 02:04:13 +03:00
|
|
|
- clientsession
|
|
|
|
- cmdargs >=0.10
|
|
|
|
- conduit
|
|
|
|
- conduit-extra >=1.1
|
2019-02-19 10:57:58 +03:00
|
|
|
- containers
|
2018-06-17 02:04:13 +03:00
|
|
|
- data-default
|
2020-03-19 20:10:55 +03:00
|
|
|
- Decimal >=0.5.1
|
2020-09-10 18:37:33 +03:00
|
|
|
- directory >=1.2.3.0
|
2020-01-04 09:09:01 +03:00
|
|
|
- extra >=1.6.3
|
2018-06-17 02:04:13 +03:00
|
|
|
- filepath
|
|
|
|
- hjsmin
|
|
|
|
- http-conduit
|
|
|
|
- http-client
|
2019-02-21 04:39:35 +03:00
|
|
|
- http-types
|
2020-09-07 03:17:55 +03:00
|
|
|
- megaparsec >=7.0.0 && <9.1
|
2019-12-02 19:23:00 +03:00
|
|
|
- mtl >=2.2.1
|
2019-07-18 02:58:33 +03:00
|
|
|
- network
|
2018-06-17 02:04:13 +03:00
|
|
|
- shakespeare >=2.0.2.2
|
|
|
|
- template-haskell
|
|
|
|
- text >=1.2
|
|
|
|
- time >=1.5
|
|
|
|
- transformers
|
2019-07-18 02:58:33 +03:00
|
|
|
- unix-compat
|
2020-05-25 11:06:20 +03:00
|
|
|
- unordered-containers
|
2019-10-07 12:29:06 +03:00
|
|
|
- utf8-string
|
2018-06-17 02:04:13 +03:00
|
|
|
- wai
|
|
|
|
- wai-extra
|
2020-01-15 00:18:05 +03:00
|
|
|
- wai-handler-launch >=3.0.3
|
2019-09-28 13:35:40 +03:00
|
|
|
- wai-cors
|
2018-06-17 02:04:13 +03:00
|
|
|
- warp
|
|
|
|
- yaml
|
2019-11-29 01:58:32 +03:00
|
|
|
- yesod >=1.4 && < 1.7
|
|
|
|
- yesod-core >=1.4 && < 1.7
|
|
|
|
- yesod-form >=1.4 && < 1.7
|
|
|
|
- yesod-static >=1.4 && < 1.7
|
2017-08-26 02:31:54 +03:00
|
|
|
|
2016-08-09 17:24:41 +03:00
|
|
|
executables:
|
|
|
|
hledger-web:
|
|
|
|
source-dirs: app
|
2017-08-26 02:31:54 +03:00
|
|
|
main: main.hs
|
2020-09-07 22:16:12 +03:00
|
|
|
cpp-options: -DVERSION="1.19.99"
|
2016-08-09 17:24:41 +03:00
|
|
|
dependencies:
|
2018-06-25 13:00:18 +03:00
|
|
|
- base
|
2017-08-25 19:09:25 +03:00
|
|
|
- hledger-web
|
2016-08-09 17:24:41 +03:00
|
|
|
when:
|
|
|
|
- condition: flag(library-only)
|
|
|
|
buildable: false
|
|
|
|
- condition: flag(threaded)
|
|
|
|
ghc-options: -threaded
|
2017-08-26 02:31:54 +03:00
|
|
|
|
2020-11-13 05:09:02 +03:00
|
|
|
tests:
|
|
|
|
test:
|
|
|
|
source-dirs: test
|
|
|
|
main: test.hs
|
|
|
|
other-modules: [] # prevent double compilation, https://github.com/sol/hpack/issues/188
|
|
|
|
cpp-options: -DVERSION="1.19.99"
|
|
|
|
dependencies:
|
|
|
|
- base
|
|
|
|
- hledger-web
|
|
|
|
- hspec
|
|
|
|
- yesod
|
|
|
|
- yesod-test
|