Skip to content

Commit

Permalink
Merge pull request #9 from ocefpaf/bump
Browse files Browse the repository at this point in the history
Bump
  • Loading branch information
ocefpaf committed Aug 17, 2016
2 parents 6b6142e + c81f87c commit 4d6292d
Show file tree
Hide file tree
Showing 5 changed files with 16 additions and 23 deletions.
8 changes: 3 additions & 5 deletions .travis.yml
Expand Up @@ -23,12 +23,10 @@ install:
bash $MINICONDA_FILE -b
export PATH=/Users/travis/miniconda3/bin:$PATH
conda config --set show_channel_urls true
conda update --yes conda
conda install --yes conda-build jinja2 anaconda-client
conda config --add channels conda-forge
conda config --set show_channel_urls true
conda install --yes --quiet conda-forge-build-setup
source run_conda_forge_build_setup
script:
- conda build ./recipe
Expand Down
6 changes: 3 additions & 3 deletions README.md
Expand Up @@ -38,7 +38,7 @@ About conda-forge

conda-forge is a community-led conda channel of installable packages.
In order to provide high-quality builds, the process has been automated into the
conda-forge GitHub organization. The conda-forge organization contains one repository
conda-forge GitHub organization. The conda-forge organization contains one repository
for each of the installable packages. Such a repository is known as a *feedstock*.

A feedstock is made up of a conda recipe (the instructions on what and how to build
Expand Down Expand Up @@ -71,7 +71,7 @@ Current build status
====================

Linux: [![Circle CI](https://circleci.com/gh/conda-forge/libpng-feedstock.svg?style=svg)](https://circleci.com/gh/conda-forge/libpng-feedstock)
OSX: [![TravisCI](https://travis-ci.org/conda-forge/libpng-feedstock.svg?branch=master)](https://travis-ci.org/conda-forge/libpng-feedstock)
OSX: [![TravisCI](https://travis-ci.org/conda-forge/libpng-feedstock.svg?branch=master)](https://travis-ci.org/conda-forge/libpng-feedstock)
Windows: [![AppVeyor](https://ci.appveyor.com/api/projects/status/github/conda-forge/libpng-feedstock?svg=True)](https://ci.appveyor.com/project/conda-forge/libpng-feedstock/branch/master)

Current release info
Expand All @@ -92,7 +92,7 @@ install and use.

In order to produce a uniquely identifiable distribution:
* If the version of a package **is not** being increased, please add or increase
the [``build/number``](http://conda.pydata.org/docs/building/meta-yaml.html#build-number-and-string).
the [``build/number``](http://conda.pydata.org/docs/building/meta-yaml.html#build-number-and-string).
* If the version of a package **is** being increased, please remember to return
the [``build/number``](http://conda.pydata.org/docs/building/meta-yaml.html#build-number-and-string)
back to 0.
12 changes: 4 additions & 8 deletions appveyor.yml
@@ -1,6 +1,6 @@
# This file was automatically generated by conda-smithy. To update a component of this
# file, make changes to conda-forge.yaml and/or recipe/meta.yaml, and run
# "conda-smithy regenerate".
# "conda smithy rerender".

environment:

Expand Down Expand Up @@ -58,18 +58,14 @@ install:
- cmd: rmdir C:\cygwin /s /q
- appveyor DownloadFile "https://raw.githubusercontent.com/pelson/Obvious-CI/master/bootstrap-obvious-ci-and-miniconda.py"
- cmd: python bootstrap-obvious-ci-and-miniconda.py %CONDA_INSTALL_LOCN% %TARGET_ARCH% %CONDA_PY:~0,1% --without-obvci
- cmd: set PATH=%CONDA_INSTALL_LOCN%;%CONDA_INSTALL_LOCN%\scripts;%PATH%
- cmd: call %CONDA_INSTALL_LOCN%\Scripts\activate.bat
- cmd: set PYTHONUNBUFFERED=1

- cmd: conda config --set show_channel_urls true
- cmd: conda install -c pelson/channel/development --yes --quiet obvious-ci
- cmd: conda config --add channels conda-forge
- cmd: conda info
- cmd: conda install -n root --quiet --yes conda-build anaconda-client jinja2 setuptools
# Workaround for Python 3.4 and x64 bug in latest conda-build.
# FIXME: Remove once there is a release that fixes the upstream issue
# ( https://github.com/conda/conda-build/issues/895 ).
- cmd: if "%TARGET_ARCH%" == "x64" if "%CONDA_PY%" == "34" conda install conda-build=1.20.0 --yes
- cmd: conda install -n root --quiet --yes conda-forge-build-setup
- cmd: run_conda_forge_build_setup

# Skip .NET project specific build phase.
build: off
Expand Down
6 changes: 2 additions & 4 deletions ci_support/run_docker_build.sh
Expand Up @@ -14,7 +14,6 @@ config=$(cat <<CONDARC
channels:
- conda-forge
- defaults # As we need conda-build
conda-build:
Expand All @@ -39,9 +38,8 @@ echo "$config" > ~/.condarc
# A lock sometimes occurs with incomplete builds. The lock file is stored in build_artefacts.
conda clean --lock
conda update --yes --all
conda install --yes conda-build
conda info
conda install --yes --quiet conda-forge-build-setup
source run_conda_forge_build_setup
# Embarking on 1 case(s).
conda build /recipe_root --quiet || exit 1
Expand Down
7 changes: 4 additions & 3 deletions recipe/meta.yaml
@@ -1,4 +1,4 @@
{% set version = "1.6.23" %}
{% set version = "1.6.24" %}

package:
name: libpng
Expand All @@ -7,7 +7,7 @@ package:
source:
fn: libpng-{{ version }}.tar.gz
url: ftp://ftp.simplesystems.org/pub/libpng/png/src/libpng16/libpng-{{ version }}.tar.gz
sha256: 74a9db9ddd66caa64be82bfcb3cbec4fc4394ceb1053cb7e94b2a0aa9b78eb88
sha256: be46e0d14ccac3800f816ae860d191a1187a40164b7552c44afeee97a9caa0a3

build:
number: 0
Expand All @@ -34,7 +34,8 @@ test:
- test -f ${PREFIX}/lib/libpng.so # [linux]
- test -f ${PREFIX}/lib/libpng.dylib # [osx]
- libpng-config --version # [not win]
- conda inspect linkages -n _test libpng # [linux]
- conda inspect linkages -n _test libpng # [not win]
- conda inspect objects -n _test libpng # [osx]

about:
home: http://www.libpng.org/pub/png/libpng.html
Expand Down

0 comments on commit 4d6292d

Please sign in to comment.