682 Commits

Author SHA1 Message Date
Luke Sampson
449733fc54 Merge pull request #450 from moigagoo/patch-12
Update Mercurial to 3.5
2015-08-07 06:57:56 +01:00
Konstantin Molchanov
a8772a7ea6 Update Mercurial to 3.5 2015-08-07 08:36:38 +03:00
Konstantin Molchanov
baf7ab2272 Update innounp to 0.43
Necessary to update Mercurial to 3.5.
2015-08-07 08:36:16 +03:00
Simon Hartcher
5218ddd787 Add all commands to mono manifest 2015-08-03 21:59:35 +10:00
Simon Hartcher
1c5bf049d3 Add mono 4.0.2 2015-08-03 17:59:54 +10:00
Andrey Shustariov
0e7967d6be Updated ant to version 1.9.6 2015-08-01 19:04:17 +03:00
Simon Hartcher
1db78e3c90 Merge pull request #440 from Madsn/patch-2
Update gradle to 2.5
2015-07-26 18:13:58 +10:00
Simon Hartcher
e1893f5781 Merge pull request #441 from Madsn/patch-3
Update scala to 2.11.7
2015-07-26 18:13:48 +10:00
Simon Hartcher
5358d98968 Update 7zip to 9.38, and use 7-zip.org download links 2015-07-26 18:09:57 +10:00
Mikkel Madsen
4df235094f Update scala to 2.11.7 2015-07-26 09:50:00 +02:00
Mikkel Madsen
d41dca0d1d Update gradle to 2.5 2015-07-26 09:42:54 +02:00
Simon Hartcher
c2487d0e9e Update git to 2.4.6, Create git19 manifest 2015-07-26 17:21:24 +10:00
Mikkel Madsen
fc79a606ea Upgrade grails to 3.0.3 2015-07-25 17:28:44 +02:00
Takeshi SASAKI
08e051b918 add ctags 2015-07-23 06:20:47 -04:00
Keiichi Shimamura
fce92380ad docker-machine 0.3.1 2015-07-21 15:55:56 -04:00
Luke Sampson
15298e64f5 Merge pull request #431 from iakio/remove-checkver
Remove unused checkvers
2015-07-20 14:21:30 +10:00
ISHIDA Akio
cc568e6d9a Remove unused checkvers 2015-07-20 12:29:45 +09:00
ISHIDA Akio
89f4e1befd Vagrant 1.7.4 2015-07-20 12:24:58 +09:00
ISHIDA Akio
985b2365f7 Fix checkver regexp to allow newline 2015-07-20 10:33:08 +09:00
Devon Carew
b8e18eb2f0 upgrade to dart 1.11.1
Change the refs from /latest (had been 1.11.0) to 1.11.1.
2015-07-16 09:26:08 -07:00
Keiichi Shimamura
7a97b33cdb Docker 1.7.1 2015-07-15 18:59:27 -04:00
Luke Sampson
335814e58b rust 1.1.0 (fix json) 2015-07-16 07:37:06 +10:00
Konstantin Molchanov
23301efbe9 Update Rust to 1.1.0 2015-07-15 22:50:14 +03:00
James Stone
83d83d2f4c Re add php52
Sorry I forgot to add the file extension
2015-07-14 13:22:30 +10:00
Luke Sampson
03d4c5a96b Merge pull request #422 from jamesmstone/patch-4
Add php52
2015-07-14 09:44:57 +10:00
Luke Sampson
f3955aeba8 Merge pull request #421 from jamesmstone/patch-3
Update PHP Version
2015-07-14 09:44:41 +10:00
James Stone
25f19303fd Add php52 2015-07-14 09:36:52 +10:00
James Stone
333bcdef62 Update PHP Version 2015-07-14 09:26:49 +10:00
James Stone
e63db9c824 Update PHP Version 2015-07-14 09:24:01 +10:00
Keiichi Shimamura
d3dbe5052a Vagrant 1.7.3 2015-07-13 16:55:51 -04:00
ISHIDA Akio
6fab16932c php 5.6.11 2015-07-13 15:50:18 +09:00
Mathew Mason
9012685f97 Updating premake5 to 5.0-alpha4. 2015-07-11 16:51:20 -07:00
Keiichi Shimamura
e42da5b1b1 Redis 2.8.21 2015-07-08 20:43:55 -04:00
Karthik Nishanth
e0d7d57ec6 Update youtube-dl.json
Updated version to 2015.07.07
2015-07-07 21:11:24 +05:30
Roman Kuzmin
958f0bb98a invoke-build.json : updated version 2.12.2 and added checkver 2015-07-05 13:02:31 +01:00
Keiichi Shimamura
38de387d85 Node.js 0.12.6 2015-07-03 23:59:11 -04:00
Luke Sampson
dcf8519e57 Merge pull request #411 from rivy/fix-gow
Fix GOW
2015-07-03 10:56:37 +10:00
Roy Ivy III
57b93a013c FIX bash startup failure (within GOW)
* create the `etc` directory (if needed)

