Skip to content
This repository has been archived by the owner on Sep 29, 2022. It is now read-only.

Commit

Permalink
adding additional package recipes
Browse files Browse the repository at this point in the history
  • Loading branch information
Troy Powell committed Aug 4, 2014
1 parent cbe8de8 commit 023e48f
Show file tree
Hide file tree
Showing 43 changed files with 966 additions and 454 deletions.
4 changes: 2 additions & 2 deletions 3proxy/bld.bat
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
echo XXX TODO
exit 1
echo XXX TODO
exit 1
12 changes: 6 additions & 6 deletions 7za/bld.bat
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:
8 changes: 8 additions & 0 deletions ansi2html/bld.bat
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.
9 changes: 9 additions & 0 deletions ansi2html/build.sh
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.
65 changes: 65 additions & 0 deletions ansi2html/meta.yaml
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
48 changes: 24 additions & 24 deletions apr/bld.bat
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:
8 changes: 8 additions & 0 deletions backports.ssl_match_hostname/bld.bat
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.
9 changes: 9 additions & 0 deletions backports.ssl_match_hostname/build.sh
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.
61 changes: 61 additions & 0 deletions backports.ssl_match_hostname/meta.yaml
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
48 changes: 24 additions & 24 deletions bloomd/bld.bat
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:
16 changes: 8 additions & 8 deletions cmder-git/bld.bat
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:
20 changes: 10 additions & 10 deletions datanitro-trial/bld.bat
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:
Loading

0 comments on commit 023e48f

Please sign in to comment.