Fix parsing of EvtGen URL (#16883)
* Fix parsing of EvtGen URL * Flake8 fix
This commit is contained in:
parent
a02fc8ae58
commit
dd19d6f863
2 changed files with 11 additions and 9 deletions
|
@ -464,6 +464,8 @@ def test_url_parse_offset(name, noffset, ver, voffset, path):
|
||||||
'http://laws-green.lanl.gov/projects/data/eos/get_file.php?package=eospac&filename=eospac_v6.4.0beta.1_r20171213193219.tgz'),
|
'http://laws-green.lanl.gov/projects/data/eos/get_file.php?package=eospac&filename=eospac_v6.4.0beta.1_r20171213193219.tgz'),
|
||||||
('vampirtrace', '5.14.4',
|
('vampirtrace', '5.14.4',
|
||||||
'http://wwwpub.zih.tu-dresden.de/~mlieber/dcount/dcount.php?package=vampirtrace&get=VampirTrace-5.14.4.tar.gz'),
|
'http://wwwpub.zih.tu-dresden.de/~mlieber/dcount/dcount.php?package=vampirtrace&get=VampirTrace-5.14.4.tar.gz'),
|
||||||
|
('EvtGen', '01.07.00',
|
||||||
|
'https://evtgen.hepforge.org/downloads?f=EvtGen-01.07.00.tar.gz'),
|
||||||
# (we don't actually look for these, they are picked up
|
# (we don't actually look for these, they are picked up
|
||||||
# during the preliminary stem parsing)
|
# during the preliminary stem parsing)
|
||||||
('octopus', '6.0', 'http://octopus-code.org/down.php?file=6.0/octopus-6.0.tar.gz'),
|
('octopus', '6.0', 'http://octopus-code.org/down.php?file=6.0/octopus-6.0.tar.gz'),
|
||||||
|
|
|
@ -549,27 +549,23 @@ def parse_version_offset(path):
|
||||||
# 8th Pass: Query strings
|
# 8th Pass: Query strings
|
||||||
|
|
||||||
# e.g. https://gitlab.cosma.dur.ac.uk/api/v4/projects/swift%2Fswiftsim/repository/archive.tar.gz?sha=v0.3.0
|
# e.g. https://gitlab.cosma.dur.ac.uk/api/v4/projects/swift%2Fswiftsim/repository/archive.tar.gz?sha=v0.3.0
|
||||||
(r'\?sha=[a-zA-Z+._-]*v?(\d[\da-zA-Z._-]*)$', suffix),
|
# e.g. https://gitlab.kitware.com/api/v4/projects/icet%2Ficet/repository/archive.tar.bz2?sha=IceT-2.1.1
|
||||||
|
|
||||||
# e.g. http://gitlab.cosma.dur.ac.uk/swift/swiftsim/repository/archive.tar.gz?ref=v0.3.0
|
# e.g. http://gitlab.cosma.dur.ac.uk/swift/swiftsim/repository/archive.tar.gz?ref=v0.3.0
|
||||||
(r'\?ref=[a-zA-Z+._-]*v?(\d[\da-zA-Z._-]*)$', suffix),
|
|
||||||
|
|
||||||
# e.g. http://apps.fz-juelich.de/jsc/sionlib/download.php?version=1.7.1
|
# e.g. http://apps.fz-juelich.de/jsc/sionlib/download.php?version=1.7.1
|
||||||
# e.g. https://software.broadinstitute.org/gatk/download/auth?package=GATK-archive&version=3.8-1-0-gf15c1c3ef
|
# e.g. https://software.broadinstitute.org/gatk/download/auth?package=GATK-archive&version=3.8-1-0-gf15c1c3ef
|
||||||
(r'[?&]version=v?(\d[\da-zA-Z._-]*)$', suffix),
|
(r'[?&](?:sha|ref|version)=[a-zA-Z\d+-]*[_-]?v?(\d[\da-zA-Z._-]*)$', suffix), # noqa: E501
|
||||||
|
|
||||||
# e.g. http://slepc.upv.es/download/download.php?filename=slepc-3.6.2.tar.gz
|
# e.g. http://slepc.upv.es/download/download.php?filename=slepc-3.6.2.tar.gz
|
||||||
# e.g. http://laws-green.lanl.gov/projects/data/eos/get_file.php?package=eospac&filename=eospac_v6.4.0beta.1_r20171213193219.tgz
|
# e.g. http://laws-green.lanl.gov/projects/data/eos/get_file.php?package=eospac&filename=eospac_v6.4.0beta.1_r20171213193219.tgz
|
||||||
(r'[?&]filename=[a-zA-Z\d+-]+[_-]v?(\d[\da-zA-Z.]*)', stem),
|
# e.g. https://evtgen.hepforge.org/downloads?f=EvtGen-01.07.00.tar.gz
|
||||||
|
|
||||||
# e.g. http://wwwpub.zih.tu-dresden.de/%7Emlieber/dcount/dcount.php?package=otf&get=OTF-1.12.5salmon.tar.gz
|
# e.g. http://wwwpub.zih.tu-dresden.de/%7Emlieber/dcount/dcount.php?package=otf&get=OTF-1.12.5salmon.tar.gz
|
||||||
(r'&get=[a-zA-Z\d+-]+-v?(\d[\da-zA-Z.]*)$', stem), # noqa
|
(r'[?&](?:filename|f|get)=[a-zA-Z\d+-]+[_-]v?(\d[\da-zA-Z.]*)', stem),
|
||||||
|
|
||||||
# 9th Pass: Version in path
|
# 9th Pass: Version in path
|
||||||
|
|
||||||
# github.com/repo/name/releases/download/vver/name
|
# github.com/repo/name/releases/download/vver/name
|
||||||
# e.g. https://github.com/nextflow-io/nextflow/releases/download/v0.20.1/nextflow
|
# e.g. https://github.com/nextflow-io/nextflow/releases/download/v0.20.1/nextflow
|
||||||
(r'github\.com/[^/]+/[^/]+/releases/download/[a-zA-Z+._-]*v?(\d[\da-zA-Z._-]*)/', path), # noqa
|
(r'github\.com/[^/]+/[^/]+/releases/download/[a-zA-Z+._-]*v?(\d[\da-zA-Z._-]*)/', path), # noqa: E501
|
||||||
|
|
||||||
# e.g. ftp://ftp.ncbi.nlm.nih.gov/blast/executables/legacy.NOTSUPPORTED/2.2.26/ncbi.tar.gz
|
# e.g. ftp://ftp.ncbi.nlm.nih.gov/blast/executables/legacy.NOTSUPPORTED/2.2.26/ncbi.tar.gz
|
||||||
(r'(\d[\da-zA-Z._-]*)/[^/]+$', path),
|
(r'(\d[\da-zA-Z._-]*)/[^/]+$', path),
|
||||||
|
@ -696,6 +692,10 @@ def parse_name_offset(path, v=None):
|
||||||
# e.g. http://slepc.upv.es/download/download.php?filename=slepc-3.6.2.tar.gz
|
# e.g. http://slepc.upv.es/download/download.php?filename=slepc-3.6.2.tar.gz
|
||||||
(r'\?filename=([A-Za-z\d+-]+)$', stem),
|
(r'\?filename=([A-Za-z\d+-]+)$', stem),
|
||||||
|
|
||||||
|
# ?f=name-ver.ver
|
||||||
|
# e.g. https://evtgen.hepforge.org/downloads?f=EvtGen-01.07.00.tar.gz
|
||||||
|
(r'\?f=([A-Za-z\d+-]+)$', stem),
|
||||||
|
|
||||||
# ?package=name
|
# ?package=name
|
||||||
# e.g. http://wwwpub.zih.tu-dresden.de/%7Emlieber/dcount/dcount.php?package=otf&get=OTF-1.12.5salmon.tar.gz
|
# e.g. http://wwwpub.zih.tu-dresden.de/%7Emlieber/dcount/dcount.php?package=otf&get=OTF-1.12.5salmon.tar.gz
|
||||||
(r'\?package=([A-Za-z\d+-]+)', stem),
|
(r'\?package=([A-Za-z\d+-]+)', stem),
|
||||||
|
|
Loading…
Reference in a new issue