Skip to content

Commit

Permalink
appengine-go 1.8.3
Browse files Browse the repository at this point in the history
  • Loading branch information
lukesampson committed Aug 23, 2013
1 parent 48f5ede commit f6a130e
Show file tree
Hide file tree
Showing 2 changed files with 43 additions and 0 deletions.
36 changes: 36 additions & 0 deletions appengine-go.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,36 @@
{
"homepage": "https://developers.google.com/appengine/",
"version": "1.8.3",
"architecture": {
"64bit": {
"url": [
"http://googleappengine.googlecode.com/files/go_appengine_sdk_windows_amd64-1.8.3.zip",
"https://raw.github.com/lukesampson/scoop-extras/master/scripts/pyshim.ps1"
],
"hash": [ "sha1:4de3856ca5ff1318d7c58ea399f8fa25a3ced885" ]
},
"32bit": {
"url": [
"http://googleappengine.googlecode.com/files/go_appengine_sdk_windows_386-1.8.3.zip",
"https://raw.github.com/lukesampson/scoop-extras/master/scripts/pyshim.ps1"
],
"hash": [ "sha1:aeba549840f3ea81da892279b8039463826915e8" ]
}
},
"extract_dir": "go_appengine",
"installer": {
"_comment": "pyshim creates a .ps1 script for each .py file",
"file": "pyshim.ps1",
"args": [ "$dir" ]
},
"bin": [
"api_server.ps1",
"appcfg.ps1",
"backends_conversion.ps1",
"bulkloader.ps1",
"bulkload_client.ps1",
"dev_appserver.ps1",
"download_appstats.ps1",
"endpointscfg.ps1"
]
}
7 changes: 7 additions & 0 deletions scripts/pyshim.ps1
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
param($dir)

ls "$dir" | ? name -match '^[^_].*?\.py$' | % {
$n = $_.name -replace '\.py$', ''
$ps = "$dir\$n.ps1"
"& python `"`$psscriptroot\$n.py`" @args" > $ps
}

0 comments on commit f6a130e

Please sign in to comment.