forked from visionegg/visionegg
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmakepimp.py
executable file
·74 lines (63 loc) · 2.01 KB
/
makepimp.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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
#!/usr/bin/env python
import imp
import os
import sys
import distutils.util
import tarfile
import gzip
import md5
from plistlib import Plist
debug = True
HTTPBASE = 'http://osdn.dl.sourceforge.net/sourceforge/visionegg/'
UPLOADCMD = 'echo "upload %s" when you want'
PLISTDIR = "."
plat = distutils.util.get_platform()
def runsetup(commands, setup='setup.py'):
cmd = '%s %s %s' % (sys.executable, setup, commands)
return os.popen(cmd)
def main(httpbase=HTTPBASE, upload=True):
plist = Plist.fromFile(os.path.join(PLISTDIR, plat+'.plist'))
print 'Querying package information'
spl = runsetup('--name --version --url --description').read().split('\n')[:-1]
name, version, url = spl[:3]
description = '\n'.join(spl[3:])
print 'Building dumb distribution for %s-%s' % (name, version)
runsetup('bdist_dumb').read()
hash = md5.md5()
fn = '%s-%s.%s.tar.gz' % (name, version, plat)
print 'Calculating MD5 hash for', fn
f = file(os.path.join('dist', fn), 'rb')
while 1:
s = f.read(1024)
if not s:
break
hash.update(s)
f.close()
hash = hash.hexdigest()
if upload:
print 'Uploading', fn
os.system(UPLOADCMD % os.path.join('dist', fn))
for pkg in plist.Packages:
if pkg.Name == name and pkg.Flavor == 'binary':
print 'Existing package metadata found'
break
else:
print 'Creating new package metadata'
pkg = {
'Flavor':'binary',
'Install-test':'\nimport %s\n\t\t\t' % (name,),
'Prerequisites':[],
}
plist.Packages.append(pkg)
pkg['Name'] = name
pkg['Version'] = version
pkg['MD5Sum'] = hash
pkg['Download-URL'] = httpbase + fn
if url:
pkg['Home-page'] = url
if description and not pkg.get('Description', None):
pkg['Description'] = '\n%s\n\t\t\t' % (description,)
print 'Writing out new plist'
plist.write(os.path.join(PLISTDIR, plat+'.plist'))
if __name__=='__main__':
main()