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:
name: ipaaca
version: "0.1.0"
version: "0.1.1"
source:
- path: ../ipaacalib/cpp/
......@@ -11,7 +13,8 @@ source:
folder: proto
build:
number: 1
number: 4
requirements:
build:
......@@ -23,17 +26,21 @@ requirements:
outputs:
- name: ipaaca-cpp
# run_exports:
# strong:
# - {{ pin_compatible('libprotobuf', max_pin='x.x') }}
script: install_cpp.sh
requirements:
host:
- protobuf
- libprotobuf {{ protobufversion }}
- mosquitto
- libboost
run:
- mosquitto
- {{ pin_compatible('libprotobuf') }}
- {{ pin_compatible('libprotobuf', max_pin='x.x') }}
- libboost
- name: ipaaca-py
noarch: python
script: install_python.sh
......@@ -42,13 +49,13 @@ outputs:
- python
- pip
- setuptools
- protobuf
- protobuf {{ protobufversion }}
run:
- python
- mosquitto
- paho-mqtt
- protobuf
- {{ pin_compatible('protobuf', max_pin='x.x') }}
# requirements:
# 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