Skip to content
This repository has been archived by the owner on Mar 22, 2021. It is now read-only.

Commit

Permalink
Validated conan package for release 1.7.
Browse files Browse the repository at this point in the history
  • Loading branch information
m-spiessens committed Aug 27, 2018
1 parent 04ee4e8 commit e896650
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 5 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -11,3 +11,4 @@ Release
.externalToolBuilders
/__pycache__/
/documentation/
test_package/build/
10 changes: 5 additions & 5 deletions conan/Flow/conanfile.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

class FlowCore(ConanFile):
name = "Flow"
version = "1.6"
version = "1.7"
description = """Flow is a pipes and filters implementation tailored for microcontrollers.
It provides 3 base concepts: component, port and connection."""
url = "https://github.com/CynaraKrewe/Flow"
Expand All @@ -14,10 +14,10 @@ class FlowCore(ConanFile):
build_policy = "missing"

def source(self):
download("https://github.com/CynaraKrewe/Flow/archive/v1.6.zip", "Flow-1.6.zip")
unzip("Flow-1.6.zip")
shutil.move("Flow-1.6", "Flow")
os.unlink("Flow-1.6.zip")
download("https://github.com/CynaraKrewe/Flow/archive/v1.7.zip", "Flow-1.7.zip")
unzip("Flow-1.7.zip")
shutil.move("Flow-1.7", "Flow")
os.unlink("Flow-1.7.zip")

def build(self):
self.output.info("Nothing to build, this package provides sources.")
Expand Down

0 comments on commit e896650

Please sign in to comment.