.# DISCUSSION

`bash` requires the `etc` directory for startup. However, `etc` is missing
from the GOW repo. There are current pull requests fixing this issue (see
bmatzelle/gow#192). But, this fixes the the issue while waiting for the GOW
repo to be updated. The fix here is compatible with all of the current possible
future GOW repo fixes.
2015-07-02 16:44:56 -05:00
Roy Ivy III
0ef4806272 FIX gow.bat file generation
* change method of generating gow.bat to generate a normal ASCII character file

.# DISCUSSION

At the PowerShell command line, using `echo STRING > FILE` will generate a
UTF-8-BOM or UTF-16-BOM encoded file. But, CMD interprets files as using the
128-character ASCII character set (character codes 0 to 127). CMD will tolerate
files using the full 256 character "extended-ASCII" set (or even larger
dual-byte character sets). But, in this circumstance, interpretation/display
is dependent on the currently selected code page. It's best to stick to pure
ASCII files if at all possible.

Using `STRING | Set-Content FILE` instead creates the correct ASCII character file.

NOTE: ASCII (not "extended-ASCII") and UTF-8 (non-BOM) encoded files are exactly equivalent.

ref: [Unicode UTF and BOM] http://www.unicode.org/faq/utf_bom.html @@ https://archive.is/TKnyk
ref: [Unicode and NET] http://csharpindepth.com/Articles/General/Unicode.aspx @@ https://archive.is/czs89
2015-07-02 16:30:47 -05:00
Dennis Lloyd Jr
3f47b3643a Updated gradle to version 2.4 2015-06-29 15:34:06 -04:00
paq
24cf98580c node.js 0.12.5 2015-06-29 12:11:58 +09:00
guillermooo
fa8f6ddd57 update dart stable 2015-06-27 20:24:04 +02:00
Roy Ivy III
4fe9d57ed8 FIX portable perl to allow normal access to user's home directory
* disable the File::HomeDir override performed by Portable.pm
  - achieved by removing the HomeDir section from "portable.perl" via post_install
  - ref: https://rt.cpan.org/Ticket/Display.html?id=105395 @@ https://archive.is/q7BYq

.# DISCUSSION

Strawberry Portable Perl is written to be usable from a non-privileged
storage location, such as a plug-in USB drive. So, it is designed to be
usable without access to the host filesystem beyond it's own directory.

As part of the machinations making this possible, Portable.pm overrides
File::HomeDir to return resultant paths which are within the perl installation
directory (specifically, "<INSTALL_DIR>/data"). Obviously, this obscures the
user's true home directory and can be very inconvenient for common perl
scripts which depend on access to data within the user's home directory
(i.e., reading ".netrc").

This override/redirection is unnecessary for an installation by the user
into the usual host filesystem (such as is done via `scoop`).  Such an
install has user level privileges and will be able to access any
user-accessible portion of the file system.
2015-06-25 20:02:45 -05:00
Luke Sampson
9d0367a3bc Merge pull request #401 from sakai135/patch-14
docker 1.7.0
2015-06-23 08:19:40 +10:00
Keiichi Shimamura
8909616db8 docker 1.7.0 2015-06-22 18:16:51 -04:00
Keiichi Shimamura
704cd14cec docker-machine 0.3.0 2015-06-22 14:45:20 -04:00
paq
c65a3bbb30 update haxe manifest 2015-06-21 17:29:46 +09:00
guillermooo
0b490fbc97 update rust manifest 2015-06-20 01:38:24 +02:00
chidea
7d2f3b76f8 Let PyWin32 extension installer find this python
OK, this is more than two lines, but by almost the same, it's fixing the same issue with it.
2015-06-17 03:03:31 +09:00
chidea
04c0ac9d8e Let PyWin32 extension installer find this python
Not sure the correctness of it but this two lines will fix the issue that pywin32 extension installer being unable to find python installed with scoop.
pywin32 installer : http://sourceforge.net/projects/pywin32/files/pywin32/Build%20219/
Reference : http://tech.valgog.com/2010/01/after-installing-64-bit-windows-7-at.html
2015-06-17 02:40:10 +09:00