diff options
41 files changed, 1006 insertions, 0 deletions
diff --git a/django/build.sh b/django/build.sh new file mode 100644 index 0000000..5a5aeeb --- /dev/null +++ b/django/build.sh @@ -0,0 +1 @@ +$PYTHON setup.py install diff --git a/django/meta.yaml b/django/meta.yaml new file mode 100644 index 0000000..64baae1 --- /dev/null +++ b/django/meta.yaml @@ -0,0 +1,43 @@ +{% set name = 'django' %} +{% set version = '1.8.14' %} +{% set build = '0' %} + +package: + name: {{ name }} + version: {{ version }} + +source: + git_tag: {{ version }} + git_url: https://github.com/{{ name }}/{{ name }}.git + +build: + entry_points: + - django-admin = django.core.management:execute_from_command_line + - django-admin.py = django.core.management:execute_from_command_line + +requirements: + build: + - python + - setuptools + run: + - python + +test: + commands: + - django-admin --version + imports: + - django + - django.http + +about: + home: http://www.djangoproject.com/ + license: BSD + license_file: LICENSE + summary: Web framework that encourages rapid development + description: | + Django is a high-level Python Web framework that encourages rapid + development and clean, pragmatic design. Built by experienced developers, it + takes care of much of the hassle of Web development, so you can focus on + writing your app without needing to reinvent the wheel. + doc_url: https://docs.djangoproject.com/en/1.8/ + dev_url: https://github.com/{{ name }} diff --git a/epydoc/bld.bat b/epydoc/bld.bat new file mode 100644 index 0000000..9146a4b --- /dev/null +++ b/epydoc/bld.bat @@ -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. diff --git a/epydoc/build.sh b/epydoc/build.sh new file mode 100644 index 0000000..3f50b74 --- /dev/null +++ b/epydoc/build.sh @@ -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. diff --git a/epydoc/meta.yaml b/epydoc/meta.yaml new file mode 100644 index 0000000..b257878 --- /dev/null +++ b/epydoc/meta.yaml @@ -0,0 +1,64 @@ +package: + name: epydoc + version: "3.0.1" + +source: + fn: epydoc-3.0.1.tar.gz + url: https://pypi.python.org/packages/60/a7/666cb415b0f5d8d5c99f145e03a6005220090d7b77637871ac52c2cabcba/epydoc-3.0.1.tar.gz + md5: 36407974bd5da2af00bf90ca27feeb44 +# patches: + # List any patch files here + # - fix.patch + +# build: + # noarch_python: True + # preserve_egg_dir: True + # entry_points: + # Put any entry points (scripts to be generated automatically) here. The + # syntax is module:function. For example + # + # - epydoc = epydoc:main + # + # Would create an entry point called epydoc that calls epydoc.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 + + run: + - python + +test: + # Python imports + imports: + - epydoc + - epydoc.docwriter + - epydoc.markup + - epydoc.test + + # 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://epydoc.sourceforge.net + license: MIT License + summary: "Edward Loper's API Documentation Generation Tool" + license_family: MIT + +# See +# http://docs.continuum.io/conda/build.html for +# more information about meta.yaml diff --git a/linecache2/bld.bat b/linecache2/bld.bat new file mode 100644 index 0000000..9146a4b --- /dev/null +++ b/linecache2/bld.bat @@ -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. diff --git a/linecache2/build.sh b/linecache2/build.sh new file mode 100644 index 0000000..3f50b74 --- /dev/null +++ b/linecache2/build.sh @@ -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. diff --git a/linecache2/meta.yaml b/linecache2/meta.yaml new file mode 100644 index 0000000..b80a44c --- /dev/null +++ b/linecache2/meta.yaml @@ -0,0 +1,62 @@ +package: + name: linecache2 + version: "1.0.0" + +source: + fn: linecache2-1.0.0.tar.gz + url: https://pypi.python.org/packages/44/b0/963c352372c242f9e40db02bbc6a39ae51bde15dddee8523fe4aca94a97e/linecache2-1.0.0.tar.gz + md5: 7b25d0289ec36bff1f9e63c4329ce65c +# patches: + # List any patch files here + # - fix.patch + +# build: + # noarch_python: True + # preserve_egg_dir: True + # entry_points: + # Put any entry points (scripts to be generated automatically) here. The + # syntax is module:function. For example + # + # - linecache2 = linecache2:main + # + # Would create an entry point called linecache2 that calls linecache2.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: + - pbr + - python + - setuptools + + run: + - python + +# test: + # Python imports + # imports: + + # 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: The package home page + license: Python Software Foundation License + summary: 'Backports of the linecache module' + license_family: Proprietary + +# See +# http://docs.continuum.io/conda/build.html for +# more information about meta.yaml diff --git a/mechanize/bld.bat b/mechanize/bld.bat new file mode 100644 index 0000000..9146a4b --- /dev/null +++ b/mechanize/bld.bat @@ -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. diff --git a/mechanize/build.sh b/mechanize/build.sh new file mode 100644 index 0000000..3f50b74 --- /dev/null +++ b/mechanize/build.sh @@ -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. diff --git a/mechanize/meta.yaml b/mechanize/meta.yaml new file mode 100644 index 0000000..7666b4d --- /dev/null +++ b/mechanize/meta.yaml @@ -0,0 +1,62 @@ +package: + name: mechanize + version: "0.2.5" + +source: + fn: mechanize-0.2.5.tar.gz + url: https://pypi.python.org/packages/32/bc/d5b44fe4a3b5079f035240a7c76bd0c71a60c6082f4bfcb1c7585604aa35/mechanize-0.2.5.tar.gz + md5: 32657f139fc2fb75bcf193b63b8c60b2 +# patches: + # List any patch files here + # - fix.patch + +# build: + # noarch_python: True + # preserve_egg_dir: True + # entry_points: + # Put any entry points (scripts to be generated automatically) here. The + # syntax is module:function. For example + # + # - mechanize = mechanize:main + # + # Would create an entry point called mechanize that calls mechanize.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: + - mechanize + + # 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://wwwsearch.sourceforge.net/mechanize/ + license: BSD License or Zope Public License + summary: 'Stateful programmatic web browsing.' + license_family: Public-Domain + +# See +# http://docs.continuum.io/conda/build.html for +# more information about meta.yaml diff --git a/parsley/bld.bat b/parsley/bld.bat new file mode 100644 index 0000000..9146a4b --- /dev/null +++ b/parsley/bld.bat @@ -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. diff --git a/parsley/build.sh b/parsley/build.sh new file mode 100644 index 0000000..3f50b74 --- /dev/null +++ b/parsley/build.sh @@ -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. diff --git a/parsley/meta.yaml b/parsley/meta.yaml new file mode 100644 index 0000000..320b577 --- /dev/null +++ b/parsley/meta.yaml @@ -0,0 +1,66 @@ +package: + name: parsley + version: "1.3" + +source: + fn: Parsley-1.3.tar.gz + url: https://pypi.python.org/packages/06/52/cac2f9e78c26cff8bb518bdb4f2b5a0c7058dec7a62087ed48fe87478ef0/Parsley-1.3.tar.gz + md5: 92bc256e5f73810a609dc7874637ad31 +# patches: + # List any patch files here + # - fix.patch + +# build: + # noarch_python: True + # preserve_egg_dir: True + # entry_points: + # Put any entry points (scripts to be generated automatically) here. The + # syntax is module:function. For example + # + # - parsley = parsley:main + # + # Would create an entry point called parsley that calls parsley.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 + + run: + - python + +test: + # Python imports + imports: + - ometa + - ometa._generated + - ometa.test + - terml + - terml._generated + - terml.test + + # 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://launchpad.net/parsley + license: MIT License + summary: 'Parsing and pattern matching made easy.' + license_family: MIT + +# See +# http://docs.continuum.io/conda/build.html for +# more information about meta.yaml diff --git a/pmw/bld.bat b/pmw/bld.bat new file mode 100644 index 0000000..39b5e1f --- /dev/null +++ b/pmw/bld.bat @@ -0,0 +1 @@ +%PYTHON% setup.py install diff --git a/pmw/build.sh b/pmw/build.sh new file mode 100644 index 0000000..5a5aeeb --- /dev/null +++ b/pmw/build.sh @@ -0,0 +1 @@ +$PYTHON setup.py install diff --git a/pmw/meta.yaml b/pmw/meta.yaml new file mode 100644 index 0000000..bd46b0d --- /dev/null +++ b/pmw/meta.yaml @@ -0,0 +1,37 @@ +{% set name = 'pmw' %} +{% set version = '1.3.3' %} +{% set number = '0' %} + +about: + home: http://pmw.sourceforge.net + license: BSD + summary: | + Pmw is a toolkit for building high-level compound widgets, or + megawidgets, constructed using other widgets as component + parts. It promotes consistent look and feel within and + between graphical applications, is highly configurable to your needs and is easy to use. + + + +package: + name: {{ name }} + version: {{ version }} + +build: + number: {{ number }} + +source: + fn: {{ name }}-{{ version }}.tar.gz + url: https://sourceforge.net/projects/pmw/files/Pmw/Pmw.{{ version }}/Pmw.{{ version }}.tar.gz + +requirements: + build: + - tk + - setuptools + - python x.x + run: + - tk + +test: + imports: + - Pmw diff --git a/pyfits/bld.bat b/pyfits/bld.bat new file mode 100644 index 0000000..39b5e1f --- /dev/null +++ b/pyfits/bld.bat @@ -0,0 +1 @@ +%PYTHON% setup.py install diff --git a/pyfits/build.sh b/pyfits/build.sh new file mode 100644 index 0000000..5a5aeeb --- /dev/null +++ b/pyfits/build.sh @@ -0,0 +1 @@ +$PYTHON setup.py install diff --git a/pyfits/meta.yaml b/pyfits/meta.yaml new file mode 100644 index 0000000..26959f7 --- /dev/null +++ b/pyfits/meta.yaml @@ -0,0 +1,37 @@ +{% set name = 'pyfits' %} +{% set version = '3.4.0' %} +{% set tag = 'v' + version %} +{% set number = '0' %} + +about: + home: https://github.com/spacetelescope/{{ name }} + license: BSD + summary: Reads FITS images and tables into numpy arrays and manipulates FITS headers + +package: + name: {{ name }} + version: {{ version }} + +build: + number: {{ number }} + +source: + git_tag: {{ tag }} + git_url: https://github.com/spacetelescope/{{ name }}.git + +requirements: + build: + - d2to1 + - stsci.distutils + - numpy x.x + - setuptools + - python x.x + run: + - numpy x.x + - python + +#test: +# imports: +# - +# commands: +# - diff --git a/sphinx-bootstrap-theme/bld.bat b/sphinx-bootstrap-theme/bld.bat new file mode 100644 index 0000000..9146a4b --- /dev/null +++ b/sphinx-bootstrap-theme/bld.bat @@ -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. diff --git a/sphinx-bootstrap-theme/build.sh b/sphinx-bootstrap-theme/build.sh new file mode 100644 index 0000000..3f50b74 --- /dev/null +++ b/sphinx-bootstrap-theme/build.sh @@ -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. diff --git a/sphinx-bootstrap-theme/meta.yaml b/sphinx-bootstrap-theme/meta.yaml new file mode 100644 index 0000000..eb74f2f --- /dev/null +++ b/sphinx-bootstrap-theme/meta.yaml @@ -0,0 +1,63 @@ +package: + name: sphinx-bootstrap-theme + version: "0.4.12" + +source: + fn: sphinx-bootstrap-theme-0.4.12.tar.gz + url: https://pypi.python.org/packages/7a/23/4a29bcaba3c413f2870fd5dbbc22f23f330d096944a7d5639f4418f16d52/sphinx-bootstrap-theme-0.4.12.tar.gz + md5: 630401f27ece7a49ae3d8f028cf9e885 +# patches: + # List any patch files here + # - fix.patch + +build: + # noarch_python: True + preserve_egg_dir: True + # entry_points: + # Put any entry points (scripts to be generated automatically) here. The + # syntax is module:function. For example + # + # - sphinx-bootstrap-theme = sphinx-bootstrap-theme:main + # + # Would create an entry point called sphinx-bootstrap-theme that calls sphinx-bootstrap-theme.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 + - setuptools + +test: + # Python imports + imports: + - sphinx_bootstrap_theme + + # 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://ryan-roemer.github.com/sphinx-bootstrap-theme/README.html + license: MIT License + summary: 'Sphinx Bootstrap Theme.' + license_family: MIT + +# See +# http://docs.continuum.io/conda/build.html for +# more information about meta.yaml diff --git a/sphinx_rtd_theme/bld.bat b/sphinx_rtd_theme/bld.bat new file mode 100644 index 0000000..9146a4b --- /dev/null +++ b/sphinx_rtd_theme/bld.bat @@ -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. diff --git a/sphinx_rtd_theme/build.sh b/sphinx_rtd_theme/build.sh new file mode 100644 index 0000000..3f50b74 --- /dev/null +++ b/sphinx_rtd_theme/build.sh @@ -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. diff --git a/sphinx_rtd_theme/meta.yaml b/sphinx_rtd_theme/meta.yaml new file mode 100644 index 0000000..349a4b4 --- /dev/null +++ b/sphinx_rtd_theme/meta.yaml @@ -0,0 +1,62 @@ +package: + name: sphinx_rtd_theme + version: "0.1.10a0" + +source: + fn: sphinx_rtd_theme-0.1.10a0.tar.gz + url: https://pypi.python.org/packages/da/6b/1b75f13d8aa3333f19c6cdf1f0bc9f52ea739cae464fbee050307c121857/sphinx_rtd_theme-0.1.10a0.tar.gz + md5: 83bd95cae55aa8b773a8cc3a41094282 +# patches: + # List any patch files here + # - fix.patch + +# build: + # noarch_python: True + # preserve_egg_dir: True + # entry_points: + # Put any entry points (scripts to be generated automatically) here. The + # syntax is module:function. For example + # + # - sphinx_rtd_theme = sphinx_rtd_theme:main + # + # Would create an entry point called sphinx_rtd_theme that calls sphinx_rtd_theme.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: + - sphinx_rtd_theme + + # 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: https://github.com/snide/sphinx_rtd_theme/ + license: BSD License + summary: 'ReadTheDocs.org theme for Sphinx, 2013 version.' + license_family: BSD + +# See +# http://docs.continuum.io/conda/build.html for +# more information about meta.yaml diff --git a/traceback2/bld.bat b/traceback2/bld.bat new file mode 100644 index 0000000..9146a4b --- /dev/null +++ b/traceback2/bld.bat @@ -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. diff --git a/traceback2/build.sh b/traceback2/build.sh new file mode 100644 index 0000000..3f50b74 --- /dev/null +++ b/traceback2/build.sh @@ -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. diff --git a/traceback2/meta.yaml b/traceback2/meta.yaml new file mode 100644 index 0000000..6f0de7a --- /dev/null +++ b/traceback2/meta.yaml @@ -0,0 +1,62 @@ +package: + name: traceback2 + version: "1.4.0" + +source: + fn: traceback2-1.4.0.tar.gz + url: https://pypi.python.org/packages/eb/7f/e20ba11390bdfc55117c8c6070838ec914e6f0053a602390a598057884eb/traceback2-1.4.0.tar.gz + md5: 9e9723f4d70bfc6308fa992dd193c400 +# patches: + # List any patch files here + # - fix.patch + +# build: + # noarch_python: True + # preserve_egg_dir: True + # entry_points: + # Put any entry points (scripts to be generated automatically) here. The + # syntax is module:function. For example + # + # - traceback2 = traceback2:main + # + # Would create an entry point called traceback2 that calls traceback2.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: + - pbr + - python + - setuptools + + run: + - python + +# test: + # Python imports + # imports: + + # 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: The package home page + license: Python Software Foundation License + summary: 'Backports of the traceback module' + license_family: Proprietary + +# See +# http://docs.continuum.io/conda/build.html for +# more information about meta.yaml diff --git a/urwid/bld.bat b/urwid/bld.bat new file mode 100644 index 0000000..9146a4b --- /dev/null +++ b/urwid/bld.bat @@ -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. diff --git a/urwid/build.sh b/urwid/build.sh new file mode 100644 index 0000000..3f50b74 --- /dev/null +++ b/urwid/build.sh @@ -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. diff --git a/urwid/meta.yaml b/urwid/meta.yaml new file mode 100644 index 0000000..08a5ab8 --- /dev/null +++ b/urwid/meta.yaml @@ -0,0 +1,63 @@ +package: + name: urwid + version: "1.3.1" + +source: + fn: urwid-1.3.1.tar.gz + url: https://pypi.python.org/packages/85/5d/9317d75b7488c335b86bd9559ca03a2a023ed3413d0e8bfe18bea76f24be/urwid-1.3.1.tar.gz + md5: 2e1a005cb31368fe21bfeba2d6ad5a5c +# patches: + # List any patch files here + # - fix.patch + +# build: + # noarch_python: True + # preserve_egg_dir: True + # entry_points: + # Put any entry points (scripts to be generated automatically) here. The + # syntax is module:function. For example + # + # - urwid = urwid:main + # + # Would create an entry point called urwid that calls urwid.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: + - urwid + - urwid.tests + + # 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://urwid.org/ + license: GNU Library or Lesser General Public License (LGPL) + summary: 'A full-featured console (xterm et al.) user interface library' + license_family: LGPL + +# See +# http://docs.continuum.io/conda/build.html for +# more information about meta.yaml diff --git a/ws4py/bld.bat b/ws4py/bld.bat new file mode 100644 index 0000000..9146a4b --- /dev/null +++ b/ws4py/bld.bat @@ -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. diff --git a/ws4py/build.sh b/ws4py/build.sh new file mode 100644 index 0000000..3f50b74 --- /dev/null +++ b/ws4py/build.sh @@ -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. diff --git a/ws4py/meta.yaml b/ws4py/meta.yaml new file mode 100644 index 0000000..9af57c3 --- /dev/null +++ b/ws4py/meta.yaml @@ -0,0 +1,64 @@ +package: + name: ws4py + version: "0.3.5" + +source: + fn: ws4py-0.3.5.tar.gz + url: https://pypi.python.org/packages/c8/b4/1784512791fbd196a48f282ca6c79398cace9541a9c151d89c30b6add6e1/ws4py-0.3.5.tar.gz + md5: b0cbe30433350ef5ec98e8cbb3c3b39c +# patches: + # List any patch files here + # - fix.patch + +# build: + # noarch_python: True + # preserve_egg_dir: True + # entry_points: + # Put any entry points (scripts to be generated automatically) here. The + # syntax is module:function. For example + # + # - ws4py = ws4py:main + # + # Would create an entry point called ws4py that calls ws4py.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: + - ws4py + - ws4py.client + - ws4py.server + + # 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: https://github.com/Lawouach/WebSocket-for-Python + license: BSD License + summary: 'WebSocket client and server library for Python 2 and 3 as well as PyPy' + license_family: BSD + +# See +# http://docs.continuum.io/conda/build.html for +# more information about meta.yaml diff --git a/wsgiref/bld.bat b/wsgiref/bld.bat new file mode 100644 index 0000000..9146a4b --- /dev/null +++ b/wsgiref/bld.bat @@ -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. diff --git a/wsgiref/build.sh b/wsgiref/build.sh new file mode 100644 index 0000000..3f50b74 --- /dev/null +++ b/wsgiref/build.sh @@ -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. diff --git a/wsgiref/meta.yaml b/wsgiref/meta.yaml new file mode 100644 index 0000000..c938a8d --- /dev/null +++ b/wsgiref/meta.yaml @@ -0,0 +1,62 @@ +package: + name: wsgiref + version: "0.1.2" + +source: + fn: wsgiref-0.1.2.zip + url: https://pypi.python.org/packages/41/9e/309259ce8dff8c596e8c26df86dbc4e848b9249fd36797fd60be456f03fc/wsgiref-0.1.2.zip + md5: 29b146e6ebd0f9fb119fe321f7bcf6cb +# patches: + # List any patch files here + # - fix.patch + +# build: + # noarch_python: True + # preserve_egg_dir: True + # entry_points: + # Put any entry points (scripts to be generated automatically) here. The + # syntax is module:function. For example + # + # - wsgiref = wsgiref:main + # + # Would create an entry point called wsgiref that calls wsgiref.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: + - wsgiref + + # 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://cheeseshop.python.org/pypi/wsgiref + license: PSF or ZPL + summary: 'WSGI (PEP 333) Reference Library' + license_family: PSF + +# See +# http://docs.continuum.io/conda/build.html for +# more information about meta.yaml diff --git a/yolk/bld.bat b/yolk/bld.bat new file mode 100644 index 0000000..9146a4b --- /dev/null +++ b/yolk/bld.bat @@ -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. diff --git a/yolk/build.sh b/yolk/build.sh new file mode 100644 index 0000000..3f50b74 --- /dev/null +++ b/yolk/build.sh @@ -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. diff --git a/yolk/meta.yaml b/yolk/meta.yaml new file mode 100644 index 0000000..272bede --- /dev/null +++ b/yolk/meta.yaml @@ -0,0 +1,67 @@ +package: + name: yolk + version: "0.4.3" + +source: + fn: yolk-0.4.3.tar.gz + url: https://pypi.python.org/packages/2b/c0/73510e50668b70f3fad25328c58d7a29a300a2e452058dfdcb7c7538af7b/yolk-0.4.3.tar.gz + md5: 10dfabca7a020058436aec9dbad70123 +# patches: + # List any patch files here + # - fix.patch + +build: + # noarch_python: True + preserve_egg_dir: True + entry_points: + # Put any entry points (scripts to be generated automatically) here. The + # syntax is module:function. For example + # + # - yolk = yolk:main + # + # Would create an entry point called yolk that calls yolk.main() + + - yolk = yolk.cli: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 + - setuptools + +test: + # Python imports + imports: + - yolk + - yolk.plugins + + commands: + # You can put test commands to be run here. Use this to test that the + # entry points work. + + - yolk --help + + # You can also put a file called run_test.py in the recipe that will be run + # at test time. + + requires: + - nose + # Put any additional test requirements here. For example + # - nose + +about: + home: https://github.com/cakebread/yolk + license: BSD License + summary: 'Command-line tool for querying PyPI and Python packages installed on your system.' + license_family: BSD + +# See +# http://docs.continuum.io/conda/build.html for +# more information about meta.yaml |