oci-cli/oc_relax-python-depends.patch
John Paul Adrian Glaubitz 21e294da3b Accepting request 903053 from home:glaubitz:branches:Cloud:Tools
- Update to version 2.25.4
  * Users can authenticate the CLI with only environment variables,
    a config does not need to exist
    * The following environment variables need to be set, OCI_CLI_USER, OCI_CLI_TENANCY,
      OCI_CLI_FINGERPRINT, OCI_CLI_KEY_FILE, OCI_CLI_REGION
    * Optional variable for passphrase, OCI_CLI_PASSPHRASE
  * Support for VMBM Pluggable Database feature as a part of the Database Service
    * ``oci db pluggable-database``
  * Support for cross-tenancy volume clone in Block Storage service
    * ``oci bv volume create --source-volume-id``
    * ``oci bv boot-volume create --source-volume-id``
  * Changed allowed versions of cryptography package to a range from 3.2.1 to 3.4.7
  * Following updates in installer scripts:
    * Use dnf, if available, to install python
    * Updated check for ubuntu/debian systems to use ID_LIKE/ID
      instead of NAME in /etc/os-release
  * oci setup bootstrap was causing a ``AttributeError: module 'oci' has no attribute 'identity'``
  - from version 2.25.3
  * Support for migrating an OKE cluster not integrated with your
    VCN to a VCN-Native cluster in Container Engine
    * ``oci ce cluster cluster-migrate-to-native-vcn``
    * ``oci ce cluster cluster-migrate-to-native-vcn-status``
  * Support for filtering of applications based on spark version in Data Flow service
    * ``oci data-flow application list --spark-version``
  * Support for registration and management of target databases in Data Safe service.
    * ``oci data-safe target-database create``
  * Support for Elastic Storage feature for Exadata Infrastructure
    resources for ExaCC in Database service.
    * ``oci db exadata-infrastructure create --compute-count``
    * ``oci db exadata-infrastructure update --additional-storage-count``

OBS-URL: https://build.opensuse.org/request/show/903053
OBS-URL: https://build.opensuse.org/package/show/Cloud:Tools/oci-cli?expand=0&rev=22
2021-06-30 09:24:12 +00:00

121 lines
2.6 KiB
Diff

diff -Nru oci-cli-2.25.4.orig/requirements.txt oci-cli-2.25.4/requirements.txt
--- oci-cli-2.25.4.orig/requirements.txt 2021-06-22 23:53:53.000000000 +0200
+++ oci-cli-2.25.4/requirements.txt 2021-06-29 11:03:08.743404407 +0200
@@ -2,41 +2,41 @@
# (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
-arrow==0.17.0
+appdirs>=1.4.3
+arrow>=0.17.0
certifi
cffi>=1.9.1
-click==6.7
-configparser==4.0.2
-coverage==4.5.2
-cryptography==3.3.2
-httpsig-cffi==15.0.0
-Jinja2==2.11.3
-jmespath==0.10.0
-ndg-httpsclient==0.4.2
-mock==2.0.0
-oci==2.40.1
-packaging==20.2
-pluggy==0.13.0
-py==1.10.0
-pyasn1==0.2.3
-pyOpenSSL==19.1.0
-pycparser==2.20
-pyparsing==2.2.0
-pytest==3.2.3
-pytest-cov==2.5.1
-python-dateutil>=2.5.3,<3.0.0
+click>=6.7
+configparser>=4.0.2
+coverage>=4.5.2
+cryptography>=3.3.2
+httpsig-cffi>=15.0.0
+Jinja2>=2.11.3
+jmespath>=0.10.0
+ndg-httpsclient>=0.4.2
+mock>=2.0.0
+oci>=2.40.1
+packaging>=20.2
+pluggy>=0.13.0
+py>=1.10.0
+pyasn1>=0.2.3
+pyOpenSSL>=19.1.0
+pycparser>=2.20
+pyparsing>=2.2.0
+pytest>=3.2.3
+pytest-cov>=2.5.1
+python-dateutil>=2.5.3
pytz>=2016.10
-requests==2.21.0
-retrying==1.3.3
+requests>=2.21.0
+retrying>=1.3.3
setuptools<45
-six==1.14.0
-sphinx==1.6.4
-sphinx-rtd-theme==0.2.5b1
-terminaltables==3.1.0
-tox==3.23.0
-vcrpy==1.13.0
-virtualenv==16.7.10
-pytest-xdist==1.22.2
-pytest-forked==1.0.2
-PyYAML>=5.4,<6
+six>=1.14.0
+sphinx>=1.6.4
+sphinx-rtd-theme>=0.2.5b1
+terminaltables>=3.1.0
+tox>=3.23.0
+vcrpy>=1.13.0
+virtualenv>=16.7.10
+pytest-xdist>=1.22.2
+pytest-forked>=1.0.2
+PyYAML>=5.4
diff -Nru oci-cli-2.25.4.orig/setup.py oci-cli-2.25.4/setup.py
--- oci-cli-2.25.4.orig/setup.py 2021-06-22 23:53:53.000000000 +0200
+++ oci-cli-2.25.4/setup.py 2021-06-29 11:03:26.806320907 +0200
@@ -30,24 +30,24 @@
readme = f.read()
requires = [
- 'oci==2.40.1',
- 'arrow==0.17.0',
+ 'oci>=2.40.1',
+ 'arrow>=0.17.0',
'certifi',
- 'click==6.7',
- 'configparser==4.0.2',
- 'cryptography>=3.2.1,<=3.4.7',
- 'jmespath==0.10.0',
- 'python-dateutil>=2.5.3,<3.0.0',
+ 'click>=6.7',
+ 'configparser>=4.0.2',
+ 'cryptography>=3.2.1',
+ 'jmespath>=0.10.0',
+ 'python-dateutil>=2.5.3',
'pytz>=2016.10',
- 'retrying==1.3.3',
- 'six==1.14.0',
- 'terminaltables==3.1.0',
- 'pyOpenSSL==19.1.0',
- 'PyYAML>=5.4,<6'
+ 'retrying>=1.3.3',
+ 'six>=1.14.0',
+ 'terminaltables>=3.1.0',
+ 'pyOpenSSL>=19.1.0',
+ 'PyYAML>=5.4'
]
extras = {
- 'db': ['cx_Oracle==7.0']
+ 'db': ['cx_Oracle>=7.0']
}
fips_libcrypto_file = os.getenv("OCI_CLI_FIPS_LIBCRYPTO_FILE")