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
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
|
from time import strftime
from subprocess import getstatusoutput
eclass = {
"git" : "git",
"svn" : "subversion",
"hg" : "mercurial",
}
arch = getstatusoutput("portageq envvar ARCH")[1]
def genebuild(iuse,deps,dltype,adress,targets,binaries):
installmethod = guessinstall(targets,binaries)
outstr = outputebuild(iuse,deps,dltype,adress,installmethod)
f = open("/tmp/workfile.ebuild","w")
f.write(outstr)
f.close()
def guessinstall(targets,binaries):
targetlst = []
returnlst = []
for target in targets:
targetlst.append(target[0])
if "install" in targetlst:
returnlst = [' emake DESTDIR="${D}" install || die "emake install failed"']
else:
for binary in binaries:
returnlst += [' dobin ' + binary + ' || die "bin install failed"']
return returnlst
def outputebuild(iuse,deps,dltype,adress,installmethod):
text = [
'# Copyright 1999-' + strftime("%Y") + ' Gentoo Foundation',
'# Distributed under the terms of the GNU General Public License v2',
'# $Header: $',
''
]
inheritstr = 'inherit ' + eclass[dltype]
text.append(inheritstr)
text += [
'',
'EAPI=3',
'',
'DESCRIPTION=""',
'HOMEPAGE=""'
]
if dltype == "www":
srcstr = 'SRC_URI="' + adress + '"'
else:
srcstr = 'E' + dltype.upper() + '_REPO_URI="' + adress + '"'
text.append(srcstr)
text += [
'',
'LICENSE=""',
'SLOT="0"',
'KEYWORDS="~' + arch + '"'
]
iusestr = 'IUSE="'
for flag in iuse:
iusestr += (flag + " ")
iusestr += '"\n'
text.append(iusestr)
depstr = 'DEPEND="'
for dep in deps:
depstr += (dep + "\n\t")
depstr = depstr[:-2] + '"'
text.append(depstr)
text += [
'RDEPEND="${DEPEND}"',
'',
'src_compile() {',
' emake || die "emake failed"',
'}'
]
text += [
'',
'src_install() {',
]
text += installmethod
text += ['}']
outputstr = ""
for line in text:
outputstr += line + "\n"
return outputstr
|