Updates rose definition (#4411)

* Adds z3 package

* Adds binwalk package

* Updates spot package definition

* Updates rose package definition

* Modifications for code review

* Fixes string formatting

* Remove python version requirement
This commit is contained in:
Josh Asplund
2017-06-14 10:43:50 -07:00
committed by Adam J. Stewart
parent f4f2f25838
commit bc2c4a14c2
4 changed files with 151 additions and 16 deletions

View File

@@ -28,10 +28,15 @@
class Spot(AutotoolsPackage):
"""Spot is a C++11 library for omega-automata manipulation and model
checking."""
homepage = "https://spot.lrde.epita.fr/index.html"
homepage = "https://spot.lrde.epita.fr/"
url = "http://www.lrde.epita.fr/dload/spot/spot-1.99.3.tar.gz"
version('1.99.3', 'd53adcb2d0fe7c69f45d4e595a58254e')
version('1.2.6', '799bf59ccdee646d12e00f0fe6c23902')
# depends_on("gcc@4.8:", type='build')
depends_on("python@3.2:")
variant('python', default=True, description='Enable python API')
depends_on("python@3.3:", when='@1.99.5: +python')
depends_on("python@3.2:", when='@1.99: +python')
depends_on("python@2:", when='+python')
depends_on('boost', when='@:1.2.6')