File: latestver.py

package info (click to toggle)
delve 1.24.0-4
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 14,092 kB
  • sloc: ansic: 111,943; sh: 169; asm: 141; makefile: 43; python: 23
file content (27 lines) | stat: -rw-r--r-- 617 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
#!/usr/bin/python3
import json
import urllib.request
import sys
import re

def splitver(x):
	v = re.split(r'([^\d]+)', x)
	v[0] = int(v[0])
	if len(v) > 2:
		v[2] = int(v[2])
	if len(v) > 4:
		v[4] = int(v[4])
	# make rc/beta versions sort before normal versions
	if len(v) > 3 and v[3] == '.':
		v[3] = '~' 
	elif len(v) == 3:
		v.append('~')
	return v

ver = sys.argv[1]
d = json.loads(urllib.request.urlopen('https://go.dev/dl/?mode=json&include=all').read())
ds = sorted(d, reverse=True, key=lambda it: splitver(it['version'][2:]))
for x in ds:
	if x['version'][:len(ver)] == ver:
		print(x['version'])
		exit(0)