2018-05-11 18:39:40 -05:00
|
|
|
# Package
|
|
|
|
|
2022-07-22 10:23:53 -05:00
|
|
|
version = "4.19.0"
|
2018-05-11 18:39:40 -05:00
|
|
|
author = "Jonathan Bernard"
|
|
|
|
description = "Personal issue tracker."
|
|
|
|
license = "MIT"
|
|
|
|
srcDir = "src"
|
2018-05-18 16:06:58 -05:00
|
|
|
bin = @["pit", "pit_api"]
|
2018-05-11 18:39:40 -05:00
|
|
|
|
|
|
|
# Dependencies
|
|
|
|
|
2020-02-16 00:56:01 -06:00
|
|
|
requires @[
|
2020-11-12 04:05:04 -06:00
|
|
|
"nim >= 1.4.0",
|
2020-02-16 00:56:01 -06:00
|
|
|
"docopt 0.6.8",
|
2020-11-12 04:05:04 -06:00
|
|
|
"jester 0.5.0",
|
2020-02-16 00:56:01 -06:00
|
|
|
"uuids 0.1.10",
|
|
|
|
|
2021-06-07 18:34:41 -05:00
|
|
|
"https://git.jdb-software.com/jdb/nim-cli-utils.git >= 0.6.4",
|
|
|
|
"https://git.jdb-software.com/jdb/nim-lang-utils.git >= 0.4.0",
|
|
|
|
"https://git.jdb-software.com/jdb/nim-time-utils.git >= 0.4.0",
|
|
|
|
"https://git.jdb-software.com/jdb/nim-data-uri.git >= 1.0.0",
|
2022-01-21 13:26:22 -06:00
|
|
|
"https://git.jdb-software.com/jdb/update-nim-package-version >= 0.2.0"
|
2020-02-16 00:56:01 -06:00
|
|
|
]
|
2020-02-14 11:21:54 -06:00
|
|
|
|
2020-02-16 00:56:01 -06:00
|
|
|
task updateVersion, "Update the version of this package.":
|
2022-01-21 13:26:22 -06:00
|
|
|
exec "update_nim_package_version pit 'src/pitpkg/cliconstants.nim'"
|