Rockbox open source high quality audio player as a Music Player Daemon
mpris rockbox mpd libadwaita audio rust zig deno
2
fork

Configure Feed

Select the types of activity you want to include in your feed.

Fix a potential variable problem. Change some messages a bit.


git-svn-id: svn://svn.rockbox.org/rockbox/trunk@29534 a1c6a512-1295-4272-9138-f99709370657

+9 -8
+9 -8
utils/common/deploy.py
··· 335 335 dllpaths = [] 336 336 for file in dlls: 337 337 if file in systemdlls: 338 - print file + ": System DLL" 338 + print "System DLL: " + file 339 339 continue 340 340 dllpath = "" 341 341 for path in extrapaths: ··· 350 350 print file + ": found at " + dllpath 351 351 dllpaths.append(dllpath) 352 352 except: 353 - print file + ": NOT FOUND." 353 + print "MISSING DLL: " + file 354 354 return dllpaths 355 355 356 356 357 - def zipball(versionstring, buildfolder, platform=sys.platform): 357 + def zipball(programfiles, versionstring, buildfolder, platform=sys.platform): 358 358 '''package created binary''' 359 359 print "Creating binary zipball." 360 360 archivebase = program + "-" + versionstring ··· 363 363 # create output folder 364 364 os.mkdir(outfolder) 365 365 # move program files to output folder 366 - programfiles.append(progexe[platform]) 367 366 for f in programfiles: 368 367 if re.match(r'^(/|[a-zA-Z]:)', f) != None: 369 368 shutil.copy(f, outfolder) ··· 386 385 return archivename 387 386 388 387 389 - def tarball(versionstring, buildfolder): 388 + def tarball(programfiles, versionstring, buildfolder): 390 389 '''package created binary''' 391 390 print "Creating binary tarball." 392 391 archivebase = program + "-" + versionstring ··· 597 596 tempclean(workfolder, cleanup and not keeptemp) 598 597 sys.exit(1) 599 598 buildtime = time.time() - buildstart 599 + progfiles = programfiles 600 + progfiles.append(progexe[platform]) 600 601 if platform == "win32": 601 602 if useupx == True: 602 603 if not upxfile(sourcefolder, platform) == 0: ··· 605 606 dllfiles = finddlls(sourcefolder + "/" + progexe[platform], \ 606 607 [os.path.dirname(qm)], cross) 607 608 if dllfiles.count > 0: 608 - programfiles.extend(dllfiles) 609 - archive = zipball(ver, sourcefolder, platform) 609 + progfiles.extend(dllfiles) 610 + archive = zipball(progfiles, ver, sourcefolder, platform) 610 611 # only when running native right now. 611 612 if nsisscript != "" and makensis != "": 612 613 nsisfileinject(sourcefolder + "/" + nsisscript, sourcefolder \ ··· 617 618 else: 618 619 if os.uname()[4].endswith("64"): 619 620 ver += "-64bit" 620 - archive = tarball(ver, sourcefolder) 621 + archive = tarball(progfiles, ver, sourcefolder) 621 622 622 623 # remove temporary files 623 624 tempclean(workfolder, cleanup)