mirror of
https://github.com/kovidgoyal/calibre.git
synced 2025-07-09 03:04:10 -04:00
IGN:Tag release
This commit is contained in:
parent
0e3fd968e0
commit
2ad3779c48
@ -11,7 +11,8 @@ resources/localization
|
|||||||
resources/images.qrc
|
resources/images.qrc
|
||||||
resources/scripts.pickle
|
resources/scripts.pickle
|
||||||
resources/ebook-convert-complete.pickle
|
resources/ebook-convert-complete.pickle
|
||||||
resources/builtin_recipes.*
|
resources/builtin_recipes.xml
|
||||||
|
resources/builtin_recipes.zip
|
||||||
setup/installer/windows/calibre/build.log
|
setup/installer/windows/calibre/build.log
|
||||||
src/calibre/translations/.errors
|
src/calibre/translations/.errors
|
||||||
src/cssutils/.svn/
|
src/cssutils/.svn/
|
||||||
|
@ -93,9 +93,11 @@ class UploadToGoogleCode(Command): # {{{
|
|||||||
ext = os.path.splitext(fname)[1][1:]
|
ext = os.path.splitext(fname)[1][1:]
|
||||||
op = 'OpSys-'+{'msi':'Windows','dmg':'OSX','bz2':'Linux','gz':'All'}[ext]
|
op = 'OpSys-'+{'msi':'Windows','dmg':'OSX','bz2':'Linux','gz':'All'}[ext]
|
||||||
desc = installer_description(fname)
|
desc = installer_description(fname)
|
||||||
|
start = time.time()
|
||||||
path = self.upload(os.path.abspath(fname), desc,
|
path = self.upload(os.path.abspath(fname), desc,
|
||||||
labels=[typ, op, 'Featured'])
|
labels=[typ, op, 'Featured'])
|
||||||
self.info('\tUploaded to:', path)
|
self.info('\tUploaded to:', path, 'in', int(time.time() - start),
|
||||||
|
'seconds')
|
||||||
return path
|
return path
|
||||||
|
|
||||||
def run(self, opts):
|
def run(self, opts):
|
||||||
@ -248,10 +250,13 @@ class UploadToSourceForge(Command): # {{{
|
|||||||
def upload_installers(self):
|
def upload_installers(self):
|
||||||
for x in installers():
|
for x in installers():
|
||||||
if not os.path.exists(x): continue
|
if not os.path.exists(x): continue
|
||||||
|
start = time.time()
|
||||||
self.info('Uploading', x)
|
self.info('Uploading', x)
|
||||||
check_call(['rsync', '-v', '-e', 'ssh -x', x,
|
check_call(['rsync', '-v', '-e', 'ssh -x', x,
|
||||||
'%s,%s@frs.sourceforge.net:%s'%(self.USERNAME, self.PROJECT,
|
'%s,%s@frs.sourceforge.net:%s'%(self.USERNAME, self.PROJECT,
|
||||||
self.rdir+'/')])
|
self.rdir+'/')])
|
||||||
|
print 'Uploaded in', int(time.time() - start), 'seconds'
|
||||||
|
print ('\n')
|
||||||
|
|
||||||
def run(self, opts):
|
def run(self, opts):
|
||||||
self.opts = opts
|
self.opts = opts
|
||||||
|
File diff suppressed because it is too large
Load Diff
Loading…
x
Reference in New Issue
Block a user