SHA256
1
0
forked from pool/oci-cli
oci-cli/oc_relax-python-depends.patch
John Paul Adrian Glaubitz 91e51463de Accepting request 1095998 from home:glaubitz:branches:Cloud:Tools
- Update to version 3.29.2
  * Support for the OS Management Hub service
    * ``oci os-management-hub``
  * Support for ECPU integration in the License Manager service
    * ``oci license-manager product-license list-top-utilized-resources --resource-unit-type ECPU``
  * Support for SqlEndpoints in the Data Flow service
    * ``oci data-flow sql-endpoint``
  * Support for freeform and defined tags in the Artifacts service
    * ``oci artifacts container repository create --freeform-tags --defined-tags``
    * ``oci artifacts container repository update --freeform-tags --defined-tags``
    * ``oci artifacts container image update --freeform-tags --defined-tags``
    * ``oci artifacts container image-signature create --freeform-tags --defined-tags``
    * ``oci artifacts container image-signature update --freeform-tags --defined-tags``
  * Support for OS Management Hub in the OS Management Hub service
  * Mysql Database Service
    * Support for new optional parameters that allow to set up replication delay.
      * ``oci mysql channel create-from-mysql --target-delay-in-seconds``
      * ``oci mysql channel update-from-mysql --target-delay-in-seconds``
    * Support for new optional parameters that allow to set up how to
      handle replicated tables that do not have a Primary Key.
      * ``oci mysql channel create-from-mysql --target-tables-without-primary-key-handling``
      * ``oci mysql channel update-from-mysql --target-tables-without-primary-key-handling``
  * Database Service
    * Support for the CDB key store type change
      * ``oci db database change-key-store-type``
    * Support for the PDB rotate key
      * ``oci db pluggable-database rotate-encryption-key --pluggable-database-id``
  * Database Management Service
    * Support for SQL Plan Management(SPM)
      * ``oci database-management managed-database list-sql-plan-baselines``

OBS-URL: https://build.opensuse.org/request/show/1095998
OBS-URL: https://build.opensuse.org/package/show/Cloud:Tools/oci-cli?expand=0&rev=90
2023-07-03 13:37:10 +00:00

118 lines
2.9 KiB
Diff

diff -Nru oci-cli-3.29.2.orig/requirements.txt oci-cli-3.29.2/requirements.txt
--- oci-cli-3.29.2.orig/requirements.txt 2023-06-28 00:37:36.000000000 +0200
+++ oci-cli-3.29.2/requirements.txt 2023-06-29 14:08:48.758204203 +0200
@@ -2,44 +2,44 @@
# (https://pip.pypa.io/en/stable/reference/pip_install/#requirements-file-format),
# you may need to use the --extra-index-url option instead.
-appdirs==1.4.3
+appdirs>=1.4.3
arrow>=1.0.0
certifi
cffi>=1.9.1
-click==8.0.4
-coverage==4.5.2
-cryptography>=3.2.1,<40.0.0
-httpsig-cffi==15.0.0
-Jinja2==3.0.3
-jmespath==0.10.0
-ndg-httpsclient==0.4.2
-mock==2.0.0
-oci==2.105.0
-packaging==20.2
-pluggy==0.13.0
-py==1.10.0
-pyasn1==0.2.3
-pyOpenSSL>=17.5.0,<24.0.0
-pycparser==2.20
-pyparsing==2.2.0
-pytest==4.6.10; python_version <= '3.9'
-pytest==7.1.2; python_version >= '3.10'
-pytest-cov==2.5.1
-python-dateutil>=2.5.3,<3.0.0
+click>=8.0.4
+coverage>=4.5.2
+cryptography>=3.2.1
+httpsig-cffi>=15.0.0
+Jinja2>=3.0.3
+jmespath>=0.10.0
+ndg-httpsclient>=0.4.2
+mock>=2.0.0
+oci>=2.105.0
+packaging>=20.2
+pluggy>=0.13.0
+py>=1.10.0
+pyasn1>=0.2.3
+pyOpenSSL>=17.5.0
+pycparser>=2.20
+pyparsing>=2.2.0
+pytest>=4.6.10; python_version <= '3.9'
+pytest>=7.1.2; python_version >= '3.10'
+pytest-cov>=2.5.1
+python-dateutil>=2.5.3
pytz>=2016.10
-requests==2.21.0
+requests>=2.21.0
six>=1.15.0
-sphinx==3.3.0
-sphinx-rtd-theme==0.4.3
-terminaltables==3.1.0
-tox==3.23.0
-vcrpy==1.13.0; python_version <= '3.9'
-vcrpy==4.2.1; python_version >= '3.10'
-virtualenv==20.13.0
-pytest-xdist==1.22.2
-pytest-forked==1.0.2
-PyYAML>=5.4,<=6
-docutils==0.15.2
-prompt-toolkit==3.0.29
+sphinx>=3.3.0
+sphinx-rtd-theme>=0.4.3
+terminaltables>=3.1.0
+tox>=3.23.0
+vcrpy>=1.13.0; python_version <= '3.9'
+vcrpy>=4.2.1; python_version >= '3.10'
+virtualenv>=20.13.0
+pytest-xdist>=1.22.2
+pytest-forked>=1.0.2
+PyYAML>=5.4
+docutils>=0.15.2
+prompt-toolkit>=3.0.29
setuptools>65.5.1; python_version > '3.6'
-setuptools==59.6.0; python_version == '3.6'
\ No newline at end of file
+setuptools>=59.6.0; python_version >= '3.6'
diff -Nru oci-cli-3.29.2.orig/setup.py oci-cli-3.29.2/setup.py
--- oci-cli-3.29.2.orig/setup.py 2023-06-28 00:37:36.000000000 +0200
+++ oci-cli-3.29.2/setup.py 2023-06-29 14:08:07.717216704 +0200
@@ -30,23 +30,23 @@
readme = f.read()
requires = [
- 'oci==2.105.0',
+ 'oci>=2.105.0',
'arrow>=1.0.0',
'certifi',
- 'click==8.0.4',
+ 'click>=8.0.4',
'cryptography>=3.2.1,<40.0.0',
- 'jmespath==0.10.0',
+ 'jmespath>=0.10.0',
'python-dateutil>=2.5.3,<3.0.0',
'pytz>=2016.10',
'six>=1.15.0',
- 'terminaltables==3.1.0',
+ 'terminaltables>=3.1.0',
'pyOpenSSL>=17.5.0,<24.0.0',
'PyYAML>=5.4,<=6',
- 'prompt-toolkit==3.0.29'
+ 'prompt-toolkit>=3.0.29'
]
extras = {
- 'db': ['cx_Oracle==8.3']
+ 'db': ['cx_Oracle>=8.3']
}
fips_libcrypto_file = os.getenv("OCI_CLI_FIPS_LIBCRYPTO_FILE")