This repository has been archived by the owner on Sep 29, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 374
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Troy Powell
committed
Aug 4, 2014
1 parent
cbe8de8
commit 023e48f
Showing
43 changed files
with
966 additions
and
454 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,2 @@ | ||
echo XXX TODO | ||
exit 1 | ||
echo XXX TODO | ||
exit 1 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
|
||
mkdir %SCRIPTS% | ||
copy 7za.exe %SCRIPTS% | ||
copy 7-zip.chm %SCRIPTS% | ||
|
||
rem vim:set ts=8 sw=4 sts=4 tw=78 et: | ||
|
||
mkdir %SCRIPTS% | ||
copy 7za.exe %SCRIPTS% | ||
copy 7-zip.chm %SCRIPTS% | ||
|
||
rem vim:set ts=8 sw=4 sts=4 tw=78 et: |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
"%PYTHON%" setup.py install | ||
if errorlevel 1 exit 1 | ||
|
||
:: Add more build steps here, if they are necessary. | ||
|
||
:: See | ||
:: http://docs.continuum.io/conda/build.html | ||
:: for a list of environment variables that are set during the build process. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
#!/bin/bash | ||
|
||
$PYTHON setup.py install | ||
|
||
# Add more build steps here, if they are necessary. | ||
|
||
# See | ||
# http://docs.continuum.io/conda/build.html | ||
# for a list of environment variables that are set during the build process. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,65 @@ | ||
package: | ||
name: ansi2html | ||
version: !!str 1.0.6 | ||
|
||
source: | ||
fn: ansi2html-1.0.6.tar.gz | ||
url: https://pypi.python.org/packages/source/a/ansi2html/ansi2html-1.0.6.tar.gz | ||
md5: df764afaa8e1167d7e7747ea59705e49 | ||
# patches: | ||
# List any patch files here | ||
# - fix.patch | ||
|
||
build: | ||
#preserve_egg_dir: True | ||
entry_points: | ||
# Put any entry points (scripts to be generated automatically) here. The | ||
# syntax is module:function. For example | ||
# | ||
# - ansi2html = ansi2html:main | ||
# | ||
# Would create an entry point called ansi2html that calls ansi2html.main() | ||
|
||
- ansi2html=ansi2html.converter:main | ||
|
||
# If this is a new build for the same version, increment the build | ||
# number. If you do not include this key, it defaults to 0. | ||
# number: 1 | ||
|
||
requirements: | ||
build: | ||
- python | ||
- setuptools | ||
- six | ||
|
||
run: | ||
- python | ||
- setuptools | ||
- six | ||
|
||
test: | ||
# Python imports | ||
imports: | ||
- ansi2html | ||
|
||
commands: | ||
# You can put test commands to be run here. Use this to test that the | ||
# entry points work. | ||
|
||
- ansi2html --help | ||
|
||
# You can also put a file called run_test.py in the recipe that will be run | ||
# at test time. | ||
|
||
# requires: | ||
# Put any additional test requirements here. For example | ||
# - nose | ||
|
||
about: | ||
home: http://github.com/ralphbean/ansi2html/ | ||
license: GNU General Public License (GPL) | ||
summary: 'Convert text with ANSI color codes to HTML' | ||
|
||
# See | ||
# http://docs.continuum.io/conda/build.html for | ||
# more information about meta.yaml |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,24 +1,24 @@ | ||
|
||
if "%ARCH%"=="32" ( | ||
set TARGET="Release|Win32" | ||
set BUILD_PREFIX=apr\Release | ||
) else ( | ||
set TARGET="Release|x64" | ||
set BUILD_PREFIX=apr\x64\Release | ||
) | ||
|
||
devenv apr-util\aprutil.sln /build %TARGET% /project libapr | ||
if errorlevel 1 exit 1 | ||
|
||
copy %BUILD_PREFIX%\libapr-1.dll %LIBRARY_BIN%\ | ||
copy %BUILD_PREFIX%\libapr-1.pdb %LIBRARY_BIN%\ | ||
copy %BUILD_PREFIX%\libapr-1.lib %LIBRARY_LIB%\ | ||
|
||
xcopy apr\include\*.h %LIBRARY_INC%\ | ||
|
||
mkdir %LIBRARY_INC%\arch\win32 | ||
|
||
copy apr\include\arch\apr_private_common.h %LIBRARY_INC%\arch\ | ||
xcopy apr\include\arch\win32\*.h %LIBRARY_INC%\arch\win32\ | ||
|
||
rem vim:set ts=8 sw=4 sts=4 tw=78 et: | ||
|
||
if "%ARCH%"=="32" ( | ||
set TARGET="Release|Win32" | ||
set BUILD_PREFIX=apr\Release | ||
) else ( | ||
set TARGET="Release|x64" | ||
set BUILD_PREFIX=apr\x64\Release | ||
) | ||
|
||
devenv apr-util\aprutil.sln /build %TARGET% /project libapr | ||
if errorlevel 1 exit 1 | ||
|
||
copy %BUILD_PREFIX%\libapr-1.dll %LIBRARY_BIN%\ | ||
copy %BUILD_PREFIX%\libapr-1.pdb %LIBRARY_BIN%\ | ||
copy %BUILD_PREFIX%\libapr-1.lib %LIBRARY_LIB%\ | ||
|
||
xcopy apr\include\*.h %LIBRARY_INC%\ | ||
|
||
mkdir %LIBRARY_INC%\arch\win32 | ||
|
||
copy apr\include\arch\apr_private_common.h %LIBRARY_INC%\arch\ | ||
xcopy apr\include\arch\win32\*.h %LIBRARY_INC%\arch\win32\ | ||
|
||
rem vim:set ts=8 sw=4 sts=4 tw=78 et: |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
"%PYTHON%" setup.py install | ||
if errorlevel 1 exit 1 | ||
|
||
:: Add more build steps here, if they are necessary. | ||
|
||
:: See | ||
:: http://docs.continuum.io/conda/build.html | ||
:: for a list of environment variables that are set during the build process. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
#!/bin/bash | ||
|
||
$PYTHON setup.py install | ||
|
||
# Add more build steps here, if they are necessary. | ||
|
||
# See | ||
# http://docs.continuum.io/conda/build.html | ||
# for a list of environment variables that are set during the build process. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,61 @@ | ||
package: | ||
name: backports.ssl_match_hostname | ||
version: !!str 3.4.0.2 | ||
|
||
source: | ||
fn: backports.ssl_match_hostname-3.4.0.2.tar.gz | ||
url: https://pypi.python.org/packages/source/b/backports.ssl_match_hostname/backports.ssl_match_hostname-3.4.0.2.tar.gz | ||
md5: 788214f20214c64631f0859dc79f23c6 | ||
# patches: | ||
# List any patch files here | ||
# - fix.patch | ||
|
||
# build: | ||
#preserve_egg_dir: True | ||
#entry_points: | ||
# Put any entry points (scripts to be generated automatically) here. The | ||
# syntax is module:function. For example | ||
# | ||
# - backports.ssl_match_hostname = backports.ssl_match_hostname:main | ||
# | ||
# Would create an entry point called backports.ssl_match_hostname that calls backports.ssl_match_hostname.main() | ||
|
||
|
||
# If this is a new build for the same version, increment the build | ||
# number. If you do not include this key, it defaults to 0. | ||
# number: 1 | ||
|
||
requirements: | ||
build: | ||
- python | ||
- setuptools | ||
|
||
run: | ||
- python | ||
|
||
test: | ||
# Python imports | ||
imports: | ||
- backports | ||
- backports.ssl_match_hostname | ||
|
||
#commands: | ||
# You can put test commands to be run here. Use this to test that the | ||
# entry points work. | ||
|
||
|
||
# You can also put a file called run_test.py in the recipe that will be run | ||
# at test time. | ||
|
||
# requires: | ||
# Put any additional test requirements here. For example | ||
# - nose | ||
|
||
about: | ||
home: http://bitbucket.org/brandon/backports.ssl_match_hostname | ||
license: Python Software Foundation License | ||
summary: 'The ssl.match_hostname() function from Python 3.4' | ||
|
||
# See | ||
# http://docs.continuum.io/conda/build.html for | ||
# more information about meta.yaml |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,24 +1,24 @@ | ||
|
||
if "%ARCH%"=="32" ( | ||
set TARGET="Release|Win32" | ||
set BUILD_PREFIX=apr\Release | ||
) else ( | ||
set TARGET="Release|x64" | ||
set BUILD_PREFIX=apr\x64\Release | ||
) | ||
|
||
devenv apr-util\aprutil.sln /build %TARGET% /project libapr | ||
if errorlevel 1 exit 1 | ||
|
||
copy %BUILD_PREFIX%\libapr-1.dll %LIBRARY_BIN%\ | ||
copy %BUILD_PREFIX%\libapr-1.pdb %LIBRARY_BIN%\ | ||
copy %BUILD_PREFIX%\libapr-1.lib %LIBRARY_LIB%\ | ||
|
||
xcopy apr\include\*.h %LIBRARY_INC%\ | ||
|
||
mkdir %LIBRARY_INC%\arch\win32 | ||
|
||
copy apr\include\arch\apr_private_common.h %LIBRARY_INC%\arch\ | ||
xcopy apr\include\arch\win32\*.h %LIBRARY_INC%\arch\win32\ | ||
|
||
rem vim:set ts=8 sw=4 sts=4 tw=78 et: | ||
|
||
if "%ARCH%"=="32" ( | ||
set TARGET="Release|Win32" | ||
set BUILD_PREFIX=apr\Release | ||
) else ( | ||
set TARGET="Release|x64" | ||
set BUILD_PREFIX=apr\x64\Release | ||
) | ||
|
||
devenv apr-util\aprutil.sln /build %TARGET% /project libapr | ||
if errorlevel 1 exit 1 | ||
|
||
copy %BUILD_PREFIX%\libapr-1.dll %LIBRARY_BIN%\ | ||
copy %BUILD_PREFIX%\libapr-1.pdb %LIBRARY_BIN%\ | ||
copy %BUILD_PREFIX%\libapr-1.lib %LIBRARY_LIB%\ | ||
|
||
xcopy apr\include\*.h %LIBRARY_INC%\ | ||
|
||
mkdir %LIBRARY_INC%\arch\win32 | ||
|
||
copy apr\include\arch\apr_private_common.h %LIBRARY_INC%\arch\ | ||
xcopy apr\include\arch\win32\*.h %LIBRARY_INC%\arch\win32\ | ||
|
||
rem vim:set ts=8 sw=4 sts=4 tw=78 et: |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,8 @@ | ||
|
||
mkdir "%SCRIPTS%" | ||
7za x "-o%SCRIPTS%" *.7z | ||
copy "%RECIPE_DIR%\cmder.bat" "%SCRIPTS%\" | ||
copy "%RECIPE_DIR%\cmder.ico" "%MENU_DIR%" | ||
|
||
|
||
rem vim:set ts=8 sw=4 sts=4 tw=78 et: | ||
|
||
mkdir "%SCRIPTS%" | ||
7za x "-o%SCRIPTS%" *.7z | ||
copy "%RECIPE_DIR%\cmder.bat" "%SCRIPTS%\" | ||
copy "%RECIPE_DIR%\cmder.ico" "%MENU_DIR%" | ||
|
||
|
||
rem vim:set ts=8 sw=4 sts=4 tw=78 et: |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,10 @@ | ||
|
||
mkdir %SCRIPTS% | ||
|
||
set DN=%SCRIPTS%\.datanitro-trial | ||
|
||
copy %RECIPE_DIR%\license.txt %DN%-license.txt | ||
|
||
copy DataNitroAnacondaTrialSetup.exe %DN%-setup.exe | ||
|
||
rem vim:set ts=8 sw=4 sts=4 tw=78 et: | ||
|
||
mkdir %SCRIPTS% | ||
|
||
set DN=%SCRIPTS%\.datanitro-trial | ||
|
||
copy %RECIPE_DIR%\license.txt %DN%-license.txt | ||
|
||
copy DataNitroAnacondaTrialSetup.exe %DN%-setup.exe | ||
|
||
rem vim:set ts=8 sw=4 sts=4 tw=78 et: |
Oops, something went wrong.