Rework dependencies using JDB Softwar package repo instead of URLs.
This commit is contained in:
parent
7215b4969b
commit
58a5321d95
19
pit.nimble
19
pit.nimble
@ -1,6 +1,6 @@
|
|||||||
# Package
|
# Package
|
||||||
|
|
||||||
version = "4.21.0"
|
version = "4.21.1"
|
||||||
author = "Jonathan Bernard"
|
author = "Jonathan Bernard"
|
||||||
description = "Personal issue tracker."
|
description = "Personal issue tracker."
|
||||||
license = "MIT"
|
license = "MIT"
|
||||||
@ -11,14 +11,17 @@ bin = @["pit", "pit_api"]
|
|||||||
|
|
||||||
requires @[
|
requires @[
|
||||||
"nim >= 1.4.0",
|
"nim >= 1.4.0",
|
||||||
"docopt 0.6.8",
|
"docopt >= 0.6.8",
|
||||||
"jester 0.5.0",
|
"jester >= 0.5.0",
|
||||||
"uuids 0.1.10",
|
"uuids >= 0.1.10"
|
||||||
|
]
|
||||||
|
|
||||||
"https://git.jdb-software.com/jdb/nim-cli-utils.git >= 0.6.4",
|
# Dependencies from git.jdb-software.com/nim-jdb/packages
|
||||||
"https://git.jdb-software.com/jdb/nim-lang-utils.git >= 0.4.0",
|
requires @[
|
||||||
"https://git.jdb-software.com/jdb/nim-time-utils.git >= 0.4.0",
|
"cliutils >= 0.6.4",
|
||||||
"https://git.jdb-software.com/jdb/nim-data-uri.git >= 1.0.0",
|
"langutils >= 0.4.0",
|
||||||
|
"timeutils >= 0.4.0",
|
||||||
|
"data_uri > 1.0.0",
|
||||||
"https://git.jdb-software.com/jdb/update-nim-package-version >= 0.2.0"
|
"https://git.jdb-software.com/jdb/update-nim-package-version >= 0.2.0"
|
||||||
]
|
]
|
||||||
|
|
||||||
|
@ -318,7 +318,7 @@ when isMainModule:
|
|||||||
if args["--echo-args"]: stderr.writeLine($args)
|
if args["--echo-args"]: stderr.writeLine($args)
|
||||||
|
|
||||||
if args["help"]:
|
if args["help"]:
|
||||||
stderr.writeLine(USAGE & "\n")
|
stderr.writeLine(USAGE & "\p")
|
||||||
stderr.writeLine(ONLINE_HELP)
|
stderr.writeLine(ONLINE_HELP)
|
||||||
quit()
|
quit()
|
||||||
|
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
const PIT_VERSION* = "4.21.0"
|
const PIT_VERSION* = "4.21.1"
|
||||||
|
|
||||||
const USAGE* = """Usage:
|
const USAGE* = """Usage:
|
||||||
pit ( new | add) <summary> [<state>] [options]
|
pit ( new | add) <summary> [<state>] [options]
|
||||||
@ -172,4 +172,4 @@ Issue Properties:
|
|||||||
|
|
||||||
If present, expected to be a comma-delimited list of text tags. The -g
|
If present, expected to be a comma-delimited list of text tags. The -g
|
||||||
option is a short-hand for '-p tags:<tags-value>'.
|
option is a short-hand for '-p tags:<tags-value>'.
|
||||||
"""
|
"""
|
Loading…
x
Reference in New Issue
Block a user