├── README.md
├── coapp
├── tools
│ └── chocolateyInstall.ps1
└── coapp.nuspec
├── azpazeta
├── tools
│ └── chocolateyInstall.ps1
└── azpazeta.nuspec
├── ceed
├── tools
│ └── chocolateyInstall.ps1
└── ceed.nuspec
├── scummvm
├── tools
│ └── chocolateyInstall.ps1
└── scummvm.nuspec
├── residualvm
├── tools
│ └── chocolateyInstall.ps1
└── residualvm.nuspec
├── update.ps1
├── zeal
├── tools
│ └── chocolateyInstall.ps1
└── zeal.nuspec
├── LICENSE
└── .gitignore
/README.md:
--------------------------------------------------------------------------------
1 | chocolatey-packages
2 | ===================
3 |
4 | Chocolatey Packages
5 |
--------------------------------------------------------------------------------
/coapp/tools/chocolateyInstall.ps1:
--------------------------------------------------------------------------------
1 | #CoApp
2 | $url = "http://coapp.org/files/Development.CoApp.Tools.Powershell.msi"
3 |
4 | Install-ChocolateyPackage "CoApp" "msi" "/quiet" "$url"
5 |
--------------------------------------------------------------------------------
/azpazeta/tools/chocolateyInstall.ps1:
--------------------------------------------------------------------------------
1 | #Install Azpazeta
2 | $url = "http://launchpad.net/azpazeta/2.0-juno/2.0.75-final/+download/AZPINSTALL.msi"
3 |
4 | Install-ChocolateyPackage "azpazeta" "msi" "/quiet" "$url"
--------------------------------------------------------------------------------
/ceed/tools/chocolateyInstall.ps1:
--------------------------------------------------------------------------------
1 | # CEED
2 | $url = "http://downloads.sourceforge.net/project/crayzedsgui/CEED/0.8/ceed-0.8.0-win32-installer.exe"
3 |
4 | Install-ChocolateyPackage "ceed" "exe" "/VERYSILENT" "$url"
--------------------------------------------------------------------------------
/scummvm/tools/chocolateyInstall.ps1:
--------------------------------------------------------------------------------
1 | #Install ScummVM - INNO SETUP
2 | $url = "http://prdownloads.sourceforge.net/scummvm/scummvm-1.7.0-win32.exe"
3 |
4 | Install-ChocolateyPackage "scummvm" "exe" "/VERYSILENT" "$url"
--------------------------------------------------------------------------------
/residualvm/tools/chocolateyInstall.ps1:
--------------------------------------------------------------------------------
1 | #Install ResidualVM - INNO SETUP
2 | $url = "http://prdownloads.sourceforge.net/residualvm/residualvm-0.2.1-win32.exe"
3 |
4 | Install-ChocolateyPackage "residualvm" "exe" "/VERYSILENT" "$url"
--------------------------------------------------------------------------------
/update.ps1:
--------------------------------------------------------------------------------
1 | #Update ALL Chocolatey Recipes
2 | #choco update all
3 | #choco install nuget.commandline
4 | #nuget SetApiKey [API_KEY_HERE] -source http://chocolatey.org/
5 | #choco install PACKAGE -source '%cd%' -force
6 | choco pack azpazeta/azpazeta.nuspec
7 | choco push azpazeta*.nupkg
--------------------------------------------------------------------------------
/zeal/tools/chocolateyInstall.ps1:
--------------------------------------------------------------------------------
1 | $url= "https://bitbucket.org/jerzykozera/zeal-win32-binary-downloads/downloads/zeal-20140620.zip"
2 |
3 | $is64bit = Get-ProcessorBits 64
4 | if ($is64bit) {
5 | $zealdir = "${Env:ProgramFiles(x86)}"
6 | }else{
7 | $zealdir = "${Env:ProgramFiles}"
8 | }
9 | Install-ChocolateyZipPackage "zeal" $url "$zealdir"
10 | $startMenu = $([System.Environment]::GetFolderPath([System.Environment+SpecialFolder]::Programs))
11 | $zealStartMenuGroup = Join-Path $startMenu "Zeal"
12 | New-Item $zealStartMenuGroup -type directory -force
13 | $startMenuLink = Join-Path $zealStartMenuGroup "zeal.lnk"
14 | Install-ChocolateyShortcut -shortcutFilePath $startMenuLink -targetPath "$zealdir\zeal\zeal.exe"
--------------------------------------------------------------------------------
/zeal/zeal.nuspec:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | zeal
5 | Zeal
6 | 20140620
7 | Jerzy Kozera
8 | Adrián Arroyo
9 | zeal
10 | Zeal is a simple offline API documentation browser inspired by Dash (OS X app), available for Linux and Windows.
11 | http://zealdocs.org/
12 | dev development dash docs documentation offline browser api
13 |
14 | https://github.com/jkozera/zeal/blob/master/COPYING
15 | false
16 |
17 |
18 |
19 |
20 |
21 | See http://zealdocs.org/
22 |
23 |
24 |
25 |
26 |
27 |
--------------------------------------------------------------------------------
/ceed/ceed.nuspec:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | ceed
5 | CEED
6 | 0.8.0
7 | CEGUI
8 | Adrián Arroyo
9 | ceed
10 | CEGUI Unified Editor
11 | http://cegui.org.uk/
12 | dev development skin skinning editor cegui
13 |
14 | https://bitbucket.org/cegui/ceed/src/b42617acfbc293c2b21b48c90c2fb244fee0828d/LICENSE?at=default
15 | false
16 | https://bitbucket-assetroot.s3.amazonaws.com/c/photos/2013/Dec/29/ceed-logo-1279420685-10_avatar.png
17 |
18 |
19 |
20 |
21 | See http://cegui.org.uk
22 |
23 |
24 |
25 |
26 |
27 |
--------------------------------------------------------------------------------
/azpazeta/azpazeta.nuspec:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | azpazeta
5 | Azpazeta
6 | 2.0.75
7 | Adrián Arroyo
8 | Adrián Arroyo
9 | azpazeta
10 | Azpazeta is the strategy-economic game where you can play thousands of adventures with the custom maps.
11 | https://adrianarroyocalle.github.io/azpazeta-promotional-website
12 | game games 2d strategy maps
13 |
14 | http://www.gnu.org/licenses/gpl-2.0.html
15 | false
16 | http://adrianarroyocalle.github.io/azpazeta-promotional-website/images/azpazeta_svg.svg
17 |
18 |
19 |
20 |
21 | 2.0.75 - First release on Chocolatey
22 |
23 |
24 |
25 |
26 |
27 |
--------------------------------------------------------------------------------
/LICENSE:
--------------------------------------------------------------------------------
1 | This is free and unencumbered software released into the public domain.
2 |
3 | Anyone is free to copy, modify, publish, use, compile, sell, or
4 | distribute this software, either in source code form or as a compiled
5 | binary, for any purpose, commercial or non-commercial, and by any
6 | means.
7 |
8 | In jurisdictions that recognize copyright laws, the author or authors
9 | of this software dedicate any and all copyright interest in the
10 | software to the public domain. We make this dedication for the benefit
11 | of the public at large and to the detriment of our heirs and
12 | successors. We intend this dedication to be an overt act of
13 | relinquishment in perpetuity of all present and future rights to this
14 | software under copyright law.
15 |
16 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
17 | EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
18 | MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
19 | IN NO EVENT SHALL THE AUTHORS BE LIABLE FOR ANY CLAIM, DAMAGES OR
20 | OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE,
21 | ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
22 | OTHER DEALINGS IN THE SOFTWARE.
23 |
24 | For more information, please refer to
25 |
--------------------------------------------------------------------------------
/scummvm/scummvm.nuspec:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | scummvm
5 | ScummVM
6 | 1.7.0
7 | ScummVM Team
8 | Adrián Arroyo
9 | scummvm
10 | ScummVM is a program which allows you to run certain classic graphical point-and-click adventure games, provided you already have their data files. The clever part about this: ScummVM just replaces the executables shipped with the games, allowing you to play them on systems for which they were never designed!
11 | http://scummvm.org/
12 | game games emulator lucasarts adventure scumm
13 |
14 | http://www.gnu.org/licenses/gpl-2.0.html
15 | false
16 | http://scummvm.org/images/scummvm_logo.jpg
17 |
18 |
19 |
20 |
21 | 1.7.0 - See http://scummvm.org/news/20140721/
22 |
23 |
24 |
25 |
26 |
27 |
--------------------------------------------------------------------------------
/coapp/coapp.nuspec:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | coapp
5 | CoApp
6 | 2.4.493.0-dev
7 | CoApp Contributors
8 | Adrián Arroyo
9 | coapp
10 | CoApp is a set of open source tools for building C/C++ NuGet packages for Windows. The goal of the CoApp project is to create a community of developers dedicated to creating a set of tools and processes that enable other open source developers to create and maintain their open source products with Windows as a primary build target.
11 | http://coapp.org/
12 | dev development nuget coapp native cpp c package
13 |
14 | https://github.com/coapp/coapp.powershell
15 | false
16 | http://coapp.org/images/logo-small_32x32.png
17 |
18 |
19 |
20 |
21 | See http://coapp.org/pages/releases.html
22 |
23 |
24 |
25 |
26 |
27 |
--------------------------------------------------------------------------------
/residualvm/residualvm.nuspec:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | residualvm
5 | ResidualVM
6 | 0.2.1
7 | ResidualVM Team
8 | Adrián Arroyo
9 | residualvm
10 | ResidualVM is a cross-platform 3D game interpreter which allows you to play LucasArts' Lua-based 3D adventures: Grim Fandango and Escape from Monkey Island, provided you already have their data files. ResidualVM just replaces the executables shipped with the games, allowing you to play them on systems for which they were never designed!
11 | http://residualvm.org/
12 | game games 3d emulator lucasarts adventure grime myst
13 |
14 | http://www.gnu.org/licenses/gpl-2.0.html
15 | false
16 | http://residualvm.org/images/residual_logo.jpg
17 |
18 |
19 |
20 |
21 | 0.2.0 - See http://residualvm.org/news/20141231/
22 | 0.1.1 - See http://residualvm.org/news/20130210/
23 |
24 |
25 |
26 |
27 |
28 |
--------------------------------------------------------------------------------
/.gitignore:
--------------------------------------------------------------------------------
1 | #################
2 | ## Eclipse
3 | #################
4 |
5 | *.pydevproject
6 | .project
7 | .metadata
8 | bin/
9 | tmp/
10 | *.tmp
11 | *.bak
12 | *.swp
13 | *~.nib
14 | local.properties
15 | .classpath
16 | .settings/
17 | .loadpath
18 |
19 | # External tool builders
20 | .externalToolBuilders/
21 |
22 | # Locally stored "Eclipse launch configurations"
23 | *.launch
24 |
25 | # CDT-specific
26 | .cproject
27 |
28 | # PDT-specific
29 | .buildpath
30 |
31 |
32 | #################
33 | ## Visual Studio
34 | #################
35 |
36 | ## Ignore Visual Studio temporary files, build results, and
37 | ## files generated by popular Visual Studio add-ons.
38 |
39 | # User-specific files
40 | *.suo
41 | *.user
42 | *.sln.docstates
43 |
44 | # Build results
45 |
46 | [Dd]ebug/
47 | [Rr]elease/
48 | x64/
49 | build/
50 | [Bb]in/
51 | [Oo]bj/
52 |
53 | # MSTest test Results
54 | [Tt]est[Rr]esult*/
55 | [Bb]uild[Ll]og.*
56 |
57 | *_i.c
58 | *_p.c
59 | *.ilk
60 | *.meta
61 | *.obj
62 | *.pch
63 | *.pdb
64 | *.pgc
65 | *.pgd
66 | *.rsp
67 | *.sbr
68 | *.tlb
69 | *.tli
70 | *.tlh
71 | *.tmp
72 | *.tmp_proj
73 | *.log
74 | *.vspscc
75 | *.vssscc
76 | .builds
77 | *.pidb
78 | *.log
79 | *.scc
80 |
81 | # Visual C++ cache files
82 | ipch/
83 | *.aps
84 | *.ncb
85 | *.opensdf
86 | *.sdf
87 | *.cachefile
88 |
89 | # Visual Studio profiler
90 | *.psess
91 | *.vsp
92 | *.vspx
93 |
94 | # Guidance Automation Toolkit
95 | *.gpState
96 |
97 | # ReSharper is a .NET coding add-in
98 | _ReSharper*/
99 | *.[Rr]e[Ss]harper
100 |
101 | # TeamCity is a build add-in
102 | _TeamCity*
103 |
104 | # DotCover is a Code Coverage Tool
105 | *.dotCover
106 |
107 | # NCrunch
108 | *.ncrunch*
109 | .*crunch*.local.xml
110 |
111 | # Installshield output folder
112 | [Ee]xpress/
113 |
114 | # DocProject is a documentation generator add-in
115 | DocProject/buildhelp/
116 | DocProject/Help/*.HxT
117 | DocProject/Help/*.HxC
118 | DocProject/Help/*.hhc
119 | DocProject/Help/*.hhk
120 | DocProject/Help/*.hhp
121 | DocProject/Help/Html2
122 | DocProject/Help/html
123 |
124 | # Click-Once directory
125 | publish/
126 |
127 | # Publish Web Output
128 | *.Publish.xml
129 | *.pubxml
130 |
131 | # NuGet Packages Directory
132 | ## TODO: If you have NuGet Package Restore enabled, uncomment the next line
133 | #packages/
134 |
135 | # Windows Azure Build Output
136 | csx
137 | *.build.csdef
138 |
139 | # Windows Store app package directory
140 | AppPackages/
141 |
142 | # Others
143 | sql/
144 | *.Cache
145 | ClientBin/
146 | [Ss]tyle[Cc]op.*
147 | ~$*
148 | *~
149 | *.dbmdl
150 | *.[Pp]ublish.xml
151 | *.pfx
152 | *.publishsettings
153 |
154 | # RIA/Silverlight projects
155 | Generated_Code/
156 |
157 | # Backup & report files from converting an old project file to a newer
158 | # Visual Studio version. Backup files are not needed, because we have git ;-)
159 | _UpgradeReport_Files/
160 | Backup*/
161 | UpgradeLog*.XML
162 | UpgradeLog*.htm
163 |
164 | # SQL Server files
165 | App_Data/*.mdf
166 | App_Data/*.ldf
167 |
168 | #############
169 | ## Windows detritus
170 | #############
171 |
172 | # Windows image file caches
173 | Thumbs.db
174 | ehthumbs.db
175 |
176 | # Folder config file
177 | Desktop.ini
178 |
179 | # Recycle Bin used on file shares
180 | $RECYCLE.BIN/
181 |
182 | # Mac crap
183 | .DS_Store
184 |
185 |
186 | #############
187 | ## Python
188 | #############
189 |
190 | *.py[cod]
191 |
192 | # Packages
193 | *.egg
194 | *.egg-info
195 | dist/
196 | build/
197 | eggs/
198 | parts/
199 | var/
200 | sdist/
201 | develop-eggs/
202 | .installed.cfg
203 |
204 | # Installer logs
205 | pip-log.txt
206 |
207 | # Unit test / coverage reports
208 | .coverage
209 | .tox
210 |
211 | #Translations
212 | *.mo
213 |
214 | #Mr Developer
215 | .mr.developer.cfg
216 |
217 | #NuGet
218 | *.nupkg
219 |
--------------------------------------------------------------------------------