oci-cli/oc_relax-python-depends.patch
Robert Schweikert fa81f375a1 Accepting request 820916 from home:glaubitz:branches:Cloud:Tools
- Update to version 2.12.2
  + Support for Autonomous DataWarehouse and Autonomous Transaction Processing features to
    allow switching from Non PE to PE (and vice versa) for existing databases as a part of
    the Database Service for Autonomous Databases
    * ``oci db autonomous-database update --private-endpoint-label ``
    * ``oci db autonomous-database update --subnet-id ``
  + Support for private endpoint (ingress) and public endpoint whitelisting in Analytics Service
    * ``oci analytics analytics-instance create --network-endpoint-details``
    * ``oci analytics analytics-instance change-network-endpoint --network-endpoint-details``
  + Support for re-encrypting an object in the Object Storage Service, by introducing a command
    line option to specify a new encryption key.
    * ``oci os object reencrypt``
  + Support to register and deregister autonomous dedicated databases with Datasafe
    * ``oci db autonomous-database data-safe register``
    * ``oci db autonomous-database data-safe deregister``
- from version 2.12.1
  + Support for Usage API service
    * ``oci usage``
  + Support for Oracle Cloud VMware Solution service
    * ``oci ocvs``
  + Support for one-off patches in Database service
    * ``oci db database patch --one-off-patches``
  + Support for Vlan features as part of support Layer 2 Virtual Networking
    * ``oci network vlan``
    * ``oci network private-ip list --vlan-id``
    * ``oci network vnic assign-private-ip --vlan-id``
    * ``oci compute instance attach-vnic --vlan-id``
  + Validator parameter added for updating tags in Identity service
    * ``oci iam tag update --validator``
  + Improve Create Instance Configuration to include the latest AttachVolumeDetails

OBS-URL: https://build.opensuse.org/request/show/820916
OBS-URL: https://build.opensuse.org/package/show/Cloud:Tools/oci-cli?expand=0&rev=9
2020-07-14 16:55:42 +00:00

118 lines
2.5 KiB
Diff

diff -Nru oci-cli-2.12.2.orig/requirements.txt oci-cli-2.12.2/requirements.txt
--- oci-cli-2.12.2.orig/requirements.txt 2020-07-08 03:48:28.000000000 +0200
+++ oci-cli-2.12.2/requirements.txt 2020-07-14 15:58:45.873672771 +0200
@@ -2,41 +2,40 @@
# (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.14.7
+appdirs>=1.4.3
+arrow>=0.14.7
certifi
cffi>=1.9.1
-click==6.7
-configparser==4.0.2
-coverage==4.5.2
-cryptography==2.8
-httpsig-cffi==15.0.0
+click>=6.7
+coverage>=4.5.2
+cryptography>=2.8
+httpsig-cffi>=15.0.0
idna>=2.5,<2.7
-Jinja2==2.10.1
-jmespath==0.9.4
-ndg-httpsclient==0.4.2
-mock==2.0.0
-oci==2.17.2
-packaging==16.8
-pluggy==0.4.0
-py==1.4.33
-pyasn1==0.2.3
-pyOpenSSL==18.0.0
-pycparser==2.17
-pyparsing==2.2.0
-pytest==3.2.3
-pytest-cov==2.5.1
+Jinja2>=2.10.1
+jmespath>=0.9.4
+ndg-httpsclient>=0.4.2
+mock>=2.0.0
+oci>=2.17.2
+packaging>=16.8
+pluggy>=0.4.0
+py>=1.4.33
+pyasn1>=0.2.3
+pyOpenSSL>=18.0.0
+pycparser>=2.17
+pyparsing>=2.2.0
+pytest>=3.2.3
+pytest-cov>=2.5.1
python-dateutil>=2.5.3,<3.0.0
pytz>=2016.10
-requests==2.21.0
-retrying==1.3.3
-six==1.14.0
-sphinx==1.6.4
-sphinx-rtd-theme==0.2.5b1
-terminaltables==3.1.0
-tox==2.9.1
-vcrpy==1.13.0
-virtualenv==15.1.0
-pytest-xdist==1.22.2
-pytest-forked==1.0.2
-PyYAML==5.1.2
+requests>=2.21.0
+retrying>=1.3.3
+six>=1.14.0
+sphinx>=1.6.4
+sphinx-rtd-theme>=0.2.5b1
+terminaltables>=3.1.0
+tox>=2.9.1
+vcrpy>=1.13.0
+virtualenv>=15.1.0
+pytest-xdist>=1.22.2
+pytest-forked>=1.0.2
+PyYAML>=5.1.2
diff -Nru oci-cli-2.12.2.orig/setup.py oci-cli-2.12.2/setup.py
--- oci-cli-2.12.2.orig/setup.py 2020-07-08 03:48:28.000000000 +0200
+++ oci-cli-2.12.2/setup.py 2020-07-14 15:58:28.465513573 +0200
@@ -30,25 +30,24 @@
readme = f.read()
requires = [
- 'oci==2.17.2',
- 'arrow==0.14.7',
+ 'oci>=2.17.2',
+ 'arrow>=0.14.7',
'certifi',
- 'click==6.7',
- 'configparser==4.0.2',
- 'cryptography==2.8',
- 'jmespath==0.9.4',
+ 'click>=6.7',
+ 'cryptography>=2.8',
+ 'jmespath>=0.9.4',
'python-dateutil>=2.5.3,<3.0.0',
'pytz>=2016.10',
- 'retrying==1.3.3',
- 'six==1.14.0',
- 'terminaltables==3.1.0',
+ 'retrying>=1.3.3',
+ 'six>=1.14.0',
+ 'terminaltables>=3.1.0',
'idna>=2.5,<2.7',
- 'pyOpenSSL==18.0.0',
- 'PyYAML==5.1.2'
+ 'pyOpenSSL>=18.0.0',
+ 'PyYAML>=5.1.2'
]
extras = {
- 'db': ['cx_Oracle==7.0']
+ 'db': ['cx_Oracle>=7.0']
}
fips_libcrypto_file = os.getenv("OCI_CLI_FIPS_LIBCRYPTO_FILE")