Skip to content
Snippets Groups Projects
Commit be58867f authored by Jan Pöppel's avatar Jan Pöppel
Browse files

fixed protobuf version in ipaaca recipe to avoid incompatibilities

parent 66bb9bef
No related branches found
No related tags found
No related merge requests found
{% set protobufversion = "3.8.0" %}
package: package:
name: ipaaca name: ipaaca
version: "0.1.0" version: "0.1.1"
source: source:
- path: ../ipaacalib/cpp/ - path: ../ipaacalib/cpp/
...@@ -11,7 +13,8 @@ source: ...@@ -11,7 +13,8 @@ source:
folder: proto folder: proto
build: build:
number: 1 number: 4
requirements: requirements:
build: build:
...@@ -23,17 +26,21 @@ requirements: ...@@ -23,17 +26,21 @@ requirements:
outputs: outputs:
- name: ipaaca-cpp - name: ipaaca-cpp
# run_exports:
# strong:
# - {{ pin_compatible('libprotobuf', max_pin='x.x') }}
script: install_cpp.sh script: install_cpp.sh
requirements: requirements:
host: host:
- protobuf - libprotobuf {{ protobufversion }}
- mosquitto - mosquitto
- libboost - libboost
run: run:
- mosquitto - mosquitto
- {{ pin_compatible('libprotobuf') }} - {{ pin_compatible('libprotobuf', max_pin='x.x') }}
- libboost - libboost
- name: ipaaca-py - name: ipaaca-py
noarch: python noarch: python
script: install_python.sh script: install_python.sh
...@@ -42,13 +49,13 @@ outputs: ...@@ -42,13 +49,13 @@ outputs:
- python - python
- pip - pip
- setuptools - setuptools
- protobuf - protobuf {{ protobufversion }}
run: run:
- python - python
- mosquitto - mosquitto
- paho-mqtt - paho-mqtt
- protobuf - {{ pin_compatible('protobuf', max_pin='x.x') }}
# requirements: # requirements:
# build: # build:
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment