Skip to content
GitLab
Explore
Sign in
Register
Commits on Source (3)
new upstream release 3.1.10
· 5a427629
Olivier Sallou
authored
Oct 25, 2018
5a427629
New upstream version 3.1.10
· 95165d5f
Olivier Sallou
authored
Oct 25, 2018
95165d5f
Updated version 3.1.10 from 'upstream/3.1.10'
· 6c786d48
Olivier Sallou
authored
Oct 25, 2018
with Debian dir 1ffbe6063fffb07977526adf13c1f0da670f6527
6c786d48
Show whitespace changes
Inline
Side-by-side
CHANGES.txt
View file @
6c786d48
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
...
...
bin/biomaj-cli.py
View file @
6c786d48
...
...
@@ -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
...
...
biomaj_cli/utils.py
View file @
6c786d48
...
...
@@ -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
"
)
...
...
debian/changelog
View file @
6c786d48
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
...
...
debian/control
View file @
6c786d48
...
...
@@ -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
...
...
setup.py
View file @
6c786d48
...
...
@@ -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
...
...