commit azure-cli-cloud for openSUSE:Factory
Hello community, here is the log from the commit of package azure-cli-cloud for openSUSE:Factory checked in at 2019-05-22 10:59:07 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/azure-cli-cloud (Old) and /work/SRC/openSUSE:Factory/.azure-cli-cloud.new.5148 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Package is "azure-cli-cloud" Wed May 22 10:59:07 2019 rev:5 rq:696821 version:2.1.1 Changes: -------- --- /work/SRC/openSUSE:Factory/azure-cli-cloud/azure-cli-cloud.changes 2018-10-15 10:48:31.259064525 +0200 +++ /work/SRC/openSUSE:Factory/.azure-cli-cloud.new.5148/azure-cli-cloud.changes 2019-05-22 10:59:10.938832316 +0200 @@ -1,0 +2,15 @@ +Wed Apr 17 07:12:18 UTC 2019 - John Paul Adrian Glaubitz <adrian.glaubitz@suse.com> + +- New upstream release + + Version 2.1.1 + + For detailed information about changes see the + HISTORY.txt file provided with this package +- Bump minimum version for Python Azure SDK namespace + packages to 3.0.0 in BuildRequires and Requires +- Remove python3-devel package from BuildRequires +- Remove unzip package from BuildRequires +- Run fdupes to hardlink duplicate files + + Add fdupes to BuildRequires + + Add %fdupes invocation to %install + +------------------------------------------------------------------- Old: ---- azure-cli-cloud-2.1.0.tar.gz New: ---- azure-cli-cloud-2.1.1.tar.gz ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ azure-cli-cloud.spec ++++++ --- /var/tmp/diff_new_pack.N3HQhE/_old 2019-05-22 10:59:12.266830596 +0200 +++ /var/tmp/diff_new_pack.N3HQhE/_new 2019-05-22 10:59:12.302830549 +0200 @@ -1,7 +1,7 @@ # # spec file for package azure-cli-cloud # -# Copyright (c) 2018 SUSE LINUX GmbH, Nuernberg, Germany. +# Copyright (c) 2019 SUSE LINUX GmbH, Nuernberg, Germany. # # All modifications and additions to the file contributed by third parties # remain the property of their copyright owners, unless otherwise agreed @@ -17,7 +17,7 @@ Name: azure-cli-cloud -Version: 2.1.0 +Version: 2.1.1 Release: 0 Summary: Microsoft Azure CLI 'cloud' Command Module License: MIT @@ -27,14 +27,13 @@ Source1: LICENSE.txt BuildRequires: azure-cli-command-modules-nspkg BuildRequires: azure-cli-nspkg -BuildRequires: python3-azure-nspkg -BuildRequires: python3-devel +BuildRequires: fdupes +BuildRequires: python3-azure-nspkg >= 3.0.0 BuildRequires: python3-setuptools -BuildRequires: unzip Requires: azure-cli-command-modules-nspkg Requires: azure-cli-core Requires: azure-cli-nspkg -Requires: python3-azure-nspkg +Requires: python3-azure-nspkg >= 3.0.0 Conflicts: azure-cli < 2.0.0 BuildArch: noarch @@ -54,6 +53,7 @@ %install python3 setup.py install --root=%{buildroot} --prefix=%{_prefix} --install-lib=%{python3_sitelib} +%python_expand %fdupes %{buildroot}%{$python_sitelib} rm -rf %{buildroot}%{python3_sitelib}/azure/cli/command_modules/__init__.* rm -rf %{buildroot}%{python3_sitelib}/azure/cli/command_modules/__pycache__ rm -rf %{buildroot}%{python3_sitelib}/azure/cli/__init__.* ++++++ azure-cli-cloud-2.1.0.tar.gz -> azure-cli-cloud-2.1.1.tar.gz ++++++ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/azure-cli-cloud-2.1.0/HISTORY.rst new/azure-cli-cloud-2.1.1/HISTORY.rst --- old/azure-cli-cloud-2.1.0/HISTORY.rst 2018-07-14 01:41:34.000000000 +0200 +++ new/azure-cli-cloud-2.1.1/HISTORY.rst 2019-03-22 18:35:22.000000000 +0100 @@ -2,6 +2,9 @@ Release History =============== +2.1.1 ++++++ +* `az cloud set`: support cloud name case insensitive 2.1.0 +++++ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/azure-cli-cloud-2.1.0/PKG-INFO new/azure-cli-cloud-2.1.1/PKG-INFO --- old/azure-cli-cloud-2.1.0/PKG-INFO 2018-07-14 01:41:54.000000000 +0200 +++ new/azure-cli-cloud-2.1.1/PKG-INFO 2019-03-22 18:35:41.000000000 +0100 @@ -1,6 +1,6 @@ Metadata-Version: 1.1 Name: azure-cli-cloud -Version: 2.1.0 +Version: 2.1.1 Summary: Microsoft Azure Command-Line Tools Cloud Command Module Home-page: https://github.com/Azure/azure-cli Author: Microsoft Corporation @@ -16,6 +16,9 @@ Release History =============== + 2.1.1 + +++++ + * `az cloud set`: support cloud name case insensitive 2.1.0 +++++ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/azure-cli-cloud-2.1.0/azure/cli/command_modules/cloud/custom.py new/azure-cli-cloud-2.1.1/azure/cli/command_modules/cloud/custom.py --- old/azure-cli-cloud-2.1.0/azure/cli/command_modules/cloud/custom.py 2018-07-14 01:41:34.000000000 +0200 +++ new/azure-cli-cloud-2.1.1/azure/cli/command_modules/cloud/custom.py 2019-03-22 18:35:22.000000000 +0100 @@ -11,6 +11,7 @@ get_cloud, remove_cloud, add_cloud, + _get_cloud_name, switch_active_cloud, update_cloud, get_active_cloud_name, @@ -134,6 +135,7 @@ def set_cloud(cmd, cloud_name, profile=None): try: + cloud_name = _get_cloud_name(cmd.cli_ctx, cloud_name) switch_active_cloud(cmd.cli_ctx, cloud_name) if profile: modify_cloud(cmd, cloud_name=cloud_name, profile=profile) diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/azure-cli-cloud-2.1.0/azure_cli_cloud.egg-info/PKG-INFO new/azure-cli-cloud-2.1.1/azure_cli_cloud.egg-info/PKG-INFO --- old/azure-cli-cloud-2.1.0/azure_cli_cloud.egg-info/PKG-INFO 2018-07-14 01:41:54.000000000 +0200 +++ new/azure-cli-cloud-2.1.1/azure_cli_cloud.egg-info/PKG-INFO 2019-03-22 18:35:41.000000000 +0100 @@ -1,6 +1,6 @@ Metadata-Version: 1.1 Name: azure-cli-cloud -Version: 2.1.0 +Version: 2.1.1 Summary: Microsoft Azure Command-Line Tools Cloud Command Module Home-page: https://github.com/Azure/azure-cli Author: Microsoft Corporation @@ -16,6 +16,9 @@ Release History =============== + 2.1.1 + +++++ + * `az cloud set`: support cloud name case insensitive 2.1.0 +++++ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/azure-cli-cloud-2.1.0/setup.py new/azure-cli-cloud-2.1.1/setup.py --- old/azure-cli-cloud-2.1.0/setup.py 2018-07-14 01:41:34.000000000 +0200 +++ new/azure-cli-cloud-2.1.1/setup.py 2019-03-22 18:35:22.000000000 +0100 @@ -14,7 +14,7 @@ logger.warn("Wheel is not available, disabling bdist_wheel hook") cmdclass = {} -VERSION = "2.1.0" +VERSION = "2.1.1" CLASSIFIERS = [ 'Development Status :: 5 - Production/Stable', 'Intended Audience :: Developers',
participants (1)
-
root