summaryrefslogtreecommitdiff
path: root/buildscripts/make_archive.py
Commit message (Collapse)AuthorAgeFilesLines
* SERVER-40542 Remove references to pip2Mathew Robinson2019-04-101-1/+1
|
* SERVER-32295 Support Python 3Mathew Robinson2019-04-081-7/+7
|
* SERVER-23312 Python linting - Lint using pylint, pydocstyle & mypyJonathan Abrahams2018-04-051-22/+31
|
* SERVER-23312 Format Python files with yapfJonathan Abrahams2018-03-261-14/+20
|
* SERVER-22135 Take python from environment rather system default pathValentin Kuznetsov2016-01-151-1/+1
| | | | | | Signed-off-by: Ramon Fernandez <ramon@mongodb.com> Closes #1056
* SERVER-18953 SERVER-9567 Add debug symbols archive targetJonathan Reams2015-06-231-4/+9
|
* SERVER-15400: Create Windows Enterprise Zip File with vcredist and dependent ↵Mark Benvenuto2014-09-251-2/+15
| | | | dlls
* Revert "BUILD-365: Create Windows Enterprise Zip File with vcredist and ↵Mark Benvenuto2014-09-231-3/+1
| | | | | | dependent dlls" This reverts commit e7f18a7e54ea66d0326fb62b9b477a8e9cd23d1c.
* BUILD-365: Create Windows Enterprise Zip File with vcredist and dependent dllsMark Benvenuto2014-09-231-1/+3
|
* Revert "BUILD-365: Create Windows Enterprise Zip File with vcredist and ↵Mark Benvenuto2014-09-231-2/+1
| | | | | | dependent dlls" This reverts commit 812916f5335f54b1b3944889fedc28b78997ebf3.
* BUILD-365: Create Windows Enterprise Zip File with vcredist and dependent dllsMark Benvenuto2014-09-231-1/+2
|
* MCI-13287: delegate to shell when compressing tar archivesWisdom Omuya2014-04-161-23/+86
| | | | Signed-off-by: Matt Kangas <matt.kangas@mongodb.com>
* Revert "SERVER-13287: delegate to shell when compressing tar archives"Dan Pasette2014-03-261-84/+23
| | | | This reverts commit e73399e0e696aaaf1e859533e10cc2b74d46994f.
* SERVER-13287: delegate to shell when compressing tar archivesWisdom Omuya2014-03-251-23/+84
| | | | Signed-off-by: Matt Kangas <matt.kangas@mongodb.com>
* SCons: Fix typo in make_archive.pyAndy Schwerin2012-03-301-1/+1
|
* Fix Windows build of zip archives in SCons.Andy Schwerin2012-03-231-1/+1
|
* SCons refactoring, cleans up building and testing the C++ client.Andy Schwerin2012-03-231-0/+116
This patch does the following: 1.) Remove pcre.h dependencies in the C++ client, and remove some other unnecessary dependencies. 2.) Clean up how we build the client from the client source tarball, so it's more like how we build it from the git repo / full source tarball. 3.) Fix up our "scons" so you only have to write "scons ." to build all of our binaries, the binary archive (zip or tgz) and client source archive (zip or tgz). 4.) Fix up SCons aliases "core", "tools", and "all". 5.) Let user specify the name of the client tarball via a SCons command line switch. Resolves SERVER-4231, SERVER-5255.