17
0
Files
python-apache-libcloud/gce_image_projects.patch
Daniel Garcia fccec6ec6e - Update to 3.9.0
* Common
    - Support for Python 3.9 which is EOL has been removed.
    - Indicate we also support Python 3.12 (non beta) and Python 3.13.
    - Support for Python 3.8 which is EOL has been removed.
    - Support for Python 3.7 which is EOL has been removed.
    - Types inheriting from ``libcloud.common.types.Type`` have been made hashable.
    - [NTT CIS] Fix invalid comparison in the ``XmlListConfig.__init__()`` method.
    - Update versions of build and packaging tools required to build the package.
  * Compute
    - [OpenStack] Add optional node port ID to attach the floating IP
      in OpenStack ex_attach_floating_ip_to_node function.
    - [OpenStack] Add metadata fields ``os_distro`` and ``os_version``
      provided by OpenStack Image API (if set) to the ``extra`` field
      of the OpenStack NodeImage.
    - [LINODE] Add support for cloud-init metadata support to
      create_node() Add new functions ``create_key_pair``,
      ``list_key_pairs``, and ``get_image``
    - [Azure ARM] Add a new argument to destroy_node() to also delete
      node's managed OS disk as part of the node's deletion.
    - [ECS] Add VPC IP and Elastic IP to ECS node as private and public IP.
    - [Azure ARM] When deleting a node, delete VM OS disk if it's a managed disk.
    - [Azure ARM] Add ``ex_resize_node()`` method.
    - [Equinix Metal] Fix ``list_nodes()`` method so it correctly
      handles NodeSize.ram attribute in case TB is returned.
    - [Equinix Metal] Deprecate facility API and replace it with metros location.
    - [Equinix Metal] Remove all the methods for managing volumes and
      volume snapshots. This functionality hasn't been supported on
      the server side for many years already.
    - [Amazon EC2] Update pricing and sizing data.

OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-apache-libcloud?expand=0&rev=139
2026-02-18 06:57:12 +00:00

40 lines
1.5 KiB
Diff

Index: apache_libcloud-3.9.0/libcloud/compute/drivers/gce.py
===================================================================
--- apache_libcloud-3.9.0.orig/libcloud/compute/drivers/gce.py
+++ apache_libcloud-3.9.0/libcloud/compute/drivers/gce.py
@@ -2040,12 +2040,19 @@ class GCENodeDriver(NodeDriver):
"debian-cloud": ["debian-8", "debian-9", "debian-10"],
"opensuse-cloud": ["opensuse-leap"],
"rhel-cloud": ["rhel-6", "rhel-7", "rhel-8"],
- "suse-cloud": ["sles-11", "sles-12", "sles-15"],
+ "suse-cloud": ["sles-12", "sles-15"],
"suse-byos-cloud": [
"sles-11-byos",
"sles-12-byos",
+ "sles-15-byos",
+ "sles-12-sp1-sap-byos",
"sles-12-sp2-sap-byos",
"sles-12-sp3-sap-byos",
+ "sles-12-sp4-sap-byos",
+ "sles-12-sp5-sap-byos",
+ "sles-15-sap-byos",
+ "sles-15-sp1-sap-byos",
+ "sles-15-sp1-chost-byos",
"suse-manager-proxy-byos",
"suse-manager-server-byos",
],
@@ -2053,7 +2060,13 @@ class GCENodeDriver(NodeDriver):
"sles-12-sp2-sap",
"sles-12-sp3-sap",
"sles-12-sp4-sap",
+ "sles-12-sp5-sap",
"sles-15-sap",
+ "sles-15-sp1-sap",
+ ],
+ "suse-sap-cal-cloud": [
+ "sles-12-sp1-sapcal",
+ "sles-12-sp3-sapcal",
],
"ubuntu-os-cloud": [
"ubuntu-1404-lts",