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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
|
import subprocess
import json
import sys
# Script to update the PKGBUILD to the latest [core]/linux
url = "https://www.archlinux.org/packages/core/x86_64/linux-lts/json/"
data = subprocess.check_output(['curl', '-s', url]).decode()
info = json.loads(data)
latest_pkgver = info['pkgver']
latest_pkgrel = info['pkgrel']
pkgver, pkgrel = subprocess.check_output(
['bash', '-c', 'source PKGBUILD; echo ${_pkgver} ${_pkgrel}']
).decode('utf8').strip().split()
if (pkgver, pkgrel) != (latest_pkgver, latest_pkgrel):
print("linux-lts-versioned-bin out of date!")
with open('PKGBUILD') as f:
pkgbuild = f.read()
replacements = (
(f'_pkgver={pkgver}', f'_pkgver={latest_pkgver}'),
(f'_pkgrel={pkgrel}', f'_pkgrel={latest_pkgrel}'),
(
f'{pkgver}-{pkgrel}',
f'{latest_pkgver}-{latest_pkgrel}',
),
)
for a, b in replacements:
pkgbuild = pkgbuild.replace(a, b)
with open('PKGBUILD', 'w') as f:
f.write(pkgbuild)
subprocess.check_call(['updpkgsums'])
with open('.SRCINFO', 'w') as f:
f.write(subprocess.check_output(['makepkg', '--printsrcinfo']).decode())
subprocess.check_call(['git', 'add', 'PKGBUILD', '.SRCINFO'])
subprocess.check_call(
['git', 'commit', '-m', f'{latest_pkgver}-{latest_pkgrel}']
)
def yn_choice(message, default='y'):
try:
choices = 'Y/n' if default.lower() in ('y', 'yes') else 'y/N'
choice = input("%s\n(%s): " % (message, choices))
values = ('y', 'yes', '') if default == 'y' else ('y', 'yes')
return choice.strip().lower() in values
except (KeyboardInterrupt, EOFError):
sys.exit(1)
if yn_choice('git push?'):
subprocess.check_call(['git', 'push'])
else:
print("linux-lts-versioned-bin is up to date")
|