forked from mbusb/multibootusb
-
Notifications
You must be signed in to change notification settings - Fork 0
/
build_pkg
executable file
·253 lines (230 loc) · 11.7 KB
/
build_pkg
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
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
#!/usr/bin/python2.7
# -*- coding: utf-8 -*-
# Name: build_pkg
# Purpose: Module to create package, executable, source archieve and upload to sourceforge site.
# Authors: Sundar
# Licence: This file is a part of multibootusb package. You can redistribute it or modify
# under the terms of GNU General Public License, v.2 or above
"""
This is an internal script to make automation of building binary/ source packages and uploading to Sourceforge.
This may not work for you without modification in to variables and paths. Please amend wherever required.
Originally written for cryptully and modified by me for multibootusb.
Released under General Public Licence (GPL).
Author: Sundar
"""
import os
import shutil
import subprocess
import sys
import platform
####################################################################################################
# Change the below variables to suit your needs.
if platform.system() == "Windows":
pyinstallerPath = "C:\Users\Sundar\Documents\PyInstaller-2.1\pyinstaller.py"
release_dir = os.path.join("E:", "multibootusb", "release")
else:
from os.path import expanduser
home = expanduser("~")
pyinstaller_path = "/home/sundar/Documents/PyInstaller-2.1/pyinstaller.py"
release_dir = "/media/sundar/Data/multibootusb/release"
sourceforge_release_path = "multibootusb@frs.sourceforge.net:/home/frs/project/multibootusb/"
####################################################################################################
class bcolors:
HEADER = '\033[95m'
OKBLUE = '\033[94m'
OKGREEN = '\033[92m'
WARNING = '\033[93m'
FAIL = '\033[91m'
ENDC = '\033[0m'
class pkg():
def __init__(self, name):
self.pkg_name = name
self.version = open(os.path.join("tools", "version.txt"), 'r').read().strip()
self.release_upload_dir = os.path.join(release_dir, self.version)
def build_package(self):
self.clean_dir()
if not os.path.exists(self.release_upload_dir):
os.mkdir(self.release_upload_dir)
if not os.path.exists(os.path.join(self.release_upload_dir, "Linux")):
os.mkdir(os.path.join(self.release_upload_dir, "Linux"))
elif not os.path.exists(os.path.join(self.release_upload_dir, "Windows")):
os.mkdir(os.path.join(self.release_upload_dir, "Windows"))
elif not os.path.exists(os.path.join(self.release_upload_dir, "Source")):
os.mkdir(os.path.join(self.release_upload_dir, "Source"))
if self.pkg_name == "deb":
print "Ensure thta you have python-stdeb package installed!"
stdcfg = ("[DEFAULT]\n"
"Package: multibootusb\n"
"Depends: python-qt4, parted, util-linux\n"
"Build-Depends: python-all\n"
"Section: system\n"
"XS-Python-Version: = 2.7\n"
"Debian-Version: 1")
with open("stdeb.cfg", "w") as f:
f.write(stdcfg)
if subprocess.call('python2.7 setup.py --command-packages=stdeb.command bdist_deb', shell=True) == 0 and \
os.path.exists(os.path.join("deb_dist", "multibootusb_" + self.version + "-1_all.deb")):
shutil.copy2(os.path.join("deb_dist", "multibootusb_" + self.version + "-1_all.deb"),
os.path.join(self.release_upload_dir, "Linux"))
if os.path.exists("stdeb.cfg"):
os.remove("stdeb.cfg")
print "\n\n\nDebian package has been created and can be found here::"
print os.path.join("deb_dist", "multibootusb_" + self.version + "-1_all.deb\n\n\n")
result = True
elif self.pkg_name == 'rpm' or self.pkg_name == 'suse' or self.pkg_name == 'mageia':
if self.pkg_name == 'suse' or self.pkg_name == 'mageia':
require = "python-qt4, parted, util-linux"
else:
require = "PyQt4, parted, util-linux"
setup_cfg = ("[bdist_rpm]\n"
"Group = Applications/System\n"
"Vendor = Sundar <feedback.multibootusb@gmail.com>\n"
"Requires = " + require)
with open("setup.cfg", "w") as f:
f.write(setup_cfg)
if subprocess.call('python2.7 setup.py bdist_rpm', shell=True) == 0 and \
os.path.exists(os.path.join("dist", "multibootusb-" + self.version + "-1.noarch.rpm")):
if self.pkg_name == 'suse':
package = "multibootusb-" + self.version + "-1suse.noarch.rpm"
elif self.pkg_name == 'mageia':
package = "multibootusb-" + self.version + "-1mageia.noarch.rpm"
else:
package = "multibootusb-" + self.version + "-1.noarch.rpm"
shutil.copy2(os.path.join("dist", "multibootusb-" + self.version + "-1.noarch.rpm"),
os.path.join(self.release_upload_dir, "Linux", package))
if os.path.exists("setup.cfg"):
os.remove("setup.cfg")
print "\n\n\nRPM package has been created and can be found here::"
print os.path.join("dist", "multibootusb-" + self.version + "-1.noarch.rpm\n\n\n")
result = True
elif self.pkg_name == "exe":
if not platform.system() == "Windows":
print "You can generate windows executable from windows host only."
else:
if subprocess.call('python ' + pyinstallerPath + ' multibootusb.spec', shell=True) == 0 and \
os.path.exists(os.path.join("dist", 'multibootusb-' + self.version + ".exe")):
shutil.copy2(os.path.join("dist", 'multibootusb-' + self.version + ".exe"),
os.path.join(self.release_upload_dir, "Windows"))
print "\n\n\nWindows binary has been created and can be found here::"
print os.path.join("dist", "multibootusb-" + self.version + ".exe\n\n\n")
result = True
elif self.pkg_name == 'install':
if subprocess.call("python2.7", "install.py", shell=True) == 0:
print "Installation is successful."
result = True
elif self.pkg_name == 'src':
if subprocess.call('python2.7 setup.py sdist', shell=True) == 0 and \
os.path.exists(os.path.join("dist", "multibootusb-" + self.version + ".tar.gz")):
shutil.copy2(os.path.join("dist", "multibootusb-" + self.version + ".tar.gz"),
os.path.join(self.release_upload_dir, "Source"))
print "\n\n\nSource package has been created and can be found here::"
print os.path.join("dist", "multibootusb-" + self.version + ".tar.gz\n\n\n")
result = True
elif self.pkg_name == 'run':
subprocess.call(['python2.7', 'multibootusb'])
elif self.pkg_name == 'clean':
self.clean_dir()
elif self.pkg_name == "upload":
self.upload()
else:
print "Option not found."
usage()
'''
if result:
return result
'''
def upload(self):
if platform.system() == "Windows":
print "You can upload to SF only from Linux as it needs rsync."
else:
print "Uploading files..."
cmd = "rsync --rsh=ssh -l -p -r -t -z --stats /media/sundar/Data/multibootusb/release/" + self.version + " " + sourceforge_release_path
if os.system(cmd) == 0:
print bcolors.OKGREEN + "\n\nVersion " + self.version + " has been successfully uploaded to SF.\n\n" + bcolors.ENDC
else:
print bcolors.FAIL + "\n\n\nError while uploading to SF.\n\n\n" + bcolors.ENDC
def clean_dir(self):
if not os.path.exists('build') and not os.path.exists('dist') and not os.path.exists('deb_dist'):
print "Already clean. Nothing to do."
else:
dir_list = ["build", "dist", "deb_dist"]
if os.path.exists('MANIFEST'):
self.deleteFile('MANIFEST')
for directory in dir_list:
if os.path.exists(directory):
shutil.rmtree(directory)
print "Cleaning pthon byte files..."
for path, subdirs, files in os.walk(os.curdir):
# print subdirs
for name in files:
if name.endswith('.pyc'):
print "Cleaning " + os.path.join(path, name)
os.chmod(os.path.join(path, name), 0777)
os.unlink(os.path.join(path, name))
# os.remove(os.path.join(path,name))
def deleteDirectory(self, path):
try:
for files in os.listdir(path):
if os.path.isdir(os.path.join(path, files)):
# print (os.path.join(path, files))
os.chmod(os.path.join(path, files), 0o777)
shutil.rmtree(os.path.join(path, files))
else:
# print (os.path.join(path, files))
os.chmod(os.path.join(path, files), 0777)
os.unlink(os.path.join(path, files))
os.remove(os.path.join(path, files))
if os.path.exists(path):
print "Path exist."
os.rmdir(path)
shutil.rmtree(path)
else:
print "Path exist."
except OSError as ose:
# Ignore 'no such file or directory' errors
if ose.errno != 2:
print "OS Error."
# Useful to delete files.
def deleteFile(self, path):
try:
os.unlink(path)
except OSError as ose:
if ose.errno != 2:
print ose
def usage():
""" Prompt users how to use """
print ("Invalid option(s)\n"
"Possible options are ::\n"
"\033[94mexe\033[0m <-- For making Windows/ Linux standalone executable using pyinstaller\n"
"\033[94mdeb\033[0m <-- For making creating package for debian/ubuntu\n"
"\033[94mrpm\033[0m <-- For creating package for fedora/redhat/centos\n"
"\033[94msuse\033[0m <-- For creating package for OpenSuse\n"
"\033[94mmageia\033[0m <-- For creating package for mageia/mandriva\n"
"\033[94msrc\033[0m <-- For creating source package for other distributions\n"
"\033[94mall\033[0m <-- For creating package for all distros\n"
"\033[94mclean\033[0m <-- For Cleaning dist, build directory and other temp/python byte files\n"
"\033[94minstall\033[0m <-- Directly install from source package\n"
"\033[94mrun\033[0m <-- Directly run multibootusb from source package\n"
"\033[92mupload\033[0m <-- Upload package directory to SourceForge")
sys.exit(-1)
if __name__ == '__main__':
argv = sys.argv
if not os.path.exists(release_dir):
print "Release directory does not exist.\nPlease mount and rerun the script."
sys.exit(1)
elif not os.path.exists(pyinstaller_path):
print "Pyinstaller path does not exist.\nPlease correct the path and rerun the script."
sys.exit(1)
if len(argv) == 1:
usage()
else:
argv = argv[1]
if argv == "all":
all_arug = ["clean", "exe", "deb", "rpm", "suse", "mageia", "src"]
for package_name in all_arug:
print "Creating package for argument " + package_name
build = pkg(package_name)
build.build_package()
else:
build = pkg(argv)
build.build_package()