After the previous patches, OSv now correctly builds on Fedora 32. So support Fedora 32 in setup.py. The same packages needed in previous Fedora releases are also needed in Fedora 32.
Signed-off-by: Nadav Har'El <[email protected]> --- scripts/setup.py | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/scripts/setup.py b/scripts/setup.py index 14f276d3..13062c58 100755 --- a/scripts/setup.py +++ b/scripts/setup.py @@ -119,7 +119,14 @@ class Fedora(object): ec2_post_install = None version = '31' - versions = [Fedora_25, Fedora_26, Fedora_27, Fedora_28, Fedora_29, Fedora_30, Fedora_31] + class Fedora_32(object): + packages = [] + ec2_packages = [] + test_packages = [] + ec2_post_install = None + version = '32' + + versions = [Fedora_25, Fedora_26, Fedora_27, Fedora_28, Fedora_29, Fedora_30, Fedora_31, Fedora_32] class RHELbased(Fedora): name = ['Scientific Linux', 'NauLinux', 'CentOS Linux', 'Red Hat Enterprise Linux', 'Oracle Linux'] -- 2.26.2 -- You received this message because you are subscribed to the Google Groups "OSv Development" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. To view this discussion on the web visit https://groups.google.com/d/msgid/osv-dev/20200523204734.71598-3-nyh%40scylladb.com.
