[py-watchdog] added version 2.1.6 (#29137)
* [py-watchdog] switched to pypi and audited dependencies * [py-watchdog] added version 2.1.6 * [py-watchdog] updated dependencies for old versions * [py-watchdog] added when for variant * [py-watchdog] added some newlines to make flake8 happy
This commit is contained in:
parent
c3b6b3036d
commit
f5a2d87eb2
1 changed files with 43 additions and 14 deletions
|
@ -10,19 +10,48 @@ class PyWatchdog(PythonPackage):
|
|||
"""Python library and shell utilities to monitor filesystem events."""
|
||||
|
||||
homepage = "https://github.com/gorakhargosh/watchdog"
|
||||
url = "https://github.com/gorakhargosh/watchdog/archive/v0.10.3.tar.gz"
|
||||
pypi = "watchdog/watchdog-0.10.3.tar.gz"
|
||||
|
||||
version('0.10.3', sha256='f7e5040b483cc9a8618a4e72c11a527b42434a0766ea96dce633e8b44b1369de')
|
||||
version('0.10.2', sha256='4dba861f5e6960c8063ad68137772ff35f1516ea47d64b53042dabd2d8f8dbdc')
|
||||
version('0.10.1', sha256='972c6050eb5d275b582c75e6ff71ef562a6c3be6361d6d9b37110e0ba718994d')
|
||||
version('0.10.0', sha256='39e2966b8c9596e45b463815668989b87c7d205e47c7e6e4a7db9a58354b99ff')
|
||||
version('0.9.0', sha256='e8a32701dff43a4e671a40acf92f55a8fffd8ca74333b75436d63a94d104faef')
|
||||
version('0.8.3', sha256='e9a27d0ab121fc86217ab833e778c76880aad4ecdb623796f4b7aee9925394ed')
|
||||
version('0.8.2', sha256='386e882c8bc7df8a3c4c8803e6fcf2f7cf836c9a8867ff9d91b4af19d262d023')
|
||||
version('0.8.1', sha256='05e5d8acd5061aff789359cd8f25a85ba4c848a8feded3fc68f9c57f0b181373')
|
||||
version('0.8.0', sha256='5abac06e63ad8d5b001626a16bfdd1b918637aa8d85cf933e68de2e627b56053')
|
||||
version('0.7.1', sha256='d795fa85ce9252eeb2294a5182c99013433aeb736cc7a1fc9e14e1e2a1a19690')
|
||||
version('2.1.6', sha256='a36e75df6c767cbf46f61a91c70b3ba71811dfa0aca4a324d9407a06a8b7a2e7')
|
||||
version('0.10.3', sha256='4214e1379d128b0588021880ccaf40317ee156d4603ac388b9adcf29165e0c04')
|
||||
version('0.10.2', sha256='c560efb643faed5ef28784b2245cf8874f939569717a4a12826a173ac644456b')
|
||||
version('0.10.1', sha256='d64786787b14c8c6a71a8cc014056776ba6b52e85d1164ef2ab50aec02723a3d')
|
||||
version('0.10.0', sha256='8e800496cdfb921cfdc62b58a11966d0d2203a35dc005b4b5b8e1ab3097b2eb5')
|
||||
version('0.9.0', sha256='965f658d0732de3188211932aeb0bb457587f04f63ab4c1e33eab878e9de961d')
|
||||
version('0.8.3', sha256='7e65882adb7746039b6f3876ee174952f8eaaa34491ba34333ddf1fe35de4162')
|
||||
version('0.8.2', sha256='33a9ab3ce2e6b1aca4d2a50752231668d69bdba4ab096d9742195ccfbef1e023')
|
||||
version('0.8.1', sha256='d6ec6be582b244834a888c8ccc2d451816184ab104b5454b5e5cd7649e8f671c')
|
||||
version('0.8.0', sha256='a86bb2d8b94bb4bf76fcc2ff36f741c0e511ec24c4d3a1059b47d49e377d64f5')
|
||||
version('0.7.1', sha256='54ca64fdf0a2fb23cecba6349f9587e62fd31840ae22a71898a65adb8c6b52f9')
|
||||
|
||||
depends_on('python@2.7,3.4:', type=('build', 'run'))
|
||||
depends_on('py-setuptools', type='build')
|
||||
depends_on('py-pyyaml', type=('build', 'run'))
|
||||
variant('watchmedo', default=False, when='@0.10:', description="Build optional watchmedo utility script")
|
||||
|
||||
depends_on('python@2.6:2,3.2:', type=('build', 'run'), when='@0.9.0:')
|
||||
depends_on('python@2.7:2,3.4:', type=('build', 'run'), when='@0.10.0:')
|
||||
depends_on('python@3.6:', type=('build', 'run'), when='@2.1.6:')
|
||||
|
||||
depends_on('py-setuptools', type='build')
|
||||
|
||||
depends_on('py-pyyaml@3.9:', type=('build', 'run'), when='@0.7.1')
|
||||
depends_on('py-pyyaml@3.10:', type=('build', 'run'), when='@0.8.0:0.8.3')
|
||||
depends_on('py-pyyaml@:3.12', type=('build', 'run'), when='@0.9.0 ^python@3.2')
|
||||
depends_on('py-pyyaml@3.10:', type=('build', 'run'), when='@0.9.0 ^python@2.6:2,3.3:')
|
||||
depends_on('py-pyyaml@3.10:', type=('build', 'run'), when='@0.10.0: +watchmedo')
|
||||
depends_on('py-pyyaml@3.10:', type=('build', 'run'), when='@2.1.6: +watchmedo')
|
||||
|
||||
depends_on('py-argh@0.8.1:', type=('build', 'run'), when='@0.7.1')
|
||||
depends_on('py-argh@0.24.1:', type=('build', 'run'), when='@0.8.0:0.9.0')
|
||||
depends_on('py-argh@0.24.1:', type=('build', 'run'), when='@0.10.0:0.10.3 +watchmedo')
|
||||
|
||||
depends_on('py-pathtools@0.1.1:', type=('build', 'run'), when='@0:0.10.3')
|
||||
|
||||
# Missing dependencies
|
||||
conflicts('platform=darwin', when='@0.10.0:0.10.1')
|
||||
# depends_on('py-pyobjc-framework-cocoa@4.2.2:',
|
||||
# when='@0.10.0:0.10.1 platform=darwin')
|
||||
# depends_on('py-pyobjc-framework-fsevents@4.2.2:',
|
||||
# when='@0.10.0:0.10.1 platform=darwin')
|
||||
|
||||
# Missing dependencies
|
||||
conflicts('platform=darwin', when='@:0.9.0 ^python@:2.6')
|
||||
# depends_on('py-select-backport@0.2:', when='@:0.9.0 ^python@:2.6 platform=darwin')
|
||||
|
|
Loading…
Reference in a new issue