├── .gitignore ├── .gitattributes ├── ci_support ├── fast_finish_ci_pr_build.sh ├── checkout_merge_commit.sh └── run_docker_build.sh ├── conda-forge.yml ├── LICENSE ├── recipe └── meta.yaml ├── .circleci └── config.yml ├── appveyor.yml ├── .travis.yml └── README.md /.gitignore: -------------------------------------------------------------------------------- 1 | *.pyc 2 | 3 | build_artefacts 4 | -------------------------------------------------------------------------------- /.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 | -------------------------------------------------------------------------------- /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 | -------------------------------------------------------------------------------- /ci_support/checkout_merge_commit.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | 4 | # Update PR refs for testing. 5 | if [[ -n "${CIRCLE_PR_NUMBER}" ]] 6 | then 7 | FETCH_REFS="${FETCH_REFS} +refs/pull/${CIRCLE_PR_NUMBER}/head:pr/${CIRCLE_PR_NUMBER}/head" 8 | FETCH_REFS="${FETCH_REFS} +refs/pull/${CIRCLE_PR_NUMBER}/merge:pr/${CIRCLE_PR_NUMBER}/merge" 9 | fi 10 | 11 | # Retrieve the refs. 12 | if [[ -n "${CIRCLE_PR_NUMBER}" ]] 13 | then 14 | git fetch -u origin ${FETCH_REFS} 15 | fi 16 | 17 | # Checkout the PR merge ref. 18 | if [[ -n "${CIRCLE_PR_NUMBER}" ]] 19 | then 20 | git checkout -qf "pr/${CIRCLE_PR_NUMBER}/merge" 21 | fi 22 | 23 | # Check for merge conflicts. 24 | if [[ -n "${CIRCLE_PR_NUMBER}" ]] 25 | then 26 | git branch --merged | grep "pr/${CIRCLE_PR_NUMBER}/head" > /dev/null 27 | fi 28 | -------------------------------------------------------------------------------- /conda-forge.yml: -------------------------------------------------------------------------------- 1 | travis: 2 | secure: 3 | BINSTAR_TOKEN: h4aYQ5b2g94XOd5Gdx2gaeCN8syGMJdtSXWQxSkGV95zkWvob2BJZpwovbbVD7A21Sw0Qmpl6K+Ib1f2HDibwuVAU0/0QdN9O+VoYYXEULqJp3pcRbC8YcX9FqFi1MR/n1nFj+T4WOVhfHf1i0H5HyzjjeKZIepqN+iNxklanIPi69XFzaSrXSujAAieywO3DU8Wo3V7Fv1UgEfxlbXzr9DQYlbpNZgzGwiuKNZ6HcnbAoQYtWS1kg9Y7e51ic1fOjrFFDIeBFTxPigSwtd53pfLDyljtUeUEeT6jQUTiZCp5jM3Lo/WTJd3RDVjW6SfXT+VdbmEYOeDOMIwof9HDyXSUXgu5Q88j89xvrYVXuSdCF/VYJOYPlGjG9qHTOVmUhCUXN3mlv883HYZxYjNqU4bqnfTAgmFLB4nO+aclYX5ugQi4JckUTnRzGJbjmnymFWuWWfoVf47B0LSdH1aehQ+/Kd7gwiC+ramFYgeXHchEDwybx6ZMDV78U8CzpjNlIxHzYR7Re5cxaQGEAthH6kEYyn/k29JpoOqhjPXH759YgFz5PjeOXMu1GmZT02U6yM6QFpRPD4Y05IR/NCb7FhLHzNisE9ROfpaNR3HJ2HaY1DerWqknXNOtfOmVemQTd4m1jSUQSVCh7EHE0tSX7ZR9ZnZAK/0DlTWL5HA4dE= 4 | appveyor: 5 | secure: 6 | BINSTAR_TOKEN: MP4hZYylDyUWEsrt3u3cod2sbFeRwUziH02mvQOdbjsTO/l1yIxDkP/76rSIjcGC 7 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | BSD 3-clause license 2 | Copyright (c) 2015-2017, conda-forge 3 | All rights reserved. 4 | 5 | Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: 6 | 7 | 1. Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. 8 | 9 | 2. Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. 10 | 11 | 3. Neither the name of the copyright holder nor the names of its contributors may be used to endorse or promote products derived from this software without specific prior written permission. 12 | 13 | THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 14 | -------------------------------------------------------------------------------- /recipe/meta.yaml: -------------------------------------------------------------------------------- 1 | {% set name = "asdf" %} 2 | {% set version = "1.2.1" %} 3 | {% set hash_type = "sha256" %} 4 | {% set hash_value = "6e197f20683e050ab54769dcce22cf251d587b6dc38be011ca7b9dca21d81dec" %} 5 | 6 | package: 7 | name: '{{ name|lower }}' 8 | version: '{{ version }}' 9 | 10 | source: 11 | fn: '{{ name }}-{{ version }}.tar.gz' 12 | url: https://pypi.io/packages/source/{{ name[0] }}/{{ name }}/{{ name }}-{{ version }}.tar.gz 13 | '{{ hash_type }}': '{{ hash_value }}' 14 | 15 | build: 16 | number: 0 17 | entry_points: 18 | - asdftool = asdf.commands.main:main 19 | script: python setup.py install --offline --single-version-externally-managed --record=record.txt 20 | 21 | requirements: 22 | build: 23 | - python 24 | - setuptools 25 | - six >=1.9.0 26 | run: 27 | - python 28 | - pyyaml >=3.10 29 | - jsonschema >=2.3.0 30 | - six >=1.9.0 31 | - pytest >=2.7.2 32 | - numpy >=1.8 33 | 34 | test: 35 | imports: 36 | - asdf 37 | - asdf.commands 38 | - asdf.extern 39 | - asdf.tags 40 | - asdf.tags.core 41 | - asdf.tags.fits 42 | - asdf.tags.time 43 | - asdf.tags.transform 44 | - asdf.tags.unit 45 | - asdf.tags.wcs 46 | commands: 47 | - asdftool --help 48 | 49 | about: 50 | home: http://github.com/spacetelescope/asdf 51 | license: BSD 3-clause 52 | license_family: BSD 53 | license_file: '' 54 | summary: Python tools to handle ASDF files 55 | description: | 56 | Python library for reading and writing ASDF files. Advanced Scientific 57 | Data Format (ASDF) is a next generation interchange format for scientific 58 | data. asdf is an Astropy affiliated package. 59 | doc_url: http://asdf.readthedocs.io/ 60 | dev_url: http://github.com/spacetelescope/asdf 61 | 62 | extra: 63 | recipe-maintainers: 64 | - mwcraig 65 | - bsipocz 66 | - drdavella 67 | -------------------------------------------------------------------------------- /.circleci/config.yml: -------------------------------------------------------------------------------- 1 | version: 2 2 | 3 | jobs: 4 | build__CONDA_PY_27: 5 | working_directory: ~/test 6 | machine: true 7 | environment: 8 | - CONDA_PY: "27" 9 | steps: 10 | - checkout 11 | - run: 12 | name: Fast finish outdated PRs and merge PRs 13 | command: | 14 | ./ci_support/fast_finish_ci_pr_build.sh 15 | ./ci_support/checkout_merge_commit.sh 16 | - run: 17 | command: docker pull condaforge/linux-anvil 18 | - run: 19 | name: Print conda-build environment variables 20 | command: | 21 | echo "CONDA_PY=${CONDA_PY}" 22 | - run: 23 | # Run, test and (if we have a BINSTAR_TOKEN) upload the distributions. 24 | command: ./ci_support/run_docker_build.sh 25 | build__CONDA_PY_35: 26 | working_directory: ~/test 27 | machine: true 28 | environment: 29 | - CONDA_PY: "35" 30 | steps: 31 | - checkout 32 | - run: 33 | name: Fast finish outdated PRs and merge PRs 34 | command: | 35 | ./ci_support/fast_finish_ci_pr_build.sh 36 | ./ci_support/checkout_merge_commit.sh 37 | - run: 38 | command: docker pull condaforge/linux-anvil 39 | - run: 40 | name: Print conda-build environment variables 41 | command: | 42 | echo "CONDA_PY=${CONDA_PY}" 43 | - run: 44 | # Run, test and (if we have a BINSTAR_TOKEN) upload the distributions. 45 | command: ./ci_support/run_docker_build.sh 46 | build__CONDA_PY_36: 47 | working_directory: ~/test 48 | machine: true 49 | environment: 50 | - CONDA_PY: "36" 51 | steps: 52 | - checkout 53 | - run: 54 | name: Fast finish outdated PRs and merge PRs 55 | command: | 56 | ./ci_support/fast_finish_ci_pr_build.sh 57 | ./ci_support/checkout_merge_commit.sh 58 | - run: 59 | command: docker pull condaforge/linux-anvil 60 | - run: 61 | name: Print conda-build environment variables 62 | command: | 63 | echo "CONDA_PY=${CONDA_PY}" 64 | - run: 65 | # Run, test and (if we have a BINSTAR_TOKEN) upload the distributions. 66 | command: ./ci_support/run_docker_build.sh 67 | 68 | workflows: 69 | version: 2 70 | build_and_test: 71 | jobs: 72 | - build__CONDA_PY_27 73 | - build__CONDA_PY_35 74 | - build__CONDA_PY_36 75 | -------------------------------------------------------------------------------- /ci_support/run_docker_build.sh: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env bash 2 | 3 | # PLEASE NOTE: This script has been automatically generated by conda-smithy. Any changes here 4 | # will be lost next time ``conda smithy rerender`` is run. If you would like to make permanent 5 | # changes to this script, consider a proposal to conda-smithy so that other feedstocks can also 6 | # benefit from the improvement. 7 | 8 | FEEDSTOCK_ROOT=$(cd "$(dirname "$0")/.."; pwd;) 9 | RECIPE_ROOT=$FEEDSTOCK_ROOT/recipe 10 | 11 | docker info 12 | 13 | config=$(cat < /dev/null && docker-machine active > /dev/null; then 34 | HOST_USER_ID=$(docker-machine ssh $(docker-machine active) id -u) 35 | fi 36 | 37 | rm -f "$FEEDSTOCK_ROOT/build_artefacts/conda-forge-build-done" 38 | 39 | cat << EOF | docker run -i \ 40 | -v "${RECIPE_ROOT}":/recipe_root \ 41 | -v "${FEEDSTOCK_ROOT}":/feedstock_root \ 42 | -e HOST_USER_ID="${HOST_USER_ID}" \ 43 | -e CONDA_PY="${CONDA_PY}" \ 44 | -a stdin -a stdout -a stderr \ 45 | condaforge/linux-anvil \ 46 | bash || exit 1 47 | 48 | set -e 49 | set +x 50 | export BINSTAR_TOKEN=${BINSTAR_TOKEN} 51 | set -x 52 | export PYTHONUNBUFFERED=1 53 | 54 | echo "$config" > ~/.condarc 55 | # A lock sometimes occurs with incomplete builds. The lock file is stored in build_artefacts. 56 | conda clean --lock 57 | 58 | conda install --yes --quiet conda-forge-build-setup 59 | source run_conda_forge_build_setup 60 | 61 | conda build /recipe_root --quiet || exit 1 62 | upload_or_check_non_existence /recipe_root conda-forge --channel=main || exit 1 63 | 64 | touch /feedstock_root/build_artefacts/conda-forge-build-done 65 | EOF 66 | 67 | # double-check that the build got to the end 68 | # see https://github.com/conda-forge/conda-smithy/pull/337 69 | # for a possible fix 70 | set -x 71 | test -f "$FEEDSTOCK_ROOT/build_artefacts/conda-forge-build-done" || exit 1 72 | -------------------------------------------------------------------------------- /appveyor.yml: -------------------------------------------------------------------------------- 1 | # This file was automatically generated by conda-smithy. To update a component of this 2 | # file, make changes to conda-forge.yml and/or recipe/meta.yaml, and run 3 | # "conda smithy rerender". 4 | 5 | environment: 6 | 7 | BINSTAR_TOKEN: 8 | # The BINSTAR_TOKEN secure variable. This is defined canonically in conda-forge.yml. 9 | secure: MP4hZYylDyUWEsrt3u3cod2sbFeRwUziH02mvQOdbjsTO/l1yIxDkP/76rSIjcGC 10 | 11 | matrix: 12 | - TARGET_ARCH: x86 13 | CONDA_PY: 27 14 | CONDA_INSTALL_LOCN: C:\\Miniconda 15 | 16 | - TARGET_ARCH: x64 17 | CONDA_PY: 27 18 | CONDA_INSTALL_LOCN: C:\\Miniconda-x64 19 | 20 | - TARGET_ARCH: x86 21 | CONDA_PY: 35 22 | CONDA_INSTALL_LOCN: C:\\Miniconda35 23 | 24 | - TARGET_ARCH: x64 25 | CONDA_PY: 35 26 | CONDA_INSTALL_LOCN: C:\\Miniconda35-x64 27 | 28 | - TARGET_ARCH: x86 29 | CONDA_PY: 36 30 | CONDA_INSTALL_LOCN: C:\\Miniconda36 31 | 32 | - TARGET_ARCH: x64 33 | CONDA_PY: 36 34 | CONDA_INSTALL_LOCN: C:\\Miniconda36-x64 35 | 36 | 37 | # We always use a 64-bit machine, but can build x86 distributions 38 | # with the TARGET_ARCH variable. 39 | platform: 40 | - x64 41 | 42 | install: 43 | # If there is a newer build queued for the same PR, cancel this one. 44 | - cmd: | 45 | powershell -Command "(New-Object Net.WebClient).DownloadFile('https://raw.githubusercontent.com/conda-forge/conda-forge-build-setup-feedstock/master/recipe/ff_ci_pr_build.py', 'ff_ci_pr_build.py')" 46 | ff_ci_pr_build -v --ci "appveyor" "%APPVEYOR_ACCOUNT_NAME%/%APPVEYOR_PROJECT_SLUG%" "%APPVEYOR_BUILD_NUMBER%" "%APPVEYOR_PULL_REQUEST_NUMBER%" 47 | del ff_ci_pr_build.py 48 | 49 | # Cywing's git breaks conda-build. (See https://github.com/conda-forge/conda-smithy-feedstock/pull/2.) 50 | - cmd: rmdir C:\cygwin /s /q 51 | 52 | # Add path, activate `conda` and update conda. 53 | - cmd: call %CONDA_INSTALL_LOCN%\Scripts\activate.bat 54 | - cmd: conda update --yes --quiet conda 55 | 56 | - cmd: set PYTHONUNBUFFERED=1 57 | 58 | # Add our channels. 59 | - cmd: conda config --set show_channel_urls true 60 | - cmd: conda config --remove channels defaults 61 | - cmd: conda config --add channels defaults 62 | - cmd: conda config --add channels conda-forge 63 | 64 | # Configure the VM. 65 | - cmd: conda install -n root --quiet --yes conda-forge-build-setup 66 | - cmd: run_conda_forge_build_setup 67 | 68 | # Skip .NET project specific build phase. 69 | build: off 70 | 71 | test_script: 72 | - conda build recipe --quiet 73 | deploy_script: 74 | - cmd: upload_or_check_non_existence .\recipe conda-forge --channel=main 75 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- 1 | # This file was generated automatically from conda-smithy. To update this configuration, 2 | # update the conda-forge.yml and/or the recipe/meta.yaml. 3 | 4 | language: generic 5 | 6 | os: osx 7 | osx_image: xcode6.4 8 | 9 | env: 10 | matrix: 11 | 12 | - CONDA_PY=27 13 | - CONDA_PY=35 14 | - CONDA_PY=36 15 | global: 16 | # The BINSTAR_TOKEN secure variable. This is defined canonically in conda-forge.yml. 17 | - secure: "h4aYQ5b2g94XOd5Gdx2gaeCN8syGMJdtSXWQxSkGV95zkWvob2BJZpwovbbVD7A21Sw0Qmpl6K+Ib1f2HDibwuVAU0/0QdN9O+VoYYXEULqJp3pcRbC8YcX9FqFi1MR/n1nFj+T4WOVhfHf1i0H5HyzjjeKZIepqN+iNxklanIPi69XFzaSrXSujAAieywO3DU8Wo3V7Fv1UgEfxlbXzr9DQYlbpNZgzGwiuKNZ6HcnbAoQYtWS1kg9Y7e51ic1fOjrFFDIeBFTxPigSwtd53pfLDyljtUeUEeT6jQUTiZCp5jM3Lo/WTJd3RDVjW6SfXT+VdbmEYOeDOMIwof9HDyXSUXgu5Q88j89xvrYVXuSdCF/VYJOYPlGjG9qHTOVmUhCUXN3mlv883HYZxYjNqU4bqnfTAgmFLB4nO+aclYX5ugQi4JckUTnRzGJbjmnymFWuWWfoVf47B0LSdH1aehQ+/Kd7gwiC+ramFYgeXHchEDwybx6ZMDV78U8CzpjNlIxHzYR7Re5cxaQGEAthH6kEYyn/k29JpoOqhjPXH759YgFz5PjeOXMu1GmZT02U6yM6QFpRPD4Y05IR/NCb7FhLHzNisE9ROfpaNR3HJ2HaY1DerWqknXNOtfOmVemQTd4m1jSUQSVCh7EHE0tSX7ZR9ZnZAK/0DlTWL5HA4dE=" 18 | 19 | 20 | before_install: 21 | # Fast finish the PR. 22 | - | 23 | (curl https://raw.githubusercontent.com/conda-forge/conda-forge-build-setup-feedstock/master/recipe/ff_ci_pr_build.py | \ 24 | python - -v --ci "travis" "${TRAVIS_REPO_SLUG}" "${TRAVIS_BUILD_NUMBER}" "${TRAVIS_PULL_REQUEST}") || exit 1 25 | 26 | # Remove homebrew. 27 | - | 28 | echo "" 29 | echo "Removing homebrew from Travis CI to avoid conflicts." 30 | curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/uninstall > ~/uninstall_homebrew 31 | chmod +x ~/uninstall_homebrew 32 | ~/uninstall_homebrew -fq 33 | rm ~/uninstall_homebrew 34 | 35 | 36 | install: 37 | # Install Miniconda. 38 | - | 39 | echo "" 40 | echo "Installing a fresh version of Miniconda." 41 | MINICONDA_URL="https://repo.continuum.io/miniconda" 42 | MINICONDA_FILE="Miniconda3-latest-MacOSX-x86_64.sh" 43 | curl -L -O "${MINICONDA_URL}/${MINICONDA_FILE}" 44 | bash $MINICONDA_FILE -b 45 | 46 | # Configure conda. 47 | - | 48 | echo "" 49 | echo "Configuring conda." 50 | source /Users/travis/miniconda3/bin/activate root 51 | conda config --remove channels defaults 52 | conda config --add channels defaults 53 | conda config --add channels conda-forge 54 | conda config --set show_channel_urls true 55 | conda install --yes --quiet conda-forge-build-setup 56 | source run_conda_forge_build_setup 57 | 58 | script: 59 | - conda build ./recipe 60 | 61 | - upload_or_check_non_existence ./recipe conda-forge --channel=main 62 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | About asdf 2 | ========== 3 | 4 | Home: http://github.com/spacetelescope/asdf 5 | 6 | Package license: BSD 3-clause 7 | 8 | Feedstock license: BSD 3-Clause 9 | 10 | Summary: Python tools to handle ASDF files 11 | 12 | Python library for reading and writing ASDF files. Advanced Scientific 13 | Data Format (ASDF) is a next generation interchange format for scientific 14 | data. asdf is an Astropy affiliated package. 15 | 16 | 17 | Current build status 18 | ==================== 19 | 20 | Linux: [![Circle CI](https://circleci.com/gh/conda-forge/asdf-feedstock.svg?style=shield)](https://circleci.com/gh/conda-forge/asdf-feedstock) 21 | OSX: [![TravisCI](https://travis-ci.org/conda-forge/asdf-feedstock.svg?branch=master)](https://travis-ci.org/conda-forge/asdf-feedstock) 22 | Windows: [![AppVeyor](https://ci.appveyor.com/api/projects/status/github/conda-forge/asdf-feedstock?svg=True)](https://ci.appveyor.com/project/conda-forge/asdf-feedstock/branch/master) 23 | 24 | Current release info 25 | ==================== 26 | Version: [![Anaconda-Server Badge](https://anaconda.org/conda-forge/asdf/badges/version.svg)](https://anaconda.org/conda-forge/asdf) 27 | Downloads: [![Anaconda-Server Badge](https://anaconda.org/conda-forge/asdf/badges/downloads.svg)](https://anaconda.org/conda-forge/asdf) 28 | 29 | Installing asdf 30 | =============== 31 | 32 | Installing `asdf` from the `conda-forge` channel can be achieved by adding `conda-forge` to your channels with: 33 | 34 | ``` 35 | conda config --add channels conda-forge 36 | ``` 37 | 38 | Once the `conda-forge` channel has been enabled, `asdf` can be installed with: 39 | 40 | ``` 41 | conda install asdf 42 | ``` 43 | 44 | It is possible to list all of the versions of `asdf` available on your platform with: 45 | 46 | ``` 47 | conda search asdf --channel conda-forge 48 | ``` 49 | 50 | 51 | About conda-forge 52 | ================= 53 | 54 | conda-forge is a community-led conda channel of installable packages. 55 | In order to provide high-quality builds, the process has been automated into the 56 | conda-forge GitHub organization. The conda-forge organization contains one repository 57 | for each of the installable packages. Such a repository is known as a *feedstock*. 58 | 59 | A feedstock is made up of a conda recipe (the instructions on what and how to build 60 | the package) and the necessary configurations for automatic building using freely 61 | available continuous integration services. Thanks to the awesome service provided by 62 | [CircleCI](https://circleci.com/), [AppVeyor](http://www.appveyor.com/) 63 | and [TravisCI](https://travis-ci.org/) it is possible to build and upload installable 64 | packages to the [conda-forge](https://anaconda.org/conda-forge) 65 | [Anaconda-Cloud](http://docs.anaconda.org/) channel for Linux, Windows and OSX respectively. 66 | 67 | To manage the continuous integration and simplify feedstock maintenance 68 | [conda-smithy](http://github.com/conda-forge/conda-smithy) has been developed. 69 | Using the ``conda-forge.yml`` within this repository, it is possible to re-render all of 70 | this feedstock's supporting files (e.g. the CI configuration files) with ``conda smithy rerender``. 71 | 72 | 73 | Terminology 74 | =========== 75 | 76 | **feedstock** - the conda recipe (raw material), supporting scripts and CI configuration. 77 | 78 | **conda-smithy** - the tool which helps orchestrate the feedstock. 79 | Its primary use is in the construction of the CI ``.yml`` files 80 | and simplify the management of *many* feedstocks. 81 | 82 | **conda-forge** - the place where the feedstock and smithy live and work to 83 | produce the finished article (built conda distributions) 84 | 85 | 86 | Updating asdf-feedstock 87 | ======================= 88 | 89 | If you would like to improve the asdf recipe or build a new 90 | package version, please fork this repository and submit a PR. Upon submission, 91 | your changes will be run on the appropriate platforms to give the reviewer an 92 | opportunity to confirm that the changes result in a successful build. Once 93 | merged, the recipe will be re-built and uploaded automatically to the 94 | `conda-forge` channel, whereupon the built conda packages will be available for 95 | everybody to install and use from the `conda-forge` channel. 96 | Note that all branches in the conda-forge/asdf-feedstock are 97 | immediately built and any created packages are uploaded, so PRs should be based 98 | on branches in forks and branches in the main repository should only be used to 99 | build distinct package versions. 100 | 101 | In order to produce a uniquely identifiable distribution: 102 | * If the version of a package **is not** being increased, please add or increase 103 | the [``build/number``](http://conda.pydata.org/docs/building/meta-yaml.html#build-number-and-string). 104 | * If the version of a package **is** being increased, please remember to return 105 | the [``build/number``](http://conda.pydata.org/docs/building/meta-yaml.html#build-number-and-string) 106 | back to 0. 107 | --------------------------------------------------------------------------------