-
Notifications
You must be signed in to change notification settings - Fork 39
/
Copy pathmake-rpm.py
58 lines (43 loc) · 1.72 KB
/
make-rpm.py
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
import os
import plumbum
from plumbum.cmd import grep, fpm, ln, sort, find, virtualenv
import logging
log = logging.getLogger()
logging.basicConfig(level=logging.INFO)
ENV_PATH = os.getenv("ENV_PATH", "/usr/share/python/pypi-server")
SRC_PATH = os.getenv("SRC_PATH", "/mnt")
pip = plumbum.local[os.path.join(ENV_PATH, 'bin', 'pip')]
find_requires = plumbum.local['/usr/lib/rpm/find-requires']
log.info("Creating virtualenv %r", ENV_PATH)
virtualenv['-p', 'python2.7', ENV_PATH] & plumbum.FG
log.info("Installing package %r", SRC_PATH)
pip['install', '--no-binary=:all:', '-U', "{}[postgres]".format(SRC_PATH)] & plumbum.FG
pip['install', '--no-binary=:all:', '-U', "{}[proxy]".format(SRC_PATH)] & plumbum.FG
pip['install', '--no-binary=:all:', '-U', "{}[mysql]".format(SRC_PATH)] & plumbum.FG
ln['-snf', os.path.join(ENV_PATH, "bin", "pypi-server"), "/usr/bin/pypi-server"] & plumbum.BG
version = (pip['show', 'pypi-server'] | grep['^Version']) & plumbum.BG
version.wait()
version = version.stdout.strip().replace("Version:", '').strip()
depends = (find[ENV_PATH, '-iname', "*.so"] | find_requires | sort['-u']) & plumbum.BG
depends.wait()
depends = depends.stdout.splitlines()
args = (
'-s', 'dir',
'-f', '-t', 'rpm',
'--iteration', os.getenv('ITERATION', '0'),
'-n', 'pypi-server',
'--config-files', '/etc/pypi-server.conf',
'-v', version,
'--rpm-dist', 'centos7',
'-p', "/mnt/dist",
)
for depend in depends:
args += ('-d', depend)
args += (
'{0}/={0}/'.format(ENV_PATH),
'/usr/bin/pypi-server=/usr/bin/pypi-server',
'/mnt/contrib/pypi-server.conf.example=/etc/pypi-server.conf',
'/mnt/contrib/pypi-server.service=/usr/lib/systemd/system/pypi-server.service',
)
print(args)
fpm[args] & plumbum.FG