diff --git a/conda/intervaltree/bld.bat b/conda/intervaltree/bld.bat new file mode 100644 index 00000000..87b1481d --- /dev/null +++ b/conda/intervaltree/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/conda/intervaltree/build.sh b/conda/intervaltree/build.sh new file mode 100644 index 00000000..4d7fc032 --- /dev/null +++ b/conda/intervaltree/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/conda/intervaltree/meta.yaml b/conda/intervaltree/meta.yaml new file mode 100644 index 00000000..bce78843 --- /dev/null +++ b/conda/intervaltree/meta.yaml @@ -0,0 +1,64 @@ +package: + name: intervaltree + version: "2.1.0" + +source: + fn: intervaltree-2.1.0.tar.gz + url: https://pypi.python.org/packages/source/i/intervaltree/intervaltree-2.1.0.tar.gz + md5: 33bef3448aaf30b78aa093dc7c315c2c +# 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 + # + # - intervaltree = intervaltree:main + # + # Would create an entry point called intervaltree that calls intervaltree.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 + - sortedcontainers + + run: + - python + - sortedcontainers + +test: + # Python imports + imports: + - intervaltree + + # 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: + - pytest + # Put any additional test requirements here. For example + # - nose + +about: + home: https://github.com/chaimleib/intervaltree + license: Apache Software License + summary: 'Editable interval tree data structure for Python 2 and 3' + +# See +# http://docs.continuum.io/conda/build.html for +# more information about meta.yaml diff --git a/conda/sortedcontainers/bld.bat b/conda/sortedcontainers/bld.bat new file mode 100644 index 00000000..87b1481d --- /dev/null +++ b/conda/sortedcontainers/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/conda/sortedcontainers/build.sh b/conda/sortedcontainers/build.sh new file mode 100644 index 00000000..4d7fc032 --- /dev/null +++ b/conda/sortedcontainers/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/conda/sortedcontainers/meta.yaml b/conda/sortedcontainers/meta.yaml new file mode 100644 index 00000000..c4d2c57c --- /dev/null +++ b/conda/sortedcontainers/meta.yaml @@ -0,0 +1,62 @@ +package: + name: sortedcontainers + version: "1.4.4" + +source: + fn: sortedcontainers-1.4.4.tar.gz + url: https://pypi.python.org/packages/source/s/sortedcontainers/sortedcontainers-1.4.4.tar.gz + md5: 456638aea9f8f705bd2e3c891c402023 +# 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 + # + # - sortedcontainers = sortedcontainers:main + # + # Would create an entry point called sortedcontainers that calls sortedcontainers.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: + - sortedcontainers + + # 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: + # - tox + # Put any additional test requirements here. For example + # - nose + +about: + home: http://www.grantjenks.com/docs/sortedcontainers/ + license: Apache Software License + summary: 'Python Sorted Container Types: SortedList, SortedDict, and SortedSet' + +# See +# http://docs.continuum.io/conda/build.html for +# more information about meta.yaml