├── recipes ├── flex-feedstock │ ├── recipe │ │ └── yum_requirements.txt │ ├── .gitignore │ ├── .gitattributes │ └── ci_support │ │ └── fast_finish_ci_pr_build.sh ├── patch-feedstock │ ├── recipe │ │ ├── testfile │ │ ├── testfile2 │ │ ├── build.sh │ │ ├── testfile.patch │ │ └── run_test.py │ ├── .gitignore │ ├── .gitattributes │ └── ci_support │ │ └── fast_finish_ci_pr_build.sh ├── cffi-feedstock │ ├── .gitignore │ ├── .gitattributes │ └── ci_support │ │ └── fast_finish_ci_pr_build.sh ├── curl-feedstock │ ├── .gitignore │ └── .gitattributes ├── git-feedstock │ ├── .gitignore │ ├── recipe │ │ ├── git-for-windows.ico │ │ ├── bld.bat │ │ └── menu-windows.json │ ├── .gitattributes │ └── ci_support │ │ └── fast_finish_ci_pr_build.sh ├── icu-feedstock │ ├── .gitignore │ ├── .gitattributes │ └── recipe │ │ ├── run_test.sh │ │ └── icu-config.patch ├── idna-feedstock │ ├── .gitignore │ ├── .gitattributes │ └── ci_support │ │ └── fast_finish_ci_pr_build.sh ├── lz4-feedstock │ ├── .gitignore │ ├── .ci_support │ │ ├── linux_python2.7.yaml │ │ ├── linux_python3.5.yaml │ │ ├── linux_python3.6.yaml │ │ ├── win_python2.7.yaml │ │ ├── win_python3.5.yaml │ │ ├── win_python3.6.yaml │ │ ├── README │ │ ├── osx_python2.7.yaml │ │ ├── osx_python3.5.yaml │ │ └── osx_python3.6.yaml │ ├── .gitattributes │ ├── .circleci │ │ └── fast_finish_ci_pr_build.sh │ └── .github │ │ └── ISSUE_TEMPLATE.md ├── lzo-feedstock │ ├── .gitignore │ ├── .gitattributes │ └── ci_support │ │ └── fast_finish_ci_pr_build.sh ├── m4-feedstock │ ├── .gitignore │ ├── .gitattributes │ └── ci_support │ │ └── fast_finish_ci_pr_build.sh ├── make-feedstock │ ├── .gitignore │ ├── .gitattributes │ └── recipe │ │ └── build.sh ├── mock-feedstock │ ├── .gitignore │ ├── .gitattributes │ └── ci_support │ │ └── fast_finish_ci_pr_build.sh ├── nose-feedstock │ ├── .gitignore │ ├── .gitattributes │ ├── recipe │ │ ├── bld.bat │ │ ├── build.sh │ │ └── run_test.py │ └── ci_support │ │ └── fast_finish_ci_pr_build.sh ├── pbr-feedstock │ ├── .gitignore │ ├── .ci_support │ │ ├── linux_.yaml │ │ └── README │ ├── .gitattributes │ ├── .circleci │ │ └── fast_finish_ci_pr_build.sh │ └── .github │ │ └── ISSUE_TEMPLATE.md ├── perl-feedstock │ ├── .gitignore │ └── recipe │ │ └── bld.bat ├── pip-feedstock │ ├── .gitignore │ ├── .gitattributes │ ├── recipe │ │ ├── build.sh │ │ └── bld.bat │ └── ci_support │ │ └── fast_finish_ci_pr_build.sh ├── py-feedstock │ ├── .gitignore │ ├── .gitattributes │ ├── .ci_support │ │ ├── README │ │ └── linux_.yaml │ ├── .circleci │ │ └── fast_finish_ci_pr_build.sh │ └── .github │ │ └── ISSUE_TEMPLATE.md ├── pytz-feedstock │ ├── .gitignore │ ├── .ci_support │ │ ├── linux_.yaml │ │ └── README │ ├── .gitattributes │ ├── .circleci │ │ └── fast_finish_ci_pr_build.sh │ ├── recipe │ │ └── run_test.py │ └── .github │ │ └── ISSUE_TEMPLATE.md ├── six-feedstock │ ├── .gitignore │ ├── .gitattributes │ └── ci_support │ │ └── fast_finish_ci_pr_build.sh ├── tini-feedstock │ ├── .gitignore │ ├── recipe │ │ └── yum_requirements.txt │ ├── .gitattributes │ ├── .ci_support │ │ ├── README │ │ ├── linux_c_compilergcc.yaml │ │ └── linux_c_compilertoolchain_c.yaml │ ├── .circleci │ │ └── fast_finish_ci_pr_build.sh │ └── .github │ │ └── ISSUE_TEMPLATE.md ├── tk-feedstock │ ├── .gitignore │ ├── recipe │ │ └── hello.tcl │ ├── .gitattributes │ └── ci_support │ │ └── fast_finish_ci_pr_build.sh ├── tqdm-feedstock │ ├── .gitignore │ ├── .gitattributes │ ├── .mailmap │ ├── .ci_support │ │ ├── README │ │ └── linux_.yaml │ ├── .circleci │ │ └── fast_finish_ci_pr_build.sh │ └── .github │ │ └── ISSUE_TEMPLATE.md ├── xz-feedstock │ ├── .gitignore │ ├── .gitattributes │ ├── recipe │ │ └── build.sh │ └── ci_support │ │ └── fast_finish_ci_pr_build.sh ├── yaml-feedstock │ ├── .gitignore │ ├── .gitattributes │ └── recipe │ │ └── build.sh ├── zlib-feedstock │ ├── .gitignore │ ├── .gitattributes │ └── recipe │ │ └── build.sh ├── zstd-feedstock │ ├── .gitignore │ ├── .gitattributes │ └── ci_support │ │ └── fast_finish_ci_pr_build.sh ├── attrs-feedstock │ ├── .gitignore │ ├── .gitattributes │ ├── .ci_support │ │ ├── README │ │ └── linux_.yaml │ ├── .circleci │ │ └── fast_finish_ci_pr_build.sh │ └── .github │ │ └── ISSUE_TEMPLATE.md ├── autoconf-feedstock │ ├── .gitignore │ └── .gitattributes ├── automake-feedstock │ ├── .gitignore │ └── recipe │ │ └── build.sh ├── bison-feedstock │ ├── .gitignore │ ├── .gitattributes │ └── recipe │ │ └── build.sh ├── bzip2-feedstock │ ├── .gitignore │ ├── .ci_support │ │ ├── linux_.yaml │ │ ├── win_c_compilervs2008.yaml │ │ ├── win_c_compilervs2015.yaml │ │ ├── osx_.yaml │ │ └── README │ ├── .gitattributes │ ├── .circleci │ │ └── fast_finish_ci_pr_build.sh │ └── .github │ │ └── ISSUE_TEMPLATE.md ├── certifi-feedstock │ ├── .gitignore │ ├── .gitattributes │ ├── .ci_support │ │ ├── README │ │ ├── win_python2.7.yaml │ │ ├── win_python3.5.yaml │ │ ├── win_python3.6.yaml │ │ ├── linux_python2.7.yaml │ │ ├── linux_python3.5.yaml │ │ ├── linux_python3.6.yaml │ │ ├── osx_python2.7.yaml │ │ ├── osx_python3.5.yaml │ │ └── osx_python3.6.yaml │ ├── .circleci │ │ └── fast_finish_ci_pr_build.sh │ └── .github │ │ └── ISSUE_TEMPLATE.md ├── chardet-feedstock │ ├── .gitignore │ ├── .gitattributes │ └── ci_support │ │ └── fast_finish_ci_pr_build.sh ├── clyent-feedstock │ ├── .gitignore │ ├── .gitattributes │ └── ci_support │ │ └── fast_finish_ci_pr_build.sh ├── cmake-feedstock │ ├── .gitignore │ ├── .gitattributes │ └── ci_support │ │ └── fast_finish_ci_pr_build.sh ├── conda-env-feedstock │ ├── .gitignore │ └── .gitattributes ├── conda-feedstock │ ├── .gitignore │ ├── .gitattributes │ ├── recipe │ │ └── build.sh │ └── ci_support │ │ └── fast_finish_ci_pr_build.sh ├── coverage-feedstock │ ├── .gitignore │ ├── .gitattributes │ ├── ci_support │ │ └── fast_finish_ci_pr_build.sh │ └── recipe │ │ └── build.sh ├── cython-feedstock │ ├── .gitignore │ ├── recipe │ │ └── fib.pyx │ ├── .gitattributes │ ├── .ci_support │ │ ├── README │ │ ├── win_c_compilervs2008cxx_compilervs2008python2.7.yaml │ │ ├── win_c_compilervs2015cxx_compilervs2015python3.6.yaml │ │ └── win_c_compilervs2015cxx_compilervs2015python3.7.yaml │ ├── .circleci │ │ └── fast_finish_ci_pr_build.sh │ └── .github │ │ └── ISSUE_TEMPLATE.md ├── decorator-feedstock │ ├── .gitignore │ ├── .gitattributes │ └── ci_support │ │ └── fast_finish_ci_pr_build.sh ├── expat-feedstock │ ├── .gitignore │ ├── recipe │ │ ├── stdbool.h │ │ └── build.sh │ ├── .gitattributes │ └── ci_support │ │ └── fast_finish_ci_pr_build.sh ├── filelock-feedstock │ ├── .gitignore │ ├── .ci_support │ │ ├── linux_.yaml │ │ └── README │ ├── .gitattributes │ ├── .circleci │ │ └── fast_finish_ci_pr_build.sh │ └── .github │ │ └── ISSUE_TEMPLATE.md ├── gettext-feedstock │ ├── .gitignore │ ├── .gitattributes │ ├── recipe │ │ └── build.sh │ └── ci_support │ │ └── fast_finish_ci_pr_build.sh ├── glob2-feedstock │ ├── .gitignore │ ├── .gitattributes │ └── ci_support │ │ └── fast_finish_ci_pr_build.sh ├── help2man-feedstock │ ├── .gitignore │ ├── .gitattributes │ └── recipe │ │ └── build.sh ├── iso8601-feedstock │ ├── .gitignore │ ├── .gitattributes │ └── ci_support │ │ └── fast_finish_ci_pr_build.sh ├── jinja2-feedstock │ ├── .gitignore │ ├── .gitattributes │ └── ci_support │ │ └── fast_finish_ci_pr_build.sh ├── libedit-feedstock │ ├── .gitignore │ ├── .gitattributes │ ├── ci_support │ │ └── fast_finish_ci_pr_build.sh │ └── recipe │ │ └── build.sh ├── libffi-feedstock │ ├── .gitignore │ └── .gitattributes ├── libssh2-feedstock │ ├── .gitignore │ ├── .gitattributes │ └── recipe │ │ └── bld.bat ├── libtool-feedstock │ ├── .gitignore │ ├── .gitattributes │ └── ci_support │ │ └── fast_finish_ci_pr_build.sh ├── libxml2-feedstock │ ├── .gitignore │ ├── .gitattributes │ └── ci_support │ │ └── fast_finish_ci_pr_build.sh ├── lz4-c-feedstock │ ├── .gitignore │ ├── .gitattributes │ └── ci_support │ │ └── fast_finish_ci_pr_build.sh ├── nbformat-feedstock │ ├── .gitignore │ ├── .gitattributes │ └── ci_support │ │ └── fast_finish_ci_pr_build.sh ├── ncurses-feedstock │ ├── .gitignore │ ├── .gitattributes │ ├── recipe │ │ └── run_test.sh │ └── ci_support │ │ └── fast_finish_ci_pr_build.sh ├── patchelf-feedstock │ ├── .gitignore │ ├── .gitattributes │ ├── recipe │ │ └── build.sh │ └── ci_support │ │ └── fast_finish_ci_pr_build.sh ├── pexpect-feedstock │ ├── .gitignore │ ├── .ci_support │ │ ├── win_python2.7.yaml │ │ ├── win_python3.5.yaml │ │ ├── win_python3.6.yaml │ │ ├── linux_python2.7.yaml │ │ ├── linux_python3.5.yaml │ │ ├── linux_python3.6.yaml │ │ ├── README │ │ ├── osx_python2.7.yaml │ │ ├── osx_python3.5.yaml │ │ └── osx_python3.6.yaml │ ├── .gitattributes │ ├── .circleci │ │ └── fast_finish_ci_pr_build.sh │ └── .github │ │ └── ISSUE_TEMPLATE.md ├── pkgconfig-feedstock │ ├── .gitignore │ ├── .gitattributes │ └── ci_support │ │ └── fast_finish_ci_pr_build.sh ├── pkginfo-feedstock │ ├── .gitignore │ ├── .gitattributes │ └── ci_support │ │ └── fast_finish_ci_pr_build.sh ├── pluggy-feedstock │ ├── .gitignore │ ├── .ci_support │ │ ├── linux_.yaml │ │ └── README │ ├── .gitattributes │ ├── .circleci │ │ └── fast_finish_ci_pr_build.sh │ └── .github │ │ └── ISSUE_TEMPLATE.md ├── pretend-feedstock │ ├── .gitignore │ ├── .gitattributes │ └── ci_support │ │ └── fast_finish_ci_pr_build.sh ├── psutil-feedstock │ ├── .gitignore │ ├── .ci_support │ │ ├── win_python2.7.yaml │ │ ├── win_python3.5.yaml │ │ ├── win_python3.6.yaml │ │ ├── linux_python2.7.yaml │ │ ├── linux_python3.5.yaml │ │ ├── linux_python3.6.yaml │ │ ├── README │ │ ├── osx_python2.7.yaml │ │ ├── osx_python3.5.yaml │ │ └── osx_python3.6.yaml │ ├── .gitattributes │ ├── .circleci │ │ └── fast_finish_ci_pr_build.sh │ └── .github │ │ └── ISSUE_TEMPLATE.md ├── pycosat-feedstock │ ├── .gitignore │ ├── recipe │ │ ├── bld.bat │ │ ├── build.sh │ │ └── run_test.py │ ├── .gitattributes │ └── ci_support │ │ └── fast_finish_ci_pr_build.sh ├── pycparser-feedstock │ ├── .gitignore │ ├── .gitattributes │ ├── .ci_support │ │ ├── README │ │ └── linux_.yaml │ ├── .circleci │ │ └── fast_finish_ci_pr_build.sh │ └── .github │ │ └── ISSUE_TEMPLATE.md ├── pyopenssl-feedstock │ ├── .gitignore │ ├── .ci_support │ │ ├── linux_python2.7.yaml │ │ ├── linux_python3.5.yaml │ │ ├── linux_python3.6.yaml │ │ ├── win_python2.7.yaml │ │ ├── win_python3.5.yaml │ │ ├── win_python3.6.yaml │ │ ├── README │ │ ├── osx_python2.7.yaml │ │ ├── osx_python3.5.yaml │ │ └── osx_python3.6.yaml │ ├── .gitattributes │ ├── .circleci │ │ └── fast_finish_ci_pr_build.sh │ └── .github │ │ └── ISSUE_TEMPLATE.md ├── pysocks-feedstock │ ├── .gitignore │ ├── .gitattributes │ └── ci_support │ │ └── fast_finish_ci_pr_build.sh ├── pytest-feedstock │ ├── .gitignore │ ├── .gitattributes │ ├── .ci_support │ │ ├── README │ │ ├── win_python2.7.yaml │ │ ├── win_python3.6.yaml │ │ ├── win_python3.7.yaml │ │ ├── linux_python2.7.yaml │ │ ├── linux_python3.6.yaml │ │ └── linux_python3.7.yaml │ ├── .circleci │ │ └── fast_finish_ci_pr_build.sh │ └── .github │ │ └── ISSUE_TEMPLATE.md ├── pyyaml-feedstock │ ├── .gitignore │ ├── .gitattributes │ └── ci_support │ │ └── fast_finish_ci_pr_build.sh ├── readline-feedstock │ ├── .gitignore │ ├── .ci_support │ │ ├── linux_.yaml │ │ ├── README │ │ └── osx_.yaml │ ├── .gitattributes │ ├── recipe │ │ └── build.sh │ ├── .circleci │ │ └── fast_finish_ci_pr_build.sh │ └── .github │ │ └── ISSUE_TEMPLATE.md ├── requests-feedstock │ ├── .gitignore │ ├── .ci_support │ │ ├── linux_python2.7.yaml │ │ ├── linux_python3.5.yaml │ │ ├── linux_python3.6.yaml │ │ ├── win_python2.7.yaml │ │ ├── win_python3.5.yaml │ │ ├── win_python3.6.yaml │ │ ├── README │ │ ├── osx_python2.7.yaml │ │ ├── osx_python3.5.yaml │ │ └── osx_python3.6.yaml │ ├── .gitattributes │ ├── .circleci │ │ └── fast_finish_ci_pr_build.sh │ └── .github │ │ └── ISSUE_TEMPLATE.md ├── rhash-feedstock │ ├── .gitignore │ ├── .gitattributes │ ├── ci_support │ │ └── fast_finish_ci_pr_build.sh │ └── recipe │ │ └── build.sh ├── sqlite-feedstock │ ├── .gitignore │ ├── .gitattributes │ └── recipe │ │ └── bld.bat ├── su-exec-feedstock │ ├── .gitignore │ ├── recipe │ │ └── build.sh │ ├── .gitattributes │ ├── .ci_support │ │ ├── README │ │ ├── linux_c_compilergcc.yaml │ │ └── linux_c_compilertoolchain_c.yaml │ ├── .circleci │ │ └── fast_finish_ci_pr_build.sh │ └── .github │ │ └── ISSUE_TEMPLATE.md ├── traitlets-feedstock │ ├── .gitignore │ ├── .gitattributes │ └── ci_support │ │ └── fast_finish_ci_pr_build.sh ├── unzip-feedstock │ ├── .gitignore │ ├── .gitattributes │ └── ci_support │ │ └── fast_finish_ci_pr_build.sh ├── urllib3-feedstock │ ├── .gitignore │ ├── .gitattributes │ └── ci_support │ │ └── fast_finish_ci_pr_build.sh ├── wheel-feedstock │ ├── .gitignore │ └── .gitattributes ├── asn1crypto-feedstock │ ├── .gitignore │ ├── .gitattributes │ └── ci_support │ │ └── fast_finish_ci_pr_build.sh ├── atomicwrites-feedstock │ ├── .gitignore │ ├── .gitattributes │ ├── .ci_support │ │ ├── README │ │ ├── win_python2.7.yaml │ │ ├── win_python3.5.yaml │ │ ├── win_python3.6.yaml │ │ ├── linux_python2.7.yaml │ │ ├── linux_python3.5.yaml │ │ ├── linux_python3.6.yaml │ │ ├── osx_python2.7.yaml │ │ ├── osx_python3.5.yaml │ │ └── osx_python3.6.yaml │ ├── .circleci │ │ └── fast_finish_ci_pr_build.sh │ └── .github │ │ └── ISSUE_TEMPLATE.md ├── beautifulsoup4-feedstock │ ├── .gitignore │ ├── .ci_support │ │ ├── linux_python2.7.yaml │ │ ├── linux_python3.5.yaml │ │ ├── linux_python3.6.yaml │ │ ├── linux_python3.7.yaml │ │ ├── win_python2.7.yaml │ │ ├── win_python3.5.yaml │ │ ├── win_python3.6.yaml │ │ ├── win_python3.7.yaml │ │ ├── README │ │ ├── osx_python2.7.yaml │ │ ├── osx_python3.5.yaml │ │ ├── osx_python3.6.yaml │ │ └── osx_python3.7.yaml │ ├── .gitattributes │ ├── .circleci │ │ └── fast_finish_ci_pr_build.sh │ └── .github │ │ └── ISSUE_TEMPLATE.md ├── conda-build-feedstock │ ├── .gitignore │ ├── .ci_support │ │ ├── win_python2.7.yaml │ │ ├── win_python3.5.yaml │ │ ├── win_python3.6.yaml │ │ ├── linux_python2.7.yaml │ │ ├── linux_python3.5.yaml │ │ ├── linux_python3.6.yaml │ │ ├── README │ │ ├── osx_python2.7.yaml │ │ ├── osx_python3.5.yaml │ │ └── osx_python3.6.yaml │ ├── .gitattributes │ ├── recipe │ │ ├── build.sh │ │ ├── test_bdist_conda_setup.py │ │ └── bld.bat │ ├── .circleci │ │ └── fast_finish_ci_pr_build.sh │ └── .github │ │ └── ISSUE_TEMPLATE.md ├── constructor-feedstock │ ├── .gitignore │ ├── .gitattributes │ ├── .ci_support │ │ ├── README │ │ ├── win_python2.7.yaml │ │ ├── win_python3.5.yaml │ │ ├── win_python3.6.yaml │ │ ├── linux_python2.7.yaml │ │ ├── linux_python3.5.yaml │ │ ├── linux_python3.6.yaml │ │ ├── osx_python2.7.yaml │ │ ├── osx_python3.5.yaml │ │ └── osx_python3.6.yaml │ ├── .circleci │ │ └── fast_finish_ci_pr_build.sh │ └── .github │ │ └── ISSUE_TEMPLATE.md ├── cryptography-feedstock │ ├── .gitignore │ ├── .gitattributes │ ├── .ci_support │ │ ├── README │ │ ├── linux_python2.7.yaml │ │ ├── linux_python3.5.yaml │ │ ├── linux_python3.6.yaml │ │ ├── win_c_compilervs2008python2.7.yaml │ │ ├── win_c_compilervs2015python3.5.yaml │ │ ├── win_c_compilervs2015python3.6.yaml │ │ ├── osx_python2.7.yaml │ │ ├── osx_python3.5.yaml │ │ └── osx_python3.6.yaml │ ├── .circleci │ │ └── fast_finish_ci_pr_build.sh │ └── .github │ │ └── ISSUE_TEMPLATE.md ├── hypothesis-feedstock │ ├── .gitignore │ ├── .gitattributes │ └── ci_support │ │ └── fast_finish_ci_pr_build.sh ├── jsonschema-feedstock │ ├── .gitignore │ ├── .gitattributes │ └── ci_support │ │ └── fast_finish_ci_pr_build.sh ├── jupyter_core-feedstock │ ├── .gitignore │ └── .gitattributes ├── libarchive-feedstock │ ├── .gitignore │ ├── .gitattributes │ └── recipe │ │ └── test │ │ └── hello_world.xar ├── markupsafe-feedstock │ ├── .gitignore │ └── .gitattributes ├── more-itertools-feedstock │ ├── .gitignore │ ├── .ci_support │ │ ├── linux_python2.7.yaml │ │ ├── linux_python3.5.yaml │ │ ├── linux_python3.6.yaml │ │ ├── win_python2.7.yaml │ │ ├── win_python3.5.yaml │ │ ├── win_python3.6.yaml │ │ ├── README │ │ ├── osx_python2.7.yaml │ │ ├── osx_python3.5.yaml │ │ └── osx_python3.6.yaml │ ├── .gitattributes │ ├── .circleci │ │ └── fast_finish_ci_pr_build.sh │ └── .github │ │ └── ISSUE_TEMPLATE.md ├── pkg-config-feedstock │ ├── .gitignore │ ├── .gitattributes │ └── ci_support │ │ └── fast_finish_ci_pr_build.sh ├── ptyprocess-feedstock │ ├── .gitignore │ ├── recipe │ │ ├── build.sh │ │ ├── bld.bat │ │ └── setup.py │ ├── .ci_support │ │ ├── linux_python2.7.yaml │ │ ├── linux_python3.5.yaml │ │ ├── linux_python3.6.yaml │ │ ├── README │ │ ├── osx_python2.7.yaml │ │ ├── osx_python3.5.yaml │ │ └── osx_python3.6.yaml │ ├── .gitattributes │ ├── .circleci │ │ └── fast_finish_ci_pr_build.sh │ └── .github │ │ └── ISSUE_TEMPLATE.md ├── pytest-runner-feedstock │ ├── .gitignore │ ├── .gitattributes │ └── ci_support │ │ └── fast_finish_ci_pr_build.sh ├── ruamel_yaml-feedstock │ ├── .gitignore │ ├── recipe │ │ └── build.sh │ ├── .gitattributes │ └── ci_support │ │ └── fast_finish_ci_pr_build.sh ├── setuptools-feedstock │ ├── .gitignore │ ├── .gitattributes │ ├── .ci_support │ │ ├── README │ │ ├── win_python2.7.yaml │ │ ├── win_python3.5.yaml │ │ ├── win_python3.6.yaml │ │ ├── win_python3.7.yaml │ │ ├── linux_python2.7.yaml │ │ ├── linux_python3.5.yaml │ │ ├── linux_python3.6.yaml │ │ └── linux_python3.7.yaml │ ├── recipe │ │ ├── build.sh │ │ └── bld.bat │ ├── .circleci │ │ └── fast_finish_ci_pr_build.sh │ └── .github │ │ └── ISSUE_TEMPLATE.md ├── setuptools_scm-feedstock │ ├── .gitignore │ ├── .ci_support │ │ ├── linux_.yaml │ │ └── README │ ├── .gitattributes │ ├── .circleci │ │ └── fast_finish_ci_pr_build.sh │ └── .github │ │ └── ISSUE_TEMPLATE.md ├── vcversioner-feedstock │ ├── .gitignore │ └── .gitattributes ├── anaconda-client-feedstock │ ├── .gitignore │ ├── .gitattributes │ └── ci_support │ │ └── fast_finish_ci_pr_build.sh ├── ca-certificates-feedstock │ ├── .gitignore │ ├── .gitattributes │ ├── recipe │ │ ├── bld.bat │ │ └── build.sh │ └── ci_support │ │ └── fast_finish_ci_pr_build.sh ├── cmake_nosystemcurl-feedstock │ ├── .gitignore │ ├── .gitattributes │ └── ci_support │ │ └── fast_finish_ci_pr_build.sh ├── ipython_genutils-feedstock │ ├── .gitignore │ └── .gitattributes ├── python-dateutil-feedstock │ ├── .gitignore │ ├── .gitattributes │ └── ci_support │ │ └── fast_finish_ci_pr_build.sh ├── python-libarchive-c-feedstock │ ├── .gitignore │ ├── .gitattributes │ ├── recipe │ │ ├── bld.bat │ │ └── build.sh │ └── ci_support │ │ └── fast_finish_ci_pr_build.sh ├── cryptography-vectors-feedstock │ ├── .gitignore │ ├── .ci_support │ │ ├── linux_python2.7.yaml │ │ ├── linux_python3.5.yaml │ │ ├── linux_python3.6.yaml │ │ ├── win_python2.7.yaml │ │ ├── win_python3.5.yaml │ │ ├── win_python3.6.yaml │ │ ├── README │ │ ├── osx_python2.7.yaml │ │ ├── osx_python3.5.yaml │ │ └── osx_python3.6.yaml │ ├── .gitattributes │ ├── .circleci │ │ └── fast_finish_ci_pr_build.sh │ └── .github │ │ └── ISSUE_TEMPLATE.md ├── ctng-compilers-feedstock │ └── recipe │ │ ├── conda_build_config.gcc5.yaml │ │ ├── conda_build_config.gcc54.yaml │ │ ├── uclibc.config.minimal │ │ ├── .meta.yaml.swp │ │ ├── hello-world.cpp │ │ ├── tests │ │ ├── fortomp │ │ │ ├── CMakeLists.txt │ │ │ └── test_fort.sh │ │ └── aligned_alloc.c │ │ ├── install-duma.sh │ │ ├── conda_build_config.cos6.i686.yaml │ │ ├── conda_build_config.cos6.x86_64.yaml │ │ └── conda_build_config.cos7.ppc64le.yaml ├── ctng-compilers-activation-feedstock │ └── recipe │ │ ├── conda_build_config.gcc5.yaml │ │ ├── conda_build_config.gcc54.yaml │ │ ├── tests │ │ ├── fortomp │ │ │ ├── CMakeLists.txt │ │ │ └── test_fort.sh │ │ └── aligned_alloc.c │ │ ├── install-g++.sh │ │ ├── install-gcc.sh │ │ ├── install-binutils.sh │ │ └── install-gfortran.sh ├── cookies-feedstock │ └── recipe │ │ ├── build.sh │ │ ├── bld.bat │ │ └── run_test.py ├── lief-feedstock │ └── recipe │ │ ├── install-liblief.sh │ │ └── install-liblief.bat ├── python-feedstock │ ├── recipe │ │ └── sysconfigdata │ │ │ └── __pycache__ │ │ │ └── _sysconfigdata_aarch64_conda_cos7_linux_gnu.cpython-36.pyc │ └── ci_support │ │ └── fast_finish_ci_pr_build.sh └── openssl-feedstock │ └── ci_support │ └── fast_finish_ci_pr_build.sh ├── installer ├── README.md └── construct.yaml ├── cdt_recipes ├── libx11-cos7-aarch64 │ └── build.sh ├── libxau-cos7-aarch64 │ └── build.sh ├── libxcb-cos7-aarch64 │ └── build.sh ├── libx11-common-cos7-aarch64 │ └── build.sh ├── libx11-devel-cos7-aarch64 │ └── build.sh └── xorg-x11-proto-devel-cos7-aarch64 │ └── build.sh └── docker ├── pkg_builder └── install_conda.sh └── compiler_builder └── install_conda.sh /recipes/flex-feedstock/recipe/yum_requirements.txt: -------------------------------------------------------------------------------- 1 | bison 2 | -------------------------------------------------------------------------------- /recipes/patch-feedstock/recipe/testfile: -------------------------------------------------------------------------------- 1 | A 2 | A 3 | A 4 | B 5 | -------------------------------------------------------------------------------- /recipes/cffi-feedstock/.gitignore: -------------------------------------------------------------------------------- 1 | *.pyc 2 | 3 | build_artefacts 4 | -------------------------------------------------------------------------------- /recipes/curl-feedstock/.gitignore: -------------------------------------------------------------------------------- 1 | *.pyc 2 | 3 | build_artefacts 4 | -------------------------------------------------------------------------------- /recipes/flex-feedstock/.gitignore: -------------------------------------------------------------------------------- 1 | *.pyc 2 | 3 | build_artefacts 4 | -------------------------------------------------------------------------------- /recipes/git-feedstock/.gitignore: -------------------------------------------------------------------------------- 1 | *.pyc 2 | 3 | build_artefacts 4 | -------------------------------------------------------------------------------- /recipes/icu-feedstock/.gitignore: -------------------------------------------------------------------------------- 1 | *.pyc 2 | 3 | build_artefacts 4 | -------------------------------------------------------------------------------- /recipes/idna-feedstock/.gitignore: -------------------------------------------------------------------------------- 1 | *.pyc 2 | 3 | build_artefacts 4 | -------------------------------------------------------------------------------- /recipes/lz4-feedstock/.gitignore: -------------------------------------------------------------------------------- 1 | *.pyc 2 | 3 | build_artifacts 4 | -------------------------------------------------------------------------------- /recipes/lzo-feedstock/.gitignore: -------------------------------------------------------------------------------- 1 | *.pyc 2 | 3 | build_artefacts 4 | -------------------------------------------------------------------------------- /recipes/m4-feedstock/.gitignore: -------------------------------------------------------------------------------- 1 | *.pyc 2 | 3 | build_artefacts 4 | -------------------------------------------------------------------------------- /recipes/make-feedstock/.gitignore: -------------------------------------------------------------------------------- 1 | *.pyc 2 | 3 | build_artefacts 4 | -------------------------------------------------------------------------------- /recipes/mock-feedstock/.gitignore: -------------------------------------------------------------------------------- 1 | *.pyc 2 | 3 | build_artefacts 4 | -------------------------------------------------------------------------------- /recipes/nose-feedstock/.gitignore: -------------------------------------------------------------------------------- 1 | *.pyc 2 | 3 | build_artefacts 4 | -------------------------------------------------------------------------------- /recipes/patch-feedstock/recipe/testfile2: -------------------------------------------------------------------------------- 1 | A 2 | A 3 | A 4 | A 5 | -------------------------------------------------------------------------------- /recipes/pbr-feedstock/.gitignore: -------------------------------------------------------------------------------- 1 | *.pyc 2 | 3 | build_artifacts 4 | -------------------------------------------------------------------------------- /recipes/perl-feedstock/.gitignore: -------------------------------------------------------------------------------- 1 | *.pyc 2 | 3 | build_artefacts 4 | -------------------------------------------------------------------------------- /recipes/pip-feedstock/.gitignore: -------------------------------------------------------------------------------- 1 | *.pyc 2 | 3 | build_artefacts 4 | -------------------------------------------------------------------------------- /recipes/py-feedstock/.gitignore: -------------------------------------------------------------------------------- 1 | *.pyc 2 | 3 | build_artifacts 4 | -------------------------------------------------------------------------------- /recipes/pytz-feedstock/.gitignore: -------------------------------------------------------------------------------- 1 | *.pyc 2 | 3 | build_artifacts 4 | -------------------------------------------------------------------------------- /recipes/six-feedstock/.gitignore: -------------------------------------------------------------------------------- 1 | *.pyc 2 | 3 | build_artefacts 4 | -------------------------------------------------------------------------------- /recipes/tini-feedstock/.gitignore: -------------------------------------------------------------------------------- 1 | *.pyc 2 | 3 | build_artifacts 4 | -------------------------------------------------------------------------------- /recipes/tk-feedstock/.gitignore: -------------------------------------------------------------------------------- 1 | *.pyc 2 | 3 | build_artefacts 4 | -------------------------------------------------------------------------------- /recipes/tqdm-feedstock/.gitignore: -------------------------------------------------------------------------------- 1 | *.pyc 2 | 3 | build_artifacts 4 | -------------------------------------------------------------------------------- /recipes/xz-feedstock/.gitignore: -------------------------------------------------------------------------------- 1 | *.pyc 2 | 3 | build_artefacts 4 | -------------------------------------------------------------------------------- /recipes/yaml-feedstock/.gitignore: -------------------------------------------------------------------------------- 1 | *.pyc 2 | 3 | build_artefacts 4 | -------------------------------------------------------------------------------- /recipes/zlib-feedstock/.gitignore: -------------------------------------------------------------------------------- 1 | *.pyc 2 | 3 | build_artefacts 4 | -------------------------------------------------------------------------------- /recipes/zstd-feedstock/.gitignore: -------------------------------------------------------------------------------- 1 | *.pyc 2 | 3 | build_artefacts 4 | -------------------------------------------------------------------------------- /recipes/attrs-feedstock/.gitignore: -------------------------------------------------------------------------------- 1 | *.pyc 2 | 3 | build_artifacts 4 | -------------------------------------------------------------------------------- /recipes/autoconf-feedstock/.gitignore: -------------------------------------------------------------------------------- 1 | *.pyc 2 | 3 | build_artefacts 4 | -------------------------------------------------------------------------------- /recipes/automake-feedstock/.gitignore: -------------------------------------------------------------------------------- 1 | *.pyc 2 | 3 | build_artefacts 4 | -------------------------------------------------------------------------------- /recipes/bison-feedstock/.gitignore: -------------------------------------------------------------------------------- 1 | *.pyc 2 | 3 | build_artefacts 4 | -------------------------------------------------------------------------------- /recipes/bzip2-feedstock/.gitignore: -------------------------------------------------------------------------------- 1 | *.pyc 2 | 3 | build_artifacts 4 | -------------------------------------------------------------------------------- /recipes/certifi-feedstock/.gitignore: -------------------------------------------------------------------------------- 1 | *.pyc 2 | 3 | build_artifacts 4 | -------------------------------------------------------------------------------- /recipes/chardet-feedstock/.gitignore: -------------------------------------------------------------------------------- 1 | *.pyc 2 | 3 | build_artefacts 4 | -------------------------------------------------------------------------------- /recipes/clyent-feedstock/.gitignore: -------------------------------------------------------------------------------- 1 | *.pyc 2 | 3 | build_artefacts 4 | -------------------------------------------------------------------------------- /recipes/cmake-feedstock/.gitignore: -------------------------------------------------------------------------------- 1 | *.pyc 2 | 3 | build_artefacts 4 | -------------------------------------------------------------------------------- /recipes/conda-env-feedstock/.gitignore: -------------------------------------------------------------------------------- 1 | *.pyc 2 | 3 | build_artefacts 4 | -------------------------------------------------------------------------------- /recipes/conda-feedstock/.gitignore: -------------------------------------------------------------------------------- 1 | *.pyc 2 | 3 | build_artefacts 4 | -------------------------------------------------------------------------------- /recipes/coverage-feedstock/.gitignore: -------------------------------------------------------------------------------- 1 | *.pyc 2 | 3 | build_artefacts 4 | -------------------------------------------------------------------------------- /recipes/cython-feedstock/.gitignore: -------------------------------------------------------------------------------- 1 | *.pyc 2 | 3 | build_artifacts 4 | -------------------------------------------------------------------------------- /recipes/decorator-feedstock/.gitignore: -------------------------------------------------------------------------------- 1 | *.pyc 2 | 3 | build_artefacts 4 | -------------------------------------------------------------------------------- /recipes/expat-feedstock/.gitignore: -------------------------------------------------------------------------------- 1 | *.pyc 2 | 3 | build_artefacts 4 | -------------------------------------------------------------------------------- /recipes/filelock-feedstock/.gitignore: -------------------------------------------------------------------------------- 1 | *.pyc 2 | 3 | build_artifacts 4 | -------------------------------------------------------------------------------- /recipes/gettext-feedstock/.gitignore: -------------------------------------------------------------------------------- 1 | *.pyc 2 | 3 | build_artefacts 4 | -------------------------------------------------------------------------------- /recipes/glob2-feedstock/.gitignore: -------------------------------------------------------------------------------- 1 | *.pyc 2 | 3 | build_artefacts 4 | -------------------------------------------------------------------------------- /recipes/help2man-feedstock/.gitignore: -------------------------------------------------------------------------------- 1 | *.pyc 2 | 3 | build_artefacts 4 | -------------------------------------------------------------------------------- /recipes/iso8601-feedstock/.gitignore: -------------------------------------------------------------------------------- 1 | *.pyc 2 | 3 | build_artefacts 4 | -------------------------------------------------------------------------------- /recipes/jinja2-feedstock/.gitignore: -------------------------------------------------------------------------------- 1 | *.pyc 2 | 3 | build_artefacts 4 | -------------------------------------------------------------------------------- /recipes/libedit-feedstock/.gitignore: -------------------------------------------------------------------------------- 1 | *.pyc 2 | 3 | build_artefacts 4 | -------------------------------------------------------------------------------- /recipes/libffi-feedstock/.gitignore: -------------------------------------------------------------------------------- 1 | *.pyc 2 | 3 | build_artefacts 4 | -------------------------------------------------------------------------------- /recipes/libssh2-feedstock/.gitignore: -------------------------------------------------------------------------------- 1 | *.pyc 2 | 3 | build_artefacts 4 | -------------------------------------------------------------------------------- /recipes/libtool-feedstock/.gitignore: -------------------------------------------------------------------------------- 1 | *.pyc 2 | 3 | build_artefacts 4 | -------------------------------------------------------------------------------- /recipes/libxml2-feedstock/.gitignore: -------------------------------------------------------------------------------- 1 | *.pyc 2 | 3 | build_artefacts 4 | -------------------------------------------------------------------------------- /recipes/lz4-c-feedstock/.gitignore: -------------------------------------------------------------------------------- 1 | *.pyc 2 | 3 | build_artefacts 4 | -------------------------------------------------------------------------------- /recipes/nbformat-feedstock/.gitignore: -------------------------------------------------------------------------------- 1 | *.pyc 2 | 3 | build_artefacts 4 | -------------------------------------------------------------------------------- /recipes/ncurses-feedstock/.gitignore: -------------------------------------------------------------------------------- 1 | *.pyc 2 | 3 | build_artefacts 4 | -------------------------------------------------------------------------------- /recipes/patch-feedstock/.gitignore: -------------------------------------------------------------------------------- 1 | *.pyc 2 | 3 | build_artefacts 4 | -------------------------------------------------------------------------------- /recipes/patchelf-feedstock/.gitignore: -------------------------------------------------------------------------------- 1 | *.pyc 2 | 3 | build_artefacts 4 | -------------------------------------------------------------------------------- /recipes/pexpect-feedstock/.gitignore: -------------------------------------------------------------------------------- 1 | *.pyc 2 | 3 | build_artifacts 4 | -------------------------------------------------------------------------------- /recipes/pkgconfig-feedstock/.gitignore: -------------------------------------------------------------------------------- 1 | *.pyc 2 | 3 | build_artefacts 4 | -------------------------------------------------------------------------------- /recipes/pkginfo-feedstock/.gitignore: -------------------------------------------------------------------------------- 1 | *.pyc 2 | 3 | build_artefacts 4 | -------------------------------------------------------------------------------- /recipes/pluggy-feedstock/.gitignore: -------------------------------------------------------------------------------- 1 | *.pyc 2 | 3 | build_artifacts 4 | -------------------------------------------------------------------------------- /recipes/pretend-feedstock/.gitignore: -------------------------------------------------------------------------------- 1 | *.pyc 2 | 3 | build_artefacts 4 | -------------------------------------------------------------------------------- /recipes/psutil-feedstock/.gitignore: -------------------------------------------------------------------------------- 1 | *.pyc 2 | 3 | build_artifacts 4 | -------------------------------------------------------------------------------- /recipes/pycosat-feedstock/.gitignore: -------------------------------------------------------------------------------- 1 | *.pyc 2 | 3 | build_artefacts 4 | -------------------------------------------------------------------------------- /recipes/pycosat-feedstock/recipe/bld.bat: -------------------------------------------------------------------------------- 1 | %PYTHON% setup.py install 2 | -------------------------------------------------------------------------------- /recipes/pycparser-feedstock/.gitignore: -------------------------------------------------------------------------------- 1 | *.pyc 2 | 3 | build_artifacts 4 | -------------------------------------------------------------------------------- /recipes/pyopenssl-feedstock/.gitignore: -------------------------------------------------------------------------------- 1 | *.pyc 2 | 3 | build_artifacts 4 | -------------------------------------------------------------------------------- /recipes/pysocks-feedstock/.gitignore: -------------------------------------------------------------------------------- 1 | *.pyc 2 | 3 | build_artefacts 4 | -------------------------------------------------------------------------------- /recipes/pytest-feedstock/.gitignore: -------------------------------------------------------------------------------- 1 | *.pyc 2 | 3 | build_artifacts 4 | -------------------------------------------------------------------------------- /recipes/pyyaml-feedstock/.gitignore: -------------------------------------------------------------------------------- 1 | *.pyc 2 | 3 | build_artefacts 4 | -------------------------------------------------------------------------------- /recipes/readline-feedstock/.gitignore: -------------------------------------------------------------------------------- 1 | *.pyc 2 | 3 | build_artifacts 4 | -------------------------------------------------------------------------------- /recipes/requests-feedstock/.gitignore: -------------------------------------------------------------------------------- 1 | *.pyc 2 | 3 | build_artifacts 4 | -------------------------------------------------------------------------------- /recipes/rhash-feedstock/.gitignore: -------------------------------------------------------------------------------- 1 | *.pyc 2 | 3 | build_artefacts 4 | -------------------------------------------------------------------------------- /recipes/sqlite-feedstock/.gitignore: -------------------------------------------------------------------------------- 1 | *.pyc 2 | 3 | build_artefacts 4 | -------------------------------------------------------------------------------- /recipes/su-exec-feedstock/.gitignore: -------------------------------------------------------------------------------- 1 | *.pyc 2 | 3 | build_artifacts 4 | -------------------------------------------------------------------------------- /recipes/tk-feedstock/recipe/hello.tcl: -------------------------------------------------------------------------------- 1 | puts "Hello world!" 2 | exit 0 3 | -------------------------------------------------------------------------------- /recipes/traitlets-feedstock/.gitignore: -------------------------------------------------------------------------------- 1 | *.pyc 2 | 3 | build_artefacts 4 | -------------------------------------------------------------------------------- /recipes/unzip-feedstock/.gitignore: -------------------------------------------------------------------------------- 1 | *.pyc 2 | 3 | build_artefacts 4 | -------------------------------------------------------------------------------- /recipes/urllib3-feedstock/.gitignore: -------------------------------------------------------------------------------- 1 | *.pyc 2 | 3 | build_artefacts 4 | -------------------------------------------------------------------------------- /recipes/wheel-feedstock/.gitignore: -------------------------------------------------------------------------------- 1 | *.pyc 2 | 3 | build_artefacts 4 | -------------------------------------------------------------------------------- /recipes/asn1crypto-feedstock/.gitignore: -------------------------------------------------------------------------------- 1 | *.pyc 2 | 3 | build_artefacts 4 | -------------------------------------------------------------------------------- /recipes/atomicwrites-feedstock/.gitignore: -------------------------------------------------------------------------------- 1 | *.pyc 2 | 3 | build_artifacts 4 | -------------------------------------------------------------------------------- /recipes/beautifulsoup4-feedstock/.gitignore: -------------------------------------------------------------------------------- 1 | *.pyc 2 | 3 | build_artifacts 4 | -------------------------------------------------------------------------------- /recipes/conda-build-feedstock/.gitignore: -------------------------------------------------------------------------------- 1 | *.pyc 2 | 3 | build_artifacts 4 | -------------------------------------------------------------------------------- /recipes/constructor-feedstock/.gitignore: -------------------------------------------------------------------------------- 1 | *.pyc 2 | 3 | build_artifacts 4 | -------------------------------------------------------------------------------- /recipes/cryptography-feedstock/.gitignore: -------------------------------------------------------------------------------- 1 | *.pyc 2 | 3 | build_artifacts 4 | -------------------------------------------------------------------------------- /recipes/hypothesis-feedstock/.gitignore: -------------------------------------------------------------------------------- 1 | *.pyc 2 | 3 | build_artefacts 4 | -------------------------------------------------------------------------------- /recipes/jsonschema-feedstock/.gitignore: -------------------------------------------------------------------------------- 1 | *.pyc 2 | 3 | build_artefacts 4 | -------------------------------------------------------------------------------- /recipes/jupyter_core-feedstock/.gitignore: -------------------------------------------------------------------------------- 1 | *.pyc 2 | 3 | build_artefacts 4 | -------------------------------------------------------------------------------- /recipes/libarchive-feedstock/.gitignore: -------------------------------------------------------------------------------- 1 | *.pyc 2 | 3 | build_artefacts 4 | -------------------------------------------------------------------------------- /recipes/markupsafe-feedstock/.gitignore: -------------------------------------------------------------------------------- 1 | *.pyc 2 | 3 | build_artefacts 4 | -------------------------------------------------------------------------------- /recipes/more-itertools-feedstock/.gitignore: -------------------------------------------------------------------------------- 1 | *.pyc 2 | 3 | build_artifacts 4 | -------------------------------------------------------------------------------- /recipes/pkg-config-feedstock/.gitignore: -------------------------------------------------------------------------------- 1 | *.pyc 2 | 3 | build_artefacts 4 | -------------------------------------------------------------------------------- /recipes/ptyprocess-feedstock/.gitignore: -------------------------------------------------------------------------------- 1 | *.pyc 2 | 3 | build_artifacts 4 | -------------------------------------------------------------------------------- /recipes/pytest-runner-feedstock/.gitignore: -------------------------------------------------------------------------------- 1 | *.pyc 2 | 3 | build_artefacts 4 | -------------------------------------------------------------------------------- /recipes/ruamel_yaml-feedstock/.gitignore: -------------------------------------------------------------------------------- 1 | *.pyc 2 | 3 | build_artefacts 4 | -------------------------------------------------------------------------------- /recipes/setuptools-feedstock/.gitignore: -------------------------------------------------------------------------------- 1 | *.pyc 2 | 3 | build_artifacts 4 | -------------------------------------------------------------------------------- /recipes/setuptools_scm-feedstock/.gitignore: -------------------------------------------------------------------------------- 1 | *.pyc 2 | 3 | build_artifacts 4 | -------------------------------------------------------------------------------- /recipes/vcversioner-feedstock/.gitignore: -------------------------------------------------------------------------------- 1 | *.pyc 2 | 3 | build_artefacts 4 | -------------------------------------------------------------------------------- /recipes/anaconda-client-feedstock/.gitignore: -------------------------------------------------------------------------------- 1 | *.pyc 2 | 3 | build_artefacts 4 | -------------------------------------------------------------------------------- /recipes/bzip2-feedstock/.ci_support/linux_.yaml: -------------------------------------------------------------------------------- 1 | c_compiler: 2 | - toolchain_c 3 | -------------------------------------------------------------------------------- /recipes/ca-certificates-feedstock/.gitignore: -------------------------------------------------------------------------------- 1 | *.pyc 2 | 3 | build_artefacts 4 | -------------------------------------------------------------------------------- /recipes/cmake_nosystemcurl-feedstock/.gitignore: -------------------------------------------------------------------------------- 1 | *.pyc 2 | 3 | build_artefacts 4 | -------------------------------------------------------------------------------- /recipes/ipython_genutils-feedstock/.gitignore: -------------------------------------------------------------------------------- 1 | *.pyc 2 | 3 | build_artefacts 4 | -------------------------------------------------------------------------------- /recipes/python-dateutil-feedstock/.gitignore: -------------------------------------------------------------------------------- 1 | *.pyc 2 | 3 | build_artefacts 4 | -------------------------------------------------------------------------------- /recipes/python-libarchive-c-feedstock/.gitignore: -------------------------------------------------------------------------------- 1 | *.pyc 2 | 3 | build_artefacts 4 | -------------------------------------------------------------------------------- /recipes/cryptography-vectors-feedstock/.gitignore: -------------------------------------------------------------------------------- 1 | *.pyc 2 | 3 | build_artifacts 4 | -------------------------------------------------------------------------------- /recipes/bzip2-feedstock/.ci_support/win_c_compilervs2008.yaml: -------------------------------------------------------------------------------- 1 | c_compiler: 2 | - vs2008 3 | -------------------------------------------------------------------------------- /recipes/bzip2-feedstock/.ci_support/win_c_compilervs2015.yaml: -------------------------------------------------------------------------------- 1 | c_compiler: 2 | - vs2015 3 | -------------------------------------------------------------------------------- /recipes/ctng-compilers-feedstock/recipe/conda_build_config.gcc5.yaml: -------------------------------------------------------------------------------- 1 | ctng_gcc: 2 | - 5.5.0 3 | -------------------------------------------------------------------------------- /recipes/ctng-compilers-feedstock/recipe/conda_build_config.gcc54.yaml: -------------------------------------------------------------------------------- 1 | ctng_gcc: 2 | - 5.4.0 3 | -------------------------------------------------------------------------------- /recipes/ptyprocess-feedstock/recipe/build.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | $PYTHON setup.py install 4 | -------------------------------------------------------------------------------- /recipes/tini-feedstock/recipe/yum_requirements.txt: -------------------------------------------------------------------------------- 1 | glibc-devel 2 | glibc-static 3 | vim-common 4 | -------------------------------------------------------------------------------- /recipes/expat-feedstock/recipe/stdbool.h: -------------------------------------------------------------------------------- 1 | typedef int bool; 2 | #define false 0 3 | #define true 1 4 | -------------------------------------------------------------------------------- /recipes/ctng-compilers-activation-feedstock/recipe/conda_build_config.gcc5.yaml: -------------------------------------------------------------------------------- 1 | ctng_gcc: 2 | - 5.5.0 3 | -------------------------------------------------------------------------------- /recipes/ctng-compilers-activation-feedstock/recipe/conda_build_config.gcc54.yaml: -------------------------------------------------------------------------------- 1 | ctng_gcc: 2 | - 5.4.0 3 | -------------------------------------------------------------------------------- /recipes/cookies-feedstock/recipe/build.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | $PYTHON setup.py install --old-and-unmanageable 4 | -------------------------------------------------------------------------------- /recipes/cookies-feedstock/recipe/bld.bat: -------------------------------------------------------------------------------- 1 | "%PYTHON%" setup.py install --old-and-unmanageable 2 | if errorlevel 1 exit 1 3 | -------------------------------------------------------------------------------- /recipes/su-exec-feedstock/recipe/build.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | make 4 | mv "${SRC_DIR}/su-exec" "${PREFIX}/bin/su-exec" 5 | -------------------------------------------------------------------------------- /recipes/ctng-compilers-feedstock/recipe/uclibc.config.minimal: -------------------------------------------------------------------------------- 1 | UCLIBC_HAS_STDIO_GETC_MACRO=n 2 | UCLIBC_HAS_STDIO_PUTC_MACRO=n 3 | -------------------------------------------------------------------------------- /recipes/ruamel_yaml-feedstock/recipe/build.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | bash $RECIPE_DIR/prepare.bash 4 | $PYTHON setup.py install 5 | -------------------------------------------------------------------------------- /recipes/tk-feedstock/.gitattributes: -------------------------------------------------------------------------------- 1 | * text=auto 2 | 3 | meta.yaml text eol=lf 4 | build.sh text eol=lf 5 | bld.bat text eol=crlf 6 | -------------------------------------------------------------------------------- /recipes/bison-feedstock/.gitattributes: -------------------------------------------------------------------------------- 1 | * text=auto 2 | 3 | meta.yaml text eol=lf 4 | build.sh text eol=lf 5 | bld.bat text eol=crlf 6 | -------------------------------------------------------------------------------- /recipes/conda-feedstock/.gitattributes: -------------------------------------------------------------------------------- 1 | * text=auto 2 | 3 | meta.yaml text eol=lf 4 | build.sh text eol=lf 5 | bld.bat text eol=crlf 6 | -------------------------------------------------------------------------------- /recipes/curl-feedstock/.gitattributes: -------------------------------------------------------------------------------- 1 | * text=auto 2 | 3 | meta.yaml text eol=lf 4 | build.sh text eol=lf 5 | bld.bat text eol=crlf 6 | -------------------------------------------------------------------------------- /recipes/expat-feedstock/.gitattributes: -------------------------------------------------------------------------------- 1 | * text=auto 2 | 3 | meta.yaml text eol=lf 4 | build.sh text eol=lf 5 | bld.bat text eol=crlf 6 | -------------------------------------------------------------------------------- /recipes/flex-feedstock/.gitattributes: -------------------------------------------------------------------------------- 1 | * text=auto 2 | 3 | meta.yaml text eol=lf 4 | build.sh text eol=lf 5 | bld.bat text eol=crlf 6 | -------------------------------------------------------------------------------- /recipes/gettext-feedstock/.gitattributes: -------------------------------------------------------------------------------- 1 | * text=auto 2 | 3 | meta.yaml text eol=lf 4 | build.sh text eol=lf 5 | bld.bat text eol=crlf 6 | -------------------------------------------------------------------------------- /recipes/glob2-feedstock/.gitattributes: -------------------------------------------------------------------------------- 1 | * text=auto 2 | 3 | meta.yaml text eol=lf 4 | build.sh text eol=lf 5 | bld.bat text eol=crlf 6 | -------------------------------------------------------------------------------- /recipes/icu-feedstock/.gitattributes: -------------------------------------------------------------------------------- 1 | * text=auto 2 | 3 | meta.yaml text eol=lf 4 | build.sh text eol=lf 5 | bld.bat text eol=crlf 6 | -------------------------------------------------------------------------------- /recipes/idna-feedstock/.gitattributes: -------------------------------------------------------------------------------- 1 | * text=auto 2 | 3 | meta.yaml text eol=lf 4 | build.sh text eol=lf 5 | bld.bat text eol=crlf 6 | -------------------------------------------------------------------------------- /recipes/libffi-feedstock/.gitattributes: -------------------------------------------------------------------------------- 1 | * text=auto 2 | 3 | meta.yaml text eol=lf 4 | build.sh text eol=lf 5 | bld.bat text eol=crlf 6 | -------------------------------------------------------------------------------- /recipes/libssh2-feedstock/.gitattributes: -------------------------------------------------------------------------------- 1 | * text=auto 2 | 3 | meta.yaml text eol=lf 4 | build.sh text eol=lf 5 | bld.bat text eol=crlf 6 | -------------------------------------------------------------------------------- /recipes/libtool-feedstock/.gitattributes: -------------------------------------------------------------------------------- 1 | * text=auto 2 | 3 | meta.yaml text eol=lf 4 | build.sh text eol=lf 5 | bld.bat text eol=crlf 6 | -------------------------------------------------------------------------------- /recipes/libxml2-feedstock/.gitattributes: -------------------------------------------------------------------------------- 1 | * text=auto 2 | 3 | meta.yaml text eol=lf 4 | build.sh text eol=lf 5 | bld.bat text eol=crlf 6 | -------------------------------------------------------------------------------- /recipes/lzo-feedstock/.gitattributes: -------------------------------------------------------------------------------- 1 | * text=auto 2 | 3 | meta.yaml text eol=lf 4 | build.sh text eol=lf 5 | bld.bat text eol=crlf 6 | -------------------------------------------------------------------------------- /recipes/make-feedstock/.gitattributes: -------------------------------------------------------------------------------- 1 | * text=auto 2 | 3 | meta.yaml text eol=lf 4 | build.sh text eol=lf 5 | bld.bat text eol=crlf 6 | -------------------------------------------------------------------------------- /recipes/mock-feedstock/.gitattributes: -------------------------------------------------------------------------------- 1 | * text=auto 2 | 3 | meta.yaml text eol=lf 4 | build.sh text eol=lf 5 | bld.bat text eol=crlf 6 | -------------------------------------------------------------------------------- /recipes/ncurses-feedstock/.gitattributes: -------------------------------------------------------------------------------- 1 | * text=auto 2 | 3 | meta.yaml text eol=lf 4 | build.sh text eol=lf 5 | bld.bat text eol=crlf 6 | -------------------------------------------------------------------------------- /recipes/nose-feedstock/.gitattributes: -------------------------------------------------------------------------------- 1 | * text=auto 2 | 3 | meta.yaml text eol=lf 4 | build.sh text eol=lf 5 | bld.bat text eol=crlf 6 | -------------------------------------------------------------------------------- /recipes/patch-feedstock/.gitattributes: -------------------------------------------------------------------------------- 1 | * text=auto 2 | 3 | meta.yaml text eol=lf 4 | build.sh text eol=lf 5 | bld.bat text eol=crlf 6 | -------------------------------------------------------------------------------- /recipes/pysocks-feedstock/.gitattributes: -------------------------------------------------------------------------------- 1 | * text=auto 2 | 3 | meta.yaml text eol=lf 4 | build.sh text eol=lf 5 | bld.bat text eol=crlf 6 | -------------------------------------------------------------------------------- /recipes/pyyaml-feedstock/.gitattributes: -------------------------------------------------------------------------------- 1 | * text=auto 2 | 3 | meta.yaml text eol=lf 4 | build.sh text eol=lf 5 | bld.bat text eol=crlf 6 | -------------------------------------------------------------------------------- /recipes/rhash-feedstock/.gitattributes: -------------------------------------------------------------------------------- 1 | * text=auto 2 | 3 | meta.yaml text eol=lf 4 | build.sh text eol=lf 5 | bld.bat text eol=crlf 6 | -------------------------------------------------------------------------------- /recipes/sqlite-feedstock/.gitattributes: -------------------------------------------------------------------------------- 1 | * text=auto 2 | 3 | meta.yaml text eol=lf 4 | build.sh text eol=lf 5 | bld.bat text eol=crlf 6 | -------------------------------------------------------------------------------- /recipes/unzip-feedstock/.gitattributes: -------------------------------------------------------------------------------- 1 | * text=auto 2 | 3 | meta.yaml text eol=lf 4 | build.sh text eol=lf 5 | bld.bat text eol=crlf 6 | -------------------------------------------------------------------------------- /recipes/urllib3-feedstock/.gitattributes: -------------------------------------------------------------------------------- 1 | * text=auto 2 | 3 | meta.yaml text eol=lf 4 | build.sh text eol=lf 5 | bld.bat text eol=crlf 6 | -------------------------------------------------------------------------------- /recipes/wheel-feedstock/.gitattributes: -------------------------------------------------------------------------------- 1 | * text=auto 2 | 3 | meta.yaml text eol=lf 4 | build.sh text eol=lf 5 | bld.bat text eol=crlf 6 | -------------------------------------------------------------------------------- /recipes/yaml-feedstock/.gitattributes: -------------------------------------------------------------------------------- 1 | * text=auto 2 | 3 | meta.yaml text eol=lf 4 | build.sh text eol=lf 5 | bld.bat text eol=crlf 6 | -------------------------------------------------------------------------------- /recipes/zlib-feedstock/.gitattributes: -------------------------------------------------------------------------------- 1 | * text=auto 2 | 3 | meta.yaml text eol=lf 4 | build.sh text eol=lf 5 | bld.bat text eol=crlf 6 | -------------------------------------------------------------------------------- /recipes/asn1crypto-feedstock/.gitattributes: -------------------------------------------------------------------------------- 1 | * text=auto 2 | 3 | meta.yaml text eol=lf 4 | build.sh text eol=lf 5 | bld.bat text eol=crlf 6 | -------------------------------------------------------------------------------- /recipes/autoconf-feedstock/.gitattributes: -------------------------------------------------------------------------------- 1 | * text=auto 2 | 3 | meta.yaml text eol=lf 4 | build.sh text eol=lf 5 | bld.bat text eol=crlf 6 | -------------------------------------------------------------------------------- /recipes/conda-env-feedstock/.gitattributes: -------------------------------------------------------------------------------- 1 | * text=auto 2 | 3 | meta.yaml text eol=lf 4 | build.sh text eol=lf 5 | bld.bat text eol=crlf 6 | -------------------------------------------------------------------------------- /recipes/coverage-feedstock/.gitattributes: -------------------------------------------------------------------------------- 1 | * text=auto 2 | 3 | meta.yaml text eol=lf 4 | build.sh text eol=lf 5 | bld.bat text eol=crlf 6 | -------------------------------------------------------------------------------- /recipes/help2man-feedstock/.gitattributes: -------------------------------------------------------------------------------- 1 | * text=auto 2 | 3 | meta.yaml text eol=lf 4 | build.sh text eol=lf 5 | bld.bat text eol=crlf 6 | -------------------------------------------------------------------------------- /recipes/jupyter_core-feedstock/.gitattributes: -------------------------------------------------------------------------------- 1 | * text=auto 2 | 3 | meta.yaml text eol=lf 4 | build.sh text eol=lf 5 | bld.bat text eol=crlf 6 | -------------------------------------------------------------------------------- /recipes/libarchive-feedstock/.gitattributes: -------------------------------------------------------------------------------- 1 | * text=auto 2 | 3 | meta.yaml text eol=lf 4 | build.sh text eol=lf 5 | bld.bat text eol=crlf 6 | -------------------------------------------------------------------------------- /recipes/markupsafe-feedstock/.gitattributes: -------------------------------------------------------------------------------- 1 | * text=auto 2 | 3 | meta.yaml text eol=lf 4 | build.sh text eol=lf 5 | bld.bat text eol=crlf 6 | -------------------------------------------------------------------------------- /recipes/nbformat-feedstock/.gitattributes: -------------------------------------------------------------------------------- 1 | * text=auto 2 | 3 | meta.yaml text eol=lf 4 | build.sh text eol=lf 5 | bld.bat text eol=crlf 6 | -------------------------------------------------------------------------------- /recipes/patchelf-feedstock/.gitattributes: -------------------------------------------------------------------------------- 1 | * text=auto 2 | 3 | meta.yaml text eol=lf 4 | build.sh text eol=lf 5 | bld.bat text eol=crlf 6 | -------------------------------------------------------------------------------- /recipes/pkg-config-feedstock/.gitattributes: -------------------------------------------------------------------------------- 1 | * text=auto 2 | 3 | meta.yaml text eol=lf 4 | build.sh text eol=lf 5 | bld.bat text eol=crlf 6 | -------------------------------------------------------------------------------- /recipes/ruamel_yaml-feedstock/.gitattributes: -------------------------------------------------------------------------------- 1 | * text=auto 2 | 3 | meta.yaml text eol=lf 4 | build.sh text eol=lf 5 | bld.bat text eol=crlf 6 | -------------------------------------------------------------------------------- /recipes/traitlets-feedstock/.gitattributes: -------------------------------------------------------------------------------- 1 | * text=auto 2 | 3 | meta.yaml text eol=lf 4 | build.sh text eol=lf 5 | bld.bat text eol=crlf 6 | -------------------------------------------------------------------------------- /recipes/vcversioner-feedstock/.gitattributes: -------------------------------------------------------------------------------- 1 | * text=auto 2 | 3 | meta.yaml text eol=lf 4 | build.sh text eol=lf 5 | bld.bat text eol=crlf 6 | -------------------------------------------------------------------------------- /recipes/ca-certificates-feedstock/.gitattributes: -------------------------------------------------------------------------------- 1 | * text=auto 2 | 3 | meta.yaml text eol=lf 4 | build.sh text eol=lf 5 | bld.bat text eol=crlf 6 | -------------------------------------------------------------------------------- /recipes/conda-feedstock/recipe/build.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | echo $PKG_VERSION > conda/.version 4 | . utils/functions.sh && install_conda_full 5 | -------------------------------------------------------------------------------- /recipes/cython-feedstock/recipe/fib.pyx: -------------------------------------------------------------------------------- 1 | def fib(n): 2 | if n <= 2: 3 | return 1 4 | else: 5 | return fib(n-2) + fib(n-1) 6 | -------------------------------------------------------------------------------- /recipes/ipython_genutils-feedstock/.gitattributes: -------------------------------------------------------------------------------- 1 | * text=auto 2 | 3 | meta.yaml text eol=lf 4 | build.sh text eol=lf 5 | bld.bat text eol=crlf 6 | -------------------------------------------------------------------------------- /recipes/pbr-feedstock/.ci_support/linux_.yaml: -------------------------------------------------------------------------------- 1 | pin_run_as_build: 2 | python: 3 | min_pin: x.x 4 | max_pin: x.x 5 | python: 6 | - '2.7' 7 | -------------------------------------------------------------------------------- /recipes/pytz-feedstock/.ci_support/linux_.yaml: -------------------------------------------------------------------------------- 1 | pin_run_as_build: 2 | python: 3 | min_pin: x.x 4 | max_pin: x.x 5 | python: 6 | - '2.7' 7 | -------------------------------------------------------------------------------- /recipes/filelock-feedstock/.ci_support/linux_.yaml: -------------------------------------------------------------------------------- 1 | pin_run_as_build: 2 | python: 3 | min_pin: x.x 4 | max_pin: x.x 5 | python: 6 | - '2.7' 7 | -------------------------------------------------------------------------------- /recipes/nose-feedstock/recipe/bld.bat: -------------------------------------------------------------------------------- 1 | python setup.py install --single-version-externally-managed --record=record.txt 2 | if errorlevel 1 exit 1 3 | -------------------------------------------------------------------------------- /recipes/pluggy-feedstock/.ci_support/linux_.yaml: -------------------------------------------------------------------------------- 1 | pin_run_as_build: 2 | python: 3 | max_pin: x.x 4 | min_pin: x.x 5 | python: 6 | - '2.7' 7 | -------------------------------------------------------------------------------- /recipes/pycosat-feedstock/recipe/build.sh: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env bash 2 | 3 | CFLAGS="-I${PREFIX} -L${PREFIX} ${CFLAGS}" \ 4 | ${PYTHON} setup.py install 5 | -------------------------------------------------------------------------------- /recipes/python-libarchive-c-feedstock/.gitattributes: -------------------------------------------------------------------------------- 1 | * text=auto 2 | 3 | meta.yaml text eol=lf 4 | build.sh text eol=lf 5 | bld.bat text eol=crlf 6 | -------------------------------------------------------------------------------- /recipes/git-feedstock/recipe/git-for-windows.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jjhelmus/conda4aarch64/HEAD/recipes/git-feedstock/recipe/git-for-windows.ico -------------------------------------------------------------------------------- /recipes/help2man-feedstock/recipe/build.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | ./configure --prefix="${PREFIX}" 4 | make -j${CPU_COUNT} ${VERBOSE_AT} 5 | make install 6 | -------------------------------------------------------------------------------- /recipes/icu-feedstock/recipe/run_test.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | set -e 4 | 5 | genrb de.txt 6 | echo "de.res" > list.txt 7 | pkgdata -p mybundle list.txt 8 | -------------------------------------------------------------------------------- /recipes/lz4-feedstock/.ci_support/linux_python2.7.yaml: -------------------------------------------------------------------------------- 1 | pin_run_as_build: 2 | python: 3 | max_pin: x.x 4 | min_pin: x.x 5 | python: 6 | - '2.7' 7 | -------------------------------------------------------------------------------- /recipes/lz4-feedstock/.ci_support/linux_python3.5.yaml: -------------------------------------------------------------------------------- 1 | pin_run_as_build: 2 | python: 3 | max_pin: x.x 4 | min_pin: x.x 5 | python: 6 | - '3.5' 7 | -------------------------------------------------------------------------------- /recipes/lz4-feedstock/.ci_support/linux_python3.6.yaml: -------------------------------------------------------------------------------- 1 | pin_run_as_build: 2 | python: 3 | max_pin: x.x 4 | min_pin: x.x 5 | python: 6 | - '3.6' 7 | -------------------------------------------------------------------------------- /recipes/lz4-feedstock/.ci_support/win_python2.7.yaml: -------------------------------------------------------------------------------- 1 | pin_run_as_build: 2 | python: 3 | max_pin: x.x 4 | min_pin: x.x 5 | python: 6 | - '2.7' 7 | -------------------------------------------------------------------------------- /recipes/lz4-feedstock/.ci_support/win_python3.5.yaml: -------------------------------------------------------------------------------- 1 | pin_run_as_build: 2 | python: 3 | max_pin: x.x 4 | min_pin: x.x 5 | python: 6 | - '3.5' 7 | -------------------------------------------------------------------------------- /recipes/lz4-feedstock/.ci_support/win_python3.6.yaml: -------------------------------------------------------------------------------- 1 | pin_run_as_build: 2 | python: 3 | max_pin: x.x 4 | min_pin: x.x 5 | python: 6 | - '3.6' 7 | -------------------------------------------------------------------------------- /recipes/pexpect-feedstock/.ci_support/win_python2.7.yaml: -------------------------------------------------------------------------------- 1 | pin_run_as_build: 2 | python: 3 | min_pin: x.x 4 | max_pin: x.x 5 | python: 6 | - '2.7' 7 | -------------------------------------------------------------------------------- /recipes/pexpect-feedstock/.ci_support/win_python3.5.yaml: -------------------------------------------------------------------------------- 1 | pin_run_as_build: 2 | python: 3 | min_pin: x.x 4 | max_pin: x.x 5 | python: 6 | - '3.5' 7 | -------------------------------------------------------------------------------- /recipes/pexpect-feedstock/.ci_support/win_python3.6.yaml: -------------------------------------------------------------------------------- 1 | pin_run_as_build: 2 | python: 3 | min_pin: x.x 4 | max_pin: x.x 5 | python: 6 | - '3.6' 7 | -------------------------------------------------------------------------------- /recipes/psutil-feedstock/.ci_support/win_python2.7.yaml: -------------------------------------------------------------------------------- 1 | pin_run_as_build: 2 | python: 3 | min_pin: x.x 4 | max_pin: x.x 5 | python: 6 | - '2.7' 7 | -------------------------------------------------------------------------------- /recipes/psutil-feedstock/.ci_support/win_python3.5.yaml: -------------------------------------------------------------------------------- 1 | pin_run_as_build: 2 | python: 3 | min_pin: x.x 4 | max_pin: x.x 5 | python: 6 | - '3.5' 7 | -------------------------------------------------------------------------------- /recipes/psutil-feedstock/.ci_support/win_python3.6.yaml: -------------------------------------------------------------------------------- 1 | pin_run_as_build: 2 | python: 3 | min_pin: x.x 4 | max_pin: x.x 5 | python: 6 | - '3.6' 7 | -------------------------------------------------------------------------------- /recipes/setuptools_scm-feedstock/.ci_support/linux_.yaml: -------------------------------------------------------------------------------- 1 | pin_run_as_build: 2 | python: 3 | min_pin: x.x 4 | max_pin: x.x 5 | python: 6 | - '2.7' 7 | -------------------------------------------------------------------------------- /recipes/conda-build-feedstock/.ci_support/win_python2.7.yaml: -------------------------------------------------------------------------------- 1 | pin_run_as_build: 2 | python: 3 | min_pin: x.x 4 | max_pin: x.x 5 | python: 6 | - '2.7' 7 | -------------------------------------------------------------------------------- /recipes/conda-build-feedstock/.ci_support/win_python3.5.yaml: -------------------------------------------------------------------------------- 1 | pin_run_as_build: 2 | python: 3 | min_pin: x.x 4 | max_pin: x.x 5 | python: 6 | - '3.5' 7 | -------------------------------------------------------------------------------- /recipes/conda-build-feedstock/.ci_support/win_python3.6.yaml: -------------------------------------------------------------------------------- 1 | pin_run_as_build: 2 | python: 3 | min_pin: x.x 4 | max_pin: x.x 5 | python: 6 | - '3.6' 7 | -------------------------------------------------------------------------------- /recipes/pexpect-feedstock/.ci_support/linux_python2.7.yaml: -------------------------------------------------------------------------------- 1 | pin_run_as_build: 2 | python: 3 | min_pin: x.x 4 | max_pin: x.x 5 | python: 6 | - '2.7' 7 | -------------------------------------------------------------------------------- /recipes/pexpect-feedstock/.ci_support/linux_python3.5.yaml: -------------------------------------------------------------------------------- 1 | pin_run_as_build: 2 | python: 3 | min_pin: x.x 4 | max_pin: x.x 5 | python: 6 | - '3.5' 7 | -------------------------------------------------------------------------------- /recipes/pexpect-feedstock/.ci_support/linux_python3.6.yaml: -------------------------------------------------------------------------------- 1 | pin_run_as_build: 2 | python: 3 | min_pin: x.x 4 | max_pin: x.x 5 | python: 6 | - '3.6' 7 | -------------------------------------------------------------------------------- /recipes/psutil-feedstock/.ci_support/linux_python2.7.yaml: -------------------------------------------------------------------------------- 1 | pin_run_as_build: 2 | python: 3 | min_pin: x.x 4 | max_pin: x.x 5 | python: 6 | - '2.7' 7 | -------------------------------------------------------------------------------- /recipes/psutil-feedstock/.ci_support/linux_python3.5.yaml: -------------------------------------------------------------------------------- 1 | pin_run_as_build: 2 | python: 3 | min_pin: x.x 4 | max_pin: x.x 5 | python: 6 | - '3.5' 7 | -------------------------------------------------------------------------------- /recipes/psutil-feedstock/.ci_support/linux_python3.6.yaml: -------------------------------------------------------------------------------- 1 | pin_run_as_build: 2 | python: 3 | min_pin: x.x 4 | max_pin: x.x 5 | python: 6 | - '3.6' 7 | -------------------------------------------------------------------------------- /recipes/ptyprocess-feedstock/.ci_support/linux_python2.7.yaml: -------------------------------------------------------------------------------- 1 | pin_run_as_build: 2 | python: 3 | min_pin: x.x 4 | max_pin: x.x 5 | python: 6 | - '2.7' 7 | -------------------------------------------------------------------------------- /recipes/ptyprocess-feedstock/.ci_support/linux_python3.5.yaml: -------------------------------------------------------------------------------- 1 | pin_run_as_build: 2 | python: 3 | min_pin: x.x 4 | max_pin: x.x 5 | python: 6 | - '3.5' 7 | -------------------------------------------------------------------------------- /recipes/ptyprocess-feedstock/.ci_support/linux_python3.6.yaml: -------------------------------------------------------------------------------- 1 | pin_run_as_build: 2 | python: 3 | min_pin: x.x 4 | max_pin: x.x 5 | python: 6 | - '3.6' 7 | -------------------------------------------------------------------------------- /recipes/ptyprocess-feedstock/recipe/bld.bat: -------------------------------------------------------------------------------- 1 | copy %RECIPE_DIR%\setup.py %SRC_DIR% || exit 1 2 | 3 | %PYTHON% setup.py install 4 | if errorlevel 1 exit 1 5 | -------------------------------------------------------------------------------- /recipes/pyopenssl-feedstock/.ci_support/linux_python2.7.yaml: -------------------------------------------------------------------------------- 1 | pin_run_as_build: 2 | python: 3 | min_pin: x.x 4 | max_pin: x.x 5 | python: 6 | - '2.7' 7 | -------------------------------------------------------------------------------- /recipes/pyopenssl-feedstock/.ci_support/linux_python3.5.yaml: -------------------------------------------------------------------------------- 1 | pin_run_as_build: 2 | python: 3 | min_pin: x.x 4 | max_pin: x.x 5 | python: 6 | - '3.5' 7 | -------------------------------------------------------------------------------- /recipes/pyopenssl-feedstock/.ci_support/linux_python3.6.yaml: -------------------------------------------------------------------------------- 1 | pin_run_as_build: 2 | python: 3 | min_pin: x.x 4 | max_pin: x.x 5 | python: 6 | - '3.6' 7 | -------------------------------------------------------------------------------- /recipes/pyopenssl-feedstock/.ci_support/win_python2.7.yaml: -------------------------------------------------------------------------------- 1 | pin_run_as_build: 2 | python: 3 | min_pin: x.x 4 | max_pin: x.x 5 | python: 6 | - '2.7' 7 | -------------------------------------------------------------------------------- /recipes/pyopenssl-feedstock/.ci_support/win_python3.5.yaml: -------------------------------------------------------------------------------- 1 | pin_run_as_build: 2 | python: 3 | min_pin: x.x 4 | max_pin: x.x 5 | python: 6 | - '3.5' 7 | -------------------------------------------------------------------------------- /recipes/pyopenssl-feedstock/.ci_support/win_python3.6.yaml: -------------------------------------------------------------------------------- 1 | pin_run_as_build: 2 | python: 3 | min_pin: x.x 4 | max_pin: x.x 5 | python: 6 | - '3.6' 7 | -------------------------------------------------------------------------------- /recipes/python-libarchive-c-feedstock/recipe/bld.bat: -------------------------------------------------------------------------------- 1 | set PYTHONHASHSEED=0 2 | python setup.py install --single-version-externally-managed --record record.txt 3 | -------------------------------------------------------------------------------- /recipes/requests-feedstock/.ci_support/linux_python2.7.yaml: -------------------------------------------------------------------------------- 1 | pin_run_as_build: 2 | python: 3 | min_pin: x.x 4 | max_pin: x.x 5 | python: 6 | - '2.7' 7 | -------------------------------------------------------------------------------- /recipes/requests-feedstock/.ci_support/linux_python3.5.yaml: -------------------------------------------------------------------------------- 1 | pin_run_as_build: 2 | python: 3 | min_pin: x.x 4 | max_pin: x.x 5 | python: 6 | - '3.5' 7 | -------------------------------------------------------------------------------- /recipes/requests-feedstock/.ci_support/linux_python3.6.yaml: -------------------------------------------------------------------------------- 1 | pin_run_as_build: 2 | python: 3 | min_pin: x.x 4 | max_pin: x.x 5 | python: 6 | - '3.6' 7 | -------------------------------------------------------------------------------- /recipes/requests-feedstock/.ci_support/win_python2.7.yaml: -------------------------------------------------------------------------------- 1 | pin_run_as_build: 2 | python: 3 | min_pin: x.x 4 | max_pin: x.x 5 | python: 6 | - '2.7' 7 | -------------------------------------------------------------------------------- /recipes/requests-feedstock/.ci_support/win_python3.5.yaml: -------------------------------------------------------------------------------- 1 | pin_run_as_build: 2 | python: 3 | min_pin: x.x 4 | max_pin: x.x 5 | python: 6 | - '3.5' 7 | -------------------------------------------------------------------------------- /recipes/requests-feedstock/.ci_support/win_python3.6.yaml: -------------------------------------------------------------------------------- 1 | pin_run_as_build: 2 | python: 3 | min_pin: x.x 4 | max_pin: x.x 5 | python: 6 | - '3.6' 7 | -------------------------------------------------------------------------------- /recipes/beautifulsoup4-feedstock/.ci_support/linux_python2.7.yaml: -------------------------------------------------------------------------------- 1 | pin_run_as_build: 2 | python: 3 | min_pin: x.x 4 | max_pin: x.x 5 | python: 6 | - '2.7' 7 | -------------------------------------------------------------------------------- /recipes/beautifulsoup4-feedstock/.ci_support/linux_python3.5.yaml: -------------------------------------------------------------------------------- 1 | pin_run_as_build: 2 | python: 3 | min_pin: x.x 4 | max_pin: x.x 5 | python: 6 | - '3.5' 7 | -------------------------------------------------------------------------------- /recipes/beautifulsoup4-feedstock/.ci_support/linux_python3.6.yaml: -------------------------------------------------------------------------------- 1 | pin_run_as_build: 2 | python: 3 | min_pin: x.x 4 | max_pin: x.x 5 | python: 6 | - '3.6' 7 | -------------------------------------------------------------------------------- /recipes/beautifulsoup4-feedstock/.ci_support/linux_python3.7.yaml: -------------------------------------------------------------------------------- 1 | pin_run_as_build: 2 | python: 3 | min_pin: x.x 4 | max_pin: x.x 5 | python: 6 | - '3.7' 7 | -------------------------------------------------------------------------------- /recipes/beautifulsoup4-feedstock/.ci_support/win_python2.7.yaml: -------------------------------------------------------------------------------- 1 | pin_run_as_build: 2 | python: 3 | min_pin: x.x 4 | max_pin: x.x 5 | python: 6 | - '2.7' 7 | -------------------------------------------------------------------------------- /recipes/beautifulsoup4-feedstock/.ci_support/win_python3.5.yaml: -------------------------------------------------------------------------------- 1 | pin_run_as_build: 2 | python: 3 | min_pin: x.x 4 | max_pin: x.x 5 | python: 6 | - '3.5' 7 | -------------------------------------------------------------------------------- /recipes/beautifulsoup4-feedstock/.ci_support/win_python3.6.yaml: -------------------------------------------------------------------------------- 1 | pin_run_as_build: 2 | python: 3 | min_pin: x.x 4 | max_pin: x.x 5 | python: 6 | - '3.6' 7 | -------------------------------------------------------------------------------- /recipes/beautifulsoup4-feedstock/.ci_support/win_python3.7.yaml: -------------------------------------------------------------------------------- 1 | pin_run_as_build: 2 | python: 3 | min_pin: x.x 4 | max_pin: x.x 5 | python: 6 | - '3.7' 7 | -------------------------------------------------------------------------------- /recipes/conda-build-feedstock/.ci_support/linux_python2.7.yaml: -------------------------------------------------------------------------------- 1 | pin_run_as_build: 2 | python: 3 | min_pin: x.x 4 | max_pin: x.x 5 | python: 6 | - '2.7' 7 | -------------------------------------------------------------------------------- /recipes/conda-build-feedstock/.ci_support/linux_python3.5.yaml: -------------------------------------------------------------------------------- 1 | pin_run_as_build: 2 | python: 3 | min_pin: x.x 4 | max_pin: x.x 5 | python: 6 | - '3.5' 7 | -------------------------------------------------------------------------------- /recipes/conda-build-feedstock/.ci_support/linux_python3.6.yaml: -------------------------------------------------------------------------------- 1 | pin_run_as_build: 2 | python: 3 | min_pin: x.x 4 | max_pin: x.x 5 | python: 6 | - '3.6' 7 | -------------------------------------------------------------------------------- /recipes/ctng-compilers-feedstock/recipe/.meta.yaml.swp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jjhelmus/conda4aarch64/HEAD/recipes/ctng-compilers-feedstock/recipe/.meta.yaml.swp -------------------------------------------------------------------------------- /recipes/more-itertools-feedstock/.ci_support/linux_python2.7.yaml: -------------------------------------------------------------------------------- 1 | pin_run_as_build: 2 | python: 3 | max_pin: x.x 4 | min_pin: x.x 5 | python: 6 | - '2.7' 7 | -------------------------------------------------------------------------------- /recipes/more-itertools-feedstock/.ci_support/linux_python3.5.yaml: -------------------------------------------------------------------------------- 1 | pin_run_as_build: 2 | python: 3 | max_pin: x.x 4 | min_pin: x.x 5 | python: 6 | - '3.5' 7 | -------------------------------------------------------------------------------- /recipes/more-itertools-feedstock/.ci_support/linux_python3.6.yaml: -------------------------------------------------------------------------------- 1 | pin_run_as_build: 2 | python: 3 | max_pin: x.x 4 | min_pin: x.x 5 | python: 6 | - '3.6' 7 | -------------------------------------------------------------------------------- /recipes/more-itertools-feedstock/.ci_support/win_python2.7.yaml: -------------------------------------------------------------------------------- 1 | pin_run_as_build: 2 | python: 3 | max_pin: x.x 4 | min_pin: x.x 5 | python: 6 | - '2.7' 7 | -------------------------------------------------------------------------------- /recipes/more-itertools-feedstock/.ci_support/win_python3.5.yaml: -------------------------------------------------------------------------------- 1 | pin_run_as_build: 2 | python: 3 | max_pin: x.x 4 | min_pin: x.x 5 | python: 6 | - '3.5' 7 | -------------------------------------------------------------------------------- /recipes/more-itertools-feedstock/.ci_support/win_python3.6.yaml: -------------------------------------------------------------------------------- 1 | pin_run_as_build: 2 | python: 3 | max_pin: x.x 4 | min_pin: x.x 5 | python: 6 | - '3.6' 7 | -------------------------------------------------------------------------------- /recipes/ncurses-feedstock/recipe/run_test.sh: -------------------------------------------------------------------------------- 1 | export TERM=xterm-256color 2 | clear 3 | 4 | if [ `uname` == Linux ]; then 5 | ls $PREFIX/lib/libtinfow.so 6 | fi 7 | -------------------------------------------------------------------------------- /recipes/readline-feedstock/.ci_support/linux_.yaml: -------------------------------------------------------------------------------- 1 | c_compiler: 2 | - toolchain_c 3 | ncurses: 4 | - '6.1' 5 | pin_run_as_build: 6 | ncurses: 7 | max_pin: x.x 8 | -------------------------------------------------------------------------------- /recipes/xz-feedstock/.gitattributes: -------------------------------------------------------------------------------- 1 | * text=auto 2 | *.patch binary 3 | *.diff binary 4 | meta.yaml text eol=lf 5 | build.sh text eol=lf 6 | bld.bat text eol=crlf 7 | -------------------------------------------------------------------------------- /recipes/attrs-feedstock/.gitattributes: -------------------------------------------------------------------------------- 1 | * text=auto 2 | 3 | *.patch binary 4 | *.diff binary 5 | meta.yaml text eol=lf 6 | build.sh text eol=lf 7 | bld.bat text eol=crlf 8 | -------------------------------------------------------------------------------- /recipes/bzip2-feedstock/.gitattributes: -------------------------------------------------------------------------------- 1 | * text=auto 2 | 3 | *.patch binary 4 | *.diff binary 5 | meta.yaml text eol=lf 6 | build.sh text eol=lf 7 | bld.bat text eol=crlf 8 | -------------------------------------------------------------------------------- /recipes/cffi-feedstock/.gitattributes: -------------------------------------------------------------------------------- 1 | * text=auto 2 | 3 | *.patch binary 4 | *.diff binary 5 | meta.yaml text eol=lf 6 | build.sh text eol=lf 7 | bld.bat text eol=crlf 8 | -------------------------------------------------------------------------------- /recipes/cmake-feedstock/.gitattributes: -------------------------------------------------------------------------------- 1 | * text=auto 2 | 3 | *.patch binary 4 | *.diff binary 5 | meta.yaml text eol=lf 6 | build.sh text eol=lf 7 | bld.bat text eol=crlf 8 | -------------------------------------------------------------------------------- /recipes/cryptography-vectors-feedstock/.ci_support/linux_python2.7.yaml: -------------------------------------------------------------------------------- 1 | pin_run_as_build: 2 | python: 3 | min_pin: x.x 4 | max_pin: x.x 5 | python: 6 | - '2.7' 7 | -------------------------------------------------------------------------------- /recipes/cryptography-vectors-feedstock/.ci_support/linux_python3.5.yaml: -------------------------------------------------------------------------------- 1 | pin_run_as_build: 2 | python: 3 | min_pin: x.x 4 | max_pin: x.x 5 | python: 6 | - '3.5' 7 | -------------------------------------------------------------------------------- /recipes/cryptography-vectors-feedstock/.ci_support/linux_python3.6.yaml: -------------------------------------------------------------------------------- 1 | pin_run_as_build: 2 | python: 3 | min_pin: x.x 4 | max_pin: x.x 5 | python: 6 | - '3.6' 7 | -------------------------------------------------------------------------------- /recipes/cryptography-vectors-feedstock/.ci_support/win_python2.7.yaml: -------------------------------------------------------------------------------- 1 | pin_run_as_build: 2 | python: 3 | min_pin: x.x 4 | max_pin: x.x 5 | python: 6 | - '2.7' 7 | -------------------------------------------------------------------------------- /recipes/cryptography-vectors-feedstock/.ci_support/win_python3.5.yaml: -------------------------------------------------------------------------------- 1 | pin_run_as_build: 2 | python: 3 | min_pin: x.x 4 | max_pin: x.x 5 | python: 6 | - '3.5' 7 | -------------------------------------------------------------------------------- /recipes/cryptography-vectors-feedstock/.ci_support/win_python3.6.yaml: -------------------------------------------------------------------------------- 1 | pin_run_as_build: 2 | python: 3 | min_pin: x.x 4 | max_pin: x.x 5 | python: 6 | - '3.6' 7 | -------------------------------------------------------------------------------- /recipes/git-feedstock/.gitattributes: -------------------------------------------------------------------------------- 1 | * text=auto 2 | 3 | *.patch binary 4 | *.diff binary 5 | meta.yaml text eol=lf 6 | build.sh text eol=lf 7 | bld.bat text eol=crlf 8 | -------------------------------------------------------------------------------- /recipes/libarchive-feedstock/recipe/test/hello_world.xar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jjhelmus/conda4aarch64/HEAD/recipes/libarchive-feedstock/recipe/test/hello_world.xar -------------------------------------------------------------------------------- /recipes/lz4-feedstock/.gitattributes: -------------------------------------------------------------------------------- 1 | * text=auto 2 | 3 | *.patch binary 4 | *.diff binary 5 | meta.yaml text eol=lf 6 | build.sh text eol=lf 7 | bld.bat text eol=crlf 8 | -------------------------------------------------------------------------------- /recipes/m4-feedstock/.gitattributes: -------------------------------------------------------------------------------- 1 | * text=auto 2 | 3 | *.patch binary 4 | *.diff binary 5 | meta.yaml text eol=lf 6 | build.sh text eol=lf 7 | bld.bat text eol=crlf 8 | -------------------------------------------------------------------------------- /recipes/pbr-feedstock/.gitattributes: -------------------------------------------------------------------------------- 1 | * text=auto 2 | 3 | *.patch binary 4 | *.diff binary 5 | meta.yaml text eol=lf 6 | build.sh text eol=lf 7 | bld.bat text eol=crlf 8 | -------------------------------------------------------------------------------- /recipes/pip-feedstock/.gitattributes: -------------------------------------------------------------------------------- 1 | * text=auto 2 | 3 | *.patch binary 4 | *.diff binary 5 | meta.yaml text eol=lf 6 | build.sh text eol=lf 7 | bld.bat text eol=crlf 8 | -------------------------------------------------------------------------------- /recipes/py-feedstock/.gitattributes: -------------------------------------------------------------------------------- 1 | * text=auto 2 | 3 | *.patch binary 4 | *.diff binary 5 | meta.yaml text eol=lf 6 | build.sh text eol=lf 7 | bld.bat text eol=crlf 8 | -------------------------------------------------------------------------------- /recipes/pytz-feedstock/.gitattributes: -------------------------------------------------------------------------------- 1 | * text=auto 2 | 3 | *.patch binary 4 | *.diff binary 5 | meta.yaml text eol=lf 6 | build.sh text eol=lf 7 | bld.bat text eol=crlf 8 | -------------------------------------------------------------------------------- /recipes/six-feedstock/.gitattributes: -------------------------------------------------------------------------------- 1 | * text=auto 2 | 3 | *.patch binary 4 | *.diff binary 5 | meta.yaml text eol=lf 6 | build.sh text eol=lf 7 | bld.bat text eol=crlf 8 | -------------------------------------------------------------------------------- /recipes/tini-feedstock/.gitattributes: -------------------------------------------------------------------------------- 1 | * text=auto 2 | 3 | *.patch binary 4 | *.diff binary 5 | meta.yaml text eol=lf 6 | build.sh text eol=lf 7 | bld.bat text eol=crlf 8 | -------------------------------------------------------------------------------- /recipes/tqdm-feedstock/.gitattributes: -------------------------------------------------------------------------------- 1 | * text=auto 2 | 3 | *.patch binary 4 | *.diff binary 5 | meta.yaml text eol=lf 6 | build.sh text eol=lf 7 | bld.bat text eol=crlf 8 | -------------------------------------------------------------------------------- /recipes/zstd-feedstock/.gitattributes: -------------------------------------------------------------------------------- 1 | * text=auto 2 | 3 | *.patch binary 4 | *.diff binary 5 | meta.yaml text eol=lf 6 | build.sh text eol=lf 7 | bld.bat text eol=crlf 8 | -------------------------------------------------------------------------------- /recipes/certifi-feedstock/.gitattributes: -------------------------------------------------------------------------------- 1 | * text=auto 2 | 3 | *.patch binary 4 | *.diff binary 5 | meta.yaml text eol=lf 6 | build.sh text eol=lf 7 | bld.bat text eol=crlf 8 | -------------------------------------------------------------------------------- /recipes/chardet-feedstock/.gitattributes: -------------------------------------------------------------------------------- 1 | * text=auto 2 | 3 | *.patch binary 4 | *.diff binary 5 | meta.yaml text eol=lf 6 | build.sh text eol=lf 7 | bld.bat text eol=crlf 8 | -------------------------------------------------------------------------------- /recipes/clyent-feedstock/.gitattributes: -------------------------------------------------------------------------------- 1 | * text=auto 2 | 3 | *.patch binary 4 | *.diff binary 5 | meta.yaml text eol=lf 6 | build.sh text eol=lf 7 | bld.bat text eol=crlf 8 | -------------------------------------------------------------------------------- /recipes/cython-feedstock/.gitattributes: -------------------------------------------------------------------------------- 1 | * text=auto 2 | 3 | *.patch binary 4 | *.diff binary 5 | meta.yaml text eol=lf 6 | build.sh text eol=lf 7 | bld.bat text eol=crlf 8 | -------------------------------------------------------------------------------- /recipes/decorator-feedstock/.gitattributes: -------------------------------------------------------------------------------- 1 | * text=auto 2 | 3 | *.patch binary 4 | *.diff binary 5 | meta.yaml text eol=lf 6 | build.sh text eol=lf 7 | bld.bat text eol=crlf 8 | -------------------------------------------------------------------------------- /recipes/filelock-feedstock/.gitattributes: -------------------------------------------------------------------------------- 1 | * text=auto 2 | 3 | *.patch binary 4 | *.diff binary 5 | meta.yaml text eol=lf 6 | build.sh text eol=lf 7 | bld.bat text eol=crlf 8 | -------------------------------------------------------------------------------- /recipes/hypothesis-feedstock/.gitattributes: -------------------------------------------------------------------------------- 1 | * text=auto 2 | 3 | *.patch binary 4 | *.diff binary 5 | meta.yaml text eol=lf 6 | build.sh text eol=lf 7 | bld.bat text eol=crlf 8 | -------------------------------------------------------------------------------- /recipes/iso8601-feedstock/.gitattributes: -------------------------------------------------------------------------------- 1 | * text=auto 2 | 3 | *.patch binary 4 | *.diff binary 5 | meta.yaml text eol=lf 6 | build.sh text eol=lf 7 | bld.bat text eol=crlf 8 | -------------------------------------------------------------------------------- /recipes/jinja2-feedstock/.gitattributes: -------------------------------------------------------------------------------- 1 | * text=auto 2 | 3 | *.patch binary 4 | *.diff binary 5 | meta.yaml text eol=lf 6 | build.sh text eol=lf 7 | bld.bat text eol=crlf 8 | -------------------------------------------------------------------------------- /recipes/jsonschema-feedstock/.gitattributes: -------------------------------------------------------------------------------- 1 | * text=auto 2 | 3 | *.patch binary 4 | *.diff binary 5 | meta.yaml text eol=lf 6 | build.sh text eol=lf 7 | bld.bat text eol=crlf 8 | -------------------------------------------------------------------------------- /recipes/libedit-feedstock/.gitattributes: -------------------------------------------------------------------------------- 1 | * text=auto 2 | 3 | *.patch binary 4 | *.diff binary 5 | meta.yaml text eol=lf 6 | build.sh text eol=lf 7 | bld.bat text eol=crlf 8 | -------------------------------------------------------------------------------- /recipes/patch-feedstock/recipe/build.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | ./configure --prefix="${PREFIX}" --host=${HOST} 3 | make -j${CPU_COUNT} ${VERBOSE_AT} 4 | make check 5 | make install 6 | -------------------------------------------------------------------------------- /recipes/pexpect-feedstock/.gitattributes: -------------------------------------------------------------------------------- 1 | * text=auto 2 | 3 | *.patch binary 4 | *.diff binary 5 | meta.yaml text eol=lf 6 | build.sh text eol=lf 7 | bld.bat text eol=crlf 8 | -------------------------------------------------------------------------------- /recipes/pkgconfig-feedstock/.gitattributes: -------------------------------------------------------------------------------- 1 | * text=auto 2 | 3 | *.patch binary 4 | *.diff binary 5 | meta.yaml text eol=lf 6 | build.sh text eol=lf 7 | bld.bat text eol=crlf 8 | -------------------------------------------------------------------------------- /recipes/pkginfo-feedstock/.gitattributes: -------------------------------------------------------------------------------- 1 | * text=auto 2 | 3 | *.patch binary 4 | *.diff binary 5 | meta.yaml text eol=lf 6 | build.sh text eol=lf 7 | bld.bat text eol=crlf 8 | -------------------------------------------------------------------------------- /recipes/pluggy-feedstock/.gitattributes: -------------------------------------------------------------------------------- 1 | * text=auto 2 | 3 | *.patch binary 4 | *.diff binary 5 | meta.yaml text eol=lf 6 | build.sh text eol=lf 7 | bld.bat text eol=crlf 8 | -------------------------------------------------------------------------------- /recipes/pretend-feedstock/.gitattributes: -------------------------------------------------------------------------------- 1 | * text=auto 2 | 3 | *.patch binary 4 | *.diff binary 5 | meta.yaml text eol=lf 6 | build.sh text eol=lf 7 | bld.bat text eol=crlf 8 | -------------------------------------------------------------------------------- /recipes/psutil-feedstock/.gitattributes: -------------------------------------------------------------------------------- 1 | * text=auto 2 | 3 | *.patch binary 4 | *.diff binary 5 | meta.yaml text eol=lf 6 | build.sh text eol=lf 7 | bld.bat text eol=crlf 8 | -------------------------------------------------------------------------------- /recipes/ptyprocess-feedstock/.gitattributes: -------------------------------------------------------------------------------- 1 | * text=auto 2 | 3 | *.patch binary 4 | *.diff binary 5 | meta.yaml text eol=lf 6 | build.sh text eol=lf 7 | bld.bat text eol=crlf 8 | -------------------------------------------------------------------------------- /recipes/pycosat-feedstock/.gitattributes: -------------------------------------------------------------------------------- 1 | * text=auto 2 | 3 | *.patch binary 4 | *.diff binary 5 | meta.yaml text eol=lf 6 | build.sh text eol=lf 7 | bld.bat text eol=crlf 8 | -------------------------------------------------------------------------------- /recipes/pycparser-feedstock/.gitattributes: -------------------------------------------------------------------------------- 1 | * text=auto 2 | 3 | *.patch binary 4 | *.diff binary 5 | meta.yaml text eol=lf 6 | build.sh text eol=lf 7 | bld.bat text eol=crlf 8 | -------------------------------------------------------------------------------- /recipes/pyopenssl-feedstock/.gitattributes: -------------------------------------------------------------------------------- 1 | * text=auto 2 | 3 | *.patch binary 4 | *.diff binary 5 | meta.yaml text eol=lf 6 | build.sh text eol=lf 7 | bld.bat text eol=crlf 8 | -------------------------------------------------------------------------------- /recipes/pytest-feedstock/.gitattributes: -------------------------------------------------------------------------------- 1 | * text=auto 2 | 3 | *.patch binary 4 | *.diff binary 5 | meta.yaml text eol=lf 6 | build.sh text eol=lf 7 | bld.bat text eol=crlf 8 | -------------------------------------------------------------------------------- /recipes/readline-feedstock/.gitattributes: -------------------------------------------------------------------------------- 1 | * text=auto 2 | 3 | *.patch binary 4 | *.diff binary 5 | meta.yaml text eol=lf 6 | build.sh text eol=lf 7 | bld.bat text eol=crlf 8 | -------------------------------------------------------------------------------- /recipes/requests-feedstock/.gitattributes: -------------------------------------------------------------------------------- 1 | * text=auto 2 | 3 | *.patch binary 4 | *.diff binary 5 | meta.yaml text eol=lf 6 | build.sh text eol=lf 7 | bld.bat text eol=crlf 8 | -------------------------------------------------------------------------------- /recipes/setuptools-feedstock/.gitattributes: -------------------------------------------------------------------------------- 1 | * text=auto 2 | 3 | *.patch binary 4 | *.diff binary 5 | meta.yaml text eol=lf 6 | build.sh text eol=lf 7 | bld.bat text eol=crlf 8 | -------------------------------------------------------------------------------- /recipes/su-exec-feedstock/.gitattributes: -------------------------------------------------------------------------------- 1 | * text=auto 2 | 3 | *.patch binary 4 | *.diff binary 5 | meta.yaml text eol=lf 6 | build.sh text eol=lf 7 | bld.bat text eol=crlf 8 | -------------------------------------------------------------------------------- /recipes/anaconda-client-feedstock/.gitattributes: -------------------------------------------------------------------------------- 1 | * text=auto 2 | 3 | *.patch binary 4 | *.diff binary 5 | meta.yaml text eol=lf 6 | build.sh text eol=lf 7 | bld.bat text eol=crlf 8 | -------------------------------------------------------------------------------- /recipes/atomicwrites-feedstock/.gitattributes: -------------------------------------------------------------------------------- 1 | * text=auto 2 | 3 | *.patch binary 4 | *.diff binary 5 | meta.yaml text eol=lf 6 | build.sh text eol=lf 7 | bld.bat text eol=crlf 8 | -------------------------------------------------------------------------------- /recipes/beautifulsoup4-feedstock/.gitattributes: -------------------------------------------------------------------------------- 1 | * text=auto 2 | 3 | *.patch binary 4 | *.diff binary 5 | meta.yaml text eol=lf 6 | build.sh text eol=lf 7 | bld.bat text eol=crlf 8 | -------------------------------------------------------------------------------- /recipes/conda-build-feedstock/.gitattributes: -------------------------------------------------------------------------------- 1 | * text=auto 2 | 3 | *.patch binary 4 | *.diff binary 5 | meta.yaml text eol=lf 6 | build.sh text eol=lf 7 | bld.bat text eol=crlf 8 | -------------------------------------------------------------------------------- /recipes/constructor-feedstock/.gitattributes: -------------------------------------------------------------------------------- 1 | * text=auto 2 | 3 | *.patch binary 4 | *.diff binary 5 | meta.yaml text eol=lf 6 | build.sh text eol=lf 7 | bld.bat text eol=crlf 8 | -------------------------------------------------------------------------------- /recipes/cryptography-feedstock/.gitattributes: -------------------------------------------------------------------------------- 1 | * text=auto 2 | 3 | *.patch binary 4 | *.diff binary 5 | meta.yaml text eol=lf 6 | build.sh text eol=lf 7 | bld.bat text eol=crlf 8 | -------------------------------------------------------------------------------- /recipes/more-itertools-feedstock/.gitattributes: -------------------------------------------------------------------------------- 1 | * text=auto 2 | 3 | *.patch binary 4 | *.diff binary 5 | meta.yaml text eol=lf 6 | build.sh text eol=lf 7 | bld.bat text eol=crlf 8 | -------------------------------------------------------------------------------- /recipes/pytest-runner-feedstock/.gitattributes: -------------------------------------------------------------------------------- 1 | * text=auto 2 | 3 | *.patch binary 4 | *.diff binary 5 | meta.yaml text eol=lf 6 | build.sh text eol=lf 7 | bld.bat text eol=crlf 8 | -------------------------------------------------------------------------------- /recipes/python-dateutil-feedstock/.gitattributes: -------------------------------------------------------------------------------- 1 | * text=auto 2 | 3 | *.patch binary 4 | *.diff binary 5 | meta.yaml text eol=lf 6 | build.sh text eol=lf 7 | bld.bat text eol=crlf 8 | -------------------------------------------------------------------------------- /recipes/python-libarchive-c-feedstock/recipe/build.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | PYTHONHASHSEED=0 \ 4 | python setup.py install --single-version-externally-managed --record record.txt 5 | -------------------------------------------------------------------------------- /recipes/setuptools_scm-feedstock/.gitattributes: -------------------------------------------------------------------------------- 1 | * text=auto 2 | 3 | *.patch binary 4 | *.diff binary 5 | meta.yaml text eol=lf 6 | build.sh text eol=lf 7 | bld.bat text eol=crlf 8 | -------------------------------------------------------------------------------- /recipes/cmake_nosystemcurl-feedstock/.gitattributes: -------------------------------------------------------------------------------- 1 | * text=auto 2 | 3 | *.patch binary 4 | *.diff binary 5 | meta.yaml text eol=lf 6 | build.sh text eol=lf 7 | bld.bat text eol=crlf 8 | -------------------------------------------------------------------------------- /recipes/cryptography-vectors-feedstock/.gitattributes: -------------------------------------------------------------------------------- 1 | * text=auto 2 | 3 | *.patch binary 4 | *.diff binary 5 | meta.yaml text eol=lf 6 | build.sh text eol=lf 7 | bld.bat text eol=crlf 8 | -------------------------------------------------------------------------------- /recipes/tqdm-feedstock/.mailmap: -------------------------------------------------------------------------------- 1 | Casper da Costa-Luis casperdcl 2 | Peter M. Landwehr 3 | Filipe Fernandes 4 | -------------------------------------------------------------------------------- /recipes/ctng-compilers-feedstock/recipe/hello-world.cpp: -------------------------------------------------------------------------------- 1 | #include 2 | 3 | int main(int argc, char * argv[]) 4 | { 5 | std::cout << "Hello World!\n" << std::endl; 6 | return 0; 7 | } 8 | -------------------------------------------------------------------------------- /recipes/lz4-c-feedstock/.gitattributes: -------------------------------------------------------------------------------- 1 | * text=auto 2 | 3 | recipe/0001-Do-not-build-tests-binaries-on-VS-project.patch binary 4 | meta.yaml text eol=lf 5 | build.sh text eol=lf 6 | bld.bat text eol=crlf 7 | -------------------------------------------------------------------------------- /recipes/bzip2-feedstock/.ci_support/osx_.yaml: -------------------------------------------------------------------------------- 1 | MACOSX_DEPLOYMENT_TARGET: 2 | - '10.9' 3 | c_compiler: 4 | - toolchain_c 5 | macos_machine: 6 | - x86_64-apple-darwin13.4.0 7 | macos_min_version: 8 | - '10.9' 9 | -------------------------------------------------------------------------------- /recipes/ctng-compilers-feedstock/recipe/tests/fortomp/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | cmake_minimum_required(VERSION 3.3 FATAL_ERROR) 2 | project(fortomp 3 | LANGUAGES Fortran) 4 | 5 | find_package(OpenMP REQUIRED) 6 | -------------------------------------------------------------------------------- /recipes/lief-feedstock/recipe/install-liblief.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | pushd build 4 | make install ${VERBOSE_CM} 5 | popd 6 | [[ -d "${PREFIX}"/share/LIEF/examples ]] && rm -rf "${PREFIX}"/share/LIEF/examples/ 7 | -------------------------------------------------------------------------------- /recipes/patch-feedstock/recipe/testfile.patch: -------------------------------------------------------------------------------- 1 | diff --git testfile testfile2 2 | index f10cda7..f7bacac 100644 3 | --- testfile 4 | +++ testfile2 5 | @@ -1,4 +1,4 @@ 6 | A 7 | A 8 | A 9 | -B 10 | +A 11 | -------------------------------------------------------------------------------- /installer/README.md: -------------------------------------------------------------------------------- 1 | This directory contains the files uses to create the c4aarch64 installer using 2 | constructor. 3 | 4 | To build the installer run: 5 | 6 | ```sh 7 | constructor --platform=linux-aarch64 . 8 | ``` 9 | -------------------------------------------------------------------------------- /recipes/ctng-compilers-activation-feedstock/recipe/tests/fortomp/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | cmake_minimum_required(VERSION 3.3 FATAL_ERROR) 2 | project(fortomp 3 | LANGUAGES Fortran) 4 | 5 | find_package(OpenMP REQUIRED) 6 | -------------------------------------------------------------------------------- /recipes/pip-feedstock/recipe/build.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | $PYTHON setup.py install --single-version-externally-managed --record record.txt 4 | 5 | cd $PREFIX/bin 6 | rm -f pip2* pip3* 7 | rm -f $SP_DIR/__pycache__/pkg_res* 8 | -------------------------------------------------------------------------------- /recipes/xz-feedstock/recipe/build.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | ./configure --prefix=${PREFIX} \ 4 | --build=${BUILD} \ 5 | --host=${HOST} 6 | make -j${CPU_COUNT} ${VERBOSE_AT} 7 | make check 8 | make install 9 | -------------------------------------------------------------------------------- /recipes/expat-feedstock/recipe/build.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | ./configure --prefix=${PREFIX} \ 4 | --host=${HOST} \ 5 | --build=${BUILD} 6 | make -j${CPU_COUNT} ${VERBOSE_AT} 7 | make check 8 | make install 9 | -------------------------------------------------------------------------------- /recipes/patchelf-feedstock/recipe/build.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | ./configure --prefix=${PREFIX} \ 4 | --host=${HOST} \ 5 | --build=${BUILD} 6 | make -j${CPU_COUNT} ${VERBOSE_AT} 7 | make tests 8 | make install 9 | -------------------------------------------------------------------------------- /recipes/yaml-feedstock/recipe/build.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | ./configure --prefix="${PREFIX}" \ 4 | --build=${BUILD} \ 5 | --host=${HOST} 6 | make -j${CPU_COUNT} ${VERBOSE_AT} 7 | make check 8 | make install 9 | -------------------------------------------------------------------------------- /installer/construct.yaml: -------------------------------------------------------------------------------- 1 | name: c4aarch64_installer 2 | version: 1.0.0 3 | 4 | channels: 5 | - http://conda.anaconda.org/c4aarch64 6 | 7 | license_file: ../LICENSE.txt 8 | 9 | specs: 10 | - python 11 | - conda 12 | - pip 13 | -------------------------------------------------------------------------------- /recipes/make-feedstock/recipe/build.sh: -------------------------------------------------------------------------------- 1 | ./configure --prefix=${PREFIX} \ 2 | --host=${HOST} 3 | # bootstrap make with their own build script 4 | sh build.sh 5 | #make -j${CPU_COUNT} ${VERBOSE_AT} 6 | ./make check 7 | ./make install 8 | -------------------------------------------------------------------------------- /recipes/attrs-feedstock/.ci_support/README: -------------------------------------------------------------------------------- 1 | This file is automatically generated by conda-smithy. To change any matrix elements, you should change conda-smithy's input conda_build_config.yaml and re-render the recipe, rather than editing these files directly. -------------------------------------------------------------------------------- /recipes/bzip2-feedstock/.ci_support/README: -------------------------------------------------------------------------------- 1 | This file is automatically generated by conda-smithy. To change any matrix elements, you should change conda-smithy's input conda_build_config.yaml and re-render the recipe, rather than editing these files directly. -------------------------------------------------------------------------------- /recipes/ca-certificates-feedstock/recipe/bld.bat: -------------------------------------------------------------------------------- 1 | xcopy /y "%SRC_DIR%"\cacert.pem "%LIBRARY_PREFIX%"\ssl\ 2 | if errorlevel 1 exit 1 3 | copy /y "%LIBRARY_PREFIX%"\ssl\cacert.pem "%LIBRARY_PREFIX%"\ssl\cert.pem 4 | if errorlevel 1 exit 1 5 | exit 0 6 | -------------------------------------------------------------------------------- /recipes/lz4-feedstock/.ci_support/README: -------------------------------------------------------------------------------- 1 | This file is automatically generated by conda-smithy. To change any matrix elements, you should change conda-smithy's input conda_build_config.yaml and re-render the recipe, rather than editing these files directly. -------------------------------------------------------------------------------- /recipes/pbr-feedstock/.ci_support/README: -------------------------------------------------------------------------------- 1 | This file is automatically generated by conda-smithy. To change any matrix elements, you should change conda-smithy's input conda_build_config.yaml and re-render the recipe, rather than editing these files directly. -------------------------------------------------------------------------------- /recipes/py-feedstock/.ci_support/README: -------------------------------------------------------------------------------- 1 | This file is automatically generated by conda-smithy. To change any matrix elements, you should change conda-smithy's input conda_build_config.yaml and re-render the recipe, rather than editing these files directly. -------------------------------------------------------------------------------- /recipes/pytz-feedstock/.ci_support/README: -------------------------------------------------------------------------------- 1 | This file is automatically generated by conda-smithy. To change any matrix elements, you should change conda-smithy's input conda_build_config.yaml and re-render the recipe, rather than editing these files directly. -------------------------------------------------------------------------------- /recipes/tini-feedstock/.ci_support/README: -------------------------------------------------------------------------------- 1 | This file is automatically generated by conda-smithy. To change any matrix elements, you should change conda-smithy's input conda_build_config.yaml and re-render the recipe, rather than editing these files directly. -------------------------------------------------------------------------------- /recipes/tqdm-feedstock/.ci_support/README: -------------------------------------------------------------------------------- 1 | This file is automatically generated by conda-smithy. To change any matrix elements, you should change conda-smithy's input conda_build_config.yaml and re-render the recipe, rather than editing these files directly. -------------------------------------------------------------------------------- /recipes/certifi-feedstock/.ci_support/README: -------------------------------------------------------------------------------- 1 | This file is automatically generated by conda-smithy. To change any matrix elements, you should change conda-smithy's input conda_build_config.yaml and re-render the recipe, rather than editing these files directly. -------------------------------------------------------------------------------- /recipes/certifi-feedstock/.ci_support/win_python2.7.yaml: -------------------------------------------------------------------------------- 1 | channel_sources: 2 | - conda-forge,defaults 3 | channel_targets: 4 | - conda-forge main 5 | pin_run_as_build: 6 | python: 7 | min_pin: x.x 8 | max_pin: x.x 9 | python: 10 | - '2.7' 11 | -------------------------------------------------------------------------------- /recipes/certifi-feedstock/.ci_support/win_python3.5.yaml: -------------------------------------------------------------------------------- 1 | channel_sources: 2 | - conda-forge,defaults 3 | channel_targets: 4 | - conda-forge main 5 | pin_run_as_build: 6 | python: 7 | min_pin: x.x 8 | max_pin: x.x 9 | python: 10 | - '3.5' 11 | -------------------------------------------------------------------------------- /recipes/certifi-feedstock/.ci_support/win_python3.6.yaml: -------------------------------------------------------------------------------- 1 | channel_sources: 2 | - conda-forge,defaults 3 | channel_targets: 4 | - conda-forge main 5 | pin_run_as_build: 6 | python: 7 | min_pin: x.x 8 | max_pin: x.x 9 | python: 10 | - '3.6' 11 | -------------------------------------------------------------------------------- /recipes/cython-feedstock/.ci_support/README: -------------------------------------------------------------------------------- 1 | This file is automatically generated by conda-smithy. To change any matrix elements, you should change conda-smithy's input conda_build_config.yaml and re-render the recipe, rather than editing these files directly. -------------------------------------------------------------------------------- /recipes/filelock-feedstock/.ci_support/README: -------------------------------------------------------------------------------- 1 | This file is automatically generated by conda-smithy. To change any matrix elements, you should change conda-smithy's input conda_build_config.yaml and re-render the recipe, rather than editing these files directly. -------------------------------------------------------------------------------- /recipes/nose-feedstock/recipe/build.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | $PYTHON setup.py install --single-version-externally-managed --record=record.txt 4 | 5 | rm -rf $PREFIX/man 6 | rm -rf $SP_DIR/man 7 | rm -rf $SP_DIR/nose-*.egg/man 8 | rm -f $PREFIX/bin/nosetests-* 9 | -------------------------------------------------------------------------------- /recipes/pexpect-feedstock/.ci_support/README: -------------------------------------------------------------------------------- 1 | This file is automatically generated by conda-smithy. To change any matrix elements, you should change conda-smithy's input conda_build_config.yaml and re-render the recipe, rather than editing these files directly. -------------------------------------------------------------------------------- /recipes/pluggy-feedstock/.ci_support/README: -------------------------------------------------------------------------------- 1 | This file is automatically generated by conda-smithy. To change any matrix elements, you should change conda-smithy's input conda_build_config.yaml and re-render the recipe, rather than editing these files directly. -------------------------------------------------------------------------------- /recipes/psutil-feedstock/.ci_support/README: -------------------------------------------------------------------------------- 1 | This file is automatically generated by conda-smithy. To change any matrix elements, you should change conda-smithy's input conda_build_config.yaml and re-render the recipe, rather than editing these files directly. -------------------------------------------------------------------------------- /recipes/ptyprocess-feedstock/.ci_support/README: -------------------------------------------------------------------------------- 1 | This file is automatically generated by conda-smithy. To change any matrix elements, you should change conda-smithy's input conda_build_config.yaml and re-render the recipe, rather than editing these files directly. -------------------------------------------------------------------------------- /recipes/pycparser-feedstock/.ci_support/README: -------------------------------------------------------------------------------- 1 | This file is automatically generated by conda-smithy. To change any matrix elements, you should change conda-smithy's input conda_build_config.yaml and re-render the recipe, rather than editing these files directly. -------------------------------------------------------------------------------- /recipes/pyopenssl-feedstock/.ci_support/README: -------------------------------------------------------------------------------- 1 | This file is automatically generated by conda-smithy. To change any matrix elements, you should change conda-smithy's input conda_build_config.yaml and re-render the recipe, rather than editing these files directly. -------------------------------------------------------------------------------- /recipes/pytest-feedstock/.ci_support/README: -------------------------------------------------------------------------------- 1 | This file is automatically generated by conda-smithy. To change any matrix elements, you should change conda-smithy's input conda_build_config.yaml and re-render the recipe, rather than editing these files directly. -------------------------------------------------------------------------------- /recipes/pytest-feedstock/.ci_support/win_python2.7.yaml: -------------------------------------------------------------------------------- 1 | channel_sources: 2 | - conda-forge,defaults 3 | channel_targets: 4 | - conda-forge main 5 | pin_run_as_build: 6 | python: 7 | min_pin: x.x 8 | max_pin: x.x 9 | python: 10 | - '2.7' 11 | -------------------------------------------------------------------------------- /recipes/pytest-feedstock/.ci_support/win_python3.6.yaml: -------------------------------------------------------------------------------- 1 | channel_sources: 2 | - conda-forge,defaults 3 | channel_targets: 4 | - conda-forge main 5 | pin_run_as_build: 6 | python: 7 | min_pin: x.x 8 | max_pin: x.x 9 | python: 10 | - '3.6' 11 | -------------------------------------------------------------------------------- /recipes/pytest-feedstock/.ci_support/win_python3.7.yaml: -------------------------------------------------------------------------------- 1 | channel_sources: 2 | - conda-forge,defaults 3 | channel_targets: 4 | - conda-forge main 5 | pin_run_as_build: 6 | python: 7 | min_pin: x.x 8 | max_pin: x.x 9 | python: 10 | - '3.7' 11 | -------------------------------------------------------------------------------- /recipes/readline-feedstock/.ci_support/README: -------------------------------------------------------------------------------- 1 | This file is automatically generated by conda-smithy. To change any matrix elements, you should change conda-smithy's input conda_build_config.yaml and re-render the recipe, rather than editing these files directly. -------------------------------------------------------------------------------- /recipes/requests-feedstock/.ci_support/README: -------------------------------------------------------------------------------- 1 | This file is automatically generated by conda-smithy. To change any matrix elements, you should change conda-smithy's input conda_build_config.yaml and re-render the recipe, rather than editing these files directly. -------------------------------------------------------------------------------- /recipes/setuptools-feedstock/.ci_support/README: -------------------------------------------------------------------------------- 1 | This file is automatically generated by conda-smithy. To change any matrix elements, you should change conda-smithy's input conda_build_config.yaml and re-render the recipe, rather than editing these files directly. -------------------------------------------------------------------------------- /recipes/su-exec-feedstock/.ci_support/README: -------------------------------------------------------------------------------- 1 | This file is automatically generated by conda-smithy. To change any matrix elements, you should change conda-smithy's input conda_build_config.yaml and re-render the recipe, rather than editing these files directly. -------------------------------------------------------------------------------- /recipes/atomicwrites-feedstock/.ci_support/README: -------------------------------------------------------------------------------- 1 | This file is automatically generated by conda-smithy. To change any matrix elements, you should change conda-smithy's input conda_build_config.yaml and re-render the recipe, rather than editing these files directly. -------------------------------------------------------------------------------- /recipes/atomicwrites-feedstock/.ci_support/win_python2.7.yaml: -------------------------------------------------------------------------------- 1 | channel_sources: 2 | - conda-forge,defaults 3 | channel_targets: 4 | - conda-forge main 5 | pin_run_as_build: 6 | python: 7 | min_pin: x.x 8 | max_pin: x.x 9 | python: 10 | - '2.7' 11 | -------------------------------------------------------------------------------- /recipes/atomicwrites-feedstock/.ci_support/win_python3.5.yaml: -------------------------------------------------------------------------------- 1 | channel_sources: 2 | - conda-forge,defaults 3 | channel_targets: 4 | - conda-forge main 5 | pin_run_as_build: 6 | python: 7 | min_pin: x.x 8 | max_pin: x.x 9 | python: 10 | - '3.5' 11 | -------------------------------------------------------------------------------- /recipes/atomicwrites-feedstock/.ci_support/win_python3.6.yaml: -------------------------------------------------------------------------------- 1 | channel_sources: 2 | - conda-forge,defaults 3 | channel_targets: 4 | - conda-forge main 5 | pin_run_as_build: 6 | python: 7 | min_pin: x.x 8 | max_pin: x.x 9 | python: 10 | - '3.6' 11 | -------------------------------------------------------------------------------- /recipes/beautifulsoup4-feedstock/.ci_support/README: -------------------------------------------------------------------------------- 1 | This file is automatically generated by conda-smithy. To change any matrix elements, you should change conda-smithy's input conda_build_config.yaml and re-render the recipe, rather than editing these files directly. -------------------------------------------------------------------------------- /recipes/conda-build-feedstock/.ci_support/README: -------------------------------------------------------------------------------- 1 | This file is automatically generated by conda-smithy. To change any matrix elements, you should change conda-smithy's input conda_build_config.yaml and re-render the recipe, rather than editing these files directly. -------------------------------------------------------------------------------- /recipes/conda-build-feedstock/recipe/build.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | ${PYTHON} setup.py install --single-version-externally-managed --record=record.txt 4 | 5 | cp bdist_conda.py "${PREFIX}/lib/python${PY_VER}/distutils/command/" 6 | 7 | rm -f "${PREFIX}/bin/conda" 8 | -------------------------------------------------------------------------------- /recipes/constructor-feedstock/.ci_support/README: -------------------------------------------------------------------------------- 1 | This file is automatically generated by conda-smithy. To change any matrix elements, you should change conda-smithy's input conda_build_config.yaml and re-render the recipe, rather than editing these files directly. -------------------------------------------------------------------------------- /recipes/constructor-feedstock/.ci_support/win_python2.7.yaml: -------------------------------------------------------------------------------- 1 | channel_sources: 2 | - conda-forge,defaults 3 | channel_targets: 4 | - conda-forge main 5 | pin_run_as_build: 6 | python: 7 | min_pin: x.x 8 | max_pin: x.x 9 | python: 10 | - '2.7' 11 | -------------------------------------------------------------------------------- /recipes/constructor-feedstock/.ci_support/win_python3.5.yaml: -------------------------------------------------------------------------------- 1 | channel_sources: 2 | - conda-forge,defaults 3 | channel_targets: 4 | - conda-forge main 5 | pin_run_as_build: 6 | python: 7 | min_pin: x.x 8 | max_pin: x.x 9 | python: 10 | - '3.5' 11 | -------------------------------------------------------------------------------- /recipes/constructor-feedstock/.ci_support/win_python3.6.yaml: -------------------------------------------------------------------------------- 1 | channel_sources: 2 | - conda-forge,defaults 3 | channel_targets: 4 | - conda-forge main 5 | pin_run_as_build: 6 | python: 7 | min_pin: x.x 8 | max_pin: x.x 9 | python: 10 | - '3.6' 11 | -------------------------------------------------------------------------------- /recipes/cryptography-feedstock/.ci_support/README: -------------------------------------------------------------------------------- 1 | This file is automatically generated by conda-smithy. To change any matrix elements, you should change conda-smithy's input conda_build_config.yaml and re-render the recipe, rather than editing these files directly. -------------------------------------------------------------------------------- /recipes/more-itertools-feedstock/.ci_support/README: -------------------------------------------------------------------------------- 1 | This file is automatically generated by conda-smithy. To change any matrix elements, you should change conda-smithy's input conda_build_config.yaml and re-render the recipe, rather than editing these files directly. -------------------------------------------------------------------------------- /recipes/setuptools-feedstock/.ci_support/win_python2.7.yaml: -------------------------------------------------------------------------------- 1 | channel_sources: 2 | - conda-forge,defaults 3 | channel_targets: 4 | - conda-forge main 5 | pin_run_as_build: 6 | python: 7 | min_pin: x.x 8 | max_pin: x.x 9 | python: 10 | - '2.7' 11 | -------------------------------------------------------------------------------- /recipes/setuptools-feedstock/.ci_support/win_python3.5.yaml: -------------------------------------------------------------------------------- 1 | channel_sources: 2 | - conda-forge,defaults 3 | channel_targets: 4 | - conda-forge main 5 | pin_run_as_build: 6 | python: 7 | min_pin: x.x 8 | max_pin: x.x 9 | python: 10 | - '3.5' 11 | -------------------------------------------------------------------------------- /recipes/setuptools-feedstock/.ci_support/win_python3.6.yaml: -------------------------------------------------------------------------------- 1 | channel_sources: 2 | - conda-forge,defaults 3 | channel_targets: 4 | - conda-forge main 5 | pin_run_as_build: 6 | python: 7 | min_pin: x.x 8 | max_pin: x.x 9 | python: 10 | - '3.6' 11 | -------------------------------------------------------------------------------- /recipes/setuptools-feedstock/.ci_support/win_python3.7.yaml: -------------------------------------------------------------------------------- 1 | channel_sources: 2 | - conda-forge,defaults 3 | channel_targets: 4 | - conda-forge main 5 | pin_run_as_build: 6 | python: 7 | min_pin: x.x 8 | max_pin: x.x 9 | python: 10 | - '3.7' 11 | -------------------------------------------------------------------------------- /recipes/setuptools_scm-feedstock/.ci_support/README: -------------------------------------------------------------------------------- 1 | This file is automatically generated by conda-smithy. To change any matrix elements, you should change conda-smithy's input conda_build_config.yaml and re-render the recipe, rather than editing these files directly. -------------------------------------------------------------------------------- /recipes/cryptography-vectors-feedstock/.ci_support/README: -------------------------------------------------------------------------------- 1 | This file is automatically generated by conda-smithy. To change any matrix elements, you should change conda-smithy's input conda_build_config.yaml and re-render the recipe, rather than editing these files directly. -------------------------------------------------------------------------------- /recipes/cryptography-feedstock/.ci_support/linux_python2.7.yaml: -------------------------------------------------------------------------------- 1 | c_compiler: 2 | - toolchain_c 3 | openssl: 4 | - 1.0.2 5 | pin_run_as_build: 6 | openssl: 7 | max_pin: x.x.x 8 | python: 9 | min_pin: x.x 10 | max_pin: x.x 11 | python: 12 | - '2.7' 13 | -------------------------------------------------------------------------------- /recipes/cryptography-feedstock/.ci_support/linux_python3.5.yaml: -------------------------------------------------------------------------------- 1 | c_compiler: 2 | - toolchain_c 3 | openssl: 4 | - 1.0.2 5 | pin_run_as_build: 6 | openssl: 7 | max_pin: x.x.x 8 | python: 9 | min_pin: x.x 10 | max_pin: x.x 11 | python: 12 | - '3.5' 13 | -------------------------------------------------------------------------------- /recipes/cryptography-feedstock/.ci_support/linux_python3.6.yaml: -------------------------------------------------------------------------------- 1 | c_compiler: 2 | - toolchain_c 3 | openssl: 4 | - 1.0.2 5 | pin_run_as_build: 6 | openssl: 7 | max_pin: x.x.x 8 | python: 9 | min_pin: x.x 10 | max_pin: x.x 11 | python: 12 | - '3.6' 13 | -------------------------------------------------------------------------------- /recipes/gettext-feedstock/recipe/build.sh: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env bash 2 | 3 | ./configure --prefix=${PREFIX} \ 4 | --host=${HOST} 5 | make -j${CPU_COUNT} ${VERBOSE_AT} 6 | make install 7 | 8 | # This overlaps with readline: 9 | rm -rf ${PREFIX}/share/info/dir 10 | -------------------------------------------------------------------------------- /recipes/conda-build-feedstock/recipe/test_bdist_conda_setup.py: -------------------------------------------------------------------------------- 1 | from distutils.core import setup, Extension 2 | import distutils.command.bdist_conda 3 | 4 | setup( 5 | name="package", 6 | version="1.0.0", 7 | distclass=distutils.command.bdist_conda.CondaDistribution 8 | ) 9 | -------------------------------------------------------------------------------- /recipes/ctng-compilers-feedstock/recipe/tests/aligned_alloc.c: -------------------------------------------------------------------------------- 1 | #include 2 | #include 3 | 4 | int main(void) 5 | { 6 | int *p2 = (int*)aligned_alloc(1024, 1024*sizeof *p2); 7 | printf("1024-byte aligned addr: %p\n", (void*)p2); 8 | free(p2); 9 | } 10 | -------------------------------------------------------------------------------- /recipes/ca-certificates-feedstock/recipe/build.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | # Create the directory to hold the certificates. 4 | mkdir -p "${PREFIX}/ssl" 5 | 6 | # Move the certificates. 7 | mv cacert.pem ${PREFIX}/ssl/cacert.pem 8 | ln -fs "${PREFIX}/ssl/cacert.pem" "${PREFIX}/ssl/cert.pem" 9 | -------------------------------------------------------------------------------- /recipes/nose-feedstock/recipe/run_test.py: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env python 2 | 3 | # Check that `setuptools` dependency is satisfied. 4 | 5 | from nose.plugins.manager import DefaultPluginManager, EntryPointPluginManager 6 | 7 | assert EntryPointPluginManager in DefaultPluginManager.__bases__ 8 | -------------------------------------------------------------------------------- /recipes/python-feedstock/recipe/sysconfigdata/__pycache__/_sysconfigdata_aarch64_conda_cos7_linux_gnu.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jjhelmus/conda4aarch64/HEAD/recipes/python-feedstock/recipe/sysconfigdata/__pycache__/_sysconfigdata_aarch64_conda_cos7_linux_gnu.cpython-36.pyc -------------------------------------------------------------------------------- /recipes/ctng-compilers-activation-feedstock/recipe/tests/aligned_alloc.c: -------------------------------------------------------------------------------- 1 | #include 2 | #include 3 | 4 | int main(void) 5 | { 6 | int *p2 = (int*)aligned_alloc(1024, 1024*sizeof *p2); 7 | printf("1024-byte aligned addr: %p\n", (void*)p2); 8 | free(p2); 9 | } 10 | -------------------------------------------------------------------------------- /recipes/lz4-feedstock/.ci_support/osx_python2.7.yaml: -------------------------------------------------------------------------------- 1 | MACOSX_DEPLOYMENT_TARGET: 2 | - '10.9' 3 | macos_machine: 4 | - x86_64-apple-darwin13.4.0 5 | macos_min_version: 6 | - '10.9' 7 | pin_run_as_build: 8 | python: 9 | max_pin: x.x 10 | min_pin: x.x 11 | python: 12 | - '2.7' 13 | -------------------------------------------------------------------------------- /recipes/lz4-feedstock/.ci_support/osx_python3.5.yaml: -------------------------------------------------------------------------------- 1 | MACOSX_DEPLOYMENT_TARGET: 2 | - '10.9' 3 | macos_machine: 4 | - x86_64-apple-darwin13.4.0 5 | macos_min_version: 6 | - '10.9' 7 | pin_run_as_build: 8 | python: 9 | max_pin: x.x 10 | min_pin: x.x 11 | python: 12 | - '3.5' 13 | -------------------------------------------------------------------------------- /recipes/lz4-feedstock/.ci_support/osx_python3.6.yaml: -------------------------------------------------------------------------------- 1 | MACOSX_DEPLOYMENT_TARGET: 2 | - '10.9' 3 | macos_machine: 4 | - x86_64-apple-darwin13.4.0 5 | macos_min_version: 6 | - '10.9' 7 | pin_run_as_build: 8 | python: 9 | max_pin: x.x 10 | min_pin: x.x 11 | python: 12 | - '3.6' 13 | -------------------------------------------------------------------------------- /recipes/pip-feedstock/recipe/bld.bat: -------------------------------------------------------------------------------- 1 | python setup.py install --single-version-externally-managed --record record.txt 2 | if errorlevel 1 exit 1 3 | 4 | cd %SCRIPTS% 5 | del *.exe 6 | del *.exe.manifest 7 | del pip2* 8 | del pip3* 9 | REM del %SP_DIR%\__pycache__\pkg_res* 10 | -------------------------------------------------------------------------------- /recipes/cookies-feedstock/recipe/run_test.py: -------------------------------------------------------------------------------- 1 | # new cookies.py 2 | from cookies import Cookies, Cookie 3 | 4 | cookies = Cookies(rocky='road') 5 | # Can also write explicitly: cookies['rocky'] = Cookie['road'] 6 | cookies['rocky'].path = "/cookie" 7 | assert cookies.render_request() == 'rocky=road' 8 | -------------------------------------------------------------------------------- /recipes/ctng-compilers-activation-feedstock/recipe/install-g++.sh: -------------------------------------------------------------------------------- 1 | mkdir -p ${PREFIX}/etc/conda/{de,}activate.d 2 | cp "${SRC_DIR}"/activate-g++.sh ${PREFIX}/etc/conda/activate.d/activate-${PKG_NAME}.sh 3 | cp "${SRC_DIR}"/deactivate-g++.sh ${PREFIX}/etc/conda/deactivate.d/deactivate-${PKG_NAME}.sh 4 | -------------------------------------------------------------------------------- /recipes/ctng-compilers-activation-feedstock/recipe/install-gcc.sh: -------------------------------------------------------------------------------- 1 | mkdir -p ${PREFIX}/etc/conda/{de,}activate.d 2 | cp "${SRC_DIR}"/activate-gcc.sh ${PREFIX}/etc/conda/activate.d/activate-${PKG_NAME}.sh 3 | cp "${SRC_DIR}"/deactivate-gcc.sh ${PREFIX}/etc/conda/deactivate.d/deactivate-${PKG_NAME}.sh 4 | -------------------------------------------------------------------------------- /recipes/git-feedstock/recipe/bld.bat: -------------------------------------------------------------------------------- 1 | MOVE usr %LIBRARY_PREFIX%\ 2 | MOVE etc %LIBRARY_PREFIX%\ 3 | MOVE cmd\git.exe %LIBRARY_PREFIX%\bin\git.exe 4 | MOVE mingw%ARCH% %LIBRARY_PREFIX%\ 5 | DEL %LIBRARY_PREFIX%\mingw%ARCH%\bin\busybox.exe 6 | MOVE busybox.exe %LIBRARY_PREFIX%\mingw%ARCH%\bin\ 7 | -------------------------------------------------------------------------------- /recipes/pexpect-feedstock/.ci_support/osx_python2.7.yaml: -------------------------------------------------------------------------------- 1 | MACOSX_DEPLOYMENT_TARGET: 2 | - '10.9' 3 | macos_machine: 4 | - x86_64-apple-darwin13.4.0 5 | macos_min_version: 6 | - '10.9' 7 | pin_run_as_build: 8 | python: 9 | min_pin: x.x 10 | max_pin: x.x 11 | python: 12 | - '2.7' 13 | -------------------------------------------------------------------------------- /recipes/pexpect-feedstock/.ci_support/osx_python3.5.yaml: -------------------------------------------------------------------------------- 1 | MACOSX_DEPLOYMENT_TARGET: 2 | - '10.9' 3 | macos_machine: 4 | - x86_64-apple-darwin13.4.0 5 | macos_min_version: 6 | - '10.9' 7 | pin_run_as_build: 8 | python: 9 | min_pin: x.x 10 | max_pin: x.x 11 | python: 12 | - '3.5' 13 | -------------------------------------------------------------------------------- /recipes/pexpect-feedstock/.ci_support/osx_python3.6.yaml: -------------------------------------------------------------------------------- 1 | MACOSX_DEPLOYMENT_TARGET: 2 | - '10.9' 3 | macos_machine: 4 | - x86_64-apple-darwin13.4.0 5 | macos_min_version: 6 | - '10.9' 7 | pin_run_as_build: 8 | python: 9 | min_pin: x.x 10 | max_pin: x.x 11 | python: 12 | - '3.6' 13 | -------------------------------------------------------------------------------- /recipes/psutil-feedstock/.ci_support/osx_python2.7.yaml: -------------------------------------------------------------------------------- 1 | MACOSX_DEPLOYMENT_TARGET: 2 | - '10.9' 3 | macos_machine: 4 | - x86_64-apple-darwin13.4.0 5 | macos_min_version: 6 | - '10.9' 7 | pin_run_as_build: 8 | python: 9 | min_pin: x.x 10 | max_pin: x.x 11 | python: 12 | - '2.7' 13 | -------------------------------------------------------------------------------- /recipes/psutil-feedstock/.ci_support/osx_python3.5.yaml: -------------------------------------------------------------------------------- 1 | MACOSX_DEPLOYMENT_TARGET: 2 | - '10.9' 3 | macos_machine: 4 | - x86_64-apple-darwin13.4.0 5 | macos_min_version: 6 | - '10.9' 7 | pin_run_as_build: 8 | python: 9 | min_pin: x.x 10 | max_pin: x.x 11 | python: 12 | - '3.5' 13 | -------------------------------------------------------------------------------- /recipes/psutil-feedstock/.ci_support/osx_python3.6.yaml: -------------------------------------------------------------------------------- 1 | MACOSX_DEPLOYMENT_TARGET: 2 | - '10.9' 3 | macos_machine: 4 | - x86_64-apple-darwin13.4.0 5 | macos_min_version: 6 | - '10.9' 7 | pin_run_as_build: 8 | python: 9 | min_pin: x.x 10 | max_pin: x.x 11 | python: 12 | - '3.6' 13 | -------------------------------------------------------------------------------- /recipes/pyopenssl-feedstock/.ci_support/osx_python2.7.yaml: -------------------------------------------------------------------------------- 1 | MACOSX_DEPLOYMENT_TARGET: 2 | - '10.9' 3 | macos_machine: 4 | - x86_64-apple-darwin13.4.0 5 | macos_min_version: 6 | - '10.9' 7 | pin_run_as_build: 8 | python: 9 | min_pin: x.x 10 | max_pin: x.x 11 | python: 12 | - '2.7' 13 | -------------------------------------------------------------------------------- /recipes/pyopenssl-feedstock/.ci_support/osx_python3.5.yaml: -------------------------------------------------------------------------------- 1 | MACOSX_DEPLOYMENT_TARGET: 2 | - '10.9' 3 | macos_machine: 4 | - x86_64-apple-darwin13.4.0 5 | macos_min_version: 6 | - '10.9' 7 | pin_run_as_build: 8 | python: 9 | min_pin: x.x 10 | max_pin: x.x 11 | python: 12 | - '3.5' 13 | -------------------------------------------------------------------------------- /recipes/pyopenssl-feedstock/.ci_support/osx_python3.6.yaml: -------------------------------------------------------------------------------- 1 | MACOSX_DEPLOYMENT_TARGET: 2 | - '10.9' 3 | macos_machine: 4 | - x86_64-apple-darwin13.4.0 5 | macos_min_version: 6 | - '10.9' 7 | pin_run_as_build: 8 | python: 9 | min_pin: x.x 10 | max_pin: x.x 11 | python: 12 | - '3.6' 13 | -------------------------------------------------------------------------------- /recipes/requests-feedstock/.ci_support/osx_python2.7.yaml: -------------------------------------------------------------------------------- 1 | MACOSX_DEPLOYMENT_TARGET: 2 | - '10.9' 3 | macos_machine: 4 | - x86_64-apple-darwin13.4.0 5 | macos_min_version: 6 | - '10.9' 7 | pin_run_as_build: 8 | python: 9 | min_pin: x.x 10 | max_pin: x.x 11 | python: 12 | - '2.7' 13 | -------------------------------------------------------------------------------- /recipes/requests-feedstock/.ci_support/osx_python3.5.yaml: -------------------------------------------------------------------------------- 1 | MACOSX_DEPLOYMENT_TARGET: 2 | - '10.9' 3 | macos_machine: 4 | - x86_64-apple-darwin13.4.0 5 | macos_min_version: 6 | - '10.9' 7 | pin_run_as_build: 8 | python: 9 | min_pin: x.x 10 | max_pin: x.x 11 | python: 12 | - '3.5' 13 | -------------------------------------------------------------------------------- /recipes/requests-feedstock/.ci_support/osx_python3.6.yaml: -------------------------------------------------------------------------------- 1 | MACOSX_DEPLOYMENT_TARGET: 2 | - '10.9' 3 | macos_machine: 4 | - x86_64-apple-darwin13.4.0 5 | macos_min_version: 6 | - '10.9' 7 | pin_run_as_build: 8 | python: 9 | min_pin: x.x 10 | max_pin: x.x 11 | python: 12 | - '3.6' 13 | -------------------------------------------------------------------------------- /recipes/beautifulsoup4-feedstock/.ci_support/osx_python2.7.yaml: -------------------------------------------------------------------------------- 1 | MACOSX_DEPLOYMENT_TARGET: 2 | - '10.9' 3 | macos_machine: 4 | - x86_64-apple-darwin13.4.0 5 | macos_min_version: 6 | - '10.9' 7 | pin_run_as_build: 8 | python: 9 | min_pin: x.x 10 | max_pin: x.x 11 | python: 12 | - '2.7' 13 | -------------------------------------------------------------------------------- /recipes/beautifulsoup4-feedstock/.ci_support/osx_python3.5.yaml: -------------------------------------------------------------------------------- 1 | MACOSX_DEPLOYMENT_TARGET: 2 | - '10.9' 3 | macos_machine: 4 | - x86_64-apple-darwin13.4.0 5 | macos_min_version: 6 | - '10.9' 7 | pin_run_as_build: 8 | python: 9 | min_pin: x.x 10 | max_pin: x.x 11 | python: 12 | - '3.5' 13 | -------------------------------------------------------------------------------- /recipes/beautifulsoup4-feedstock/.ci_support/osx_python3.6.yaml: -------------------------------------------------------------------------------- 1 | MACOSX_DEPLOYMENT_TARGET: 2 | - '10.9' 3 | macos_machine: 4 | - x86_64-apple-darwin13.4.0 5 | macos_min_version: 6 | - '10.9' 7 | pin_run_as_build: 8 | python: 9 | min_pin: x.x 10 | max_pin: x.x 11 | python: 12 | - '3.6' 13 | -------------------------------------------------------------------------------- /recipes/beautifulsoup4-feedstock/.ci_support/osx_python3.7.yaml: -------------------------------------------------------------------------------- 1 | MACOSX_DEPLOYMENT_TARGET: 2 | - '10.9' 3 | macos_machine: 4 | - x86_64-apple-darwin13.4.0 5 | macos_min_version: 6 | - '10.9' 7 | pin_run_as_build: 8 | python: 9 | min_pin: x.x 10 | max_pin: x.x 11 | python: 12 | - '3.7' 13 | -------------------------------------------------------------------------------- /recipes/conda-build-feedstock/.ci_support/osx_python2.7.yaml: -------------------------------------------------------------------------------- 1 | MACOSX_DEPLOYMENT_TARGET: 2 | - '10.9' 3 | macos_machine: 4 | - x86_64-apple-darwin13.4.0 5 | macos_min_version: 6 | - '10.9' 7 | pin_run_as_build: 8 | python: 9 | min_pin: x.x 10 | max_pin: x.x 11 | python: 12 | - '2.7' 13 | -------------------------------------------------------------------------------- /recipes/conda-build-feedstock/.ci_support/osx_python3.5.yaml: -------------------------------------------------------------------------------- 1 | MACOSX_DEPLOYMENT_TARGET: 2 | - '10.9' 3 | macos_machine: 4 | - x86_64-apple-darwin13.4.0 5 | macos_min_version: 6 | - '10.9' 7 | pin_run_as_build: 8 | python: 9 | min_pin: x.x 10 | max_pin: x.x 11 | python: 12 | - '3.5' 13 | -------------------------------------------------------------------------------- /recipes/conda-build-feedstock/.ci_support/osx_python3.6.yaml: -------------------------------------------------------------------------------- 1 | MACOSX_DEPLOYMENT_TARGET: 2 | - '10.9' 3 | macos_machine: 4 | - x86_64-apple-darwin13.4.0 5 | macos_min_version: 6 | - '10.9' 7 | pin_run_as_build: 8 | python: 9 | min_pin: x.x 10 | max_pin: x.x 11 | python: 12 | - '3.6' 13 | -------------------------------------------------------------------------------- /recipes/more-itertools-feedstock/.ci_support/osx_python2.7.yaml: -------------------------------------------------------------------------------- 1 | MACOSX_DEPLOYMENT_TARGET: 2 | - '10.9' 3 | macos_machine: 4 | - x86_64-apple-darwin13.4.0 5 | macos_min_version: 6 | - '10.9' 7 | pin_run_as_build: 8 | python: 9 | max_pin: x.x 10 | min_pin: x.x 11 | python: 12 | - '2.7' 13 | -------------------------------------------------------------------------------- /recipes/more-itertools-feedstock/.ci_support/osx_python3.5.yaml: -------------------------------------------------------------------------------- 1 | MACOSX_DEPLOYMENT_TARGET: 2 | - '10.9' 3 | macos_machine: 4 | - x86_64-apple-darwin13.4.0 5 | macos_min_version: 6 | - '10.9' 7 | pin_run_as_build: 8 | python: 9 | max_pin: x.x 10 | min_pin: x.x 11 | python: 12 | - '3.5' 13 | -------------------------------------------------------------------------------- /recipes/more-itertools-feedstock/.ci_support/osx_python3.6.yaml: -------------------------------------------------------------------------------- 1 | MACOSX_DEPLOYMENT_TARGET: 2 | - '10.9' 3 | macos_machine: 4 | - x86_64-apple-darwin13.4.0 5 | macos_min_version: 6 | - '10.9' 7 | pin_run_as_build: 8 | python: 9 | max_pin: x.x 10 | min_pin: x.x 11 | python: 12 | - '3.6' 13 | -------------------------------------------------------------------------------- /recipes/ptyprocess-feedstock/.ci_support/osx_python2.7.yaml: -------------------------------------------------------------------------------- 1 | MACOSX_DEPLOYMENT_TARGET: 2 | - '10.9' 3 | macos_machine: 4 | - x86_64-apple-darwin13.4.0 5 | macos_min_version: 6 | - '10.9' 7 | pin_run_as_build: 8 | python: 9 | min_pin: x.x 10 | max_pin: x.x 11 | python: 12 | - '2.7' 13 | -------------------------------------------------------------------------------- /recipes/ptyprocess-feedstock/.ci_support/osx_python3.5.yaml: -------------------------------------------------------------------------------- 1 | MACOSX_DEPLOYMENT_TARGET: 2 | - '10.9' 3 | macos_machine: 4 | - x86_64-apple-darwin13.4.0 5 | macos_min_version: 6 | - '10.9' 7 | pin_run_as_build: 8 | python: 9 | min_pin: x.x 10 | max_pin: x.x 11 | python: 12 | - '3.5' 13 | -------------------------------------------------------------------------------- /recipes/ptyprocess-feedstock/.ci_support/osx_python3.6.yaml: -------------------------------------------------------------------------------- 1 | MACOSX_DEPLOYMENT_TARGET: 2 | - '10.9' 3 | macos_machine: 4 | - x86_64-apple-darwin13.4.0 5 | macos_min_version: 6 | - '10.9' 7 | pin_run_as_build: 8 | python: 9 | min_pin: x.x 10 | max_pin: x.x 11 | python: 12 | - '3.6' 13 | -------------------------------------------------------------------------------- /recipes/setuptools-feedstock/recipe/build.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | export SETUPTOOLS_DISABLE_VERSIONED_EASY_INSTALL_SCRIPT=1 4 | export DISTRIBUTE_DISABLE_VERSIONED_EASY_INSTALL_SCRIPT=1 5 | 6 | $PYTHON bootstrap.py 7 | $PYTHON setup.py install --single-version-externally-managed --record=record.txt 8 | -------------------------------------------------------------------------------- /recipes/ctng-compilers-activation-feedstock/recipe/tests/fortomp/test_fort.sh: -------------------------------------------------------------------------------- 1 | cmake \ 2 | -H${SRC_DIR} \ 3 | -Bbuild \ 4 | -DCMAKE_INSTALL_PREFIX=${PREFIX} \ 5 | -DCMAKE_BUILD_TYPE=Release \ 6 | -DCMAKE_Fortran_COMPILER=${GFORTRAN} \ 7 | -DCMAKE_Fortran_FLAGS="${FFLAGS}" \ 8 | . 9 | -------------------------------------------------------------------------------- /recipes/readline-feedstock/.ci_support/osx_.yaml: -------------------------------------------------------------------------------- 1 | MACOSX_DEPLOYMENT_TARGET: 2 | - '10.9' 3 | c_compiler: 4 | - toolchain_c 5 | macos_machine: 6 | - x86_64-apple-darwin13.4.0 7 | macos_min_version: 8 | - '10.9' 9 | ncurses: 10 | - '6.1' 11 | pin_run_as_build: 12 | ncurses: 13 | max_pin: x.x 14 | -------------------------------------------------------------------------------- /recipes/cryptography-vectors-feedstock/.ci_support/osx_python2.7.yaml: -------------------------------------------------------------------------------- 1 | MACOSX_DEPLOYMENT_TARGET: 2 | - '10.9' 3 | macos_machine: 4 | - x86_64-apple-darwin13.4.0 5 | macos_min_version: 6 | - '10.9' 7 | pin_run_as_build: 8 | python: 9 | min_pin: x.x 10 | max_pin: x.x 11 | python: 12 | - '2.7' 13 | -------------------------------------------------------------------------------- /recipes/cryptography-vectors-feedstock/.ci_support/osx_python3.5.yaml: -------------------------------------------------------------------------------- 1 | MACOSX_DEPLOYMENT_TARGET: 2 | - '10.9' 3 | macos_machine: 4 | - x86_64-apple-darwin13.4.0 5 | macos_min_version: 6 | - '10.9' 7 | pin_run_as_build: 8 | python: 9 | min_pin: x.x 10 | max_pin: x.x 11 | python: 12 | - '3.5' 13 | -------------------------------------------------------------------------------- /recipes/cryptography-vectors-feedstock/.ci_support/osx_python3.6.yaml: -------------------------------------------------------------------------------- 1 | MACOSX_DEPLOYMENT_TARGET: 2 | - '10.9' 3 | macos_machine: 4 | - x86_64-apple-darwin13.4.0 5 | macos_min_version: 6 | - '10.9' 7 | pin_run_as_build: 8 | python: 9 | min_pin: x.x 10 | max_pin: x.x 11 | python: 12 | - '3.6' 13 | -------------------------------------------------------------------------------- /recipes/ctng-compilers-activation-feedstock/recipe/install-binutils.sh: -------------------------------------------------------------------------------- 1 | mkdir -p ${PREFIX}/etc/conda/{de,}activate.d 2 | cp "${SRC_DIR}"/activate-binutils.sh ${PREFIX}/etc/conda/activate.d/activate-${PKG_NAME}.sh 3 | cp "${SRC_DIR}"/deactivate-binutils.sh ${PREFIX}/etc/conda/deactivate.d/deactivate-${PKG_NAME}.sh 4 | -------------------------------------------------------------------------------- /recipes/ctng-compilers-activation-feedstock/recipe/install-gfortran.sh: -------------------------------------------------------------------------------- 1 | mkdir -p ${PREFIX}/etc/conda/{de,}activate.d 2 | cp "${SRC_DIR}"/activate-gfortran.sh ${PREFIX}/etc/conda/activate.d/activate-${PKG_NAME}.sh 3 | cp "${SRC_DIR}"/deactivate-gfortran.sh ${PREFIX}/etc/conda/deactivate.d/deactivate-${PKG_NAME}.sh 4 | -------------------------------------------------------------------------------- /recipes/conda-build-feedstock/recipe/bld.bat: -------------------------------------------------------------------------------- 1 | python setup.py install --single-version-externally-managed --record=record.txt 2 | if errorlevel 1 exit 1 3 | 4 | copy bdist_conda.py "%PREFIX%\Lib\distutils\command\" 5 | if errorlevel 1 exit 1 6 | 7 | del /f /q "%PREFIX%\Scripts\conda" 8 | if errorlevel 1 exit 1 9 | -------------------------------------------------------------------------------- /recipes/readline-feedstock/recipe/build.sh: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env bash 2 | 3 | ./configure --prefix=${PREFIX} \ 4 | --build=${BUILD} \ 5 | --host=${HOST} \ 6 | || { cat config.log; exit 1; } 7 | make SHLIB_LIBS="$(pkg-config --libs ncurses)" -j${CPU_COUNT} ${VERBOSE_AT} 8 | make install 9 | -------------------------------------------------------------------------------- /recipes/bzip2-feedstock/.circleci/fast_finish_ci_pr_build.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | curl https://raw.githubusercontent.com/conda-forge/conda-forge-ci-setup-feedstock/master/recipe/ff_ci_pr_build.py | \ 4 | python - -v --ci "circle" "${CIRCLE_PROJECT_USERNAME}/${CIRCLE_PROJECT_REPONAME}" "${CIRCLE_BUILD_NUM}" "${CIRCLE_PR_NUMBER}" 5 | -------------------------------------------------------------------------------- /recipes/cryptography-feedstock/.ci_support/win_c_compilervs2008python2.7.yaml: -------------------------------------------------------------------------------- 1 | c_compiler: 2 | - vs2008 3 | openssl: 4 | - 1.0.2 5 | pin_run_as_build: 6 | openssl: 7 | max_pin: x.x.x 8 | python: 9 | min_pin: x.x 10 | max_pin: x.x 11 | python: 12 | - '2.7' 13 | zip_keys: 14 | - - python 15 | - c_compiler 16 | -------------------------------------------------------------------------------- /recipes/cryptography-feedstock/.ci_support/win_c_compilervs2015python3.5.yaml: -------------------------------------------------------------------------------- 1 | c_compiler: 2 | - vs2015 3 | openssl: 4 | - 1.0.2 5 | pin_run_as_build: 6 | openssl: 7 | max_pin: x.x.x 8 | python: 9 | min_pin: x.x 10 | max_pin: x.x 11 | python: 12 | - '3.5' 13 | zip_keys: 14 | - - python 15 | - c_compiler 16 | -------------------------------------------------------------------------------- /recipes/cryptography-feedstock/.ci_support/win_c_compilervs2015python3.6.yaml: -------------------------------------------------------------------------------- 1 | c_compiler: 2 | - vs2015 3 | openssl: 4 | - 1.0.2 5 | pin_run_as_build: 6 | openssl: 7 | max_pin: x.x.x 8 | python: 9 | min_pin: x.x 10 | max_pin: x.x 11 | python: 12 | - '3.6' 13 | zip_keys: 14 | - - python 15 | - c_compiler 16 | -------------------------------------------------------------------------------- /recipes/lz4-feedstock/.circleci/fast_finish_ci_pr_build.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | curl https://raw.githubusercontent.com/conda-forge/conda-forge-ci-setup-feedstock/master/recipe/ff_ci_pr_build.py | \ 4 | python - -v --ci "circle" "${CIRCLE_PROJECT_USERNAME}/${CIRCLE_PROJECT_REPONAME}" "${CIRCLE_BUILD_NUM}" "${CIRCLE_PR_NUMBER}" 5 | -------------------------------------------------------------------------------- /recipes/pbr-feedstock/.circleci/fast_finish_ci_pr_build.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | curl https://raw.githubusercontent.com/conda-forge/conda-forge-ci-setup-feedstock/master/recipe/ff_ci_pr_build.py | \ 4 | python - -v --ci "circle" "${CIRCLE_PROJECT_USERNAME}/${CIRCLE_PROJECT_REPONAME}" "${CIRCLE_BUILD_NUM}" "${CIRCLE_PR_NUMBER}" 5 | -------------------------------------------------------------------------------- /recipes/py-feedstock/.ci_support/linux_.yaml: -------------------------------------------------------------------------------- 1 | build_number_decrement: 2 | - '0' 3 | channel_sources: 4 | - conda-forge,defaults 5 | channel_targets: 6 | - conda-forge main 7 | docker_image: 8 | - condaforge/linux-anvil 9 | pin_run_as_build: 10 | python: 11 | min_pin: x.x 12 | max_pin: x.x 13 | python: 14 | - '2.7' 15 | -------------------------------------------------------------------------------- /recipes/pytz-feedstock/.circleci/fast_finish_ci_pr_build.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | curl https://raw.githubusercontent.com/conda-forge/conda-forge-ci-setup-feedstock/master/recipe/ff_ci_pr_build.py | \ 4 | python - -v --ci "circle" "${CIRCLE_PROJECT_USERNAME}/${CIRCLE_PROJECT_REPONAME}" "${CIRCLE_BUILD_NUM}" "${CIRCLE_PR_NUMBER}" 5 | -------------------------------------------------------------------------------- /recipes/pytz-feedstock/recipe/run_test.py: -------------------------------------------------------------------------------- 1 | import os 2 | from os.path import dirname, isfile, join 3 | 4 | import pytz 5 | 6 | 7 | pytz_dir = dirname(pytz.__file__) 8 | print('pytz_dir: %r' % pytz_dir) 9 | assert isfile(join(pytz_dir, 'zoneinfo', 'zone.tab')) 10 | assert len(os.listdir(join(pytz_dir, 'zoneinfo'))) > 10 11 | -------------------------------------------------------------------------------- /recipes/attrs-feedstock/.ci_support/linux_.yaml: -------------------------------------------------------------------------------- 1 | build_number_decrement: 2 | - '0' 3 | channel_sources: 4 | - conda-forge,defaults 5 | channel_targets: 6 | - conda-forge main 7 | docker_image: 8 | - condaforge/linux-anvil 9 | pin_run_as_build: 10 | python: 11 | min_pin: x.x 12 | max_pin: x.x 13 | python: 14 | - '2.7' 15 | -------------------------------------------------------------------------------- /recipes/cffi-feedstock/ci_support/fast_finish_ci_pr_build.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | curl https://raw.githubusercontent.com/conda-forge/conda-forge-build-setup-feedstock/master/recipe/ff_ci_pr_build.py | \ 4 | python - -v --ci "circle" "${CIRCLE_PROJECT_USERNAME}/${CIRCLE_PROJECT_REPONAME}" "${CIRCLE_BUILD_NUM}" "${CIRCLE_PR_NUMBER}" 5 | -------------------------------------------------------------------------------- /recipes/clyent-feedstock/ci_support/fast_finish_ci_pr_build.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | curl https://raw.githubusercontent.com/conda-forge/conda-forge-build-setup-feedstock/master/recipe/ff_ci_pr_build.py | \ 4 | python - -v --ci "circle" "${CIRCLE_PROJECT_USERNAME}/${CIRCLE_PROJECT_REPONAME}" "${CIRCLE_BUILD_NUM}" "${CIRCLE_PR_NUMBER}" 5 | -------------------------------------------------------------------------------- /recipes/cmake-feedstock/ci_support/fast_finish_ci_pr_build.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | curl https://raw.githubusercontent.com/conda-forge/conda-forge-build-setup-feedstock/master/recipe/ff_ci_pr_build.py | \ 4 | python - -v --ci "circle" "${CIRCLE_PROJECT_USERNAME}/${CIRCLE_PROJECT_REPONAME}" "${CIRCLE_BUILD_NUM}" "${CIRCLE_PR_NUMBER}" 5 | -------------------------------------------------------------------------------- /recipes/conda-feedstock/ci_support/fast_finish_ci_pr_build.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | curl https://raw.githubusercontent.com/conda-forge/conda-forge-build-setup-feedstock/master/recipe/ff_ci_pr_build.py | \ 4 | python - -v --ci "circle" "${CIRCLE_PROJECT_USERNAME}/${CIRCLE_PROJECT_REPONAME}" "${CIRCLE_BUILD_NUM}" "${CIRCLE_PR_NUMBER}" 5 | -------------------------------------------------------------------------------- /recipes/expat-feedstock/ci_support/fast_finish_ci_pr_build.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | curl https://raw.githubusercontent.com/conda-forge/conda-forge-build-setup-feedstock/master/recipe/ff_ci_pr_build.py | \ 4 | python - -v --ci "circle" "${CIRCLE_PROJECT_USERNAME}/${CIRCLE_PROJECT_REPONAME}" "${CIRCLE_BUILD_NUM}" "${CIRCLE_PR_NUMBER}" 5 | -------------------------------------------------------------------------------- /recipes/filelock-feedstock/.circleci/fast_finish_ci_pr_build.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | curl https://raw.githubusercontent.com/conda-forge/conda-forge-ci-setup-feedstock/master/recipe/ff_ci_pr_build.py | \ 4 | python - -v --ci "circle" "${CIRCLE_PROJECT_USERNAME}/${CIRCLE_PROJECT_REPONAME}" "${CIRCLE_BUILD_NUM}" "${CIRCLE_PR_NUMBER}" 5 | -------------------------------------------------------------------------------- /recipes/flex-feedstock/ci_support/fast_finish_ci_pr_build.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | curl https://raw.githubusercontent.com/conda-forge/conda-forge-build-setup-feedstock/master/recipe/ff_ci_pr_build.py | \ 4 | python - -v --ci "circle" "${CIRCLE_PROJECT_USERNAME}/${CIRCLE_PROJECT_REPONAME}" "${CIRCLE_BUILD_NUM}" "${CIRCLE_PR_NUMBER}" 5 | -------------------------------------------------------------------------------- /recipes/git-feedstock/ci_support/fast_finish_ci_pr_build.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | curl https://raw.githubusercontent.com/conda-forge/conda-forge-build-setup-feedstock/master/recipe/ff_ci_pr_build.py | \ 4 | python - -v --ci "circle" "${CIRCLE_PROJECT_USERNAME}/${CIRCLE_PROJECT_REPONAME}" "${CIRCLE_BUILD_NUM}" "${CIRCLE_PR_NUMBER}" 5 | -------------------------------------------------------------------------------- /recipes/glob2-feedstock/ci_support/fast_finish_ci_pr_build.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | curl https://raw.githubusercontent.com/conda-forge/conda-forge-build-setup-feedstock/master/recipe/ff_ci_pr_build.py | \ 4 | python - -v --ci "circle" "${CIRCLE_PROJECT_USERNAME}/${CIRCLE_PROJECT_REPONAME}" "${CIRCLE_BUILD_NUM}" "${CIRCLE_PR_NUMBER}" 5 | -------------------------------------------------------------------------------- /recipes/idna-feedstock/ci_support/fast_finish_ci_pr_build.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | curl https://raw.githubusercontent.com/conda-forge/conda-forge-build-setup-feedstock/master/recipe/ff_ci_pr_build.py | \ 4 | python - -v --ci "circle" "${CIRCLE_PROJECT_USERNAME}/${CIRCLE_PROJECT_REPONAME}" "${CIRCLE_BUILD_NUM}" "${CIRCLE_PR_NUMBER}" 5 | -------------------------------------------------------------------------------- /recipes/jinja2-feedstock/ci_support/fast_finish_ci_pr_build.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | curl https://raw.githubusercontent.com/conda-forge/conda-forge-build-setup-feedstock/master/recipe/ff_ci_pr_build.py | \ 4 | python - -v --ci "circle" "${CIRCLE_PROJECT_USERNAME}/${CIRCLE_PROJECT_REPONAME}" "${CIRCLE_BUILD_NUM}" "${CIRCLE_PR_NUMBER}" 5 | -------------------------------------------------------------------------------- /recipes/lz4-c-feedstock/ci_support/fast_finish_ci_pr_build.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | curl https://raw.githubusercontent.com/conda-forge/conda-forge-build-setup-feedstock/master/recipe/ff_ci_pr_build.py | \ 4 | python - -v --ci "circle" "${CIRCLE_PROJECT_USERNAME}/${CIRCLE_PROJECT_REPONAME}" "${CIRCLE_BUILD_NUM}" "${CIRCLE_PR_NUMBER}" 5 | -------------------------------------------------------------------------------- /recipes/lzo-feedstock/ci_support/fast_finish_ci_pr_build.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | curl https://raw.githubusercontent.com/conda-forge/conda-forge-build-setup-feedstock/master/recipe/ff_ci_pr_build.py | \ 4 | python - -v --ci "circle" "${CIRCLE_PROJECT_USERNAME}/${CIRCLE_PROJECT_REPONAME}" "${CIRCLE_BUILD_NUM}" "${CIRCLE_PR_NUMBER}" 5 | -------------------------------------------------------------------------------- /recipes/m4-feedstock/ci_support/fast_finish_ci_pr_build.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | curl https://raw.githubusercontent.com/conda-forge/conda-forge-build-setup-feedstock/master/recipe/ff_ci_pr_build.py | \ 4 | python - -v --ci "circle" "${CIRCLE_PROJECT_USERNAME}/${CIRCLE_PROJECT_REPONAME}" "${CIRCLE_BUILD_NUM}" "${CIRCLE_PR_NUMBER}" 5 | -------------------------------------------------------------------------------- /recipes/mock-feedstock/ci_support/fast_finish_ci_pr_build.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | curl https://raw.githubusercontent.com/conda-forge/conda-forge-build-setup-feedstock/master/recipe/ff_ci_pr_build.py | \ 4 | python - -v --ci "circle" "${CIRCLE_PROJECT_USERNAME}/${CIRCLE_PROJECT_REPONAME}" "${CIRCLE_BUILD_NUM}" "${CIRCLE_PR_NUMBER}" 5 | -------------------------------------------------------------------------------- /recipes/nose-feedstock/ci_support/fast_finish_ci_pr_build.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | curl https://raw.githubusercontent.com/conda-forge/conda-forge-build-setup-feedstock/master/recipe/ff_ci_pr_build.py | \ 4 | python - -v --ci "circle" "${CIRCLE_PROJECT_USERNAME}/${CIRCLE_PROJECT_REPONAME}" "${CIRCLE_BUILD_NUM}" "${CIRCLE_PR_NUMBER}" 5 | -------------------------------------------------------------------------------- /recipes/patch-feedstock/ci_support/fast_finish_ci_pr_build.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | curl https://raw.githubusercontent.com/conda-forge/conda-forge-build-setup-feedstock/master/recipe/ff_ci_pr_build.py | \ 4 | python - -v --ci "circle" "${CIRCLE_PROJECT_USERNAME}/${CIRCLE_PROJECT_REPONAME}" "${CIRCLE_BUILD_NUM}" "${CIRCLE_PR_NUMBER}" 5 | -------------------------------------------------------------------------------- /recipes/pexpect-feedstock/.circleci/fast_finish_ci_pr_build.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | curl https://raw.githubusercontent.com/conda-forge/conda-forge-ci-setup-feedstock/master/recipe/ff_ci_pr_build.py | \ 4 | python - -v --ci "circle" "${CIRCLE_PROJECT_USERNAME}/${CIRCLE_PROJECT_REPONAME}" "${CIRCLE_BUILD_NUM}" "${CIRCLE_PR_NUMBER}" 5 | -------------------------------------------------------------------------------- /recipes/pip-feedstock/ci_support/fast_finish_ci_pr_build.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | curl https://raw.githubusercontent.com/conda-forge/conda-forge-build-setup-feedstock/master/recipe/ff_ci_pr_build.py | \ 4 | python - -v --ci "circle" "${CIRCLE_PROJECT_USERNAME}/${CIRCLE_PROJECT_REPONAME}" "${CIRCLE_BUILD_NUM}" "${CIRCLE_PR_NUMBER}" 5 | -------------------------------------------------------------------------------- /recipes/pluggy-feedstock/.circleci/fast_finish_ci_pr_build.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | curl https://raw.githubusercontent.com/conda-forge/conda-forge-ci-setup-feedstock/master/recipe/ff_ci_pr_build.py | \ 4 | python - -v --ci "circle" "${CIRCLE_PROJECT_USERNAME}/${CIRCLE_PROJECT_REPONAME}" "${CIRCLE_BUILD_NUM}" "${CIRCLE_PR_NUMBER}" 5 | -------------------------------------------------------------------------------- /recipes/psutil-feedstock/.circleci/fast_finish_ci_pr_build.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | curl https://raw.githubusercontent.com/conda-forge/conda-forge-ci-setup-feedstock/master/recipe/ff_ci_pr_build.py | \ 4 | python - -v --ci "circle" "${CIRCLE_PROJECT_USERNAME}/${CIRCLE_PROJECT_REPONAME}" "${CIRCLE_BUILD_NUM}" "${CIRCLE_PR_NUMBER}" 5 | -------------------------------------------------------------------------------- /recipes/ptyprocess-feedstock/.circleci/fast_finish_ci_pr_build.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | curl https://raw.githubusercontent.com/conda-forge/conda-forge-ci-setup-feedstock/master/recipe/ff_ci_pr_build.py | \ 4 | python - -v --ci "circle" "${CIRCLE_PROJECT_USERNAME}/${CIRCLE_PROJECT_REPONAME}" "${CIRCLE_BUILD_NUM}" "${CIRCLE_PR_NUMBER}" 5 | -------------------------------------------------------------------------------- /recipes/pyopenssl-feedstock/.circleci/fast_finish_ci_pr_build.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | curl https://raw.githubusercontent.com/conda-forge/conda-forge-ci-setup-feedstock/master/recipe/ff_ci_pr_build.py | \ 4 | python - -v --ci "circle" "${CIRCLE_PROJECT_USERNAME}/${CIRCLE_PROJECT_REPONAME}" "${CIRCLE_BUILD_NUM}" "${CIRCLE_PR_NUMBER}" 5 | -------------------------------------------------------------------------------- /recipes/python-feedstock/ci_support/fast_finish_ci_pr_build.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | curl https://raw.githubusercontent.com/conda-forge/conda-forge-build-setup-feedstock/master/recipe/ff_ci_pr_build.py | \ 4 | python - -v --ci "circle" "${CIRCLE_PROJECT_USERNAME}/${CIRCLE_PROJECT_REPONAME}" "${CIRCLE_BUILD_NUM}" "${CIRCLE_PR_NUMBER}" 5 | -------------------------------------------------------------------------------- /recipes/pyyaml-feedstock/ci_support/fast_finish_ci_pr_build.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | curl https://raw.githubusercontent.com/conda-forge/conda-forge-build-setup-feedstock/master/recipe/ff_ci_pr_build.py | \ 4 | python - -v --ci "circle" "${CIRCLE_PROJECT_USERNAME}/${CIRCLE_PROJECT_REPONAME}" "${CIRCLE_BUILD_NUM}" "${CIRCLE_PR_NUMBER}" 5 | -------------------------------------------------------------------------------- /recipes/readline-feedstock/.circleci/fast_finish_ci_pr_build.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | curl https://raw.githubusercontent.com/conda-forge/conda-forge-ci-setup-feedstock/master/recipe/ff_ci_pr_build.py | \ 4 | python - -v --ci "circle" "${CIRCLE_PROJECT_USERNAME}/${CIRCLE_PROJECT_REPONAME}" "${CIRCLE_BUILD_NUM}" "${CIRCLE_PR_NUMBER}" 5 | -------------------------------------------------------------------------------- /recipes/requests-feedstock/.circleci/fast_finish_ci_pr_build.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | curl https://raw.githubusercontent.com/conda-forge/conda-forge-ci-setup-feedstock/master/recipe/ff_ci_pr_build.py | \ 4 | python - -v --ci "circle" "${CIRCLE_PROJECT_USERNAME}/${CIRCLE_PROJECT_REPONAME}" "${CIRCLE_BUILD_NUM}" "${CIRCLE_PR_NUMBER}" 5 | -------------------------------------------------------------------------------- /recipes/rhash-feedstock/ci_support/fast_finish_ci_pr_build.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | curl https://raw.githubusercontent.com/conda-forge/conda-forge-build-setup-feedstock/master/recipe/ff_ci_pr_build.py | \ 4 | python - -v --ci "circle" "${CIRCLE_PROJECT_USERNAME}/${CIRCLE_PROJECT_REPONAME}" "${CIRCLE_BUILD_NUM}" "${CIRCLE_PR_NUMBER}" 5 | -------------------------------------------------------------------------------- /recipes/six-feedstock/ci_support/fast_finish_ci_pr_build.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | curl https://raw.githubusercontent.com/conda-forge/conda-forge-build-setup-feedstock/master/recipe/ff_ci_pr_build.py | \ 4 | python - -v --ci "circle" "${CIRCLE_PROJECT_USERNAME}/${CIRCLE_PROJECT_REPONAME}" "${CIRCLE_BUILD_NUM}" "${CIRCLE_PR_NUMBER}" 5 | -------------------------------------------------------------------------------- /recipes/tk-feedstock/ci_support/fast_finish_ci_pr_build.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | curl https://raw.githubusercontent.com/conda-forge/conda-forge-build-setup-feedstock/master/recipe/ff_ci_pr_build.py | \ 4 | python - -v --ci "circle" "${CIRCLE_PROJECT_USERNAME}/${CIRCLE_PROJECT_REPONAME}" "${CIRCLE_BUILD_NUM}" "${CIRCLE_PR_NUMBER}" 5 | -------------------------------------------------------------------------------- /recipes/tqdm-feedstock/.ci_support/linux_.yaml: -------------------------------------------------------------------------------- 1 | build_number_decrement: 2 | - '0' 3 | channel_sources: 4 | - conda-forge,defaults 5 | channel_targets: 6 | - conda-forge main 7 | docker_image: 8 | - condaforge/linux-anvil 9 | pin_run_as_build: 10 | python: 11 | min_pin: x.x 12 | max_pin: x.x 13 | python: 14 | - '2.7' 15 | -------------------------------------------------------------------------------- /recipes/unzip-feedstock/ci_support/fast_finish_ci_pr_build.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | curl https://raw.githubusercontent.com/conda-forge/conda-forge-build-setup-feedstock/master/recipe/ff_ci_pr_build.py | \ 4 | python - -v --ci "circle" "${CIRCLE_PROJECT_USERNAME}/${CIRCLE_PROJECT_REPONAME}" "${CIRCLE_BUILD_NUM}" "${CIRCLE_PR_NUMBER}" 5 | -------------------------------------------------------------------------------- /recipes/xz-feedstock/ci_support/fast_finish_ci_pr_build.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | curl https://raw.githubusercontent.com/conda-forge/conda-forge-build-setup-feedstock/master/recipe/ff_ci_pr_build.py | \ 4 | python - -v --ci "circle" "${CIRCLE_PROJECT_USERNAME}/${CIRCLE_PROJECT_REPONAME}" "${CIRCLE_BUILD_NUM}" "${CIRCLE_PR_NUMBER}" 5 | -------------------------------------------------------------------------------- /recipes/zstd-feedstock/ci_support/fast_finish_ci_pr_build.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | curl https://raw.githubusercontent.com/conda-forge/conda-forge-build-setup-feedstock/master/recipe/ff_ci_pr_build.py | \ 4 | python - -v --ci "circle" "${CIRCLE_PROJECT_USERNAME}/${CIRCLE_PROJECT_REPONAME}" "${CIRCLE_BUILD_NUM}" "${CIRCLE_PR_NUMBER}" 5 | -------------------------------------------------------------------------------- /recipes/asn1crypto-feedstock/ci_support/fast_finish_ci_pr_build.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | curl https://raw.githubusercontent.com/conda-forge/conda-forge-build-setup-feedstock/master/recipe/ff_ci_pr_build.py | \ 4 | python - -v --ci "circle" "${CIRCLE_PROJECT_USERNAME}/${CIRCLE_PROJECT_REPONAME}" "${CIRCLE_BUILD_NUM}" "${CIRCLE_PR_NUMBER}" 5 | -------------------------------------------------------------------------------- /recipes/beautifulsoup4-feedstock/.circleci/fast_finish_ci_pr_build.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | curl https://raw.githubusercontent.com/conda-forge/conda-forge-ci-setup-feedstock/master/recipe/ff_ci_pr_build.py | \ 4 | python - -v --ci "circle" "${CIRCLE_PROJECT_USERNAME}/${CIRCLE_PROJECT_REPONAME}" "${CIRCLE_BUILD_NUM}" "${CIRCLE_PR_NUMBER}" 5 | -------------------------------------------------------------------------------- /recipes/chardet-feedstock/ci_support/fast_finish_ci_pr_build.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | curl https://raw.githubusercontent.com/conda-forge/conda-forge-build-setup-feedstock/master/recipe/ff_ci_pr_build.py | \ 4 | python - -v --ci "circle" "${CIRCLE_PROJECT_USERNAME}/${CIRCLE_PROJECT_REPONAME}" "${CIRCLE_BUILD_NUM}" "${CIRCLE_PR_NUMBER}" 5 | -------------------------------------------------------------------------------- /recipes/conda-build-feedstock/.circleci/fast_finish_ci_pr_build.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | curl https://raw.githubusercontent.com/conda-forge/conda-forge-ci-setup-feedstock/master/recipe/ff_ci_pr_build.py | \ 4 | python - -v --ci "circle" "${CIRCLE_PROJECT_USERNAME}/${CIRCLE_PROJECT_REPONAME}" "${CIRCLE_BUILD_NUM}" "${CIRCLE_PR_NUMBER}" 5 | -------------------------------------------------------------------------------- /recipes/coverage-feedstock/ci_support/fast_finish_ci_pr_build.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | curl https://raw.githubusercontent.com/conda-forge/conda-forge-build-setup-feedstock/master/recipe/ff_ci_pr_build.py | \ 4 | python - -v --ci "circle" "${CIRCLE_PROJECT_USERNAME}/${CIRCLE_PROJECT_REPONAME}" "${CIRCLE_BUILD_NUM}" "${CIRCLE_PR_NUMBER}" 5 | -------------------------------------------------------------------------------- /recipes/cryptography-feedstock/.circleci/fast_finish_ci_pr_build.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | curl https://raw.githubusercontent.com/conda-forge/conda-forge-ci-setup-feedstock/master/recipe/ff_ci_pr_build.py | \ 4 | python - -v --ci "circle" "${CIRCLE_PROJECT_USERNAME}/${CIRCLE_PROJECT_REPONAME}" "${CIRCLE_BUILD_NUM}" "${CIRCLE_PR_NUMBER}" 5 | -------------------------------------------------------------------------------- /recipes/decorator-feedstock/ci_support/fast_finish_ci_pr_build.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | curl https://raw.githubusercontent.com/conda-forge/conda-forge-build-setup-feedstock/master/recipe/ff_ci_pr_build.py | \ 4 | python - -v --ci "circle" "${CIRCLE_PROJECT_USERNAME}/${CIRCLE_PROJECT_REPONAME}" "${CIRCLE_BUILD_NUM}" "${CIRCLE_PR_NUMBER}" 5 | -------------------------------------------------------------------------------- /recipes/gettext-feedstock/ci_support/fast_finish_ci_pr_build.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | curl https://raw.githubusercontent.com/conda-forge/conda-forge-build-setup-feedstock/master/recipe/ff_ci_pr_build.py | \ 4 | python - -v --ci "circle" "${CIRCLE_PROJECT_USERNAME}/${CIRCLE_PROJECT_REPONAME}" "${CIRCLE_BUILD_NUM}" "${CIRCLE_PR_NUMBER}" 5 | -------------------------------------------------------------------------------- /recipes/hypothesis-feedstock/ci_support/fast_finish_ci_pr_build.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | curl https://raw.githubusercontent.com/conda-forge/conda-forge-build-setup-feedstock/master/recipe/ff_ci_pr_build.py | \ 4 | python - -v --ci "circle" "${CIRCLE_PROJECT_USERNAME}/${CIRCLE_PROJECT_REPONAME}" "${CIRCLE_BUILD_NUM}" "${CIRCLE_PR_NUMBER}" 5 | -------------------------------------------------------------------------------- /recipes/iso8601-feedstock/ci_support/fast_finish_ci_pr_build.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | curl https://raw.githubusercontent.com/conda-forge/conda-forge-build-setup-feedstock/master/recipe/ff_ci_pr_build.py | \ 4 | python - -v --ci "circle" "${CIRCLE_PROJECT_USERNAME}/${CIRCLE_PROJECT_REPONAME}" "${CIRCLE_BUILD_NUM}" "${CIRCLE_PR_NUMBER}" 5 | -------------------------------------------------------------------------------- /recipes/jsonschema-feedstock/ci_support/fast_finish_ci_pr_build.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | curl https://raw.githubusercontent.com/conda-forge/conda-forge-build-setup-feedstock/master/recipe/ff_ci_pr_build.py | \ 4 | python - -v --ci "circle" "${CIRCLE_PROJECT_USERNAME}/${CIRCLE_PROJECT_REPONAME}" "${CIRCLE_BUILD_NUM}" "${CIRCLE_PR_NUMBER}" 5 | -------------------------------------------------------------------------------- /recipes/libedit-feedstock/ci_support/fast_finish_ci_pr_build.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | curl https://raw.githubusercontent.com/conda-forge/conda-forge-build-setup-feedstock/master/recipe/ff_ci_pr_build.py | \ 4 | python - -v --ci "circle" "${CIRCLE_PROJECT_USERNAME}/${CIRCLE_PROJECT_REPONAME}" "${CIRCLE_BUILD_NUM}" "${CIRCLE_PR_NUMBER}" 5 | -------------------------------------------------------------------------------- /recipes/libtool-feedstock/ci_support/fast_finish_ci_pr_build.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | curl https://raw.githubusercontent.com/conda-forge/conda-forge-build-setup-feedstock/master/recipe/ff_ci_pr_build.py | \ 4 | python - -v --ci "circle" "${CIRCLE_PROJECT_USERNAME}/${CIRCLE_PROJECT_REPONAME}" "${CIRCLE_BUILD_NUM}" "${CIRCLE_PR_NUMBER}" 5 | -------------------------------------------------------------------------------- /recipes/libxml2-feedstock/ci_support/fast_finish_ci_pr_build.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | curl https://raw.githubusercontent.com/conda-forge/conda-forge-build-setup-feedstock/master/recipe/ff_ci_pr_build.py | \ 4 | python - -v --ci "circle" "${CIRCLE_PROJECT_USERNAME}/${CIRCLE_PROJECT_REPONAME}" "${CIRCLE_BUILD_NUM}" "${CIRCLE_PR_NUMBER}" 5 | -------------------------------------------------------------------------------- /recipes/more-itertools-feedstock/.circleci/fast_finish_ci_pr_build.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | curl https://raw.githubusercontent.com/conda-forge/conda-forge-ci-setup-feedstock/master/recipe/ff_ci_pr_build.py | \ 4 | python - -v --ci "circle" "${CIRCLE_PROJECT_USERNAME}/${CIRCLE_PROJECT_REPONAME}" "${CIRCLE_BUILD_NUM}" "${CIRCLE_PR_NUMBER}" 5 | -------------------------------------------------------------------------------- /recipes/nbformat-feedstock/ci_support/fast_finish_ci_pr_build.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | curl https://raw.githubusercontent.com/conda-forge/conda-forge-build-setup-feedstock/master/recipe/ff_ci_pr_build.py | \ 4 | python - -v --ci "circle" "${CIRCLE_PROJECT_USERNAME}/${CIRCLE_PROJECT_REPONAME}" "${CIRCLE_BUILD_NUM}" "${CIRCLE_PR_NUMBER}" 5 | -------------------------------------------------------------------------------- /recipes/ncurses-feedstock/ci_support/fast_finish_ci_pr_build.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | curl https://raw.githubusercontent.com/conda-forge/conda-forge-build-setup-feedstock/master/recipe/ff_ci_pr_build.py | \ 4 | python - -v --ci "circle" "${CIRCLE_PROJECT_USERNAME}/${CIRCLE_PROJECT_REPONAME}" "${CIRCLE_BUILD_NUM}" "${CIRCLE_PR_NUMBER}" 5 | -------------------------------------------------------------------------------- /recipes/openssl-feedstock/ci_support/fast_finish_ci_pr_build.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | curl https://raw.githubusercontent.com/conda-forge/conda-forge-build-setup-feedstock/master/recipe/ff_ci_pr_build.py | \ 4 | python - -v --ci "circle" "${CIRCLE_PROJECT_USERNAME}/${CIRCLE_PROJECT_REPONAME}" "${CIRCLE_BUILD_NUM}" "${CIRCLE_PR_NUMBER}" 5 | -------------------------------------------------------------------------------- /recipes/patchelf-feedstock/ci_support/fast_finish_ci_pr_build.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | curl https://raw.githubusercontent.com/conda-forge/conda-forge-build-setup-feedstock/master/recipe/ff_ci_pr_build.py | \ 4 | python - -v --ci "circle" "${CIRCLE_PROJECT_USERNAME}/${CIRCLE_PROJECT_REPONAME}" "${CIRCLE_BUILD_NUM}" "${CIRCLE_PR_NUMBER}" 5 | -------------------------------------------------------------------------------- /recipes/perl-feedstock/recipe/bld.bat: -------------------------------------------------------------------------------- 1 | robocopy %SRC_DIR%\perl\ %LIBRARY_PREFIX%\ *.* /E 2 | if %ERRORLEVEL% GEQ 8 exit 1 3 | 4 | REM There's a bat file in here that says it is better than exe. 5 | REM Let's trust the strawberry perl folks. 6 | del %LIBRARY_BIN%\perlglob.exe 7 | 8 | copy %SRC_DIR%\licenses\perl %LIBRARY_PREFIX%\perl_licenses 9 | -------------------------------------------------------------------------------- /recipes/pkg-config-feedstock/ci_support/fast_finish_ci_pr_build.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | curl https://raw.githubusercontent.com/conda-forge/conda-forge-build-setup-feedstock/master/recipe/ff_ci_pr_build.py | \ 4 | python - -v --ci "circle" "${CIRCLE_PROJECT_USERNAME}/${CIRCLE_PROJECT_REPONAME}" "${CIRCLE_BUILD_NUM}" "${CIRCLE_PR_NUMBER}" 5 | -------------------------------------------------------------------------------- /recipes/pkgconfig-feedstock/ci_support/fast_finish_ci_pr_build.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | curl https://raw.githubusercontent.com/conda-forge/conda-forge-build-setup-feedstock/master/recipe/ff_ci_pr_build.py | \ 4 | python - -v --ci "circle" "${CIRCLE_PROJECT_USERNAME}/${CIRCLE_PROJECT_REPONAME}" "${CIRCLE_BUILD_NUM}" "${CIRCLE_PR_NUMBER}" 5 | -------------------------------------------------------------------------------- /recipes/pkginfo-feedstock/ci_support/fast_finish_ci_pr_build.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | curl https://raw.githubusercontent.com/conda-forge/conda-forge-build-setup-feedstock/master/recipe/ff_ci_pr_build.py | \ 4 | python - -v --ci "circle" "${CIRCLE_PROJECT_USERNAME}/${CIRCLE_PROJECT_REPONAME}" "${CIRCLE_BUILD_NUM}" "${CIRCLE_PR_NUMBER}" 5 | -------------------------------------------------------------------------------- /recipes/pretend-feedstock/ci_support/fast_finish_ci_pr_build.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | curl https://raw.githubusercontent.com/conda-forge/conda-forge-build-setup-feedstock/master/recipe/ff_ci_pr_build.py | \ 4 | python - -v --ci "circle" "${CIRCLE_PROJECT_USERNAME}/${CIRCLE_PROJECT_REPONAME}" "${CIRCLE_BUILD_NUM}" "${CIRCLE_PR_NUMBER}" 5 | -------------------------------------------------------------------------------- /recipes/pycosat-feedstock/ci_support/fast_finish_ci_pr_build.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | curl https://raw.githubusercontent.com/conda-forge/conda-forge-build-setup-feedstock/master/recipe/ff_ci_pr_build.py | \ 4 | python - -v --ci "circle" "${CIRCLE_PROJECT_USERNAME}/${CIRCLE_PROJECT_REPONAME}" "${CIRCLE_BUILD_NUM}" "${CIRCLE_PR_NUMBER}" 5 | -------------------------------------------------------------------------------- /recipes/pycparser-feedstock/.ci_support/linux_.yaml: -------------------------------------------------------------------------------- 1 | build_number_decrement: 2 | - '0' 3 | channel_sources: 4 | - conda-forge,defaults 5 | channel_targets: 6 | - conda-forge main 7 | docker_image: 8 | - condaforge/linux-anvil 9 | pin_run_as_build: 10 | python: 11 | min_pin: x.x 12 | max_pin: x.x 13 | python: 14 | - '2.7' 15 | -------------------------------------------------------------------------------- /recipes/pysocks-feedstock/ci_support/fast_finish_ci_pr_build.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | curl https://raw.githubusercontent.com/conda-forge/conda-forge-build-setup-feedstock/master/recipe/ff_ci_pr_build.py | \ 4 | python - -v --ci "circle" "${CIRCLE_PROJECT_USERNAME}/${CIRCLE_PROJECT_REPONAME}" "${CIRCLE_BUILD_NUM}" "${CIRCLE_PR_NUMBER}" 5 | -------------------------------------------------------------------------------- /recipes/ruamel_yaml-feedstock/ci_support/fast_finish_ci_pr_build.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | curl https://raw.githubusercontent.com/conda-forge/conda-forge-build-setup-feedstock/master/recipe/ff_ci_pr_build.py | \ 4 | python - -v --ci "circle" "${CIRCLE_PROJECT_USERNAME}/${CIRCLE_PROJECT_REPONAME}" "${CIRCLE_BUILD_NUM}" "${CIRCLE_PR_NUMBER}" 5 | -------------------------------------------------------------------------------- /recipes/setuptools_scm-feedstock/.circleci/fast_finish_ci_pr_build.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | curl https://raw.githubusercontent.com/conda-forge/conda-forge-ci-setup-feedstock/master/recipe/ff_ci_pr_build.py | \ 4 | python - -v --ci "circle" "${CIRCLE_PROJECT_USERNAME}/${CIRCLE_PROJECT_REPONAME}" "${CIRCLE_BUILD_NUM}" "${CIRCLE_PR_NUMBER}" 5 | -------------------------------------------------------------------------------- /recipes/traitlets-feedstock/ci_support/fast_finish_ci_pr_build.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | curl https://raw.githubusercontent.com/conda-forge/conda-forge-build-setup-feedstock/master/recipe/ff_ci_pr_build.py | \ 4 | python - -v --ci "circle" "${CIRCLE_PROJECT_USERNAME}/${CIRCLE_PROJECT_REPONAME}" "${CIRCLE_BUILD_NUM}" "${CIRCLE_PR_NUMBER}" 5 | -------------------------------------------------------------------------------- /recipes/urllib3-feedstock/ci_support/fast_finish_ci_pr_build.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | curl https://raw.githubusercontent.com/conda-forge/conda-forge-build-setup-feedstock/master/recipe/ff_ci_pr_build.py | \ 4 | python - -v --ci "circle" "${CIRCLE_PROJECT_USERNAME}/${CIRCLE_PROJECT_REPONAME}" "${CIRCLE_BUILD_NUM}" "${CIRCLE_PR_NUMBER}" 5 | -------------------------------------------------------------------------------- /recipes/anaconda-client-feedstock/ci_support/fast_finish_ci_pr_build.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | curl https://raw.githubusercontent.com/conda-forge/conda-forge-build-setup-feedstock/master/recipe/ff_ci_pr_build.py | \ 4 | python - -v --ci "circle" "${CIRCLE_PROJECT_USERNAME}/${CIRCLE_PROJECT_REPONAME}" "${CIRCLE_BUILD_NUM}" "${CIRCLE_PR_NUMBER}" 5 | -------------------------------------------------------------------------------- /recipes/ca-certificates-feedstock/ci_support/fast_finish_ci_pr_build.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | curl https://raw.githubusercontent.com/conda-forge/conda-forge-build-setup-feedstock/master/recipe/ff_ci_pr_build.py | \ 4 | python - -v --ci "circle" "${CIRCLE_PROJECT_USERNAME}/${CIRCLE_PROJECT_REPONAME}" "${CIRCLE_BUILD_NUM}" "${CIRCLE_PR_NUMBER}" 5 | -------------------------------------------------------------------------------- /recipes/certifi-feedstock/.ci_support/linux_python2.7.yaml: -------------------------------------------------------------------------------- 1 | build_number_decrement: 2 | - '0' 3 | channel_sources: 4 | - conda-forge,defaults 5 | channel_targets: 6 | - conda-forge main 7 | docker_image: 8 | - condaforge/linux-anvil 9 | pin_run_as_build: 10 | python: 11 | min_pin: x.x 12 | max_pin: x.x 13 | python: 14 | - '2.7' 15 | -------------------------------------------------------------------------------- /recipes/certifi-feedstock/.ci_support/linux_python3.5.yaml: -------------------------------------------------------------------------------- 1 | build_number_decrement: 2 | - '0' 3 | channel_sources: 4 | - conda-forge,defaults 5 | channel_targets: 6 | - conda-forge main 7 | docker_image: 8 | - condaforge/linux-anvil 9 | pin_run_as_build: 10 | python: 11 | min_pin: x.x 12 | max_pin: x.x 13 | python: 14 | - '3.5' 15 | -------------------------------------------------------------------------------- /recipes/certifi-feedstock/.ci_support/linux_python3.6.yaml: -------------------------------------------------------------------------------- 1 | build_number_decrement: 2 | - '0' 3 | channel_sources: 4 | - conda-forge,defaults 5 | channel_targets: 6 | - conda-forge main 7 | docker_image: 8 | - condaforge/linux-anvil 9 | pin_run_as_build: 10 | python: 11 | min_pin: x.x 12 | max_pin: x.x 13 | python: 14 | - '3.6' 15 | -------------------------------------------------------------------------------- /recipes/cryptography-vectors-feedstock/.circleci/fast_finish_ci_pr_build.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | curl https://raw.githubusercontent.com/conda-forge/conda-forge-ci-setup-feedstock/master/recipe/ff_ci_pr_build.py | \ 4 | python - -v --ci "circle" "${CIRCLE_PROJECT_USERNAME}/${CIRCLE_PROJECT_REPONAME}" "${CIRCLE_BUILD_NUM}" "${CIRCLE_PR_NUMBER}" 5 | -------------------------------------------------------------------------------- /recipes/pytest-runner-feedstock/ci_support/fast_finish_ci_pr_build.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | curl https://raw.githubusercontent.com/conda-forge/conda-forge-build-setup-feedstock/master/recipe/ff_ci_pr_build.py | \ 4 | python - -v --ci "circle" "${CIRCLE_PROJECT_USERNAME}/${CIRCLE_PROJECT_REPONAME}" "${CIRCLE_BUILD_NUM}" "${CIRCLE_PR_NUMBER}" 5 | -------------------------------------------------------------------------------- /recipes/python-dateutil-feedstock/ci_support/fast_finish_ci_pr_build.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | curl https://raw.githubusercontent.com/conda-forge/conda-forge-build-setup-feedstock/master/recipe/ff_ci_pr_build.py | \ 4 | python - -v --ci "circle" "${CIRCLE_PROJECT_USERNAME}/${CIRCLE_PROJECT_REPONAME}" "${CIRCLE_BUILD_NUM}" "${CIRCLE_PR_NUMBER}" 5 | -------------------------------------------------------------------------------- /recipes/atomicwrites-feedstock/.ci_support/linux_python2.7.yaml: -------------------------------------------------------------------------------- 1 | build_number_decrement: 2 | - '0' 3 | channel_sources: 4 | - conda-forge,defaults 5 | channel_targets: 6 | - conda-forge main 7 | docker_image: 8 | - condaforge/linux-anvil 9 | pin_run_as_build: 10 | python: 11 | min_pin: x.x 12 | max_pin: x.x 13 | python: 14 | - '2.7' 15 | -------------------------------------------------------------------------------- /recipes/atomicwrites-feedstock/.ci_support/linux_python3.5.yaml: -------------------------------------------------------------------------------- 1 | build_number_decrement: 2 | - '0' 3 | channel_sources: 4 | - conda-forge,defaults 5 | channel_targets: 6 | - conda-forge main 7 | docker_image: 8 | - condaforge/linux-anvil 9 | pin_run_as_build: 10 | python: 11 | min_pin: x.x 12 | max_pin: x.x 13 | python: 14 | - '3.5' 15 | -------------------------------------------------------------------------------- /recipes/atomicwrites-feedstock/.ci_support/linux_python3.6.yaml: -------------------------------------------------------------------------------- 1 | build_number_decrement: 2 | - '0' 3 | channel_sources: 4 | - conda-forge,defaults 5 | channel_targets: 6 | - conda-forge main 7 | docker_image: 8 | - condaforge/linux-anvil 9 | pin_run_as_build: 10 | python: 11 | min_pin: x.x 12 | max_pin: x.x 13 | python: 14 | - '3.6' 15 | -------------------------------------------------------------------------------- /recipes/cmake_nosystemcurl-feedstock/ci_support/fast_finish_ci_pr_build.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | curl https://raw.githubusercontent.com/conda-forge/conda-forge-build-setup-feedstock/master/recipe/ff_ci_pr_build.py | \ 4 | python - -v --ci "circle" "${CIRCLE_PROJECT_USERNAME}/${CIRCLE_PROJECT_REPONAME}" "${CIRCLE_BUILD_NUM}" "${CIRCLE_PR_NUMBER}" 5 | -------------------------------------------------------------------------------- /recipes/constructor-feedstock/.ci_support/linux_python2.7.yaml: -------------------------------------------------------------------------------- 1 | build_number_decrement: 2 | - '0' 3 | channel_sources: 4 | - conda-forge,defaults 5 | channel_targets: 6 | - conda-forge main 7 | docker_image: 8 | - condaforge/linux-anvil 9 | pin_run_as_build: 10 | python: 11 | min_pin: x.x 12 | max_pin: x.x 13 | python: 14 | - '2.7' 15 | -------------------------------------------------------------------------------- /recipes/constructor-feedstock/.ci_support/linux_python3.5.yaml: -------------------------------------------------------------------------------- 1 | build_number_decrement: 2 | - '0' 3 | channel_sources: 4 | - conda-forge,defaults 5 | channel_targets: 6 | - conda-forge main 7 | docker_image: 8 | - condaforge/linux-anvil 9 | pin_run_as_build: 10 | python: 11 | min_pin: x.x 12 | max_pin: x.x 13 | python: 14 | - '3.5' 15 | -------------------------------------------------------------------------------- /recipes/constructor-feedstock/.ci_support/linux_python3.6.yaml: -------------------------------------------------------------------------------- 1 | build_number_decrement: 2 | - '0' 3 | channel_sources: 4 | - conda-forge,defaults 5 | channel_targets: 6 | - conda-forge main 7 | docker_image: 8 | - condaforge/linux-anvil 9 | pin_run_as_build: 10 | python: 11 | min_pin: x.x 12 | max_pin: x.x 13 | python: 14 | - '3.6' 15 | -------------------------------------------------------------------------------- /recipes/patch-feedstock/recipe/run_test.py: -------------------------------------------------------------------------------- 1 | import subprocess 2 | 3 | import sys 4 | 5 | command = 'patch' 6 | 7 | subprocess.check_call([command, '-i', "testfile.patch"]) 8 | with open("testfile") as f1: 9 | testfile1 = f1.read() 10 | with open("testfile2") as f2: 11 | testfile2 = f2.read() 12 | 13 | assert testfile1 == testfile2 14 | -------------------------------------------------------------------------------- /recipes/python-libarchive-c-feedstock/ci_support/fast_finish_ci_pr_build.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | curl https://raw.githubusercontent.com/conda-forge/conda-forge-build-setup-feedstock/master/recipe/ff_ci_pr_build.py | \ 4 | python - -v --ci "circle" "${CIRCLE_PROJECT_USERNAME}/${CIRCLE_PROJECT_REPONAME}" "${CIRCLE_BUILD_NUM}" "${CIRCLE_PR_NUMBER}" 5 | -------------------------------------------------------------------------------- /recipes/attrs-feedstock/.circleci/fast_finish_ci_pr_build.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | curl https://raw.githubusercontent.com/conda-forge/conda-forge-ci-setup-feedstock/branch2.0/recipe/conda_forge_ci_setup/ff_ci_pr_build.py | \ 4 | python - -v --ci "circle" "${CIRCLE_PROJECT_USERNAME}/${CIRCLE_PROJECT_REPONAME}" "${CIRCLE_BUILD_NUM}" "${CIRCLE_PR_NUMBER}" 5 | -------------------------------------------------------------------------------- /recipes/cython-feedstock/.circleci/fast_finish_ci_pr_build.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | curl https://raw.githubusercontent.com/conda-forge/conda-forge-ci-setup-feedstock/branch2.0/recipe/conda_forge_ci_setup/ff_ci_pr_build.py | \ 4 | python - -v --ci "circle" "${CIRCLE_PROJECT_USERNAME}/${CIRCLE_PROJECT_REPONAME}" "${CIRCLE_BUILD_NUM}" "${CIRCLE_PR_NUMBER}" 5 | -------------------------------------------------------------------------------- /recipes/py-feedstock/.circleci/fast_finish_ci_pr_build.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | curl https://raw.githubusercontent.com/conda-forge/conda-forge-ci-setup-feedstock/branch2.0/recipe/conda_forge_ci_setup/ff_ci_pr_build.py | \ 4 | python - -v --ci "circle" "${CIRCLE_PROJECT_USERNAME}/${CIRCLE_PROJECT_REPONAME}" "${CIRCLE_BUILD_NUM}" "${CIRCLE_PR_NUMBER}" 5 | -------------------------------------------------------------------------------- /recipes/pytest-feedstock/.circleci/fast_finish_ci_pr_build.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | curl https://raw.githubusercontent.com/conda-forge/conda-forge-ci-setup-feedstock/branch2.0/recipe/conda_forge_ci_setup/ff_ci_pr_build.py | \ 4 | python - -v --ci "circle" "${CIRCLE_PROJECT_USERNAME}/${CIRCLE_PROJECT_REPONAME}" "${CIRCLE_BUILD_NUM}" "${CIRCLE_PR_NUMBER}" 5 | -------------------------------------------------------------------------------- /recipes/tini-feedstock/.circleci/fast_finish_ci_pr_build.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | curl https://raw.githubusercontent.com/conda-forge/conda-forge-ci-setup-feedstock/branch2.0/recipe/conda_forge_ci_setup/ff_ci_pr_build.py | \ 4 | python - -v --ci "circle" "${CIRCLE_PROJECT_USERNAME}/${CIRCLE_PROJECT_REPONAME}" "${CIRCLE_BUILD_NUM}" "${CIRCLE_PR_NUMBER}" 5 | -------------------------------------------------------------------------------- /recipes/tqdm-feedstock/.circleci/fast_finish_ci_pr_build.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | curl https://raw.githubusercontent.com/conda-forge/conda-forge-ci-setup-feedstock/branch2.0/recipe/conda_forge_ci_setup/ff_ci_pr_build.py | \ 4 | python - -v --ci "circle" "${CIRCLE_PROJECT_USERNAME}/${CIRCLE_PROJECT_REPONAME}" "${CIRCLE_BUILD_NUM}" "${CIRCLE_PR_NUMBER}" 5 | -------------------------------------------------------------------------------- /recipes/certifi-feedstock/.circleci/fast_finish_ci_pr_build.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | curl https://raw.githubusercontent.com/conda-forge/conda-forge-ci-setup-feedstock/branch2.0/recipe/conda_forge_ci_setup/ff_ci_pr_build.py | \ 4 | python - -v --ci "circle" "${CIRCLE_PROJECT_USERNAME}/${CIRCLE_PROJECT_REPONAME}" "${CIRCLE_BUILD_NUM}" "${CIRCLE_PR_NUMBER}" 5 | -------------------------------------------------------------------------------- /recipes/constructor-feedstock/.circleci/fast_finish_ci_pr_build.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | curl https://raw.githubusercontent.com/conda-forge/conda-forge-ci-setup-feedstock/branch2.0/recipe/conda_forge_ci_setup/ff_ci_pr_build.py | \ 4 | python - -v --ci "circle" "${CIRCLE_PROJECT_USERNAME}/${CIRCLE_PROJECT_REPONAME}" "${CIRCLE_BUILD_NUM}" "${CIRCLE_PR_NUMBER}" 5 | -------------------------------------------------------------------------------- /recipes/lief-feedstock/recipe/install-liblief.bat: -------------------------------------------------------------------------------- 1 | pushd build 2 | cmake --build . -j %CPU_COUNT% --config Release --target install -- -verbosity:normal 3 | 4 | :: cmake --build . --target INSTALL --config Release -- -j%CPU_COUNT% 5 | :: Racey: 6 | :: cmake --build . --target INSTALL --config Release -- -j%CPU_COUNT% 7 | if errorlevel 1 exit /b 1 8 | popd 9 | -------------------------------------------------------------------------------- /recipes/pycparser-feedstock/.circleci/fast_finish_ci_pr_build.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | curl https://raw.githubusercontent.com/conda-forge/conda-forge-ci-setup-feedstock/branch2.0/recipe/conda_forge_ci_setup/ff_ci_pr_build.py | \ 4 | python - -v --ci "circle" "${CIRCLE_PROJECT_USERNAME}/${CIRCLE_PROJECT_REPONAME}" "${CIRCLE_BUILD_NUM}" "${CIRCLE_PR_NUMBER}" 5 | -------------------------------------------------------------------------------- /recipes/setuptools-feedstock/.circleci/fast_finish_ci_pr_build.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | curl https://raw.githubusercontent.com/conda-forge/conda-forge-ci-setup-feedstock/branch2.0/recipe/conda_forge_ci_setup/ff_ci_pr_build.py | \ 4 | python - -v --ci "circle" "${CIRCLE_PROJECT_USERNAME}/${CIRCLE_PROJECT_REPONAME}" "${CIRCLE_BUILD_NUM}" "${CIRCLE_PR_NUMBER}" 5 | -------------------------------------------------------------------------------- /recipes/su-exec-feedstock/.circleci/fast_finish_ci_pr_build.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | curl https://raw.githubusercontent.com/conda-forge/conda-forge-ci-setup-feedstock/branch2.0/recipe/conda_forge_ci_setup/ff_ci_pr_build.py | \ 4 | python - -v --ci "circle" "${CIRCLE_PROJECT_USERNAME}/${CIRCLE_PROJECT_REPONAME}" "${CIRCLE_BUILD_NUM}" "${CIRCLE_PR_NUMBER}" 5 | -------------------------------------------------------------------------------- /recipes/atomicwrites-feedstock/.circleci/fast_finish_ci_pr_build.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | curl https://raw.githubusercontent.com/conda-forge/conda-forge-ci-setup-feedstock/branch2.0/recipe/conda_forge_ci_setup/ff_ci_pr_build.py | \ 4 | python - -v --ci "circle" "${CIRCLE_PROJECT_USERNAME}/${CIRCLE_PROJECT_REPONAME}" "${CIRCLE_BUILD_NUM}" "${CIRCLE_PR_NUMBER}" 5 | -------------------------------------------------------------------------------- /recipes/ctng-compilers-feedstock/recipe/install-duma.sh: -------------------------------------------------------------------------------- 1 | set -e -x 2 | 3 | CHOST=$(${SRC_DIR}/.build/*-*-*-*/build/build-cc-gcc-final/gcc/xgcc -dumpmachine) 4 | 5 | pushd ${SRC_DIR}/.build/${CHOST}/build/build-duma 6 | make prefix=${PREFIX} HOSTCC=$(uname -m)-build_pc-linux-gnu-gcc CC=${CHOST}-gcc CXX=${CHOST}-g++ RANLIB=${CHOST}-ranlib OS=linux DUMA_CPP=1 install 7 | popd 8 | -------------------------------------------------------------------------------- /recipes/ctng-compilers-feedstock/recipe/conda_build_config.cos6.i686.yaml: -------------------------------------------------------------------------------- 1 | ctng_sample: 2 | - i686-centos6-linux-gnu 3 | ctng_cpu_arch: 4 | - i686 5 | # gdb is optional - commenting this will disable gdb from being built. For gcc 8.2, that's what we need to do. 6 | # ctng_gdb: 7 | # - 7.12.1 8 | ctng_target_platform: 9 | - linux-32 10 | ctng_vendor: 11 | - conda_cos6 12 | -------------------------------------------------------------------------------- /recipes/pycosat-feedstock/recipe/run_test.py: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env python 2 | import pycosat 3 | import test_pycosat 4 | 5 | assert test_pycosat.run().wasSuccessful() 6 | 7 | assert pycosat.__version__ == '0.6.3' 8 | 9 | assert test_pycosat.process_cnf_file('qg3-08.cnf') == 18 10 | assert test_pycosat.process_cnf_file('uf20-098.cnf') == 5 11 | 12 | import sudoku 13 | sudoku.test() 14 | -------------------------------------------------------------------------------- /recipes/ctng-compilers-feedstock/recipe/conda_build_config.cos6.x86_64.yaml: -------------------------------------------------------------------------------- 1 | ctng_sample: 2 | - x86_64-centos6-linux-gnu 3 | ctng_cpu_arch: 4 | - x86_64 5 | # gdb is optional - commenting this will disable gdb from being built. For gcc 8.2, that's what we need to do. 6 | # ctng_gdb: 7 | # - 7.12.1 8 | ctng_target_platform: 9 | - linux-64 10 | ctng_vendor: 11 | - conda_cos6 12 | -------------------------------------------------------------------------------- /recipes/zlib-feedstock/recipe/build.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | ./configure --prefix=${PREFIX} \ 4 | --shared 5 | 6 | make -j${CPU_COUNT} ${VERBOSE_AT} 7 | make check 8 | make install 9 | 10 | # Remove man files. 11 | rm -rf $PREFIX/share 12 | 13 | # Copy license file to the source directory so conda-build can find it. 14 | cp $RECIPE_DIR/license.txt $SRC_DIR/license.txt 15 | -------------------------------------------------------------------------------- /recipes/setuptools-feedstock/recipe/bld.bat: -------------------------------------------------------------------------------- 1 | set SETUPTOOLS_INSTALL_WINDOWS_SPECIFIC_FILES=0 2 | set SETUPTOOLS_DISABLE_VERSIONED_EASY_INSTALL_SCRIPT=1 3 | set DISTRIBUTE_DISABLE_VERSIONED_EASY_INSTALL_SCRIPT=1 4 | 5 | %PYTHON% bootstrap.py 6 | if errorlevel 1 exit 1 7 | 8 | %PYTHON% setup.py install --single-version-externally-managed --record=record.txt 9 | if errorlevel 1 exit 1 10 | -------------------------------------------------------------------------------- /recipes/cryptography-feedstock/.ci_support/osx_python2.7.yaml: -------------------------------------------------------------------------------- 1 | MACOSX_DEPLOYMENT_TARGET: 2 | - '10.9' 3 | c_compiler: 4 | - toolchain_c 5 | macos_machine: 6 | - x86_64-apple-darwin13.4.0 7 | macos_min_version: 8 | - '10.9' 9 | openssl: 10 | - 1.0.2 11 | pin_run_as_build: 12 | openssl: 13 | max_pin: x.x.x 14 | python: 15 | min_pin: x.x 16 | max_pin: x.x 17 | python: 18 | - '2.7' 19 | -------------------------------------------------------------------------------- /recipes/cryptography-feedstock/.ci_support/osx_python3.5.yaml: -------------------------------------------------------------------------------- 1 | MACOSX_DEPLOYMENT_TARGET: 2 | - '10.9' 3 | c_compiler: 4 | - toolchain_c 5 | macos_machine: 6 | - x86_64-apple-darwin13.4.0 7 | macos_min_version: 8 | - '10.9' 9 | openssl: 10 | - 1.0.2 11 | pin_run_as_build: 12 | openssl: 13 | max_pin: x.x.x 14 | python: 15 | min_pin: x.x 16 | max_pin: x.x 17 | python: 18 | - '3.5' 19 | -------------------------------------------------------------------------------- /recipes/cryptography-feedstock/.ci_support/osx_python3.6.yaml: -------------------------------------------------------------------------------- 1 | MACOSX_DEPLOYMENT_TARGET: 2 | - '10.9' 3 | c_compiler: 4 | - toolchain_c 5 | macos_machine: 6 | - x86_64-apple-darwin13.4.0 7 | macos_min_version: 8 | - '10.9' 9 | openssl: 10 | - 1.0.2 11 | pin_run_as_build: 12 | openssl: 13 | max_pin: x.x.x 14 | python: 15 | min_pin: x.x 16 | max_pin: x.x 17 | python: 18 | - '3.6' 19 | -------------------------------------------------------------------------------- /recipes/su-exec-feedstock/.ci_support/linux_c_compilergcc.yaml: -------------------------------------------------------------------------------- 1 | build_number_decrement: 2 | - '0' 3 | c_compiler: 4 | - gcc 5 | channel_sources: 6 | - conda-forge/label/gcc7,defaults 7 | channel_targets: 8 | - conda-forge gcc7 9 | docker_image: 10 | - conda/c3i-linux-64 11 | zip_keys: 12 | - - c_compiler 13 | - channel_sources 14 | - channel_targets 15 | - docker_image 16 | - build_number_decrement 17 | -------------------------------------------------------------------------------- /cdt_recipes/libx11-cos7-aarch64/build.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | RPM=$(find ${PWD}/binary -name "*.rpm") 4 | mkdir -p ${PREFIX}/aarch64-conda_cos7-linux-gnu/sysroot/usr 5 | pushd ${PREFIX}/aarch64-conda_cos7-linux-gnu/sysroot/usr > /dev/null 2>&1 6 | if [[ -n "${RPM}" ]]; then 7 | "${RECIPE_DIR}"/rpm2cpio "${RPM}" | cpio -idmv 8 | popd > /dev/null 2>&1 9 | else 10 | cp -Rf "${SRC_DIR}"/binary/* . 11 | fi 12 | -------------------------------------------------------------------------------- /cdt_recipes/libxau-cos7-aarch64/build.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | RPM=$(find ${PWD}/binary -name "*.rpm") 4 | mkdir -p ${PREFIX}/aarch64-conda_cos7-linux-gnu/sysroot/usr 5 | pushd ${PREFIX}/aarch64-conda_cos7-linux-gnu/sysroot/usr > /dev/null 2>&1 6 | if [[ -n "${RPM}" ]]; then 7 | "${RECIPE_DIR}"/rpm2cpio "${RPM}" | cpio -idmv 8 | popd > /dev/null 2>&1 9 | else 10 | cp -Rf "${SRC_DIR}"/binary/* . 11 | fi 12 | -------------------------------------------------------------------------------- /cdt_recipes/libxcb-cos7-aarch64/build.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | RPM=$(find ${PWD}/binary -name "*.rpm") 4 | mkdir -p ${PREFIX}/aarch64-conda_cos7-linux-gnu/sysroot/usr 5 | pushd ${PREFIX}/aarch64-conda_cos7-linux-gnu/sysroot/usr > /dev/null 2>&1 6 | if [[ -n "${RPM}" ]]; then 7 | "${RECIPE_DIR}"/rpm2cpio "${RPM}" | cpio -idmv 8 | popd > /dev/null 2>&1 9 | else 10 | cp -Rf "${SRC_DIR}"/binary/* . 11 | fi 12 | -------------------------------------------------------------------------------- /recipes/git-feedstock/recipe/menu-windows.json: -------------------------------------------------------------------------------- 1 | { 2 | "menu_name": "Anaconda${PY_VER} ${PLATFORM}", 3 | "menu_items": 4 | [ 5 | { 6 | "name": "Git Bash", 7 | "script": "${PREFIX}/Library/bin/bash.exe", 8 | "scriptarguments": ["--login", "-i", "--"], 9 | "workdir": "${PERSONALDIR}", 10 | "icon": "${MENU_DIR}/git-for-windows.ico" 11 | } 12 | ] 13 | } 14 | -------------------------------------------------------------------------------- /cdt_recipes/libx11-common-cos7-aarch64/build.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | RPM=$(find ${PWD}/binary -name "*.rpm") 4 | mkdir -p ${PREFIX}/aarch64-conda_cos7-linux-gnu/sysroot/usr 5 | pushd ${PREFIX}/aarch64-conda_cos7-linux-gnu/sysroot/usr > /dev/null 2>&1 6 | if [[ -n "${RPM}" ]]; then 7 | "${RECIPE_DIR}"/rpm2cpio "${RPM}" | cpio -idmv 8 | popd > /dev/null 2>&1 9 | else 10 | cp -Rf "${SRC_DIR}"/binary/* . 11 | fi 12 | -------------------------------------------------------------------------------- /cdt_recipes/libx11-devel-cos7-aarch64/build.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | RPM=$(find ${PWD}/binary -name "*.rpm") 4 | mkdir -p ${PREFIX}/aarch64-conda_cos7-linux-gnu/sysroot/usr 5 | pushd ${PREFIX}/aarch64-conda_cos7-linux-gnu/sysroot/usr > /dev/null 2>&1 6 | if [[ -n "${RPM}" ]]; then 7 | "${RECIPE_DIR}"/rpm2cpio "${RPM}" | cpio -idmv 8 | popd > /dev/null 2>&1 9 | else 10 | cp -Rf "${SRC_DIR}"/binary/* . 11 | fi 12 | -------------------------------------------------------------------------------- /recipes/automake-feedstock/recipe/build.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | # Fix shebangs 4 | for f in bin/aclocal.in bin/automake.in t/wrap/aclocal.in t/wrap/automake.in; do 5 | sed -i.bak -e 's|^#!@PERL@ -w|#!/usr/bin/env perl|' "$f" 6 | rm -f "$f.bak" 7 | done 8 | 9 | ./configure --prefix=$PREFIX 10 | make -j${CPU_COUNT} ${VERBOSE_AT} 11 | # make check TODO: There is one failure I need to check. 12 | make install 13 | -------------------------------------------------------------------------------- /recipes/bison-feedstock/recipe/build.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | export PERL=${BUILD_PREFIX}/bin/perl 4 | 5 | M4=m4 \ 6 | ./configure --prefix="$PREFIX" --host=${HOST} 7 | make -j${CPU_COUNT} ${VERBOSE_AT} 8 | 9 | make check 10 | make install 11 | 12 | strings $PREFIX/bin/bison | grep ${BUILD_PREFIX}/bin/m4 || exit 0 13 | echo "ERROR :: BUILD_PREFIX of ${BUILD_PREFIX}/bin/m4 found in $PREFIX/bin/bison" 14 | exit 1 15 | -------------------------------------------------------------------------------- /recipes/cython-feedstock/.ci_support/win_c_compilervs2008cxx_compilervs2008python2.7.yaml: -------------------------------------------------------------------------------- 1 | c_compiler: 2 | - vs2008 3 | channel_sources: 4 | - conda-forge,defaults 5 | channel_targets: 6 | - conda-forge main 7 | cxx_compiler: 8 | - vs2008 9 | pin_run_as_build: 10 | python: 11 | min_pin: x.x 12 | max_pin: x.x 13 | python: 14 | - '2.7' 15 | zip_keys: 16 | - - python 17 | - c_compiler 18 | - cxx_compiler 19 | -------------------------------------------------------------------------------- /recipes/cython-feedstock/.ci_support/win_c_compilervs2015cxx_compilervs2015python3.6.yaml: -------------------------------------------------------------------------------- 1 | c_compiler: 2 | - vs2015 3 | channel_sources: 4 | - conda-forge,defaults 5 | channel_targets: 6 | - conda-forge main 7 | cxx_compiler: 8 | - vs2015 9 | pin_run_as_build: 10 | python: 11 | min_pin: x.x 12 | max_pin: x.x 13 | python: 14 | - '3.6' 15 | zip_keys: 16 | - - python 17 | - c_compiler 18 | - cxx_compiler 19 | -------------------------------------------------------------------------------- /recipes/cython-feedstock/.ci_support/win_c_compilervs2015cxx_compilervs2015python3.7.yaml: -------------------------------------------------------------------------------- 1 | c_compiler: 2 | - vs2015 3 | channel_sources: 4 | - conda-forge,defaults 5 | channel_targets: 6 | - conda-forge main 7 | cxx_compiler: 8 | - vs2015 9 | pin_run_as_build: 10 | python: 11 | min_pin: x.x 12 | max_pin: x.x 13 | python: 14 | - '3.7' 15 | zip_keys: 16 | - - python 17 | - c_compiler 18 | - cxx_compiler 19 | -------------------------------------------------------------------------------- /recipes/ptyprocess-feedstock/recipe/setup.py: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env python 2 | 3 | from distutils.core import setup 4 | 5 | setup(name='ptyprocess', 6 | version='0.5.1', 7 | description='Run a subprocess in a pseudo terminal', 8 | author='Thomas Kluyver', 9 | author_email='thomas@kluyver.me.uk', 10 | url='https://github.com/pexpect/ptyprocess', 11 | packages=['ptyprocess'] 12 | ) 13 | -------------------------------------------------------------------------------- /recipes/tini-feedstock/.ci_support/linux_c_compilergcc.yaml: -------------------------------------------------------------------------------- 1 | build_number_decrement: 2 | - '0' 3 | c_compiler: 4 | - gcc 5 | channel_sources: 6 | - conda-forge/label/gcc7,defaults 7 | channel_targets: 8 | - conda-forge gcc7 9 | docker_image: 10 | - condaforge/linux-anvil-comp7 11 | zip_keys: 12 | - - c_compiler 13 | - channel_sources 14 | - channel_targets 15 | - docker_image 16 | - build_number_decrement 17 | -------------------------------------------------------------------------------- /recipes/tini-feedstock/.ci_support/linux_c_compilertoolchain_c.yaml: -------------------------------------------------------------------------------- 1 | build_number_decrement: 2 | - '1000' 3 | c_compiler: 4 | - toolchain_c 5 | channel_sources: 6 | - conda-forge,defaults 7 | channel_targets: 8 | - conda-forge main 9 | docker_image: 10 | - condaforge/linux-anvil 11 | zip_keys: 12 | - - c_compiler 13 | - channel_sources 14 | - channel_targets 15 | - docker_image 16 | - build_number_decrement 17 | -------------------------------------------------------------------------------- /cdt_recipes/xorg-x11-proto-devel-cos7-aarch64/build.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | RPM=$(find ${PWD}/binary -name "*.rpm") 4 | mkdir -p ${PREFIX}/aarch64-conda_cos7-linux-gnu/sysroot/usr 5 | pushd ${PREFIX}/aarch64-conda_cos7-linux-gnu/sysroot/usr > /dev/null 2>&1 6 | if [[ -n "${RPM}" ]]; then 7 | "${RECIPE_DIR}"/rpm2cpio "${RPM}" | cpio -idmv 8 | popd > /dev/null 2>&1 9 | else 10 | cp -Rf "${SRC_DIR}"/binary/* . 11 | fi 12 | -------------------------------------------------------------------------------- /recipes/su-exec-feedstock/.ci_support/linux_c_compilertoolchain_c.yaml: -------------------------------------------------------------------------------- 1 | build_number_decrement: 2 | - '1000' 3 | c_compiler: 4 | - toolchain_c 5 | channel_sources: 6 | - conda-forge,defaults 7 | channel_targets: 8 | - conda-forge main 9 | docker_image: 10 | - condaforge/linux-anvil 11 | zip_keys: 12 | - - c_compiler 13 | - channel_sources 14 | - channel_targets 15 | - docker_image 16 | - build_number_decrement 17 | -------------------------------------------------------------------------------- /recipes/icu-feedstock/recipe/icu-config.patch: -------------------------------------------------------------------------------- 1 | --- source/config/Makefile.inc.in.orig 2012-11-26 11:59:38 +0400 2 | +++ source/config/Makefile.inc.in 2012-11-26 12:08:56 +0400 3 | @@ -41,7 +41,7 @@ 4 | # The prefix for ICU libraries, normally 'icu' 5 | ICUPREFIX = icu 6 | PACKAGE = @PACKAGE@ 7 | -LIBICU = lib$(ICUPREFIX) 8 | +LIBICU = $(ICUPREFIX) 9 | 10 | # Static library prefix and file extension 11 | STATIC_PREFIX = s 12 | -------------------------------------------------------------------------------- /recipes/libedit-feedstock/recipe/build.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | set -ex 3 | autoreconf -f 4 | ./configure --prefix=${PREFIX} \ 5 | --host=${HOST} \ 6 | CFLAGS="${CFLAGS} -I${PREFIX}/include" \ 7 | LDFLAGS="${LDFLAGS} -L${PREFIX}/lib" 8 | make -j ${CPU_COUNT} ${VERBOSE_AT} 9 | make install 10 | make check 11 | # This conflicts with a file in readline 12 | rm -f ${PREFIX}/share/man/man3/history.3 13 | 14 | -------------------------------------------------------------------------------- /recipes/sqlite-feedstock/recipe/bld.bat: -------------------------------------------------------------------------------- 1 | if "%ARCH%"=="32" ( 2 | set PLATFORM=x86 3 | ) else ( 4 | set PLATFORM=x64 5 | ) 6 | 7 | :: build the shell 8 | cl shell.c sqlite3.c -Fesqlite3.exe /DSQLITE_EXPORTS 9 | 10 | :: build the dll 11 | cl sqlite3.c -link -dll -out:sqlite3.dll 12 | 13 | COPY sqlite3.exe %LIBRARY_BIN%\ 14 | COPY sqlite3.dll %LIBRARY_BIN%\ 15 | COPY sqlite3.lib %LIBRARY_LIB%\ 16 | COPY sqlite3.h %LIBRARY_INC%\ 17 | -------------------------------------------------------------------------------- /recipes/ctng-compilers-feedstock/recipe/conda_build_config.cos7.ppc64le.yaml: -------------------------------------------------------------------------------- 1 | ctng_sample: 2 | - powerpc64le-unknown-linux-gnu 3 | ctng_cpu_arch: 4 | - powerpc 5 | gnu: 6 | - 2.17 7 | ctng_kernel: 8 | - 3.10 9 | # gdb is optional - commenting this will disable gdb from being built. For gcc 8.2, that's what we need to do. 10 | # ctng_gdb: 11 | # - 7.12.1 12 | ctng_target_platform: 13 | - linux-ppc64le 14 | ctng_vendor: 15 | - conda_cos7 16 | -------------------------------------------------------------------------------- /recipes/ctng-compilers-feedstock/recipe/tests/fortomp/test_fort.sh: -------------------------------------------------------------------------------- 1 | GFORTRAN=$(${PREFIX}/bin/*-gcc -dumpmachine)-gfortran 2 | FFLAGS="-fopenmp -ftree-vectorize -fPIC -fstack-protector-strong -fno-plt -O2 -pipe" 3 | 4 | cmake \ 5 | -H${SRC_DIR} \ 6 | -Bbuild \ 7 | -DCMAKE_INSTALL_PREFIX=${PREFIX} \ 8 | -DCMAKE_BUILD_TYPE=Release \ 9 | -DCMAKE_Fortran_COMPILER=${GFORTRAN} \ 10 | -DCMAKE_Fortran_FLAGS="${FFLAGS}" \ 11 | . 12 | -------------------------------------------------------------------------------- /recipes/libssh2-feedstock/recipe/bld.bat: -------------------------------------------------------------------------------- 1 | set PATH=%PREFIX%\cmake-bin\bin;%PATH% 2 | 3 | set CFLAGS= 4 | set CXXFLAGS= 5 | 6 | mkdir build 7 | pushd build 8 | cmake .. -G "%CMAKE_GENERATOR%" ^ 9 | -DCMAKE_INSTALL_PREFIX=%LIBRARY_PREFIX% ^ 10 | -DCMAKE_BUILD_TYPE=Release ^ 11 | -DBUILD_SHARED_LIBS=ON 12 | cmake --build . --config Release --target INSTALL 13 | popd 14 | -------------------------------------------------------------------------------- /recipes/pytest-feedstock/.ci_support/linux_python2.7.yaml: -------------------------------------------------------------------------------- 1 | build_number_decrement: 2 | - '0' 3 | channel_sources: 4 | - conda-forge,defaults 5 | channel_targets: 6 | - conda-forge main 7 | docker_image: 8 | - conda/c3i-linux-64 9 | pin_run_as_build: 10 | python: 11 | min_pin: x.x 12 | max_pin: x.x 13 | python: 14 | - '2.7' 15 | zip_keys: 16 | - - channel_sources 17 | - channel_targets 18 | - docker_image 19 | - build_number_decrement 20 | -------------------------------------------------------------------------------- /recipes/pytest-feedstock/.ci_support/linux_python3.6.yaml: -------------------------------------------------------------------------------- 1 | build_number_decrement: 2 | - '0' 3 | channel_sources: 4 | - conda-forge,defaults 5 | channel_targets: 6 | - conda-forge main 7 | docker_image: 8 | - conda/c3i-linux-64 9 | pin_run_as_build: 10 | python: 11 | min_pin: x.x 12 | max_pin: x.x 13 | python: 14 | - '3.6' 15 | zip_keys: 16 | - - channel_sources 17 | - channel_targets 18 | - docker_image 19 | - build_number_decrement 20 | -------------------------------------------------------------------------------- /recipes/pytest-feedstock/.ci_support/linux_python3.7.yaml: -------------------------------------------------------------------------------- 1 | build_number_decrement: 2 | - '0' 3 | channel_sources: 4 | - conda-forge,defaults 5 | channel_targets: 6 | - conda-forge main 7 | docker_image: 8 | - conda/c3i-linux-64 9 | pin_run_as_build: 10 | python: 11 | min_pin: x.x 12 | max_pin: x.x 13 | python: 14 | - '3.7' 15 | zip_keys: 16 | - - channel_sources 17 | - channel_targets 18 | - docker_image 19 | - build_number_decrement 20 | -------------------------------------------------------------------------------- /recipes/lz4-feedstock/.github/ISSUE_TEMPLATE.md: -------------------------------------------------------------------------------- 1 | 5 | Issue: 6 | 7 |
8 | Environment (conda list): 9 |
10 | 11 | ``` 12 | $ conda list 13 | 14 | ``` 15 |
16 | 17 |
18 | Details about conda and system ( conda info ): 19 |
20 | 21 | ``` 22 | $ conda info 23 | 24 | ``` 25 |
26 | -------------------------------------------------------------------------------- /recipes/pbr-feedstock/.github/ISSUE_TEMPLATE.md: -------------------------------------------------------------------------------- 1 | 5 | Issue: 6 | 7 |
8 | Environment (conda list): 9 |
10 | 11 | ``` 12 | $ conda list 13 | 14 | ``` 15 |
16 | 17 |
18 | Details about conda and system ( conda info ): 19 |
20 | 21 | ``` 22 | $ conda info 23 | 24 | ``` 25 |
26 | -------------------------------------------------------------------------------- /recipes/py-feedstock/.github/ISSUE_TEMPLATE.md: -------------------------------------------------------------------------------- 1 | 5 | Issue: 6 | 7 |
8 | Environment (conda list): 9 |
10 | 11 | ``` 12 | $ conda list 13 | 14 | ``` 15 |
16 | 17 |
18 | Details about conda and system ( conda info ): 19 |
20 | 21 | ``` 22 | $ conda info 23 | 24 | ``` 25 |
26 | -------------------------------------------------------------------------------- /recipes/setuptools-feedstock/.ci_support/linux_python2.7.yaml: -------------------------------------------------------------------------------- 1 | build_number_decrement: 2 | - '0' 3 | channel_sources: 4 | - conda-forge,defaults 5 | channel_targets: 6 | - conda-forge main 7 | docker_image: 8 | - conda/c3i-linux-64 9 | pin_run_as_build: 10 | python: 11 | min_pin: x.x 12 | max_pin: x.x 13 | python: 14 | - '2.7' 15 | zip_keys: 16 | - - channel_sources 17 | - channel_targets 18 | - docker_image 19 | - build_number_decrement 20 | -------------------------------------------------------------------------------- /recipes/setuptools-feedstock/.ci_support/linux_python3.5.yaml: -------------------------------------------------------------------------------- 1 | build_number_decrement: 2 | - '0' 3 | channel_sources: 4 | - conda-forge,defaults 5 | channel_targets: 6 | - conda-forge main 7 | docker_image: 8 | - conda/c3i-linux-64 9 | pin_run_as_build: 10 | python: 11 | min_pin: x.x 12 | max_pin: x.x 13 | python: 14 | - '3.5' 15 | zip_keys: 16 | - - channel_sources 17 | - channel_targets 18 | - docker_image 19 | - build_number_decrement 20 | -------------------------------------------------------------------------------- /recipes/setuptools-feedstock/.ci_support/linux_python3.6.yaml: -------------------------------------------------------------------------------- 1 | build_number_decrement: 2 | - '0' 3 | channel_sources: 4 | - conda-forge,defaults 5 | channel_targets: 6 | - conda-forge main 7 | docker_image: 8 | - conda/c3i-linux-64 9 | pin_run_as_build: 10 | python: 11 | min_pin: x.x 12 | max_pin: x.x 13 | python: 14 | - '3.6' 15 | zip_keys: 16 | - - channel_sources 17 | - channel_targets 18 | - docker_image 19 | - build_number_decrement 20 | -------------------------------------------------------------------------------- /recipes/setuptools-feedstock/.ci_support/linux_python3.7.yaml: -------------------------------------------------------------------------------- 1 | build_number_decrement: 2 | - '0' 3 | channel_sources: 4 | - conda-forge,defaults 5 | channel_targets: 6 | - conda-forge main 7 | docker_image: 8 | - conda/c3i-linux-64 9 | pin_run_as_build: 10 | python: 11 | min_pin: x.x 12 | max_pin: x.x 13 | python: 14 | - '3.7' 15 | zip_keys: 16 | - - channel_sources 17 | - channel_targets 18 | - docker_image 19 | - build_number_decrement 20 | -------------------------------------------------------------------------------- /recipes/attrs-feedstock/.github/ISSUE_TEMPLATE.md: -------------------------------------------------------------------------------- 1 | 5 | Issue: 6 | 7 |
8 | Environment (conda list): 9 |
10 | 11 | ``` 12 | $ conda list 13 | 14 | ``` 15 |
16 | 17 |
18 | Details about conda and system ( conda info ): 19 |
20 | 21 | ``` 22 | $ conda info 23 | 24 | ``` 25 |
26 | -------------------------------------------------------------------------------- /recipes/bzip2-feedstock/.github/ISSUE_TEMPLATE.md: -------------------------------------------------------------------------------- 1 | 5 | Issue: 6 | 7 |
8 | Environment (conda list): 9 |
10 | 11 | ``` 12 | $ conda list 13 | 14 | ``` 15 |
16 | 17 |
18 | Details about conda and system ( conda info ): 19 |
20 | 21 | ``` 22 | $ conda info 23 | 24 | ``` 25 |
26 | -------------------------------------------------------------------------------- /recipes/certifi-feedstock/.github/ISSUE_TEMPLATE.md: -------------------------------------------------------------------------------- 1 | 5 | Issue: 6 | 7 |
8 | Environment (conda list): 9 |
10 | 11 | ``` 12 | $ conda list 13 | 14 | ``` 15 |
16 | 17 |
18 | Details about conda and system ( conda info ): 19 |
20 | 21 | ``` 22 | $ conda info 23 | 24 | ``` 25 |
26 | -------------------------------------------------------------------------------- /recipes/cython-feedstock/.github/ISSUE_TEMPLATE.md: -------------------------------------------------------------------------------- 1 | 5 | Issue: 6 | 7 |
8 | Environment (conda list): 9 |
10 | 11 | ``` 12 | $ conda list 13 | 14 | ``` 15 |
16 | 17 |
18 | Details about conda and system ( conda info ): 19 |
20 | 21 | ``` 22 | $ conda info 23 | 24 | ``` 25 |
26 | -------------------------------------------------------------------------------- /recipes/filelock-feedstock/.github/ISSUE_TEMPLATE.md: -------------------------------------------------------------------------------- 1 | 5 | Issue: 6 | 7 |
8 | Environment (conda list): 9 |
10 | 11 | ``` 12 | $ conda list 13 | 14 | ``` 15 |
16 | 17 |
18 | Details about conda and system ( conda info ): 19 |
20 | 21 | ``` 22 | $ conda info 23 | 24 | ``` 25 |
26 | -------------------------------------------------------------------------------- /recipes/pexpect-feedstock/.github/ISSUE_TEMPLATE.md: -------------------------------------------------------------------------------- 1 | 5 | Issue: 6 | 7 |
8 | Environment (conda list): 9 |
10 | 11 | ``` 12 | $ conda list 13 | 14 | ``` 15 |
16 | 17 |
18 | Details about conda and system ( conda info ): 19 |
20 | 21 | ``` 22 | $ conda info 23 | 24 | ``` 25 |
26 | -------------------------------------------------------------------------------- /recipes/pluggy-feedstock/.github/ISSUE_TEMPLATE.md: -------------------------------------------------------------------------------- 1 | 5 | Issue: 6 | 7 |
8 | Environment (conda list): 9 |
10 | 11 | ``` 12 | $ conda list 13 | 14 | ``` 15 |
16 | 17 |
18 | Details about conda and system ( conda info ): 19 |
20 | 21 | ``` 22 | $ conda info 23 | 24 | ``` 25 |
26 | -------------------------------------------------------------------------------- /recipes/psutil-feedstock/.github/ISSUE_TEMPLATE.md: -------------------------------------------------------------------------------- 1 | 5 | Issue: 6 | 7 |
8 | Environment (conda list): 9 |
10 | 11 | ``` 12 | $ conda list 13 | 14 | ``` 15 |
16 | 17 |
18 | Details about conda and system ( conda info ): 19 |
20 | 21 | ``` 22 | $ conda info 23 | 24 | ``` 25 |
26 | -------------------------------------------------------------------------------- /recipes/pytest-feedstock/.github/ISSUE_TEMPLATE.md: -------------------------------------------------------------------------------- 1 | 5 | Issue: 6 | 7 |
8 | Environment (conda list): 9 |
10 | 11 | ``` 12 | $ conda list 13 | 14 | ``` 15 |
16 | 17 |
18 | Details about conda and system ( conda info ): 19 |
20 | 21 | ``` 22 | $ conda info 23 | 24 | ``` 25 |
26 | -------------------------------------------------------------------------------- /recipes/pytz-feedstock/.github/ISSUE_TEMPLATE.md: -------------------------------------------------------------------------------- 1 | 5 | Issue: 6 | 7 |
8 | Environment (conda list): 9 |
10 | 11 | ``` 12 | $ conda list 13 | 14 | ``` 15 |
16 | 17 |
18 | Details about conda and system ( conda info ): 19 |
20 | 21 | ``` 22 | $ conda info 23 | 24 | ``` 25 |
26 | -------------------------------------------------------------------------------- /recipes/readline-feedstock/.github/ISSUE_TEMPLATE.md: -------------------------------------------------------------------------------- 1 | 5 | Issue: 6 | 7 |
8 | Environment (conda list): 9 |
10 | 11 | ``` 12 | $ conda list 13 | 14 | ``` 15 |
16 | 17 |
18 | Details about conda and system ( conda info ): 19 |
20 | 21 | ``` 22 | $ conda info 23 | 24 | ``` 25 |
26 | -------------------------------------------------------------------------------- /recipes/requests-feedstock/.github/ISSUE_TEMPLATE.md: -------------------------------------------------------------------------------- 1 | 5 | Issue: 6 | 7 |
8 | Environment (conda list): 9 |
10 | 11 | ``` 12 | $ conda list 13 | 14 | ``` 15 |
16 | 17 |
18 | Details about conda and system ( conda info ): 19 |
20 | 21 | ``` 22 | $ conda info 23 | 24 | ``` 25 |
26 | -------------------------------------------------------------------------------- /recipes/su-exec-feedstock/.github/ISSUE_TEMPLATE.md: -------------------------------------------------------------------------------- 1 | 5 | Issue: 6 | 7 |
8 | Environment (conda list): 9 |
10 | 11 | ``` 12 | $ conda list 13 | 14 | ``` 15 |
16 | 17 |
18 | Details about conda and system ( conda info ): 19 |
20 | 21 | ``` 22 | $ conda info 23 | 24 | ``` 25 |
26 | -------------------------------------------------------------------------------- /recipes/tini-feedstock/.github/ISSUE_TEMPLATE.md: -------------------------------------------------------------------------------- 1 | 5 | Issue: 6 | 7 |
8 | Environment (conda list): 9 |
10 | 11 | ``` 12 | $ conda list 13 | 14 | ``` 15 |
16 | 17 |
18 | Details about conda and system ( conda info ): 19 |
20 | 21 | ``` 22 | $ conda info 23 | 24 | ``` 25 |
26 | -------------------------------------------------------------------------------- /recipes/tqdm-feedstock/.github/ISSUE_TEMPLATE.md: -------------------------------------------------------------------------------- 1 | 5 | Issue: 6 | 7 |
8 | Environment (conda list): 9 |
10 | 11 | ``` 12 | $ conda list 13 | 14 | ``` 15 |
16 | 17 |
18 | Details about conda and system ( conda info ): 19 |
20 | 21 | ``` 22 | $ conda info 23 | 24 | ``` 25 |
26 | -------------------------------------------------------------------------------- /recipes/atomicwrites-feedstock/.github/ISSUE_TEMPLATE.md: -------------------------------------------------------------------------------- 1 | 5 | Issue: 6 | 7 |
8 | Environment (conda list): 9 |
10 | 11 | ``` 12 | $ conda list 13 | 14 | ``` 15 |
16 | 17 |
18 | Details about conda and system ( conda info ): 19 |
20 | 21 | ``` 22 | $ conda info 23 | 24 | ``` 25 |
26 | -------------------------------------------------------------------------------- /recipes/conda-build-feedstock/.github/ISSUE_TEMPLATE.md: -------------------------------------------------------------------------------- 1 | 5 | Issue: 6 | 7 |
8 | Environment (conda list): 9 |
10 | 11 | ``` 12 | $ conda list 13 | 14 | ``` 15 |
16 | 17 |
18 | Details about conda and system ( conda info ): 19 |
20 | 21 | ``` 22 | $ conda info 23 | 24 | ``` 25 |
26 | -------------------------------------------------------------------------------- /recipes/constructor-feedstock/.github/ISSUE_TEMPLATE.md: -------------------------------------------------------------------------------- 1 | 5 | Issue: 6 | 7 |
8 | Environment (conda list): 9 |
10 | 11 | ``` 12 | $ conda list 13 | 14 | ``` 15 |
16 | 17 |
18 | Details about conda and system ( conda info ): 19 |
20 | 21 | ``` 22 | $ conda info 23 | 24 | ``` 25 |
26 | -------------------------------------------------------------------------------- /recipes/cryptography-feedstock/.github/ISSUE_TEMPLATE.md: -------------------------------------------------------------------------------- 1 | 5 | Issue: 6 | 7 |
8 | Environment (conda list): 9 |
10 | 11 | ``` 12 | $ conda list 13 | 14 | ``` 15 |
16 | 17 |
18 | Details about conda and system ( conda info ): 19 |
20 | 21 | ``` 22 | $ conda info 23 | 24 | ``` 25 |
26 | -------------------------------------------------------------------------------- /recipes/ptyprocess-feedstock/.github/ISSUE_TEMPLATE.md: -------------------------------------------------------------------------------- 1 | 5 | Issue: 6 | 7 |
8 | Environment (conda list): 9 |
10 | 11 | ``` 12 | $ conda list 13 | 14 | ``` 15 |
16 | 17 |
18 | Details about conda and system ( conda info ): 19 |
20 | 21 | ``` 22 | $ conda info 23 | 24 | ``` 25 |
26 | -------------------------------------------------------------------------------- /recipes/pycparser-feedstock/.github/ISSUE_TEMPLATE.md: -------------------------------------------------------------------------------- 1 | 5 | Issue: 6 | 7 |
8 | Environment (conda list): 9 |
10 | 11 | ``` 12 | $ conda list 13 | 14 | ``` 15 |
16 | 17 |
18 | Details about conda and system ( conda info ): 19 |
20 | 21 | ``` 22 | $ conda info 23 | 24 | ``` 25 |
26 | -------------------------------------------------------------------------------- /recipes/pyopenssl-feedstock/.github/ISSUE_TEMPLATE.md: -------------------------------------------------------------------------------- 1 | 5 | Issue: 6 | 7 |
8 | Environment (conda list): 9 |
10 | 11 | ``` 12 | $ conda list 13 | 14 | ``` 15 |
16 | 17 |
18 | Details about conda and system ( conda info ): 19 |
20 | 21 | ``` 22 | $ conda info 23 | 24 | ``` 25 |
26 | -------------------------------------------------------------------------------- /recipes/setuptools-feedstock/.github/ISSUE_TEMPLATE.md: -------------------------------------------------------------------------------- 1 | 5 | Issue: 6 | 7 |
8 | Environment (conda list): 9 |
10 | 11 | ``` 12 | $ conda list 13 | 14 | ``` 15 |
16 | 17 |
18 | Details about conda and system ( conda info ): 19 |
20 | 21 | ``` 22 | $ conda info 23 | 24 | ``` 25 |
26 | -------------------------------------------------------------------------------- /recipes/beautifulsoup4-feedstock/.github/ISSUE_TEMPLATE.md: -------------------------------------------------------------------------------- 1 | 5 | Issue: 6 | 7 |
8 | Environment (conda list): 9 |
10 | 11 | ``` 12 | $ conda list 13 | 14 | ``` 15 |
16 | 17 |
18 | Details about conda and system ( conda info ): 19 |
20 | 21 | ``` 22 | $ conda info 23 | 24 | ``` 25 |
26 | -------------------------------------------------------------------------------- /recipes/certifi-feedstock/.ci_support/osx_python2.7.yaml: -------------------------------------------------------------------------------- 1 | MACOSX_DEPLOYMENT_TARGET: 2 | - '10.9' 3 | build_number_decrement: 4 | - '0' 5 | channel_sources: 6 | - conda-forge,defaults 7 | channel_targets: 8 | - conda-forge main 9 | docker_image: 10 | - condaforge/linux-anvil 11 | macos_machine: 12 | - x86_64-apple-darwin13.4.0 13 | macos_min_version: 14 | - '10.9' 15 | pin_run_as_build: 16 | python: 17 | min_pin: x.x 18 | max_pin: x.x 19 | python: 20 | - '2.7' 21 | -------------------------------------------------------------------------------- /recipes/certifi-feedstock/.ci_support/osx_python3.5.yaml: -------------------------------------------------------------------------------- 1 | MACOSX_DEPLOYMENT_TARGET: 2 | - '10.9' 3 | build_number_decrement: 4 | - '0' 5 | channel_sources: 6 | - conda-forge,defaults 7 | channel_targets: 8 | - conda-forge main 9 | docker_image: 10 | - condaforge/linux-anvil 11 | macos_machine: 12 | - x86_64-apple-darwin13.4.0 13 | macos_min_version: 14 | - '10.9' 15 | pin_run_as_build: 16 | python: 17 | min_pin: x.x 18 | max_pin: x.x 19 | python: 20 | - '3.5' 21 | -------------------------------------------------------------------------------- /recipes/certifi-feedstock/.ci_support/osx_python3.6.yaml: -------------------------------------------------------------------------------- 1 | MACOSX_DEPLOYMENT_TARGET: 2 | - '10.9' 3 | build_number_decrement: 4 | - '0' 5 | channel_sources: 6 | - conda-forge,defaults 7 | channel_targets: 8 | - conda-forge main 9 | docker_image: 10 | - condaforge/linux-anvil 11 | macos_machine: 12 | - x86_64-apple-darwin13.4.0 13 | macos_min_version: 14 | - '10.9' 15 | pin_run_as_build: 16 | python: 17 | min_pin: x.x 18 | max_pin: x.x 19 | python: 20 | - '3.6' 21 | -------------------------------------------------------------------------------- /recipes/coverage-feedstock/recipe/build.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | CFLAGS="-I${PREFIX}/include -L${PREFIX}/lib ${CFLAGS}" \ 4 | $PYTHON setup.py install --single-version-externally-managed --record record.txt 5 | 6 | # Remove versioned entrypoints. 7 | PY_VER_MAJ=$($PYTHON -c "import os; print('_'.join(os.environ['PY_VER'].split('.')[0]))") 8 | 9 | rm "${PREFIX}/bin/coverage${PY_VER_MAJ}" 10 | rm "${PREFIX}/bin/coverage-${PY_VER}" 11 | 12 | ls $PREFIX/bin/coverage* 13 | -------------------------------------------------------------------------------- /recipes/more-itertools-feedstock/.github/ISSUE_TEMPLATE.md: -------------------------------------------------------------------------------- 1 | 5 | Issue: 6 | 7 |
8 | Environment (conda list): 9 |
10 | 11 | ``` 12 | $ conda list 13 | 14 | ``` 15 |
16 | 17 |
18 | Details about conda and system ( conda info ): 19 |
20 | 21 | ``` 22 | $ conda info 23 | 24 | ``` 25 |
26 | -------------------------------------------------------------------------------- /recipes/setuptools_scm-feedstock/.github/ISSUE_TEMPLATE.md: -------------------------------------------------------------------------------- 1 | 5 | Issue: 6 | 7 |
8 | Environment (conda list): 9 |
10 | 11 | ``` 12 | $ conda list 13 | 14 | ``` 15 |
16 | 17 |
18 | Details about conda and system ( conda info ): 19 |
20 | 21 | ``` 22 | $ conda info 23 | 24 | ``` 25 |
26 | -------------------------------------------------------------------------------- /docker/pkg_builder/install_conda.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | set -euxo pipefail 3 | 4 | fname="c4aarch64_installer-1.0.0-Linux-aarch64.sh" 5 | curl -LO https://github.com/jjhelmus/conda4aarch64/releases/download/1.0.0/$fname 6 | bash -x $fname -bfp /opt/conda 7 | 8 | # set some default setting 9 | /opt/conda/bin/conda config --set show_channel_urls True 10 | /opt/conda/bin/conda config --set add_pip_as_python_dependency False 11 | /opt/conda/bin/conda clean -ptiy 12 | rm -rf $fname 13 | -------------------------------------------------------------------------------- /recipes/atomicwrites-feedstock/.ci_support/osx_python2.7.yaml: -------------------------------------------------------------------------------- 1 | MACOSX_DEPLOYMENT_TARGET: 2 | - '10.9' 3 | build_number_decrement: 4 | - '0' 5 | channel_sources: 6 | - conda-forge,defaults 7 | channel_targets: 8 | - conda-forge main 9 | docker_image: 10 | - condaforge/linux-anvil 11 | macos_machine: 12 | - x86_64-apple-darwin13.4.0 13 | macos_min_version: 14 | - '10.9' 15 | pin_run_as_build: 16 | python: 17 | min_pin: x.x 18 | max_pin: x.x 19 | python: 20 | - '2.7' 21 | -------------------------------------------------------------------------------- /recipes/atomicwrites-feedstock/.ci_support/osx_python3.5.yaml: -------------------------------------------------------------------------------- 1 | MACOSX_DEPLOYMENT_TARGET: 2 | - '10.9' 3 | build_number_decrement: 4 | - '0' 5 | channel_sources: 6 | - conda-forge,defaults 7 | channel_targets: 8 | - conda-forge main 9 | docker_image: 10 | - condaforge/linux-anvil 11 | macos_machine: 12 | - x86_64-apple-darwin13.4.0 13 | macos_min_version: 14 | - '10.9' 15 | pin_run_as_build: 16 | python: 17 | min_pin: x.x 18 | max_pin: x.x 19 | python: 20 | - '3.5' 21 | -------------------------------------------------------------------------------- /recipes/atomicwrites-feedstock/.ci_support/osx_python3.6.yaml: -------------------------------------------------------------------------------- 1 | MACOSX_DEPLOYMENT_TARGET: 2 | - '10.9' 3 | build_number_decrement: 4 | - '0' 5 | channel_sources: 6 | - conda-forge,defaults 7 | channel_targets: 8 | - conda-forge main 9 | docker_image: 10 | - condaforge/linux-anvil 11 | macos_machine: 12 | - x86_64-apple-darwin13.4.0 13 | macos_min_version: 14 | - '10.9' 15 | pin_run_as_build: 16 | python: 17 | min_pin: x.x 18 | max_pin: x.x 19 | python: 20 | - '3.6' 21 | -------------------------------------------------------------------------------- /recipes/constructor-feedstock/.ci_support/osx_python2.7.yaml: -------------------------------------------------------------------------------- 1 | MACOSX_DEPLOYMENT_TARGET: 2 | - '10.9' 3 | build_number_decrement: 4 | - '0' 5 | channel_sources: 6 | - conda-forge,defaults 7 | channel_targets: 8 | - conda-forge main 9 | docker_image: 10 | - condaforge/linux-anvil 11 | macos_machine: 12 | - x86_64-apple-darwin13.4.0 13 | macos_min_version: 14 | - '10.9' 15 | pin_run_as_build: 16 | python: 17 | min_pin: x.x 18 | max_pin: x.x 19 | python: 20 | - '2.7' 21 | -------------------------------------------------------------------------------- /recipes/constructor-feedstock/.ci_support/osx_python3.5.yaml: -------------------------------------------------------------------------------- 1 | MACOSX_DEPLOYMENT_TARGET: 2 | - '10.9' 3 | build_number_decrement: 4 | - '0' 5 | channel_sources: 6 | - conda-forge,defaults 7 | channel_targets: 8 | - conda-forge main 9 | docker_image: 10 | - condaforge/linux-anvil 11 | macos_machine: 12 | - x86_64-apple-darwin13.4.0 13 | macos_min_version: 14 | - '10.9' 15 | pin_run_as_build: 16 | python: 17 | min_pin: x.x 18 | max_pin: x.x 19 | python: 20 | - '3.5' 21 | -------------------------------------------------------------------------------- /recipes/constructor-feedstock/.ci_support/osx_python3.6.yaml: -------------------------------------------------------------------------------- 1 | MACOSX_DEPLOYMENT_TARGET: 2 | - '10.9' 3 | build_number_decrement: 4 | - '0' 5 | channel_sources: 6 | - conda-forge,defaults 7 | channel_targets: 8 | - conda-forge main 9 | docker_image: 10 | - condaforge/linux-anvil 11 | macos_machine: 12 | - x86_64-apple-darwin13.4.0 13 | macos_min_version: 14 | - '10.9' 15 | pin_run_as_build: 16 | python: 17 | min_pin: x.x 18 | max_pin: x.x 19 | python: 20 | - '3.6' 21 | -------------------------------------------------------------------------------- /recipes/cryptography-vectors-feedstock/.github/ISSUE_TEMPLATE.md: -------------------------------------------------------------------------------- 1 | 5 | Issue: 6 | 7 |
8 | Environment (conda list): 9 |
10 | 11 | ``` 12 | $ conda list 13 | 14 | ``` 15 |
16 | 17 |
18 | Details about conda and system ( conda info ): 19 |
20 | 21 | ``` 22 | $ conda info 23 | 24 | ``` 25 |
26 | -------------------------------------------------------------------------------- /recipes/rhash-feedstock/recipe/build.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | set -x 3 | 4 | ./configure \ 5 | --enable-openssl \ 6 | --prefix=$PREFIX \ 7 | --enable-lib-static \ 8 | --enable-lib-shared \ 9 | --extra-cflags="$CFLAGS -I$PREFIX/include" \ 10 | --extra-ldflags="$LDFLAGS" 11 | 12 | make install 13 | make check 14 | 15 | if [[ ${HOST} =~ .*darwin.* ]]; then 16 | ${INSTALL_NAME_TOOL:-install_name_tool} -id @rpath/librhash.0.dylib ${PREFIX}/lib/librhash.0.dylib 17 | fi 18 | -------------------------------------------------------------------------------- /docker/compiler_builder/install_conda.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | set -euxo pipefail 3 | 4 | fname="c4aarch64_installer-1.0.0-Linux-aarch64.sh" 5 | curl -LO https://github.com/jjhelmus/conda4aarch64/releases/download/1.0.0/$fname 6 | bash -x $fname -bfp /opt/conda 7 | 8 | # set some default setting 9 | /opt/conda/bin/conda config --set show_channel_urls True 10 | /opt/conda/bin/conda config --set add_pip_as_python_dependency False 11 | /opt/conda/bin/conda clean -ptiy 12 | rm -rf $fname 13 | --------------------------------------------------------------------------------