Lines Matching +full:upload +full:- +full:dir
6 python makerelease.py --platform=msvc6,msvc71,msvc80,msvc90,mingw -ublep 0.6.0 0.7.0-dev
9 python makerelease.py --force --retag --platform=msvc6,msvc71,msvc80,mingw -ublep test-0.6.0 test-0…
12 python makerelease.py 0.5.0 0.6.0-dev
34 SCONS_LOCAL_URL = 'http://sourceforge.net/projects/scons/files/scons-local/1.2.0/scons-local-1.2.0.…
49 cmd = ['svn', '--non-interactive', command] + list(args)
63 stdout = svn_command( 'status', '--xml' )
68 status = entry.find('wc-status').get('item')
98 svn_command( 'ci', '-m', message )
103 svn_command( 'copy', '-m', message, '.', tag_url )
108 svn_command( 'delete', '-m', message, tag_url )
122 prune_dirs = antglob.prune_dirs + 'scons-local* ./build* ./libs ./dist'
129 excludes = antglob.default_excludes + 'scons.py sconsign.py scons-*',
153 log_path = os.path.join( distcheck_top_dir, 'build-%s.log' % platform )
180 # psftp -agent -C blep,jsoncpp@web.sourceforge.net -batch -b batch.sftp -bc
181 cmd = [sftp, '-agent', '-C', '-batch', '-b', path, '-bc', userhost]
198 """Notes: does not synchronize sub-directory of doc-dir.
203 dir
210 if not collect and line.endswith('> dir'):
217 path = line.strip().split()[-1:]
221 paths_to_remove = existing_paths - upload_paths
234 file_per_sec = (time.time() - start_time) / (index+1)
235 remaining_files = len(upload_paths) - index
262 Warning: --force should only be used when developping/testing the release script.
267 … parser.add_option('--dot', dest="dot_path", action='store', default=doxybuild.find_program('dot'),
269 …parser.add_option('--doxygen', dest="doxygen_path", action='store', default=doxybuild.find_program…
271 parser.add_option('--force', dest="ignore_pending_commit", action='store_true', default=False,
273 parser.add_option('--retag', dest="retag_release", action='store_true', default=False,
275 parser.add_option('-p', '--platforms', dest="platforms", action='store', default='',
277 parser.add_option('--no-test', dest="no_test", action='store_true', default=False,
279 parser.add_option('--no-web', dest="no_web", action='store_true', default=False,
281 parser.add_option('-u', '--upload-user', dest="user", action='store',
282 help="""Sourceforge user for SFTP documentation upload.""")
283 …parser.add_option('--sftp', dest='sftp', action='store', default=doxybuild.find_program('psftp', '…
284 … help="""Path of the SFTP compatible binary used to upload the documentation.""")
289 parser.error( 'release_version missing on command-line.' )
294 parser.error( 'You must specify either --platform or --no-test option.' )
309 print('Aborting, tag %s already exist. Use --retag to overwrite it!' % tag_url)
314 ## doc_dirname = r'jsoncpp-api-html-0.5.0'
315 ## doc_tarball_path = r'e:\prg\vc\Lib\jsoncpp-trunk\dist\jsoncpp-api-html-0.5.0.tar.gz'
325 source_dir = 'jsoncpp-src-' + release_version
330 amalgamation_tarball_path = 'dist/%s-amalgamation.tar.gz' % source_dir
334 amalgamation_source_dir = 'jsoncpp-src-amalgamation' + release_version
338 # Decompress source tarball, download and install scons-local
344 scons_local_path = 'dist/scons-local.tar.gz'
345 print('Downloading scons-local to', scons_local_path)
347 print('Decompressing scons-local to', distcheck_top_dir)
367 print('Completed documentation upload')
374 print('No upload user specified. Web site and download tarbal were not uploaded.')