diff --git a/build_tools/conda/README.md b/build_tools/conda/README.md deleted file mode 100644 index aa4586df3b..0000000000 --- a/build_tools/conda/README.md +++ /dev/null @@ -1,53 +0,0 @@ -# Conda Recipes - -Here we store the recipes for building conda packages of the dependencies of SasView. These are dependencies that unforunately do not come pre-bundled with Anaconda. - -## Creating a Recipe - -An easy way to get started with a recipe is to use the skeleton command that comes with conda, which looks for all the information it needs on PyPi (of course, this will only work if the module exists on PyPi...): - -``` -conda skeleton pypi package_name -``` - -This automatically chooses the most recent version up on PyPi. You may specify an older version as follows: - -``` -conda skeleton pypi package_name --version 1.0.9 -``` - -If you run `conda skeleton` from this directory, then the recipes will go into the right place. - -If you're lucky this is all you will need to ever do to create a new recipe, but you may need to go in and tinker with the meta.yaml file from time to time. - -## Issues - -* Sometimes downloading the package from PyPi is problematic. You may see something like the following: - - ``` - Error: Could not open 'C:\\TempAnaconda\\conda-bld\\src_cache\\showfiles.php?group_id=15583.part' for writing ([Errno 22] invalid mode ('wb') or filename: 'C:\\TempAnaconda\\conda-bld\\src_cache\\showfiles.php?group_id=15583.part'). - ``` - - If so, the `source:` values in meta.yaml are pointing to external urls that are not direct links to the downloads (in the case above, a .php link). Change `fn:` and `url:` from `http://sourceforge.net/project/showfiles.php?group_id=15583` or similar to an actual link to a .zip of .tar.gz. Remember to add a correct `mdf:` property so that future users have their downloads checked. - -* I once tried to use recipes generated with older versions of conda and ran into problems. Your options here are either to hack away at the recipe until it works, or just re-generate the recipe with skeleton. - -# Building a Conda Package and Uploading to Binstar - -``` -conda build bumps\ -``` - -``` -TEST END: bumps-0.7.5.4-py27_0 -# If you want to upload this package to binstar.org later, type: -# -# $ binstar upload C:\TempAnaconda\conda-bld\win-32\bumps-0.7.5.4-py27_0.tar.bz2 -# -# To have conda build upload to binstar automatically, use -# $ conda config --set binstar_upload yes -``` - -# Useful Links - -* http://conda.pydata.org/docs/build.html \ No newline at end of file diff --git a/build_tools/conda/altgraph/bld.bat b/build_tools/conda/altgraph/bld.bat deleted file mode 100644 index 87b1481d74..0000000000 --- a/build_tools/conda/altgraph/bld.bat +++ /dev/null @@ -1,8 +0,0 @@ -"%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/build_tools/conda/altgraph/build.sh b/build_tools/conda/altgraph/build.sh deleted file mode 100644 index 4d7fc032b8..0000000000 --- a/build_tools/conda/altgraph/build.sh +++ /dev/null @@ -1,9 +0,0 @@ -#!/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/build_tools/conda/altgraph/meta.yaml b/build_tools/conda/altgraph/meta.yaml deleted file mode 100644 index 513821995f..0000000000 --- a/build_tools/conda/altgraph/meta.yaml +++ /dev/null @@ -1,61 +0,0 @@ -package: - name: altgraph - version: !!str 0.12 - -source: - fn: altgraph-0.12.tar.gz - url: https://pypi.python.org/packages/source/a/altgraph/altgraph-0.12.tar.gz - md5: 916dca277fb2b747d5b1ec05b54a0825 -# 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 - # - # - altgraph = altgraph:main - # - # Would create an entry point called altgraph that calls altgraph.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: - - altgraph - - #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://packages.python.org/altgraph - license: MIT License - summary: 'Python graph (network) package' - -# See -# http://docs.continuum.io/conda/build.html for -# more information about meta.yaml diff --git a/build_tools/conda/appdirs/bld.bat b/build_tools/conda/appdirs/bld.bat deleted file mode 100644 index 87b1481d74..0000000000 --- a/build_tools/conda/appdirs/bld.bat +++ /dev/null @@ -1,8 +0,0 @@ -"%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/build_tools/conda/appdirs/build.sh b/build_tools/conda/appdirs/build.sh deleted file mode 100644 index 4d7fc032b8..0000000000 --- a/build_tools/conda/appdirs/build.sh +++ /dev/null @@ -1,9 +0,0 @@ -#!/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/build_tools/conda/appdirs/meta.yaml b/build_tools/conda/appdirs/meta.yaml deleted file mode 100644 index 52ac87aba5..0000000000 --- a/build_tools/conda/appdirs/meta.yaml +++ /dev/null @@ -1,60 +0,0 @@ -package: - name: appdirs - version: !!str 1.4.0 - -source: - fn: appdirs-1.4.0.tar.gz - url: https://pypi.python.org/packages/source/a/appdirs/appdirs-1.4.0.tar.gz - md5: 1d17b4c9694ab84794e228f28dc3275b -# 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 - # - # - appdirs = appdirs:main - # - # Would create an entry point called appdirs that calls appdirs.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: - - appdirs - - #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://github.com/ActiveState/appdirs - license: MIT License - summary: 'A small Python module for determining appropriate " + "platform-specific dirs, e.g. a "user data dir".' - -# See -# http://docs.continuum.io/conda/build.html for -# more information about meta.yaml diff --git a/build_tools/conda/bumps/bld.bat b/build_tools/conda/bumps/bld.bat deleted file mode 100644 index 87b1481d74..0000000000 --- a/build_tools/conda/bumps/bld.bat +++ /dev/null @@ -1,8 +0,0 @@ -"%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/build_tools/conda/bumps/build.sh b/build_tools/conda/bumps/build.sh deleted file mode 100644 index 4d7fc032b8..0000000000 --- a/build_tools/conda/bumps/build.sh +++ /dev/null @@ -1,9 +0,0 @@ -#!/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/build_tools/conda/bumps/meta.yaml b/build_tools/conda/bumps/meta.yaml deleted file mode 100644 index 66d4708d38..0000000000 --- a/build_tools/conda/bumps/meta.yaml +++ /dev/null @@ -1,69 +0,0 @@ -package: - name: bumps - version: !!str 0.7.5.9 - -source: - fn: bumps-0.7.5.9.tar.gz - url: https://pypi.python.org/packages/source/b/bumps/bumps-0.7.5.9.tar.gz - md5: a47c035fbb18afa5ca53067506a5ff1c -# 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 - # - # - bumps = bumps:main - # - # Would create an entry point called bumps that calls bumps.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 - - six - -test: - # Python imports - imports: - - bumps - - bumps.dream - - bumps.gui - - bumps.gui.resources - - bumps.mystic - - bumps.mystic.examples - - bumps.mystic.optimizer - - #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: - - numpy - - scipy - - matplotlib - -about: - home: http://www.reflectometry.org/danse/software.html - license: UNKNOWN - summary: 'Data fitting with bayesian uncertainty analysis' - -# See -# http://docs.continuum.io/conda/build.html for -# more information about meta.yaml diff --git a/build_tools/conda/macholib/bld.bat b/build_tools/conda/macholib/bld.bat deleted file mode 100644 index 87b1481d74..0000000000 --- a/build_tools/conda/macholib/bld.bat +++ /dev/null @@ -1,8 +0,0 @@ -"%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/build_tools/conda/macholib/build.sh b/build_tools/conda/macholib/build.sh deleted file mode 100644 index 4d7fc032b8..0000000000 --- a/build_tools/conda/macholib/build.sh +++ /dev/null @@ -1,9 +0,0 @@ -#!/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/build_tools/conda/macholib/meta.yaml b/build_tools/conda/macholib/meta.yaml deleted file mode 100644 index dffbc014fd..0000000000 --- a/build_tools/conda/macholib/meta.yaml +++ /dev/null @@ -1,64 +0,0 @@ -package: - name: macholib - version: !!str 1.7 - -source: - fn: macholib-1.7.tar.gz - url: https://pypi.python.org/packages/source/m/macholib/macholib-1.7.tar.gz - md5: cf03a55323d5b7ca59be530ba0b01032 -# 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 - # - # - macholib = macholib:main - # - # Would create an entry point called macholib that calls macholib.main() - - - macho_find = macholib.macho_find:main - - macho_standalone = macholib.macho_standalone:main - - macho_dump = macholib.macho_dump: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 - - altgraph >=0.12 - - run: - - python - - altgraph >=0.12 - -test: - # Python imports - imports: - - macholib - - 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/ronaldoussoren/macholib - license: MIT License - summary: 'Mach-O header analysis and editing' - -# See -# http://docs.continuum.io/conda/build.html for -# more information about meta.yaml diff --git a/build_tools/conda/mako/bld.bat b/build_tools/conda/mako/bld.bat deleted file mode 100644 index 87b1481d74..0000000000 --- a/build_tools/conda/mako/bld.bat +++ /dev/null @@ -1,8 +0,0 @@ -"%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/build_tools/conda/mako/build.sh b/build_tools/conda/mako/build.sh deleted file mode 100644 index 4d7fc032b8..0000000000 --- a/build_tools/conda/mako/build.sh +++ /dev/null @@ -1,9 +0,0 @@ -#!/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/build_tools/conda/mako/meta.yaml b/build_tools/conda/mako/meta.yaml deleted file mode 100644 index 3ba7a528be..0000000000 --- a/build_tools/conda/mako/meta.yaml +++ /dev/null @@ -1,66 +0,0 @@ -package: - name: mako - version: !!str 1.0.1 - -source: - fn: Mako-1.0.1.tar.gz - url: https://pypi.python.org/packages/source/M/Mako/Mako-1.0.1.tar.gz - md5: 9f0aafd177b039ef67b90ea350497a54 -# 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 - # - # - mako = mako:main - # - # Would create an entry point called mako that calls mako.main() - - - mako-render=mako.cmd:cmdline - - # 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 - - markupsafe >=0.9.2 - - run: - - python - - setuptools - - markupsafe >=0.9.2 - -test: - # Python imports - imports: - - mako - - mako.ext - - commands: - # You can put test commands to be run here. Use this to test that the - # entry points work. - - - mako-render --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://www.makotemplates.org/ - license: MIT - summary: 'A super-fast templating language that borrows the best ideas from the existing templating languages.' - -# See -# http://docs.continuum.io/conda/build.html for -# more information about meta.yaml diff --git a/build_tools/conda/modulegraph/bld.bat b/build_tools/conda/modulegraph/bld.bat deleted file mode 100644 index 87b1481d74..0000000000 --- a/build_tools/conda/modulegraph/bld.bat +++ /dev/null @@ -1,8 +0,0 @@ -"%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/build_tools/conda/modulegraph/build.sh b/build_tools/conda/modulegraph/build.sh deleted file mode 100644 index 4d7fc032b8..0000000000 --- a/build_tools/conda/modulegraph/build.sh +++ /dev/null @@ -1,9 +0,0 @@ -#!/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/build_tools/conda/modulegraph/meta.yaml b/build_tools/conda/modulegraph/meta.yaml deleted file mode 100644 index 2bf00ea3df..0000000000 --- a/build_tools/conda/modulegraph/meta.yaml +++ /dev/null @@ -1,62 +0,0 @@ -package: - name: modulegraph - version: !!str 0.12 - -source: - fn: modulegraph-0.12.tar.gz - url: https://pypi.python.org/packages/source/m/modulegraph/modulegraph-0.12.tar.gz - md5: 188bfb66058f7f446f04145d0ac63359 -# 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 - # - # - modulegraph = modulegraph:main - # - # Would create an entry point called modulegraph that calls modulegraph.main() - - - modulegraph = modulegraph.__main__: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 - - altgraph >=0.12 - - run: - - python - - altgraph >=0.12 - -test: - # Python imports - imports: - - modulegraph - - 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/ronaldoussoren/modulegraph - license: MIT License - summary: 'Python module dependency analysis tool' - -# See -# http://docs.continuum.io/conda/build.html for -# more information about meta.yaml diff --git a/build_tools/conda/periodictable/bld.bat b/build_tools/conda/periodictable/bld.bat deleted file mode 100644 index 87b1481d74..0000000000 --- a/build_tools/conda/periodictable/bld.bat +++ /dev/null @@ -1,8 +0,0 @@ -"%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/build_tools/conda/periodictable/build.sh b/build_tools/conda/periodictable/build.sh deleted file mode 100644 index 4d7fc032b8..0000000000 --- a/build_tools/conda/periodictable/build.sh +++ /dev/null @@ -1,9 +0,0 @@ -#!/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/build_tools/conda/periodictable/meta.yaml b/build_tools/conda/periodictable/meta.yaml deleted file mode 100644 index 0062b2d058..0000000000 --- a/build_tools/conda/periodictable/meta.yaml +++ /dev/null @@ -1,64 +0,0 @@ -package: - name: periodictable - version: !!str 1.5.0 - -source: - fn: periodictable-1.5.0.tar.gz - url: https://pypi.python.org/packages/source/p/periodictable/periodictable-1.5.0.tar.gz - md5: f7e0d8199b0fe829868d24a0a734398e -# 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 - # - # - periodictable = periodictable:main - # - # Would create an entry point called periodictable that calls periodictable.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 - - pyparsing - - numpy - - run: - - python - - pyparsing - - numpy - -test: - # Python imports - imports: - - periodictable - - #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://www.reflectometry.org/danse/elements.html - license: public domain - summary: 'Extensible periodic table of the elements' - -# See -# http://docs.continuum.io/conda/build.html for -# more information about meta.yaml diff --git a/build_tools/conda/py2app/bld.bat b/build_tools/conda/py2app/bld.bat deleted file mode 100644 index 87b1481d74..0000000000 --- a/build_tools/conda/py2app/bld.bat +++ /dev/null @@ -1,8 +0,0 @@ -"%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/build_tools/conda/py2app/build.sh b/build_tools/conda/py2app/build.sh deleted file mode 100644 index 4d7fc032b8..0000000000 --- a/build_tools/conda/py2app/build.sh +++ /dev/null @@ -1,9 +0,0 @@ -#!/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/build_tools/conda/py2app/meta.yaml b/build_tools/conda/py2app/meta.yaml deleted file mode 100644 index a1e0b7cf9b..0000000000 --- a/build_tools/conda/py2app/meta.yaml +++ /dev/null @@ -1,74 +0,0 @@ -package: - name: py2app - version: !!str 0.9 - -source: - fn: py2app-0.9.tar.gz - url: https://pypi.python.org/packages/source/p/py2app/py2app-0.9.tar.gz - md5: eb31f5fefcf80aeaf4d02ec68d5978b4 -# 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 - # - # - py2app = py2app:main - # - # Would create an entry point called py2app that calls py2app.main() - - - py2applet = py2app.script_py2applet: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 - - altgraph >=0.12 - - modulegraph >=0.12 - - macholib >=1.5 - - run: - - python - - altgraph >=0.12 - - modulegraph >=0.12 - - macholib >=1.5 - -test: - # Python imports - imports: - - py2app - - py2app.apptemplate - - py2app.bootstrap - - py2app.bundletemplate - - py2app.converters - - py2app.recipes - - py2app.recipes.PIL - - commands: - # You can put test commands to be run here. Use this to test that the - # entry points work. - - - py2applet --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://bitbucket.org/ronaldoussoren/py2app - license: MIT License - summary: 'Create standalone Mac OS X applications with Python' - -# See -# http://docs.continuum.io/conda/build.html for -# more information about meta.yaml diff --git a/build_tools/conda/py2exe/bld.bat b/build_tools/conda/py2exe/bld.bat deleted file mode 100644 index 87b1481d74..0000000000 --- a/build_tools/conda/py2exe/bld.bat +++ /dev/null @@ -1,8 +0,0 @@ -"%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/build_tools/conda/py2exe/build.sh b/build_tools/conda/py2exe/build.sh deleted file mode 100644 index 4d7fc032b8..0000000000 --- a/build_tools/conda/py2exe/build.sh +++ /dev/null @@ -1,9 +0,0 @@ -#!/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/build_tools/conda/py2exe/meta.yaml b/build_tools/conda/py2exe/meta.yaml deleted file mode 100644 index 9da9c139c5..0000000000 --- a/build_tools/conda/py2exe/meta.yaml +++ /dev/null @@ -1,59 +0,0 @@ -package: - name: py2exe - version: !!str 0.6.9 - -source: - fn: py2exe-0.6.9.zip - url: http://sourceforge.net/projects/py2exe/files/py2exe/0.6.9/py2exe-0.6.9.zip - md5: 788df97c3ceb11368c3a938e5acef0b2 -# 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 - # - # - py2exe = py2exe:main - # - # Would create an entry point called py2exe that calls py2exe.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: - - py2exe - - #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://www.py2exe.org/ - license: MIT/X11, MPL 1.1 - summary: 'Build standalone executables for Windows' - -# See -# http://docs.continuum.io/conda/build.html for -# more information about meta.yaml diff --git a/build_tools/conda/pyopencl/bld.bat b/build_tools/conda/pyopencl/bld.bat deleted file mode 100644 index e619711741..0000000000 --- a/build_tools/conda/pyopencl/bld.bat +++ /dev/null @@ -1,21 +0,0 @@ -xcopy %RECIPE_DIR%\bin %PREFIX%\DLLs /E -xcopy %RECIPE_DIR%\include %PREFIX%\include /E -xcopy %RECIPE_DIR%\lib %PREFIX%\libs /E - -xcopy %RECIPE_DIR%\bin %PREFIX%\Library\bin /E -xcopy %RECIPE_DIR%\include %PREFIX%\Library\include /E -xcopy %RECIPE_DIR%\lib %PREFIX%\Library\lib /E - -::"%PYTHON%" setup.py build -cmingw32 -"%PYTHON%" configure.py -if errorlevel 1 exit 1 -"%PYTHON%" setup.py build -if errorlevel 1 exit 1 -"%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/build_tools/conda/pyopencl/build.sh b/build_tools/conda/pyopencl/build.sh deleted file mode 100644 index 4d7fc032b8..0000000000 --- a/build_tools/conda/pyopencl/build.sh +++ /dev/null @@ -1,9 +0,0 @@ -#!/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/build_tools/conda/pyopencl/meta.yaml b/build_tools/conda/pyopencl/meta.yaml deleted file mode 100644 index c8f2809b72..0000000000 --- a/build_tools/conda/pyopencl/meta.yaml +++ /dev/null @@ -1,73 +0,0 @@ -package: - name: pyopencl - version: !!str 2015.1 - -source: - fn: pyopencl-2015.1.tar.gz - url: https://pypi.python.org/packages/source/p/pyopencl/pyopencl-2015.1.tar.gz - md5: c7b9dd0bb113ad852dae6fdadd417899 -# 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 - # - # - pyopencl = pyopencl:main - # - # Would create an entry point called pyopencl that calls pyopencl.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 - - numpy - - pytools >=2014.2 - - pytest >=2 - - decorator >=3.2.0 - - appdirs >=1.4.0 - - run: - - python - - setuptools - - numpy - - pytools >=2014.2 - - pytest >=2 - - decorator >=3.2.0 - - appdirs >=1.4.0 - -test: - # Python imports - imports: - - pyopencl - - pyopencl.characterize - - pyopencl.compyte - - #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://mathema.tician.de/software/pyopencl - license: MIT License - summary: 'Python wrapper for OpenCL' - -# See -# http://docs.continuum.io/conda/build.html for -# more information about meta.yaml diff --git a/build_tools/conda/pypdf2/bld.bat b/build_tools/conda/pypdf2/bld.bat deleted file mode 100644 index 87b1481d74..0000000000 --- a/build_tools/conda/pypdf2/bld.bat +++ /dev/null @@ -1,8 +0,0 @@ -"%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/build_tools/conda/pypdf2/build.sh b/build_tools/conda/pypdf2/build.sh deleted file mode 100644 index 4d7fc032b8..0000000000 --- a/build_tools/conda/pypdf2/build.sh +++ /dev/null @@ -1,9 +0,0 @@ -#!/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/build_tools/conda/pypdf2/meta.yaml b/build_tools/conda/pypdf2/meta.yaml deleted file mode 100644 index 3d5624b32e..0000000000 --- a/build_tools/conda/pypdf2/meta.yaml +++ /dev/null @@ -1,59 +0,0 @@ -package: - name: pypdf2 - version: !!str 1.24 - -source: - fn: PyPDF2-1.24.tar.gz - url: https://pypi.python.org/packages/source/P/PyPDF2/PyPDF2-1.24.tar.gz - md5: 87cbb41c24bd98e6f70a37bb4a97446c -# 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 - # - # - pypdf2 = pypdf2:main - # - # Would create an entry point called pypdf2 that calls pypdf2.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: - - PyPDF2 - - #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://mstamy2.github.com/PyPDF2 - license: BSD License - summary: 'PDF toolkit' - -# See -# http://docs.continuum.io/conda/build.html for -# more information about meta.yaml diff --git a/build_tools/conda/pytools/bld.bat b/build_tools/conda/pytools/bld.bat deleted file mode 100644 index 87b1481d74..0000000000 --- a/build_tools/conda/pytools/bld.bat +++ /dev/null @@ -1,8 +0,0 @@ -"%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/build_tools/conda/pytools/build.sh b/build_tools/conda/pytools/build.sh deleted file mode 100644 index 4d7fc032b8..0000000000 --- a/build_tools/conda/pytools/build.sh +++ /dev/null @@ -1,9 +0,0 @@ -#!/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/build_tools/conda/pytools/meta.yaml b/build_tools/conda/pytools/meta.yaml deleted file mode 100644 index df5345ebb5..0000000000 --- a/build_tools/conda/pytools/meta.yaml +++ /dev/null @@ -1,66 +0,0 @@ -package: - name: pytools - version: !!str 2014.3.5 - -source: - fn: pytools-2014.3.5.tar.gz - url: https://pypi.python.org/packages/source/p/pytools/pytools-2014.3.5.tar.gz - md5: 7f8e9d6a88090a601e96a9ee095d3512 -# 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 - # - # - pytools = pytools:main - # - # Would create an entry point called pytools that calls pytools.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 - - decorator >=3.2.0 - - appdirs >=1.4.0 - - six - - run: - - python - - decorator >=3.2.0 - - appdirs >=1.4.0 - - six - -test: - # Python imports - imports: - - pytools - - #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://pypi.python.org/pypi/pytools - license: MIT License - summary: 'A collection of tools for Python' - -# See -# http://docs.continuum.io/conda/build.html for -# more information about meta.yaml diff --git a/build_tools/conda/unittest-xml-reporting/bld.bat b/build_tools/conda/unittest-xml-reporting/bld.bat deleted file mode 100644 index 87b1481d74..0000000000 --- a/build_tools/conda/unittest-xml-reporting/bld.bat +++ /dev/null @@ -1,8 +0,0 @@ -"%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/build_tools/conda/unittest-xml-reporting/build.sh b/build_tools/conda/unittest-xml-reporting/build.sh deleted file mode 100644 index 4d7fc032b8..0000000000 --- a/build_tools/conda/unittest-xml-reporting/build.sh +++ /dev/null @@ -1,9 +0,0 @@ -#!/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/build_tools/conda/unittest-xml-reporting/meta.yaml b/build_tools/conda/unittest-xml-reporting/meta.yaml deleted file mode 100644 index fa2b4a7d3e..0000000000 --- a/build_tools/conda/unittest-xml-reporting/meta.yaml +++ /dev/null @@ -1,64 +0,0 @@ -package: - name: unittest-xml-reporting - version: !!str 1.10.0 - -source: - fn: unittest-xml-reporting-1.10.0.tar.gz - url: https://pypi.python.org/packages/source/u/unittest-xml-reporting/unittest-xml-reporting-1.10.0.tar.gz - md5: f0d04be2b9bff5b744677b576c326620 -# 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 - # - # - unittest-xml-reporting = unittest-xml-reporting:main - # - # Would create an entry point called unittest-xml-reporting that calls unittest-xml-reporting.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 >=1.4.0 - - run: - - python - - six >=1.4.0 - -test: - # Python imports - imports: - - xmlrunner - - xmlrunner.extra - - xmlrunner.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://github.com/xmlrunner/unittest-xml-reporting/tree/master/ - license: BSD License - summary: 'unittest-based test runner with Ant/JUnit like XML reporting.' - -# See -# http://docs.continuum.io/conda/build.html for -# more information about meta.yaml diff --git a/build_tools/conda/xhtml2pdf/bld.bat b/build_tools/conda/xhtml2pdf/bld.bat deleted file mode 100644 index 87b1481d74..0000000000 --- a/build_tools/conda/xhtml2pdf/bld.bat +++ /dev/null @@ -1,8 +0,0 @@ -"%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/build_tools/conda/xhtml2pdf/build.sh b/build_tools/conda/xhtml2pdf/build.sh deleted file mode 100644 index 4d7fc032b8..0000000000 --- a/build_tools/conda/xhtml2pdf/build.sh +++ /dev/null @@ -1,9 +0,0 @@ -#!/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/build_tools/conda/xhtml2pdf/meta.yaml b/build_tools/conda/xhtml2pdf/meta.yaml deleted file mode 100644 index 8bad792963..0000000000 --- a/build_tools/conda/xhtml2pdf/meta.yaml +++ /dev/null @@ -1,73 +0,0 @@ -package: - name: xhtml2pdf - version: !!str 0.0.6 - -source: - fn: xhtml2pdf-0.0.6.tar.gz - url: https://pypi.python.org/packages/source/x/xhtml2pdf/xhtml2pdf-0.0.6.tar.gz - md5: dee3703f768efcba26eab81a4207c2c8 -# 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 - # - # - xhtml2pdf = xhtml2pdf:main - # - # Would create an entry point called xhtml2pdf that calls xhtml2pdf.main() - - - pisa = xhtml2pdf.pisa:command - - xhtml2pdf = xhtml2pdf.pisa:command - - # 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 - - html5lib - - pypdf2 - - pillow - - reportlab >=2.2 - - run: - - python - - html5lib - - pypdf2 - - pillow - - reportlab >=2.2 - -test: - # Python imports - imports: - - xhtml2pdf - - xhtml2pdf.w3c - - commands: - # You can put test commands to be run here. Use this to test that the - # entry points work. - - - pisa --help - - xhtml2pdf --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://www.xhtml2pdf.com - license: Apache Software License - summary: 'PDF generator using HTML and CSS' - -# See -# http://docs.continuum.io/conda/build.html for -# more information about meta.yaml diff --git a/build_tools/conda_py3_qt5_env.yml b/build_tools/conda_py3_qt5_env.yml deleted file mode 100644 index 50bc93fbd4..0000000000 --- a/build_tools/conda_py3_qt5_env.yml +++ /dev/null @@ -1,108 +0,0 @@ -name: qt5 -channels: -- rpmuller -- diffpy -- intel -- conda-forge -- defaults -dependencies: -- appdirs=1.4.3=py36_0 -- asn1crypto=0.22.0=py36_0 -- attrs=17.2.0=py36_0 -- automat=0.6.0=py36_0 -- backports=1.0=py36_1 -- backports.functools_lru_cache=1.4=py36_1 -- ca-certificates=2017.7.27.1=0 -- certifi=2017.7.27.1=py36_0 -- cffi=1.10.0=py36_0 -- colorama=0.3.9=py36_0 -- constantly=15.1.0=py_0 -- cryptography=2.0.3=py36_0 -- cycler=0.10.0=py36_0 -- decorator=4.1.2=py36_0 -- freetype=2.7=vc14_1 -- h5py=3.1=py36_1 -- hdf5=1.8.18=vc14_1 -- hyperlink=17.3.1=py_0 -- icu=58.1=vc14_1 -- idna=2.6=py36_1 -- incremental=17.5.0=py_0 -- ipykernel=4.6.1=py36_0 -- ipython=6.2.1=py36_0 -- ipython_genutils=0.2.0=py36_0 -- jedi=0.10.2=py36_0 -- jpeg=9b=vc14_1 -- jupyter_client=5.1.0=py36_0 -- jupyter_core=4.3.0=py36_0 -- khronos-opencl-icd-loader=2016.10.12=0 -- libiconv=1.14=vc14_4 -- libpng=1.6.28=vc14_1 -- libtiff=4.0.7=vc14_0 -- libxml2=2.9.5=vc14_0 -- libxslt=1.1.29=vc14_5 -- lxml=4.1.0=py36_0 -- mako=1.0.7=py36_0 -- markupsafe=1.0=py36_0 -- matplotlib=2.1.0=py36_0 -- openssl=1.0.2l=vc14_0 -- periodictable=1.5.0=py36_0 -- pickleshare=0.7.4=py36_0 -- pip=9.0.1=py36_0 -- prompt_toolkit=1.0.15=py36_0 -- pyasn1=0.3.7=py_0 -- pyasn1-modules=0.1.4=py_0 -- pycparser=2.18=py36_0 -- pygments=2.2.0=py36_0 -- pympler=0.5=py36_0 -- pyopencl=2017.2=py36_0 -- pyopenssl=17.2.0=py36_0 -- pyparsing=2.2.0=py36_0 -- pyqt=5.6.0=py36_4 -- python=3.6.3=0 -- python-dateutil=2.6.1=py36_0 -- pytools=2017.6=py_0 -- pytz=2017.2=py36_0 -- pywin32=220=py36_1 -- qt=5.6.2=vc14_2 -- qtconsole=4.3.1=py36_0 -- setuptools=36.6.0=py36_1 -- simplegeneric=0.8.1=py36_0 -- sip=4.18=py36_1 -- six=1.11.0=py36_1 -- sphinx=1.5.1=py36_0 -- sqlite=3.13.0=vc14_0 -- tornado=4.5.2=py36_0 -- traitlets=4.3.2=py36_0 -- vc=14=0 -- vs2015_runtime=14.0.25420=0 -- wcwidth=0.1.7=py36_0 -- wincertstore=0.2=py36_0 -- zlib=1.2.8=vc14_3 -- icc_rt=2017.0.4=h97af966_0 -- intel-openmp=2018.0.0=hcd89f80_7 -- mkl=2018.0.0=h36b65af_4 -- numpy=1.13.3=py36ha320f96_0 -- scipy=0.19.1=py36h7565378_3 -- service_identity=17.0.0=py36_0 -- twisted=17.9.0=py36hfad864c_0 -- zope=1.0=py36_0 -- zope.interface=4.4.2=py36_0 -- pyquante2_pure=2.0=py_0 -- pip: - - backports.functools-lru-cache==1.4 - - bumps==0.7.6 - - html5lib==1.0b10 - - ipython-genutils==0.2.0 - - jupyter-client==5.1.0 - - jupyter-core==4.3.0 - - olefile==0.44 - - pillow==4.3.0 - - prompt-toolkit==1.0.15 - - pyquante2==0.1 - - qt5reactor==0.4 - - reportlab==3.4.0 - - service-identity==17.0.0 - - tinycc==1.1 - - webencodings==0.5.1 - - xhtml2pdf==0.2.1 - - uncertainties==3.1.6 diff --git a/build_tools/conda_py3_qt5_osx.yml b/build_tools/conda_py3_qt5_osx.yml deleted file mode 100644 index 213bfb85f3..0000000000 --- a/build_tools/conda_py3_qt5_osx.yml +++ /dev/null @@ -1,117 +0,0 @@ -name: sasviewqt5 -channels: - - diffpy - - intel - - rpmuller - - conda-forge - - defaults -dependencies: - - attrs=17.2.0=py36_0 - - automat=0.6.0=py36_0 - - backports=1.0=py36_1 - - backports.functools_lru_cache=1.4=py36_1 - - ca-certificates=2017.7.27.1=0 - - certifi=2017.7.27.1=py36_0 - - cffi=1.10.0=py36_0 - - clangdev=6.0.0=default_0 - - colorama=0.3.9=py36_0 - - constantly=15.1.0=py_0 - - coverage=4.5.1=py36_0 - - cryptography=2.0.3=py36_0 - - cycler=0.10.0=py36_0 - - decorator=4.1.2=py36_0 - - freetype=2.7=1 - - h5py=3.1=0 - - hdf5=1.8.18=3 - - hyperlink=17.3.1=py_0 - - hypothesis=3.56.0=py36_0 - - icu=58.2=0 - - idna=2.6=py36_1 - - incremental=17.5.0=py_0 - - ipykernel=4.6.1=py36_0 - - ipython=6.2.1=py36_0 - - ipython_genutils=0.2.0=py36_0 - - jedi=0.10.2=py36_0 - - jpeg=9b=2 - - jupyter_client=5.1.0=py36_0 - - jupyter_core=4.3.0=py36_0 - - libcxx=6.0.0=0 - - libgfortran=3.0.0=0 - - libiconv=1.15=0 - - libpng=1.6.34=0 - - libtiff=4.0.7=1 - - libxml2=2.9.8=0 - - libxslt=1.1.32=0 - - llvm-meta=6.0.0=0 - - llvmdev=6.0.0=default_0 - - lxml=4.1.0=py36_0 - - mako=1.0.7=py36_0 - - markupsafe=1.0=py36_0 - - matplotlib=2.1.0=py36_0 - - ncurses=5.9=10 - - openssl=1.0.2o=0 - - pickleshare=0.7.4=py36_0 - - pip=9.0.1=py36_0 - - prompt_toolkit=1.0.15=py36_0 - - pyasn1=0.3.7=py_0 - - pyasn1-modules=0.1.4=py_0 - - pycparser=2.18=py36_0 - - pygments=2.2.0=py36_0 - - pympler=0.5=py36_0 - - pyopencl=2017.2=py36_0 - - pyopenssl=17.2.0=py36_0 - - pyparsing=2.2.0=py36_0 - - pyqt=5.6.0=py36_4 - - python-dateutil=2.6.1=py36_0 - - pytools=2017.6=py_0 - - pytz=2017.2=py36_0 - - qt=5.6.2=h9e3eb04_4 - - qtconsole=4.3.1=py36_0 - - readline=7.0=0 - - setuptools=36.6.0=py36_1 - - simplegeneric=0.8.1=py36_0 - - sip=4.18=py36_1 - - six=1.11.0=py36_1 - - sqlite=3.22.0=0 - - tk=8.6.7=0 - - tornado=4.5.2=py36_0 - - traitlets=4.3.2=py36_0 - - wcwidth=0.1.7=py36_0 - - appdirs=1.4.3=py36_0 - - intel-openmp=2018.0.0=8 - - python=3.6.5=hc167b69_0 - - service_identity=17.0.0=py36_0 - - twisted=17.9.0=py36h1a7ef6d_0 - - zope=1.0=py36_0 - - zope.interface=4.4.2=py36_0 - - periodictable=1.5.0=py36_0 - - appnope=0.1.0=py36_intel_5 - - asn1crypto=0.22.0=py36_0 - - icc_rt=2018.0.2=intel_0 - - intelpython=2018.0.2=0 - - libffi=3.2.1=intel_8 - - mkl=2018.0.2=intel_1 - - mkl_fft=1.0.0=np113py36_intel_15 - - mkl_random=1.0.0=np113py36_intel_6 - - numpy=1.13.3=py36_intel_6 - - openmp=2018.0.0=intel_8 - - pexpect=4.2.1=py36_intel_1 - - ptyprocess=0.5.2=py36_intel_0 - - pyzmq=16.0.2=py36_intel_4 - - scipy=0.19.1=np113py36_intel_23 - - wheel=0.29.0=py36_intel_5 - - xz=5.2.3=intel_0 - - zlib=1.2.11=intel_3 - - pyquante2_pure=2.0=py_0 - - sphinx=1.5.4 - - pip: - - bumps==0.7.6 - - html5lib==1.0b10 - - olefile==0.44 - - pillow==4.3.0 - - pyquante2==0.1 - - qt5reactor==0.4 - - reportlab==3.4.0 - - webencodings==0.5.1 - - xhtml2pdf==0.2.2 - - uncertainties==3.1.6 diff --git a/build_tools/conda_qt5_centos.yml b/build_tools/conda_qt5_centos.yml deleted file mode 100644 index c1ed00ba4a..0000000000 --- a/build_tools/conda_qt5_centos.yml +++ /dev/null @@ -1,124 +0,0 @@ -name: qt5_centos -channels: - - conda-forge - - defaults -dependencies: - - altgraph=0.15=py_0 - - certifi=2018.4.16=py36_0 - - macholib=1.8=py_0 - - pycrypto=2.6.1=py36_1 - - pyinstaller=3.3.1=py36_0 - - alabaster=0.7.10=py36h306e16b_0 - - asn1crypto=0.24.0=py36_0 - - babel=2.5.3=py36_0 - - backcall=0.1.0=py36_0 - - ca-certificates=2018.03.07=0 - - cffi=1.11.5=py36h9745a5d_0 - - chardet=3.0.4=py36h0f667ec_1 - - cryptography=2.2.2=py36h14c3975_0 - - cycler=0.10.0=py36h93f1223_0 - - dbus=1.13.2=h714fa37_1 - - decorator=4.3.0=py36_0 - - docutils=0.14=py36hb0f60f5_0 - - expat=2.2.5=he0dffb1_0 - - fontconfig=2.12.6=h49f89f6_0 - - freetype=2.8=hab7d2ae_1 - - glib=2.56.1=h000015b_0 - - gst-plugins-base=1.14.0=hbbd80ab_1 - - gstreamer=1.14.0=hb453b48_1 - - h5py=3.1=0 - - hdf5=1.10.1=h9caa474_1 - - icu=58.2=h9c2bf20_1 - - idna=2.6=py36h82fb2a8_1 - - imagesize=1.0.0=py36_0 - - intel-openmp=2018.0.0=8 - - ipykernel=4.8.2=py36_0 - - ipython=6.4.0=py36_0 - - ipython_genutils=0.2.0=py36hb52b0d5_0 - - jedi=0.12.0=py36_1 - - jinja2=2.10=py36ha16c418_0 - - jpeg=9b=h024ee3a_2 - - jupyter_client=5.2.3=py36_0 - - jupyter_core=4.4.0=py36h7c827e3_0 - - kiwisolver=1.0.1=py36h764f252_0 - - libedit=3.1.20170329=h6b74fdf_2 - - libffi=3.2.1=hd88cf55_4 - - libgcc-ng=7.2.0=hdf63c60_3 - - libgfortran-ng=7.2.0=hdf63c60_3 - - libpng=1.6.34=hb9fc6fc_0 - - libsodium=1.0.16=h1bed415_0 - - libstdcxx-ng=7.2.0=hdf63c60_3 - - libxcb=1.13=h1bed415_1 - - libxml2=2.9.8=hf84eae3_0 - - libxslt=1.1.32=h1312cb7_0 - - lxml=4.2.1=py36h23eabaa_0 - - markupsafe=1.0=py36hd9260cd_1 - - matplotlib=2.2.2=py36h0e671d2_1 - - mkl=2018.0.2=1 - - mkl_fft=1.0.1=py36h3010b51_0 - - mkl_random=1.0.1=py36h629b387_0 - - ncurses=6.1=hf484d3e_0 - - numpy=1.14.2=py36hdbf6ddf_1 - - openssl=1.0.2o=h20670df_0 - - packaging=17.1=py36_0 - - parso=0.2.0=py36_0 - - pcre=8.42=h439df22_0 - - pexpect=4.5.0=py36_0 - - pickleshare=0.7.4=py36h63277f8_0 - - pip=10.0.1=py36_0 - - prompt_toolkit=1.0.15=py36h17d85b1_0 - - ptyprocess=0.5.2=py36h69acd42_0 - - pycparser=2.18=py36hf9f622e_1 - - pygments=2.2.0=py36h0d3125c_0 - - pyopenssl=18.0.0=py36_0 - - pyparsing=2.2.0=py36hee85983_1 - - pyqt=5.9.2=py36h751905a_0 - - pysocks=1.6.8=py36_0 - - python=3.6.5=hc3d631a_2 - - python-dateutil=2.7.3=py36_0 - - pytz=2018.4=py36_0 - - pyzmq=17.0.0=py36h14c3975_0 - - qt=5.9.5=h7e424d6_0 - - qtconsole=4.3.1=py36h8f73b5b_0 - - readline=7.0=ha6073c6_4 - - requests=2.18.4=py36he2e5f8d_1 - - scipy=1.2.0 - - setuptools=39.1.0=py36_0 - - simplegeneric=0.8.1=py36_2 - - sip=4.19.8=py36hf484d3e_0 - - six=1.11.0=py36h372c433_1 - - snowballstemmer=1.2.1=py36h6febd40_0 - - sphinx=1.7.4=py36_0 - - sphinxcontrib=1.0=py36h6d0f590_1 - - sphinxcontrib-websupport=1.0.1=py36hb5cb234_1 - - sqlite=3.23.1=he433501_0 - - tk=8.6.7=hc745277_3 - - tornado=5.0.2=py36_0 - - traitlets=4.3.2=py36h674d592_0 - - typing=3.6.4=py36_0 - - urllib3=1.22=py36hbe7ace6_0 - - wcwidth=0.1.7=py36hdf4376a_0 - - wheel=0.31.1=py36_0 - - xz=5.2.4=h14c3975_4 - - zeromq=4.2.5=h439df22_0 - - zlib=1.2.11=ha838bed_2 - - pip: - - attrs==18.1.0 - - automat==0.6.0 - - bumps==0.7.8 - - constantly==15.1.0 - - html5lib==1.0.1 - - httplib2==0.11.3 - - hyperlink==18.0.0 - - incremental==17.5.0 - - periodictable==1.5.0 - - pillow==5.1.0 - - pypdf2==1.26.0 - - qt5reactor==0.5 - - reportlab==3.4.0 - - twisted==18.4.0 - - webencodings==0.5.1 - - xhtml2pdf==0.2.2 - - zope.interface==4.5.0 - - diff --git a/build_tools/conda_qt5_min_centos.yml b/build_tools/conda_qt5_min_centos.yml deleted file mode 100644 index 2d7a22929e..0000000000 --- a/build_tools/conda_qt5_min_centos.yml +++ /dev/null @@ -1,28 +0,0 @@ -name: qt5_centos -channels: - - conda-forge -dependencies: - - matplotlib=2 - - scipy - - hdf5 - - h5py - - ipython=6 - - ipykernel=4.9 - - jupyter - - twisted - - lxml - - sphinx - - cython - - pytest - - mako - - pyinstaller - - testpath=0.3.1 -# GPU not set for Centos build system -# - pyopencl - - pip: - - pytools - - periodictable - - bumps - - xhtml2pdf - - qt5reactor - diff --git a/build_tools/conda_qt5_min_osx.yml b/build_tools/conda_qt5_min_osx.yml deleted file mode 100644 index f0c1a8c842..0000000000 --- a/build_tools/conda_qt5_min_osx.yml +++ /dev/null @@ -1,61 +0,0 @@ -name: qt5_osx -channels: - - conda-forge - - schrodinger - - defaults -dependencies: - - altgraph - - appdirs - - attrs - - automat - - babel - - backports.functools_lru_cache - - ca-certificates - - certifi - - clangdev - - colorama - - constantly - - coverage - - cython - - h5py - - hypothesis - - lxml - - macholib - - matplotlib=2.2.2 - - mako - - numpy=1.15.1=py36_blas_openblashd3ea46f_1 - - openssl - - packaging - - pip - - pycrypto - - pyinstaller - - pyqt - - pytools - - qt=5.6.2 - - qtconsole - - sphinx - - sphinxcontrib-websupport - - tbb - - typing - - service_identity - - twisted - - zope - - scipy=1.2.0 - - hdf5 - - ipykernel=4.9.0 - - jupyter - - jupyter_client=5.2.4 - - pytest - - testpath - - numpy - - pyopencl - - sphinx=1.7.4 - - clang_osx-64 - - libgfortran=3.0.1=2000 - - pip: - - pytools - - periodictable - - bumps - - xhtml2pdf - - qt5reactor - diff --git a/build_tools/conda_qt5_min_ubuntu.yml b/build_tools/conda_qt5_min_ubuntu.yml deleted file mode 100644 index d4cdb4862c..0000000000 --- a/build_tools/conda_qt5_min_ubuntu.yml +++ /dev/null @@ -1,34 +0,0 @@ -name: qt5_ubuntu -channels: - - conda-forge -dependencies: - - matplotlib=2.2.2 - - scipy=1.2.0 - - hdf5=1.10.1 - - ipython=6 - - ipykernel=4.9 - - jupyter - - twisted=18.4.0 - - lxml=4.6.3 - - sphinx=1.8.5 - - cython=0.28.3 - - pip - - pytest - - mako=1.0.7 - - pyinstaller=3.3.1 - - pyqt>=5.9 # required for GTK themes to work correctly - - testpath=0.3.1 - - numpy=1.14.3 # NEED TO DOWNGRADE NUMPY!!! - - setuptools=41.6.0 - - qtconsole=4.7.5 -# - pyopencl -# - pocl - - pip: - - pytools==2018.4 - - periodictable==1.5.0 - - bumps - - xhtml2pdf==0.2.2 - - qt5reactor==0.5 - - uncertainties==3.1.6 - - pillow==8.1.2 - - h5py==3.1 diff --git a/build_tools/conda_qt5_osx.yml b/build_tools/conda_qt5_osx.yml deleted file mode 100644 index 55d4e099dd..0000000000 --- a/build_tools/conda_qt5_osx.yml +++ /dev/null @@ -1,151 +0,0 @@ -name: qt5_osx -channels: - - conda-forge - - schrodinger - - defaults -dependencies: - - alabaster=0.7.12=py_0 - - altgraph=0.15=py_0 - - appdirs=1.4.3=py_0 - - appnope=0.1.0=py36_1000 - - asn1crypto=0.24.0=py36_1003 - - atomicwrites=1.3.0=py_0 - - attrs=18.1.0=py_0 - - automat=0.6.0=py36_0 - - babel=2.6.0=py36_0 - - backcall=0.1.0=py_0 - - backports=1.0=py_2 - - backports.functools_lru_cache=1.5=py36_0 - - blas=1.1=openblas - - bleach=3.1.0=py_0 - - bzip2=1.0.6=h1de35cc_1002 - - ca-certificates=2018.4.16=0 - - certifi=2018.4.16=py36_0 - - cffi=1.11.5=py36h342bebf_1001 - - chardet=3.0.4=py36_1003 - - clangdev=6.0.0=default_0 - - colorama=0.3.9=py36_0 - - constantly=15.1.0=py_0 - - coverage=4.5.1=py36_0 - - cycler=0.10.0=py_1 - - cython=0.28.3=py36_0 - - decorator=4.3.2=py_0 - - docutils=0.14=py36_1001 - - entrypoints=0.3=py36_1000 - - freetype=2.9.1=h597ad8a_1005 - - h5py=3.1=0 - - hdf5=1.10.1=2 - - hyperlink=17.3.1=py_0 - - hypothesis=3.57.0=py36h24bf2e0_0 - - icu=58.2=hfc679d8_0 - - idna=2.8=py36_1000 - - imagesize=1.1.0=py_0 - - incremental=17.5.0=py_0 - - ipykernel=4.9.0=py36_0 - - ipython=6.5.0=py36_0 - - ipython_genutils=0.2.0=py_1 - - ipywidgets=7.4.2=py_0 - - jedi=0.13.2=py36_1000 - - jinja2=2.10=py_1 - - jpeg=9c=h1de35cc_1001 - - jsonschema=3.0.0a3=py36_1000 - - jupyter=1.0.0=py_1 - - jupyter_client=5.2.4 - - jupyter_console=5.2.0=py36_1 - - jupyter_core=4.4.0=py_0 - - kiwisolver=1.0.1=py36h2d50403_2 - - libffi=3.2.1=hfc679d8_5 - - libiconv=1.15=h1de35cc_1004 - - libpng=1.6.36=ha441bb4_1000 - - libsodium=1.0.16=h1de35cc_1001 - - libxml2=2.9.8=hf14e9c8_1005 - - libxslt=1.1.32=h33a18ac_1002 - - llvm-meta=6.0.0=0 - - llvmdev=6.0.0=default_4 - - macholib=1.8=py_0 - - mako=1.0.7=py36_0 - - markupsafe=1.1.0=py36h1de35cc_1000 - - matplotlib=2.2.2 - - mistune=0.8.4=py36h1de35cc_1000 - - more-itertools=4.3.0=py36_1000 - - nbconvert=5.3.1 - - nbformat=4.4.0=py_1 - - ncurses=6.1=hfc679d8_2 - - notebook=5.7.4 - - numpy=1.15.1=py36_blas_openblashd3ea46f_1 - - openblas=0.2.20=8 - - openssl=1.0.2o=0 - - packaging=17.1=py_0 - - pandoc=2.6=0 - - pandocfilters=1.4.2=py_1 - - parso=0.3.3=py_0 - - pexpect=4.6.0=py36_1000 - - pickleshare=0.7.5=py36_1000 - - pip=19.0.1=py36_0 - - pluggy=0.8.1=py_0 - - prometheus_client=0.5.0=py_0 - - prompt_toolkit=1.0.15=py_1 - - ptyprocess=0.6.0=py36_1000 - - py=1.7.0=py_0 - - pyasn1=0.4.4=py_1 - - pyasn1-modules=0.2.3=py_0 - - pycparser=2.19=py_0 - - pycrypto=2.6.1=py36_1 - - pygments=2.3.1=py_0 - - pyinstaller=3.3.1=py36_0 - - pyopencl=2018.1.1=py36h3e44d54_3 - - pyopenssl=19.0.0=py36_0 - - pyparsing=2.3.1=py_0 - - pyqt=5.6.0=py36_5 - - pyrsistent=0.14.9=py36h1de35cc_1000 - - pysocks=1.6.8=py36_1002 - - pytest=4.2.0=py36_0 - - python=3.6.6=h5001a0f_0 - - python-dateutil=2.8.0=py_0 - - pytools=2018.4=py_0 - - pytz=2018.9=py_0 - - pyzmq=17.1.2=py36hae99301_1 - - qt=5.6.2 - - qtconsole=4.3.1=py36_0 - - readline=7.0=hcfe32e1_1001 - - requests=2.21.0=py36_1000 - - scipy=1.2.0 - - send2trash=1.5.0=py_0 - - setuptools=40.8.0=py36_0 - - simplegeneric=0.8.1=py_1 - - sip=4.18=py36_1 - - six=1.12.0=py36_1000 - - snowballstemmer=1.2.1=py_1 - - sphinx=1.8.5 - - sphinxcontrib-websupport=1.0.1=py36_0 - - sqlite=3.26.0=h1765d9f_1000 - - tbb=2018_20171205=0 - - terminado=0.8.1=py36_1001 - - testpath=0.3.1=py36_1 - - tk=8.6.9=ha441bb4_1000 - - tornado=5.1.1=py36h1de35cc_1000 - - traitlets=4.3.2=py36_1000 - - typing=3.6.4=py36_0 - - urllib3=1.24.1=py36_1000 - - wcwidth=0.1.7=py_1 - - webencodings=0.5.1=py_1 - - wheel=0.32.3=py36_0 - - widgetsnbextension=3.4.2=py36_1000 - - xz=5.2.4=h1de35cc_1001 - - zeromq=4.2.5=hfc679d8_6 - - zlib=1.2.11=h1de35cc_1004 - - zope.interface=4.6.0=py36h1de35cc_1000 - - service_identity=17.0.0 - - twisted - - zope - - clang_osx-64 - - libgfortran=3.0.1=2000 - - pip: - - pytools==2018.4 - - periodictable==1.5.0 - - bumps - - xhtml2pdf==0.2.3 - - qt5reactor==0.5 - - unittest-xml-reporting - - lxml==4.6.3 - - uncertainties==3.1.6 diff --git a/build_tools/conda_qt5_ubuntu.yml b/build_tools/conda_qt5_ubuntu.yml deleted file mode 100644 index f8a331f5ff..0000000000 --- a/build_tools/conda_qt5_ubuntu.yml +++ /dev/null @@ -1,130 +0,0 @@ -name: qt5_ubuntu -channels: - - anaconda - - conda-forge - - defaults -dependencies: - - intel-openmp=2018.0.0=8 - - libgcc=7.2.0=h69d50b8_2 - - libgcc-ng=7.2.0=hdf63c60_3 - - libgfortran=3.0.0=1 - - libstdcxx-ng=7.2.0=hdf63c60_3 - - mkl=2018.0.2=1 - - sphinxcontrib=1.0=py36h6d0f590_1 - - alabaster=0.7.10=py36_1 - - altgraph=0.15=py_0 - - appdirs=1.4.3=py_0 - - asn1crypto=0.24.0=py36_0 - - babel=2.5.3=py36_0 - - ca-certificates=2018.4.16=0 - - certifi=2018.4.16=py36_0 - - cffi=1.11.5=py36_0 - - chardet=3.0.4=py36_0 - - cryptography=2.2.1=py36_0 - - cycler=0.10.0=py36_0 - - dbus - - decorator=4.3.0=py_0 - - docutils=0.14=py36_0 - - expat=2.2.5=0 - - fontconfig=2.12.6=0 - - freetype=2.8.1=0 - - gettext=0.19.8.1=0 - - glib=2 - - gst-plugins-base - - gstreamer - - h5py=3.1=0 - - hdf5=1.10.1=2 - - icu=58.2=0 - - idna=2.6=py36_1 - - imagesize=1.0.0=py36_0 - - jinja2=2.10=py36_0 - - jpeg=9b=2 - - kiwisolver=1.0.1=py36_1 - - libffi=3.2.1=3 - - libpng=1.6.34=0 - - libsodium=1.0.16=0 - - libtiff - - libxcb=1.13=0 - - libxslt=1.1.32=0 - - lxml=4.2.1=py36_0 - - macholib=1.8=py_0 - - mako=1.0.7=py36_0 - - markupsafe=1.0=py36_0 - - matplotlib=2 - - ncurses=5.9=10 - - ocl-icd=2.2.9=4 - - openblas=0.2.20=7 - - openssl - - packaging=17.1=py_0 - - pcre=8.41=1 - - periodictable=1.5.0=py36_0 - - pip=9.0.3=py36_0 - - pycparser=2.18=py36_0 - - pycrypto=2.6.1=py36_1 - - pygments=2.2.0=py36_0 - - pyinstaller=3.3.1=py36_0 - - pyopenssl=18.0.0=py36_0 - - pyparsing=2.2.0=py36_0 - - pyqt>=5.9.0 - - pysocks=1.6.8=py36_1 - - python=3.6 - - python-dateutil=2.7.3=py_0 - - pytools=2018.4=py_0 - - pytz=2018.4=py_0 - - qt>=5.9 - - readline=7.0=0 - - requests=2.18.4=py36_1 - - setuptools=39.2.0=py36_0 - - sip - - six>=1.11.0=py36_1 - - snowballstemmer=1.2.1=py36_0 - - sphinx=1.7.4=py36_0 - - sphinxcontrib-websupport=1.0.1=py36_0 - - sqlite - - tk=8.6.7=0 - - tornado=5.0.2=py36_0 - - typing=3.6.4=py36_0 - - urllib3=1.22=py36_0 - - wheel=0.31.0=py36_0 - - xorg-libxau=1.0.8=3 - - xorg-libxdmcp=1.1.2=3 - - xz=5.2.3=0 - - zeromq=4.2.5=1 - - zlib=1.2.11=0 - - attrs=18.1.0=py36_0 - - blas=1.0=mkl - - libgfortran-ng=7.2.0=hdf63c60_3 - - mkl_fft=1.0.1=py36h3010b51_0 - - mkl_random=1.0.1=py36h629b387_0 - - numpy=1.14.3=py36hcd700cb_1 - - numpy-base=1.14.3=py36h9be14a7_1 - - pyasn1=0.4.2=py36h4d1db45_0 - - pyasn1-modules=0.2.1=py36hc893066_0 - - scipy=1.2.0 - - service_identity=17.0.0=py36_0 - - jedi=0.12.1 - - pip: - - automat==0.6.0 - - bumps==0.7.8 - - click==6.7 - - constantly==15.1.0 - - flask==1.0.2 - - html5lib==1.0.1 - - httplib2==0.11.3 - - hyperlink==18.0.0 - - incremental==17.5.0 - - itsdangerous==0.24 - - pillow==5.1.0 - - pypdf2==1.26.0 - - qt4reactor==1.6 - - qt5reactor==0.5 - - reportlab==3.4.0 - - spglib==1.10.3.65 - - sphinx-rtd-theme==0.3.1 - - twisted==18.4.0 - - webencodings==0.5.1 - - werkzeug==0.14.1 - - xhtml2pdf==0.2.2 - - zope.interface==4.5.0 - - uncertainties==3.1.6 - diff --git a/build_tools/conda_qt5_win.yml b/build_tools/conda_qt5_win.yml deleted file mode 100644 index 0b5fba9d49..0000000000 --- a/build_tools/conda_qt5_win.yml +++ /dev/null @@ -1,38 +0,0 @@ -name: qt5_win -channels: - - conda-forge -dependencies: - - pip - - alabaster - - colorama - - ipykernel - - ipython - - jupyter - - nbformat - - pyopencl=2018.2.2 - - scipy=1.2.0 - - hdf5=1.10.4 - - h5py=3.1 - - lxml=4.6.3 - - twisted=18.9.0 - - sphinx=1.8.5 - - pytest=4.2.0 - - cython=0.29.4 - - sip - - numba=0.39 - - setuptools=44.0.0 - - numpy=1.14.2 - - qtconsole=4.7.5 - - pyzmq=19.0.1 - - pyqt==5.12.3 - - mkl=2020.0 - - pip: - - matplotlib==2.2.3 - - bumps - - pyinstaller==3.3.1 - - periodictable==1.5.0 - - xhtml2pdf==0.2.3 - - qt5reactor==0.5 - - tinycc==1.1 - - pillow==8.1.2 - - uncertainties==3.1.6 diff --git a/build_tools/conda_qt5_win_commercial.yml b/build_tools/conda_qt5_win_commercial.yml deleted file mode 100644 index 5d97ef014d..0000000000 --- a/build_tools/conda_qt5_win_commercial.yml +++ /dev/null @@ -1,39 +0,0 @@ -name: qt5_win -channels: - - conda-forge -dependencies: - - pip - - alabaster - - colorama - - ipykernel - - ipython - - jupyter - - nbformat - - pyopencl=2018.2.2 - - scipy=1.2.0 - - hdf5=1.10.4 - - lxml=4.6.3 - - twisted=18.9.0 - - sphinx=1.8.5 - - pytest=4.2.0 - - cython=0.29.4 - - sip - - numba=0.39 - - setuptools=44.0.0 - - numpy=1.14.2 - - qtconsole=4.7.5 - - pyzmq=19.0.1 - - mkl=2020.0 - - pip: - - matplotlib==2.2.3 - - bumps - - pyinstaller==3.3.1 - - periodictable==1.5.0 - - xhtml2pdf==0.2.3 - - ../../../PyQt5_commercial-5.12.2-5.12.3-cp35.cp36.cp37.cp38-none-win_amd64.whl - - qt5reactor==0.5 - - tinycc==1.1 - - uncertainties==3.1.6 - - pillow==8.1.2 - - h5py==3.1 -