Statically add ZOL 0.6.5.11 to the feature matrix (#101)

This resolves #83.  While 0.6.5.11 is old, it still had feature flags.
Since the 0.6.x branch will not receive further minor releases,
this static change should be stable.

Signed-off-by: Garrett Fields <ghfields@gmail.com>
This commit is contained in:
Garrett Fields
2021-01-05 18:41:46 -05:00
committed by GitHub
parent d06e1a9b13
commit 3375ee0931

View File

@@ -32,6 +32,7 @@ def openzfs():
with urlopen('https://zfsonlinux.org') as web: with urlopen('https://zfsonlinux.org') as web:
versions = findall(r'download/zfs-([0-9.]+)', versions = findall(r'download/zfs-([0-9.]+)',
web.read().decode('utf-8', 'ignore')) web.read().decode('utf-8', 'ignore'))
versions.append("0.6.5.11")
for ver in set(versions): for ver in set(versions):
sources[ver] = ('https://raw.githubusercontent.com/openzfs/zfs/' sources[ver] = ('https://raw.githubusercontent.com/openzfs/zfs/'
'zfs-{}/man/man5/zpool-features.5'.format(ver)) 'zfs-{}/man/man5/zpool-features.5'.format(ver))