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 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140
|
#!/usr/bin/env python
# coding: UTF-8
'''This script builds the seafile mac client.
'''
import atexit
import logging
import commands
from contextlib import contextmanager
import glob
import multiprocessing
import optparse
import os
from os.path import abspath, basename, dirname, join, exists, expanduser
import re
import shutil
import subprocess
import sys
import tempfile
FINAL_APP = 'Seafile Client.app'
FSPLUGIN_APPEX_NAME = 'Seafile FinderSync.appex'
CERT_ID = '79AB1AF435DD2CBC5FDB3EBBD45B0DA17727B299'
if 'SEAFILE_BUILD_SLAVE' not in os.environ:
import fabric
from fabric.api import execute, env, settings, run as fabric_run
from fabric.operations import put as put_file, get as get_file
# fabric login configs
env.user = 'vagrant'
env.password = 'vagrant'
env.use_ssh_config = True
####################
### Requires Python 2.6+
####################
if sys.version_info[0] == 3:
print 'Python 3 not supported yet. Quit now.'
sys.exit(1)
if sys.version_info[1] < 6:
print 'Python 2.6 or above is required. Quit now.'
sys.exit(1)
####################
### Global variables
####################
# command line configuartion
conf = {}
# key names in the conf dictionary.
# pylint: disable=bad-whitespace
CONF_CLEAN = 'clean'
CONF_MODE = 'mode'
CONF_VERSION = 'version'
CONF_SEAFILE_VERSION = 'seafile_version'
CONF_SEAFILE_CLIENT_VERSION = 'seafile_client_version'
CONF_LIBSEARPC_VERSION = 'libsearpc_version'
CONF_SRCDIR = 'srcdir'
CONF_KEEP = 'keep'
CONF_BUILDDIR = 'builddir'
CONF_OUTPUTDIR = 'outputdir'
CONF_THIRDPARTDIR = 'thirdpartdir'
CONF_NO_STRIP = 'nostrip'
CONF_SLAVE_HOST = 'slave_host'
CONF_BRAND = 'brand'
CONF_LOCAL = 'local'
# pylint: enable=bad-whitespace
NUM_CPU = multiprocessing.cpu_count()
PID = os.getpid()
SLAVE_WORKDIR = expanduser('~/tmp/seafile-mac-build-slave')
SLAVE_SRCDIR = join(SLAVE_WORKDIR, 'srcs')
SLAVE_BUILDDIR = join(SLAVE_WORKDIR, 'build')
SLAVE_BUILD_SCRIPT = join(SLAVE_WORKDIR, 'build-mac.py')
####################
### Common helper functions
####################
def highlight(content, is_error=False):
'''Add ANSI color to content to get it highlighted on terminal'''
if is_error:
return '\x1b[1;31m%s\x1b[m' % content
else:
return '\x1b[1;32m%s\x1b[m' % content
def info(msg):
logging.info(highlight('[INFO][{}] ').format(conf.get(CONF_MODE, '')) + msg)
@contextmanager
def cd(path):
oldpwd = os.getcwd()
os.chdir(path)
try:
yield
finally:
os.chdir(oldpwd)
def exist_in_path(prog):
'''Test whether prog exists in system path'''
return bool(find_in_path(prog))
def prepend_env_value(name, value, seperator=':'):
'''append a new value to a list'''
try:
current_value = os.environ[name]
except KeyError:
current_value = ''
new_value = value
if current_value:
new_value += seperator + current_value
os.environ[name] = new_value
def find_in_path(prog):
'''Find a file in system path'''
dirs = os.environ['PATH'].split(':')
for d in dirs:
if d == '':
continue
path = join(d, prog)
if exists(path):
return path
return None
def error(msg=None, usage=None):
if msg:
print highlight('[ERROR] ') + msg
if usage:
print usage
sys.exit(1)
def run_argv(argv, cwd=None, env=None, suppress_stdout=False, suppress_stderr=False):
'''Run a program and wait it to finish, and return its exit code. The
standard output of this program is supressed.
'''
info('running %s, cwd=%s' % (' '.join(['"{}"'.format(a) for a in argv]), cwd or os.getcwd()))
with open(os.devnull, 'w') as devnull:
if suppress_stdout:
stdout = devnull
else:
stdout = sys.stdout
if suppress_stderr:
stderr = devnull
else:
stderr = sys.stderr
proc = subprocess.Popen(argv,
cwd=cwd,
stdout=stdout,
stderr=stderr,
env=env)
return proc.wait()
def run(cmdline, cwd=None, env=None, suppress_stdout=False, suppress_stderr=False):
'''Like run_argv but specify a command line string instead of argv'''
info('running %s, cwd=%s' % (cmdline, cwd or os.getcwd()))
with open(os.devnull, 'w') as devnull:
if suppress_stdout:
stdout = devnull
else:
stdout = sys.stdout
if suppress_stderr:
stderr = devnull
else:
stderr = sys.stderr
proc = subprocess.Popen(cmdline,
cwd=cwd,
stdout=stdout,
stderr=stderr,
env=env,
shell=True)
return proc.wait()
def must_run(cmdline, *a, **kw):
ret = run(cmdline, *a, **kw)
if ret != 0:
error('failed to run %s' % cmdline)
def check_remove(path):
"""
Remove the file/dir specified by `path`, if exists.
"""
path = abspath(path)
assert path.count('/') >= 2
if exists(path):
is_dir = os.path.isdir(path)
info('removing {} {}'.format('dir' if is_dir else 'file', path))
if is_dir:
shutil.rmtree(path)
else:
os.unlink(path)
def must_mkdir(path):
'''Create a directory, exit on failure'''
try:
if not exists(path):
os.mkdir(path)
except OSError, e:
error('failed to create directory %s:%s' % (path, e))
def must_copy(src, dst):
'''Copy src to dst, exit on failure'''
try:
shutil.copy(src, dst)
except Exception, e:
error('failed to copy %s to %s: %s' % (src, dst, e))
def must_copytree(src, dst):
'''Copy src tree to dst, exit on failure'''
try:
shutil.copytree(src, dst)
except Exception, e:
error('failed to copy %s to %s: %s' % (src, dst, e))
class Project(object):
'''Base class for a project'''
# Probject name, i.e. libseaprc/seafile/
name = ''
# A list of shell commands to configure/build the project
build_commands = []
def __init__(self):
# the path to pass to --prefix=/<prefix>
self.prefix = join(conf[CONF_BUILDDIR], 'usr')
self.version = self.get_version()
self.src_tarball = join(conf[CONF_SRCDIR], '%s-%s.tar.gz' % (self.name, self.version))
# project dir, like <builddir>/seafile-1.2.2/
self.projdir = join(conf[CONF_BUILDDIR], '%s-%s' % (self.name, self.version))
def get_version(self):
# libsearpc can have different versions from seafile.
raise NotImplementedError
def get_source_commit_id(self):
'''By convetion, we record the commit id of the source code in the
file "<projdir>/latest_commit"
'''
latest_commit_file = join(self.projdir, 'latest_commit')
with open(latest_commit_file, 'r') as fp:
commit_id = fp.read().strip('\n\r\t ')
return commit_id
def append_cflags(self, macros):
cflags = ' '.join(['-D%s=%s' % (k, macros[k]) for k in macros])
prepend_env_value('CPPFLAGS',
cflags,
seperator=' ')
def uncompress(self):
'''Uncompress the source from the tarball'''
info('Uncompressing %s' % self.name)
if run('tar xf %s' % self.src_tarball) < 0:
error('failed to uncompress source of %s' % self.name)
def before_build(self):
'''Hook method to do project-specific stuff before running build commands'''
pass
def build(self):
'''Build the source'''
self.before_build()
info('Building %s' % self.name)
for cmd in self.build_commands:
if run(cmd, cwd=self.projdir) != 0:
error('error when running command:\n\t%s\n' % cmd)
def concurrent_make():
return 'make -j%s' % NUM_CPU
class Libsearpc(Project):
name = 'libsearpc'
def __init__(self):
Project.__init__(self)
self.build_commands = [
'./configure --prefix=%s --disable-compile-demo' % self.prefix,
concurrent_make(),
'make install'
]
def get_version(self):
return conf[CONF_LIBSEARPC_VERSION]
class Seafile(Project):
name = 'seafile'
def __init__(self):
Project.__init__(self)
self.build_commands = [
'./configure --prefix=%s --disable-fuse' % self.prefix,
concurrent_make(),
'make install'
]
def get_version(self):
return conf[CONF_SEAFILE_VERSION]
def update_cli_version(self):
'''Substitute the version number in seaf-cli'''
cli_py = join(self.projdir, 'app', 'seaf-cli')
with open(cli_py, 'r') as fp:
lines = fp.readlines()
ret = []
for line in lines:
old = '''SEAF_CLI_VERSION = ""'''
new = '''SEAF_CLI_VERSION = "%s"''' % conf[CONF_VERSION]
line = line.replace(old, new)
ret.append(line)
with open(cli_py, 'w') as fp:
fp.writelines(ret)
def before_build(self):
self.update_cli_version()
macros = {}
# SET SEAFILE_SOURCE_COMMIT_ID, so it can be printed in the log
macros['SEAFILE_SOURCE_COMMIT_ID'] = '\\"%s\\"' % self.get_source_commit_id()
self.append_cflags(macros)
class SeafileClient(Project):
name = 'seafile-client'
def __init__(self):
Project.__init__(self)
cmake_defines = {
'CMAKE_OSX_ARCHITECTURES': 'x86_64',
'CMAKE_OSX_DEPLOYMENT_TARGET': '10.9',
'CMAKE_BUILD_TYPE': 'Release',
'BUILD_SHIBBOLETH_SUPPORT': 'ON',
'BUILD_SPARKLE_SUPPORT': 'ON',
}
cmake_defines_formatted = ' '.join(['-D{}={}'.format(k, v) for k, v in cmake_defines.iteritems()])
self.build_commands = [
'rm -f CMakeCache.txt',
'cmake -GXcode {}'.format(cmake_defines_formatted),
'xcodebuild -target seafile-applet -configuration Release -jobs {}'.format(NUM_CPU),
'rm -rf seafile-applet.app',
'cp -r Release/seafile-applet.app seafile-applet.app',
'mkdir -p seafile-applet.app/Contents/Frameworks',
'macdeployqt seafile-applet.app',
]
def get_version(self):
return conf[CONF_SEAFILE_CLIENT_VERSION]
def before_build(self):
pass
class SeafileDMGLayout(Seafile):
def __init__(self):
Seafile.__init__(self)
self.build_commands = [
]
class SeafileFinderSyncPlugin(SeafileClient):
def __init__(self):
SeafileClient.__init__(self)
self.build_commands = [
'fsplugin/build.sh'
]
def check_targz_src(proj, version, srcdir):
src_tarball = join(srcdir, '%s-%s.tar.gz' % (proj, version))
if not exists(src_tarball):
error('%s not exists' % src_tarball)
def validate_args(usage, options):
required_args = [
CONF_VERSION,
CONF_LIBSEARPC_VERSION,
CONF_SEAFILE_VERSION,
CONF_SEAFILE_CLIENT_VERSION,
CONF_SRCDIR,
]
# fist check required args
for optname in required_args:
if getattr(options, optname, None) is None:
error('%s must be specified' % optname, usage=usage)
def get_option(optname):
return getattr(options, optname)
# [ version ]
def check_project_version(version):
'''A valid version must be like 1.2.2, 1.3'''
if not re.match(r'^[0-9]+(\.[0-9]+)+$', version):
error('%s is not a valid version' % version, usage=usage)
mode = get_option(CONF_MODE).lower()
assert mode in ('master', 'slave')
version = get_option(CONF_VERSION)
seafile_version = get_option(CONF_SEAFILE_VERSION)
seafile_client_version = get_option(CONF_SEAFILE_CLIENT_VERSION)
libsearpc_version = get_option(CONF_LIBSEARPC_VERSION)
check_project_version(version)
check_project_version(libsearpc_version)
check_project_version(seafile_version)
check_project_version(seafile_client_version)
# [ srcdir ]
srcdir = get_option(CONF_SRCDIR)
check_targz_src('libsearpc', libsearpc_version, srcdir)
check_targz_src('seafile', seafile_version, srcdir)
# [ keep ]
keep = get_option(CONF_KEEP)
# [ local ]
build_local = get_option(CONF_LOCAL)
# [ builddir ]
builddir = get_option(CONF_BUILDDIR)
if not exists(builddir):
error('%s does not exist' % builddir, usage=usage)
# TODO: remove this
# if mode == 'master':
# builddir = expanduser('~/tmp')
# if not exists(builddir):
# must_mkdir(builddir)
builddir = join(builddir, 'seafile-mac-build')
if not keep:
check_remove(builddir)
must_mkdir(builddir)
# [ outputdir ]
outputdir = get_option(CONF_OUTPUTDIR)
if outputdir:
if not exists(outputdir):
error('outputdir %s does not exist' % outputdir, usage=usage)
else:
outputdir = os.getcwd()
# [ no strip]
nostrip = get_option(CONF_NO_STRIP)
slave_host = get_option(CONF_SLAVE_HOST)
brand = get_option(CONF_BRAND)
conf[CONF_MODE] = mode
conf[CONF_LOCAL] = build_local
conf[CONF_VERSION] = version
conf[CONF_LIBSEARPC_VERSION] = libsearpc_version
conf[CONF_SEAFILE_VERSION] = seafile_version
conf[CONF_SEAFILE_CLIENT_VERSION] = seafile_client_version
conf[CONF_BUILDDIR] = builddir
conf[CONF_SRCDIR] = srcdir
conf[CONF_OUTPUTDIR] = outputdir
conf[CONF_KEEP] = keep
conf[CONF_NO_STRIP] = nostrip
conf[CONF_SLAVE_HOST] = slave_host
conf[CONF_BRAND] = brand
# TODO: remove this
# conf[CONF_SLAVE_HOST] = 'lion'
# conf[CONF_SLAVE_HOST] = 'sierra'
prepare_builddir(builddir)
# show_build_info()
def show_build_info():
'''Print all conf information. Confirm before continue.'''
info('------------------------------------------')
info('Seafile command line client %s: BUILD INFO' % conf[CONF_VERSION])
info('------------------------------------------')
info('libsearpc: %s' % conf[CONF_LIBSEARPC_VERSION])
info('seafile: %s' % conf[CONF_SEAFILE_VERSION])
info('seafile-client: %s' % conf[CONF_SEAFILE_CLIENT_VERSION])
info('builddir: %s' % conf[CONF_BUILDDIR])
info('outputdir: %s' % conf[CONF_OUTPUTDIR])
info('source dir: %s' % conf[CONF_SRCDIR])
info('strip symbols: %s' % (not conf[CONF_NO_STRIP]))
info('clean on exit: %s' % (not conf[CONF_KEEP]))
info('------------------------------------------')
info('press any key to continue ')
info('------------------------------------------')
dummy = raw_input()
def prepare_builddir(builddir):
must_mkdir(builddir)
# if not conf[CONF_KEEP]:
# def remove_builddir():
# '''Remove the builddir when exit'''
# info('remove builddir before exit')
# shutil.rmtree(builddir, ignore_errors=True)
# atexit.register(remove_builddir)
os.chdir(builddir)
must_mkdir(join(builddir, 'usr'))
def parse_args():
parser = optparse.OptionParser()
def long_opt(opt):
return '--' + opt
parser.add_option(long_opt(CONF_MODE),
dest=CONF_MODE,
default='master',
help='''The mode: master or slave. Master is osx 10.12, while slave is used when running on osx 10.7 lion.
Master would ssh on to slave to compile the source code.''')
parser.add_option(long_opt(CONF_VERSION),
dest=CONF_VERSION,
nargs=1,
help='the version to build. Must be digits delimited by dots, like 1.3.0')
parser.add_option(long_opt(CONF_SEAFILE_VERSION),
dest=CONF_SEAFILE_VERSION,
nargs=1,
help='the version of seafile as specified in its "configure.ac". Must be digits delimited by dots, like 1.3.0')
parser.add_option(long_opt(CONF_LIBSEARPC_VERSION),
dest=CONF_LIBSEARPC_VERSION,
nargs=1,
help='the version of libsearpc as specified in its "configure.ac". Must be digits delimited by dots, like 1.3.0')
parser.add_option(long_opt(CONF_SEAFILE_CLIENT_VERSION),
dest=CONF_SEAFILE_CLIENT_VERSION,
nargs=1,
help='the version of seafile-client. Must be digits delimited by dots, like 1.3.0')
parser.add_option(long_opt(CONF_BUILDDIR),
dest=CONF_BUILDDIR,
nargs=1,
help='the directory to build the source. Defaults to /tmp',
default=tempfile.gettempdir())
parser.add_option(long_opt(CONF_OUTPUTDIR),
dest=CONF_OUTPUTDIR,
nargs=1,
help='the output directory to put the generated tarball. Defaults to the current directory.',
default=os.getcwd())
parser.add_option(long_opt(CONF_SRCDIR),
dest=CONF_SRCDIR,
nargs=1,
help='''Source tarballs must be placed in this directory.''')
parser.add_option(long_opt(CONF_KEEP),
dest=CONF_KEEP,
action='store_true',
help='''keep the build directory after the script exits. By default, the script would delete the build directory at exit.''')
parser.add_option(long_opt(CONF_NO_STRIP),
dest=CONF_NO_STRIP,
action='store_true',
help='''do not strip debug symbols''')
parser.add_option(long_opt(CONF_SLAVE_HOST),
dest=CONF_SLAVE_HOST,
default='lion',
help='the hostname of the lower version osx slave')
parser.add_option(long_opt(CONF_BRAND),
dest=CONF_BRAND,
help='the brand')
parser.add_option(long_opt(CONF_LOCAL),
dest=CONF_LOCAL,
action='store_true',
help='build locally instead of using an old 10.7 vm')
usage = parser.format_help()
options, remain = parser.parse_args()
if remain:
error(usage=usage)
validate_args(usage, options)
def setup_build_env():
'''Setup environment variables, such as export PATH=$BUILDDDIR/bin:$PATH'''
# os.environ.update({
# })
prefix = join(conf[CONF_BUILDDIR], 'usr')
prepend_env_value('CFLAGS',
'-Wall -O2 -g -DNDEBUG -I/opt/local/include -mmacosx-version-min=10.7',
seperator=' ')
prepend_env_value('CXXFLAGS',
'-Wall -O2 -g -DNDEBUG -I/opt/local/include -mmacosx-version-min=10.7',
seperator=' ')
prepend_env_value('CPPFLAGS',
'-I%s' % join(prefix, 'include'),
seperator=' ')
prepend_env_value('CPPFLAGS',
'-DSEAFILE_CLIENT_VERSION=\\"%s\\"' % conf[CONF_VERSION],
seperator=' ')
if conf[CONF_NO_STRIP]:
prepend_env_value('CPPFLAGS',
'-g -O0',
seperator=' ')
prepend_env_value('LDFLAGS',
'-L%s' % join(prefix, 'lib'),
seperator=' ')
prepend_env_value('LDFLAGS',
'-L%s' % join(prefix, 'lib64'),
seperator=' ')
prepend_env_value('LDFLAGS',
'-L/opt/local/lib -Wl,-headerpad_max_install_names -mmacosx-version-min=10.7',
seperator=' ')
prepend_env_value('PATH', join(prefix, 'bin'))
prepend_env_value('PKG_CONFIG_PATH', join(prefix, 'lib', 'pkgconfig'))
prepend_env_value('PKG_CONFIG_PATH', join(prefix, 'lib64', 'pkgconfig'))
path_pattern = re.compile(r'^\s+(\S+)\s+\(compatibility.*')
def get_dependent_libs(executable):
def is_syslib(lib):
if lib.startswith('/usr/lib'):
return True
if lib.startswith('/System/'):
return True
return False
otool_output = commands.getoutput('otool -L %s' % executable)
libs = set()
for line in otool_output.splitlines():
m = path_pattern.match(line)
if not m:
continue
path = m.group(1)
if not is_syslib(path):
libs.add(path)
return libs
def copy_shared_libs():
'''copy shared c libs, such as libevent, glib'''
builddir = conf[CONF_BUILDDIR]
frameworks_dir = join(SeafileClient().projdir, 'seafile-applet.app/Contents/Frameworks')
must_mkdir(frameworks_dir)
seafile_path = join(builddir, 'usr/bin/seaf-daemon')
libs = set()
libs.update(get_dependent_libs(seafile_path))
# Get deps of deps recursively until no more deps can be included
while True:
newlibs = set(libs)
for lib in libs:
newlibs.update(get_dependent_libs(lib))
if newlibs == libs:
break
libs = newlibs
for lib in libs:
dst_file = join(frameworks_dir, basename(lib))
if exists(dst_file):
continue
info('Copying %s' % lib)
shutil.copy(lib, frameworks_dir)
change_rpaths()
def change_rpaths():
"""
Chagne the rpath of the referenced dylibs so the app can be relocated
anywhere in the user's system.
See:
- https://blogs.oracle.com/dipol/entry/dynamic_libraries_rpath_and_mac
- https://developer.apple.com/library/content/documentation/DeveloperTools/Conceptual/DynamicLibraries/100-Articles/RunpathDependentLibraries.html
"""
contents_dir = join(SeafileClient().projdir, 'seafile-applet.app/Contents')
frameworks_dir = join(contents_dir, 'Frameworks')
resources_dir = join(contents_dir, 'Resources')
macos_dir = join(contents_dir, 'MacOS')
seafile_applet = join(macos_dir, 'seafile-applet')
binaries = [
seafile_applet,
join(resources_dir, 'seaf-daemon')
]
RPATH_RE = re.compile(r'^path\s+(\S+)\s+\(offset .*$')
def get_rpaths(fn):
rpaths = []
output = commands.getoutput('otool -l {} | grep -A2 RPATH || true'.format(fn))
# The output is like
# cmd LC_RPATH
# cmdsize 24
# path /usr/local (offset 12)
# --
# cmd LC_RPATH
# cmdsize 48
# path @executable_path/../Frameworks (offset 12)
for line in output.splitlines():
m = RPATH_RE.match(line.strip())
if m:
rpaths.append(m.group(1))
return rpaths
def has_rpath(fn, path):
return path in get_rpaths(fn)
def add_frameworks_dir_to_rpath(fn, executable=True):
relpath = 'executable_path' if executable else 'loader_path'
relative_frameworks_dir = '@{}/../Frameworks'.format(relpath)
if not has_rpath(fn, relative_frameworks_dir):
must_run('install_name_tool -add_rpath {} {}' .format(relative_frameworks_dir, fn))
def remove_local_rpaths(fn):
local_paths = ['/usr/local/lib', '/opt/local/lib']
for path in local_paths:
if has_rpath(fn, path):
must_run('install_name_tool -delete_rpath {} {}'.format(path, fn))
def change_deps_rpath(fn):
deps = get_dependent_libs(fn)
for dep in deps:
bn = basename(dep)
if 'framework' in bn or bn.startswith('Qt') or bn == 'Sparkle':
continue
must_run('install_name_tool -change {} @rpath/{} {}'.format(dep, basename(dep), fn))
for binary in binaries:
add_frameworks_dir_to_rpath(binary)
remove_local_rpaths(binary)
change_deps_rpath(binary)
libs = os.listdir(frameworks_dir)
for lib_name in libs:
lib = join(frameworks_dir, lib_name)
if os.path.isdir(lib):
continue
must_run('install_name_tool -id @rpath/{} {}'.format(basename(lib), lib))
add_frameworks_dir_to_rpath(lib, executable=False)
change_deps_rpath(lib)
remove_local_rpaths(lib)
DROPDMG = '/Applications/DropDMG.app/Contents/Frameworks/DropDMGFramework.framework/Versions/A/dropdmg'
def gen_dmg():
output_dmg = 'app-{}.dmg'.format(conf[CONF_VERSION])
parentdir = 'app-{}'.format(conf[CONF_VERSION])
appdir = join(parentdir, 'seafile-applet.app')
app_plugins_dir = join(appdir, 'Contents/PlugIns')
layout = SeafileDMGLayout()
layout.uncompress()
layout_folder = join(layout.projdir, 'dmg/seafileLayout')
args = [
DROPDMG,
parentdir,
'--format', 'bzip2',
'--layout-folder', layout_folder,
'--volume-name', conf[CONF_BRAND] or 'Seafile Client',
]
with cd(conf[CONF_BUILDDIR]):
check_remove(parentdir)
check_remove(output_dmg)
must_mkdir(parentdir)
must_run('tar xf seafile-applet.app.tar.gz -C {}'.format(parentdir))
# Remove the Qt Bearer plugin because it would run a background thread
# to scan wifi networks. See
# https://trello.com/c/j28eOIo1/359-explicitly-exclude-qt-bearer-plugins-for-the-windows-and-mac-packages
# for details.
must_run('rm -rf "{}"'.format(join(app_plugins_dir, 'bearer')))
# fsplugin must be copied before we sign the final .app dir
copy_fsplugin(app_plugins_dir)
sign_files(appdir)
# Rename the .app dir to 'Seafile Client.app', and create the shortcut
# to '/Applications' so the user can drag into it when opening the DMG.
brand = conf.get(CONF_BRAND, '')
if brand:
final_app = '{}.app'.format(brand)
else:
final_app = FINAL_APP
must_run('mv {}/seafile-applet.app "{}/{}"'.format(parentdir, parentdir, final_app))
must_run('ln -sf /Applications {}/'.format(parentdir))
# Open DropDMG manually, or dropdmg command line may fail.
run(''' osascript -e 'tell application "DropDMG" to quit' || true ''')
run(''' osascript -e 'open application "DropDMG"' || true ''')
run(''' osascript -e 'activate application "DropDMG"' || true ''')
# Sometimes DropDmg would fail if there are two many Finder windows.
run(''' osascript -e 'tell application "Finder" to close every window' ''')
if run_argv(args) != 0:
error('failed to run {}'.format(args))
def sign_in_parallel(files_to_sign):
import threading
import Queue
queue = Queue.Queue()
POISON_PILL = ''
class SignThread(threading.Thread):
def __init__(self, index):
threading.Thread.__init__(self)
self.index = index
def run(self):
info('sign thread {} started'.format(self.index))
while True:
try:
fn = queue.get(timeout=1)
except Queue.Empty:
continue
else:
if fn == POISON_PILL:
break
else:
do_sign(fn)
info('sign thread {} stopped'.format(self.index))
TOTAL_THREADS = max(NUM_CPU / 2, 1)
threads = []
for i in xrange(TOTAL_THREADS):
t = SignThread(i)
t.start()
threads.append(t)
for fn in files_to_sign:
queue.put(fn)
for _ in xrange(TOTAL_THREADS):
queue.put(POISON_PILL)
for i in xrange(TOTAL_THREADS):
threads[i].join()
def sign_files(appdir):
webengine_app = join(
appdir,
'Contents/Frameworks/QtWebEngineCore.framework/Versions/5/Helpers/QtWebEngineProcess.app'
)
def _glob(pattern, *a, **kw):
return glob.glob(join(appdir, pattern), *a, **kw)
# The webengine app must be signed first, otherwise the sign of
# QtWebengineCore.framework would fail.
if exists(webengine_app):
entitlements = join(Seafile().projdir, 'scripts/build/osx.entitlements')
do_sign(
webengine_app,
extra_args=['--entitlements', entitlements]
)
# Strip the get-task-allow entitlements for Sparkle binaries
for fn in _glob('Contents/Frameworks/Sparkle.framework/Versions/A/Resources/Autoupdate.app/Contents/MacOS/*'):
do_sign(fn, preserve_entitlemenets=False)
# Sign the nested contents of Sparkle before we sign
# Sparkle.Framework in the thread pool.
for fn in (
'Contents/Frameworks/Sparkle.framework/Versions/A/Resources/Autoupdate.app',
'Contents/Frameworks/Sparkle.framework/Versions/A/Sparkle',
):
do_sign(join(appdir, fn))
patterns = [
'Contents/Frameworks/*.framework',
'Contents/PlugIns/*/*.dylib',
'Contents/Frameworks/*.dylib',
'Contents/Resources/seaf-daemon',
'Contents/MacOS/seadrive-gui',
]
files_to_sign = []
for p in patterns:
files_to_sign.extend(_glob(p))
info('{} files to sign'.format(len(files_to_sign)))
sign_in_parallel(files_to_sign)
# for fn in files_to_sign:
# do_sign(fn)
do_sign(appdir)
# do_sign(appdir, extra_args=['--deep'])
_keychain_unlocked = False
def unlock_keychain():
"""
Unlock the keychain when we're using ssh instead of using the terminal from
GUI. See http://stackoverflow.com/a/20208104/1467959
"""
global _keychain_unlocked
if not _keychain_unlocked:
_keychain_unlocked = True
run('security -v unlock-keychain -p vagrant || true')
def do_sign(path, extra_args=None, preserve_entitlemenets=True):
unlock_keychain()
args = [
'codesign',
'--verbose=4',
'-o', 'runtime',
'--timestamp',
'--verify',
# '--no-strict',
'--force',
'-s', CERT_ID,
]
if preserve_entitlemenets:
args += ['--preserve-metadata=entitlements']
extra_args = extra_args or []
if extra_args:
args.extend(extra_args)
args.append(path)
if run_argv(args) != 0:
error('failed to sign {}'.format(path))
def send_file_to_slave(src, dst):
info('putting file {} => {}'.format(src, dst))
with settings(host_string=conf[CONF_SLAVE_HOST]):
put_file(local_path=src, remote_path=dst)
def get_file_from_slave(src, dst):
host = conf[CONF_SLAVE_HOST]
info('getting file {}:{} => {}'.format(host, src, dst))
with settings(host_string=host):
get_file(src, dst)
def send_project_tarball(project):
info('sending tarball of {}'.format(project.name))
src = project.src_tarball
dst = join(SLAVE_SRCDIR, basename(src))
send_file_to_slave(src, dst)
def slave_run(cmd, **kw):
info('running cmd: ' + cmd)
kw['host'] = conf[CONF_SLAVE_HOST]
cmd = '. ~/.bash_profile; export SEAFILE_BUILD_SLAVE=1; ' + cmd
execute(fabric_run, cmd, **kw)
def prepare_dirs_on_slave():
info('creating work directory on the slave')
slave_run('mkdir -p {}'.format(SLAVE_SRCDIR))
slave_run('mkdir -p {}'.format(SLAVE_BUILDDIR))
def send_sources_to_slave():
info('sending sources to the slave')
prepare_dirs_on_slave()
send_file_to_slave(abspath(__file__), SLAVE_BUILD_SCRIPT)
projects = [
Libsearpc(),
Seafile(),
SeafileClient(),
]
for p in projects:
send_project_tarball(p)
def build_on_slave():
args = [
'python',
SLAVE_BUILD_SCRIPT,
'--mode=slave',
'--version={}'.format(conf[CONF_VERSION]),
'--libsearpc_version={}'.format(conf[CONF_LIBSEARPC_VERSION]),
'--seafile_version={}'.format(conf[CONF_SEAFILE_VERSION]),
'--seafile_client_version={}'.format(conf[CONF_SEAFILE_CLIENT_VERSION]),
'--srcdir={}'.format(SLAVE_SRCDIR),
'--builddir={}' .format(SLAVE_BUILDDIR),
]
info('packaging on the slave')
slave_run(' '.join(args))
def get_app_tgz_from_slave():
fn = 'seafile-applet.app.tar.gz'
src = join(SLAVE_BUILDDIR, 'seafile-mac-build', fn)
dst = join(conf[CONF_BUILDDIR], fn)
get_file_from_slave(src, dst)
def copy_dmg():
brand = conf[CONF_BRAND] or 'seafile-client'
branded_dmg = '{}-{}.dmg'.format(brand, conf[CONF_VERSION])
src_dmg = os.path.join(conf[CONF_BUILDDIR], 'app-{}.dmg'.format(conf[CONF_VERSION]))
dst_dmg = os.path.join(conf[CONF_OUTPUTDIR], branded_dmg)
# move msi to outputdir
must_copy(src_dmg, dst_dmg)
print '---------------------------------------------'
print 'The build is successfully. Output is:'
print '>>\t%s' % dst_dmg
print '---------------------------------------------'
def notarize_dmg():
pkg = os.path.join(conf[CONF_BUILDDIR], 'app-{}.dmg'.format(conf[CONF_VERSION]))
info('Try to notarize {}'.format(pkg))
notarize_script = join(Seafile().projdir, 'scripts/build/notarize.sh')
cmdline = '{} {}'.format(notarize_script, pkg)
ret = run(cmdline)
if ret != 0:
error('failed to notarize: %s' % cmdline)
info('Successfully notarized {}'.format(pkg))
def build_and_sign_fsplugin():
"""
Build and sign the fsplugin. The final output would be "${buildder}/Seafile FinderSync.appex"
"""
fsplugin = SeafileFinderSyncPlugin()
fsplugin.uncompress()
fsplugin.build()
with cd(fsplugin.projdir):
appex_src = 'fsplugin/{}'.format(FSPLUGIN_APPEX_NAME)
appex_dst = join(conf[CONF_BUILDDIR], basename(appex_src))
check_remove(appex_dst)
must_copytree(appex_src, appex_dst)
entitlements_src = 'fsplugin/seafile-fsplugin.entitlements'
entitlements_dst = join(conf[CONF_BUILDDIR], basename(entitlements_src))
check_remove(entitlements_dst)
must_copy(entitlements_src, entitlements_dst)
do_sign(
appex_dst,
extra_args=['--entitlements', entitlements_dst]
)
def copy_fsplugin(plugins_dir):
src = join(conf[CONF_BUILDDIR], FSPLUGIN_APPEX_NAME)
dst = join(plugins_dir, FSPLUGIN_APPEX_NAME)
check_remove(dst)
must_copytree(src, dst)
def copy_sparkle_framework():
src = '/usr/local/Sparkle.framework'
dst = join(SeafileClient().projdir, 'seafile-applet.app/Contents/Frameworks', basename(src))
check_remove(dst)
# Here we use the `cp` command instead of shutil to do the copy, because `cp
# -P` would keep symlinks as is.
must_run('cp -R -P "{}" "{}"'.format(src, dst))
def build_projects():
libsearpc = Libsearpc()
seafile = Seafile()
seafile_client = SeafileClient()
libsearpc.uncompress()
libsearpc.build()
seafile.uncompress()
seafile.build()
seafile_client.uncompress()
seafile_client.build()
copy_sparkle_framework()
copy_shared_libs()
def local_workflow():
build_projects()
generate_app_tar_gz()
build_and_sign_fsplugin()
gen_dmg()
notarize_dmg()
copy_dmg()
def master_workflow():
send_sources_to_slave()
build_on_slave()
get_app_tgz_from_slave()
build_and_sign_fsplugin()
gen_dmg()
notarize_dmg()
copy_dmg()
def slave_workflow():
build_projects()
generate_app_tar_gz()
def generate_app_tar_gz():
# output_app_tgz = join(conf[CONF_BUILDDIR], '..', 'seafile-applet.app.tar.gz')
output_app_tgz = join(conf[CONF_BUILDDIR], 'seafile-applet.app.tar.gz')
with cd(SeafileClient().projdir):
run('tar czf {} seafile-applet.app'.format(output_app_tgz))
def setup_logging(level=logging.INFO):
kw = {
'format': '[%(asctime)s][%(module)s]: %(message)s',
'datefmt': '%m/%d/%Y %H:%M:%S',
'level': level,
'stream': sys.stdout
}
logging.basicConfig(**kw)
logging.getLogger('requests.packages.urllib3.connectionpool').setLevel(
logging.WARNING)
def main():
setup_logging()
parse_args()
info('{} script started'.format(abspath(__file__)))
info('NUM_CPU = {}'.format(NUM_CPU))
setup_build_env()
if conf[CONF_LOCAL]:
local_workflow()
elif conf[CONF_MODE] == 'master':
# info('entering master workflow')
# master_workflow()
local_workflow()
else:
info('entering slave workflow')
slave_workflow()
if __name__ == '__main__':
main()
|