summary refs log tree commit diff stats
path: root/tools/niminst
Commit message (Collapse)AuthorAgeFilesLines
* support for arm64; fixes #2147Andreas Rumpf2016-12-271-0/+2
|
* niminst update: make csources compile on old LinuxesAraq2016-11-011-1/+1
|
* make travis greenAraq2016-10-231-1/+1
|
* niminst works with gitlabAraq2016-10-221-2/+6
|
* niminst updatesAndreas Rumpf2016-10-218-26/+26
|
* Improve niminst zip error message and fix CI build.Dominik Picheta2016-10-161-0/+4
|
* Fixes `niminst zip` not creating output dir & cleans related code.Dominik Picheta2016-10-161-18/+19
|
* Add Mingw build support for build.shZion Nimchuk2016-10-131-0/+3
|
* zip files for WindowsAraq2016-10-091-18/+21
|
* NSIS won't force admin privileges.Dominik Picheta2016-10-011-2/+2
|
* CI: Fixes PATH handling in NSIS installers.Dominik Picheta2016-09-301-12/+199
| | | | | | | | | | | | | | | | Squashed commit of the following: commit 82d16908d6b4dacc585c241005f49aea2eef2c9f Author: Dominik Picheta <dominikpicheta@gmail.com> Date: Fri Sep 30 22:20:47 2016 +0200 CI: ugh, another try. commit 6fe7e2fad11851ad568f9156132bf186593d2c0d Author: Dominik Picheta <dominikpicheta@gmail.com> Date: Fri Sep 30 21:48:22 2016 +0200 CI: Fix env PATH setting issues in NSIS installer.
* Works around a niminst bug. Related to commit 3813af63f5 and #4831.Dominik Picheta2016-09-292-1/+3
|
* Fixes and improvements to NSIS installer.Dominik Picheta2016-09-281-7/+7
|
* define sparc64 platformSergey Avseyev2016-07-212-2/+6
|
* Use relative paths in install script templateDenis Kolodin2016-07-031-1/+29
|
* Use `walkPattern` to walk both directories and filesJoey Payne2016-06-171-1/+1
|
* fixes niminst regressionAndreas Rumpf2016-06-131-1/+1
|
* more niminst fixesAndreas Rumpf2016-06-131-10/+30
|
* fixes a niminst regressionAndreas Rumpf2016-06-101-1/+1
|
* fixes a niminst regressionAndreas Rumpf2016-06-101-1/+1
|
* added 'koch testinstall' command; more installer related bugfixesAndreas Rumpf2016-06-091-2/+4
|
* fixes #4289Andreas Rumpf2016-06-081-8/+8
|
* finally make niminst smart about which files are importantAndreas Rumpf2016-06-071-15/+34
|
* use program files rather than c driveAraq2016-06-071-1/+1
|
* Remove trailing slashes from install/deinstall.tmpl.Dominik Picheta2016-06-062-4/+4
|
* Fixed deinstall script after recent install changes.Dominik Picheta2016-06-062-6/+23
|
* Niminst now bundles the `compiler` dir when packaging.Dominik Picheta2016-06-062-16/+62
|
* Fixes #2128. Based on @infinity0's commit.Dominik Picheta2016-06-052-22/+22
|
* build.sh: Output error messages to stderrAdam Strzelecki2015-10-301-5/+5
| | | | Just in case we are running this in some CI.
* build.sh: Use shell built-in command traceAdam Strzelecki2015-10-301-3/+3
| | | | | | | | | | | | Rather than issuing echo "cmd..." then cmd... itself, we enable shell trace facility via set -x, which is POSIX shell standard command and is compatible with all UNIX shells. This effectively cuts build.sh size twice, since we don't need to double stuff there, also making it human readable. We are also setting PS4 (trace prefix) to none, instead final echo "SUCCESS", we issue : SUCCESS command which outputs its contents in trace.
* Use new #? filter prefix in various placesAdam Strzelecki2015-09-307-7/+7
| | | | This silences deprecation warnings and prevent collision with UNIX shebang.
* tools: Trim .nim files trailing whitespaceAdam Strzelecki2015-09-041-30/+30
| | | | via OSX: find . -name '*.nim' -exec sed -i '' -E 's/[[:space:]]+$//' {} +
* preparations for more Nimble packages; clear licensing; fixes #2949Araq2015-06-201-1/+1
|
* Fixed gcc batch issueapense2015-06-171-2/+2
| | | See #18 on csources. Basically, some Windows system have gcc as a gcc.bat file. This isn't an issue unless you're calling from another batch file (like here). The call chain will follow to gcc.bat and end there, meaning only one command is processed. Using "CALL" before the other batch command will keep the calls in the main batch file after completion, meaning the compilation will actually succeed this way [see technet](https://technet.microsoft.com/en-us/library/bb490873.aspx). Otherwise you have to hope there is a gcc.exe somewhere instead
* Dropped from TZipFileStreampatrick dw2015-06-061-1/+1
|
* Use maximum compression level for XZ tarballSergey Avseyev2015-05-261-1/+1
|
* Set file permissions when prepare XZ tarballSergey Avseyev2015-05-261-1/+1
|
* Remove outdated targz from niminstSergey Avseyev2015-05-261-44/+0
|
* Implement support for XZ dist tarballSergey Avseyev2015-05-261-0/+42
| | | | | | | | | | | | | | | | | Motivation ---------- Currenly tarballs for linux created manually. ZIP files are not suitable, because they do not preserve unix file permissions. Modification ------------ Implement 'koch xz' command to produce dist tarball in xz format. Also the same command implemented in niminst.nim. Result ------ Now it is easy to create source distribution for git stapshot and use it further in packaging scripts.
* preparations for version 0.11.0Araq2015-04-302-11/+12
|
* the installer can generate tar.gzAraq2015-04-291-12/+55
|
* Rename compiler/nim.ini back to compiler/installer.inidef2015-03-131-4/+8
| | | | | | | - Niminst has a new -m/--main option to set the main file, by default ini-file with .nim extension (old behaviour) - Koch uses this to pass --main:compiler/nim.nim - Fix includes/links of website.ini
* Add makefile for csourcesdef2015-03-123-2/+175
| | | | | | | This should speed up compilation of csources significantly, as it can be used with "make -j $NUMPROCS" Only tested on Linux so far
* Make *.sh files executabledef2015-03-121-0/+3
|
* compile nim on freebsddyu2015-02-271-1/+1
|
* Cleaned up T/P names.Hans Raaf2015-02-198-40/+40
|
* nimrod -> nim in some filenamesdef2015-02-141-2/+2
|
* make FreeBSD's compiler clangMikhail Sobolev2015-01-121-1/+7
| | | | | * there's not much documentation about what's in nim.cfg file * the build.sh template was updated based on darwin
* Happy new year!Guillaume Gelin2015-01-061-2/+2
|
* fix NSIS uninstaller filename (fix #1804)cremno2015-01-011-1/+1
|