Skip to content

Commit

Permalink
update conda build scripts to include explicit epics base version
Browse files Browse the repository at this point in the history
  • Loading branch information
sveseli committed Jan 24, 2019
1 parent 6ca153e commit ad3cfc1
Show file tree
Hide file tree
Showing 3 changed files with 17 additions and 11 deletions.
2 changes: 2 additions & 0 deletions tools/conda/pvapy-conda/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,8 @@
TOP = ../../..
DEPLOY_CONF = $(TOP)/configure/DEPLOY.conf
PVA_PY_VERSION=$(shell cat $(DEPLOY_CONF) | grep PVA_PY_VERSION | cut -f2 -d'=')
EPICS_BASE_VERSION=$(shell cat $(DEPLOY_CONF) | grep EPICS_BASE_VERSION | cut -f2 -d'=')
BOOST_VERSION=$(shell cat $(DEPLOY_CONF) | grep BOOST_VERSION | cut -f2 -d'=')
ifeq ($(PVA_PY_VERSION),)
PVA_PY_VERSION=$(shell git rev-parse --short HEAD)
endif
Expand Down
20 changes: 11 additions & 9 deletions tools/conda/pvapy-conda/meta.yaml
Original file line number Diff line number Diff line change
@@ -1,10 +1,12 @@
package:
name: pvapy
version: 1.2.0rc4
version: 1.3.0

source:
git_rev: master
git_url: https://github.com/epics-base/pvaPy
# git_rev: master
# git_url: https://github.com/epics-base/pvaPy
path: ../../..


build:
number: 1
Expand All @@ -16,15 +18,15 @@ requirements:
build:
- python
- sphinx
- numpy
- epics-base
- pvapy-boost
- numpy>1.15
- epics-base=7.0.2
- pvapy-boost=1.69.0

run:
- python
- numpy
- epics-base
- pvapy-boost
- numpy>1.15
- epics-base=7.0.2
- pvapy-boost=1.69.0

about:
home: https://github.com/epics-base/pvaPy
Expand Down
6 changes: 4 additions & 2 deletions tools/conda/pvapy-conda/meta.yaml.template
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,10 @@ package:
version: PVA_PY_VERSION

source:
git_rev: PVA_PY_GIT_VERSION
git_url: https://github.com/epics-base/pvaPy
# git_rev: PVA_PY_GIT_VERSION
# git_url: https://github.com/epics-base/pvaPy
path: ../../..


build:
number: 1
Expand Down

0 comments on commit ad3cfc1

Please sign in to comment.