Skip to content
Commits on Source (3)
3.1.10:
Add --history option
3.1.9:
Add option --stats, needs biomaj-daemon >= 3.0.13
Add option --json, needs biomaj-daemon >= 3.0.13
......
......@@ -152,6 +152,10 @@ def main():
[MANDATORY]
--proxy http://x.y.z
--history: Get biomaj update/remove history
[OPTIONAL]
--history-limit xx : number of elements to return
--stats: Get statistics
--json: Get output in JSON format
......
......@@ -27,6 +27,9 @@ class Utils(object):
@staticmethod
def set_args(parser):
parser.add_argument('--history', dest="history", action="store_true", default=False, help="Get biomaj update/remove history")
parser.add_argument('--history-limit', type=int, dest="historyLimit", default=20, help="Number of elements to return")
parser.add_argument('--last-log', dest="lastlog", action="store_true", default=False, help="Get last logs for bank")
parser.add_argument('--tail', dest="tail", help="number of lines to tail")
parser.add_argument('--about-me', dest="aboutme", action="store_true", help="Get my user info")
......
biomaj3-cli (3.1.9-2) UNRELEASED; urgency=medium
biomaj3-cli (3.1.10-1) unstable; urgency=medium
[ Jelmer Vernooij ]
* Use secure copyright file specification URI.
-- Jelmer Vernooij <jelmer@debian.org> Sat, 20 Oct 2018 13:15:00 +0000
[ Olivier Sallou ]
* New upstream release
-- Olivier Sallou <osallou@debian.org> Thu, 25 Oct 2018 09:26:51 +0000
biomaj3-cli (3.1.9-1) unstable; urgency=medium
......
......@@ -13,8 +13,8 @@ Build-Depends: debhelper (>= 9), dh-python,
python3-biomaj3-daemon
Standards-Version: 4.1.3
Homepage: https://github.com/genouest/biomaj-cli
Vcs-Browser: https://anonscm.debian.org/cgit/debian-med/biomaj3-cli.git
Vcs-Git: https://anonscm.debian.org/git/debian-med/biomaj3-cli.git
Vcs-Browser: https://salsa.debian.org/med-team/biomaj3-cli
Vcs-Git: https://salsa.debian.org/med-team/biomaj3-cli.git
Package: python3-biomaj3-cli
Architecture: all
......
......@@ -21,7 +21,7 @@ config = {
'url': 'http://biomaj.genouest.org',
'download_url': 'http://biomaj.genouest.org',
'author_email': 'olivier.sallou@irisa.fr',
'version': '3.1.9',
'version': '3.1.10',
'classifiers': [
# How mature is this project? Common values are
# 3 - Alpha
......