[Python-modules-commits] [python-softlayer] 04/05: change version to 5.2.0-1 (UNRELEASED) New upstream release

Scott Kitterman kitterman at moszumanska.debian.org
Fri Sep 9 19:12:22 UTC 2016


This is an automated email from the git hooks/post-receive script.

kitterman pushed a commit to branch master
in repository python-softlayer.

commit 82fc31878853ede59d36f15be82e63e23abd1795
Merge: ae8acb4 8cb50c5
Author: Scott Kitterman <scott at kitterman.com>
Date:   Fri Sep 9 14:49:34 2016 -0400

    change version to 5.2.0-1 (UNRELEASED)
    New upstream release

 CHANGELOG                                          |  18 +
 CONTRIBUTING.md                                    |   4 +-
 CONTRIBUTORS                                       |   1 +
 README.rst                                         |   2 +-
 SoftLayer/API.py                                   |  68 +-
 SoftLayer/CLI/block/access/__init__.py             |   1 +
 SoftLayer/CLI/block/access/authorize.py            |  45 ++
 SoftLayer/CLI/block/access/list.py                 |  38 +
 SoftLayer/CLI/block/access/revoke.py               |  41 ++
 SoftLayer/CLI/block/cancel.py                      |  13 +-
 SoftLayer/CLI/block/detail.py                      |  51 +-
 SoftLayer/CLI/block/list.py                        |  15 +-
 SoftLayer/CLI/block/order.py                       |  23 +-
 SoftLayer/CLI/block/replication/__init__.py        |   1 +
 SoftLayer/CLI/block/replication/failback.py        |  25 +
 SoftLayer/CLI/block/replication/failover.py        |  30 +
 SoftLayer/CLI/block/replication/order.py           |  65 ++
 SoftLayer/CLI/block/snapshot/__init__.py           |   1 +
 SoftLayer/CLI/block/snapshot/cancel.py             |  40 ++
 SoftLayer/CLI/block/snapshot/create.py             |  24 +
 .../{snapshot_delete.py => snapshot/delete.py}     |   7 +-
 SoftLayer/CLI/block/snapshot/disable.py            |  29 +
 SoftLayer/CLI/block/snapshot/enable.py             |  58 ++
 .../block/{snapshot_list.py => snapshot/list.py}   |  23 +-
 SoftLayer/CLI/block/snapshot/order.py              |  52 ++
 SoftLayer/CLI/block/snapshot/restore.py            |  22 +
 SoftLayer/CLI/call_api.py                          |  34 +-
 SoftLayer/CLI/environment.py                       |   2 +-
 SoftLayer/CLI/file/__init__.py                     |   1 +
 SoftLayer/CLI/file/access/__init__.py              |   1 +
 SoftLayer/CLI/file/access/authorize.py             |  49 ++
 SoftLayer/CLI/file/access/list.py                  |  38 +
 SoftLayer/CLI/file/access/revoke.py                |  46 ++
 SoftLayer/CLI/file/cancel.py                       |  39 ++
 SoftLayer/CLI/file/detail.py                       | 111 +++
 SoftLayer/CLI/{block => file}/list.py              |  31 +-
 SoftLayer/CLI/{block => file}/order.py             |  35 +-
 SoftLayer/CLI/file/replication/__init__.py         |   1 +
 SoftLayer/CLI/file/replication/failback.py         |  26 +
 SoftLayer/CLI/file/replication/failover.py         |  30 +
 SoftLayer/CLI/file/replication/order.py            |  53 ++
 SoftLayer/CLI/file/snapshot/__init__.py            |   1 +
 SoftLayer/CLI/file/snapshot/cancel.py              |  40 ++
 SoftLayer/CLI/file/snapshot/create.py              |  24 +
 .../snapshot_delete.py => file/snapshot/delete.py} |   9 +-
 SoftLayer/CLI/file/snapshot/disable.py             |  29 +
 SoftLayer/CLI/file/snapshot/enable.py              |  58 ++
 .../snapshot_list.py => file/snapshot/list.py}     |  31 +-
 SoftLayer/CLI/file/snapshot/order.py               |  52 ++
 SoftLayer/CLI/file/snapshot/restore.py             |  22 +
 SoftLayer/CLI/formatting.py                        |  17 +-
 SoftLayer/CLI/hardware/detail.py                   |  28 +-
 SoftLayer/CLI/report/__init__.py                   |   1 +
 SoftLayer/CLI/report/bandwidth.py                  | 231 +++++++
 SoftLayer/CLI/routes.py                            |  45 +-
 .../CLI/{block/access_list.py => storage_utils.py} |  35 +-
 SoftLayer/CLI/subnet/detail.py                     |   3 +
 SoftLayer/CLI/subnet/list.py                       |  13 +-
 SoftLayer/CLI/ticket/upload.py                     |  37 +
 SoftLayer/CLI/virt/create_options.py               |   2 +-
 SoftLayer/CLI/virt/detail.py                       |  18 +-
 SoftLayer/consts.py                                |   2 +-
 SoftLayer/fixtures/SoftLayer_Account.py            |  24 +-
 SoftLayer/fixtures/SoftLayer_Hardware_Server.py    |  12 +-
 .../fixtures/SoftLayer_Metric_Tracking_Object.py   |   1 +
 SoftLayer/fixtures/SoftLayer_Network_Storage.py    |  59 +-
 SoftLayer/fixtures/SoftLayer_Ticket.py             |  12 +
 SoftLayer/fixtures/SoftLayer_Virtual_Guest.py      |   9 +-
 ...er_Virtual_Guest_Block_Device_Template_Group.py |   6 +-
 SoftLayer/managers/__init__.py                     |   2 +
 SoftLayer/managers/block.py                        | 492 +++++++------
 SoftLayer/managers/cdn.py                          |   8 +-
 SoftLayer/managers/dns.py                          |   6 +-
 SoftLayer/managers/file.py                         | 473 +++++++++++++
 SoftLayer/managers/firewall.py                     |   8 +-
 SoftLayer/managers/hardware.py                     |  66 +-
 SoftLayer/managers/image.py                        |   7 +-
 SoftLayer/managers/iscsi.py                        |   9 +-
 SoftLayer/managers/load_balancer.py                |   7 +-
 SoftLayer/managers/messaging.py                    |  10 +-
 SoftLayer/managers/metadata.py                     |   7 +-
 SoftLayer/managers/network.py                      |  18 +-
 SoftLayer/managers/object_storage.py               |   8 +-
 SoftLayer/managers/ordering.py                     |   4 +-
 SoftLayer/managers/sshkey.py                       |   7 +-
 SoftLayer/managers/ssl.py                          |   6 +-
 SoftLayer/managers/storage_utils.py                | 454 ++++++++++++
 SoftLayer/managers/ticket.py                       |  47 +-
 SoftLayer/managers/vs.py                           |  95 +--
 SoftLayer/testing/__init__.py                      |  11 +-
 SoftLayer/testing/xmlrpc.py                        |   7 +-
 debian/.git-dpm                                    |   6 +-
 debian/changelog                                   |   6 +
 debian/patches/1001-rename_sl.patch                |   4 +-
 docs/conf.py                                       |   4 +-
 docs/{ => dev}/cla-corporate.md                    |   0
 docs/{ => dev}/cla-individual.md                   |   0
 docs/dev/index.rst                                 |  23 +-
 setup.py                                           |   2 +-
 tests/CLI/helper_tests.py                          |  14 +
 tests/CLI/modules/block_tests.py                   | 304 +++++++-
 tests/CLI/modules/call_api_tests.py                |  45 ++
 tests/CLI/modules/file_tests.py                    | 400 +++++++++++
 tests/CLI/modules/report_tests.py                  | 185 +++++
 tests/CLI/modules/server_tests.py                  |   5 +-
 tests/CLI/modules/ticket_tests.py                  |  37 +
 tests/CLI/modules/vs_tests.py                      |   4 +-
 tests/api_tests.py                                 |  44 +-
 tests/managers/block_tests.py                      | 612 +++++++++++++++-
 tests/managers/file_tests.py                       | 766 +++++++++++++++++++++
 tests/managers/network_tests.py                    |  14 +-
 tests/resources/attachment_upload                  |   1 +
 112 files changed, 5668 insertions(+), 575 deletions(-)

diff --cc debian/.git-dpm
index 1098461,0000000..6a211a6
mode 100644,000000..100644
--- a/debian/.git-dpm
+++ b/debian/.git-dpm
@@@ -1,11 -1,0 +1,11 @@@
 +# see git-dpm(1) from git-dpm package
- 55026378aac196aefa80460b11bda74e700e40e7
- 55026378aac196aefa80460b11bda74e700e40e7
- 6245ba4560ae1a6a4f13dadcdc2df91e58aa5cd9
++8cb50c57df7229a05581ff0d69f65e41e9b14ee4
++8cb50c57df7229a05581ff0d69f65e41e9b14ee4
++08809a72b57bec66c5b7cd6b97af2baeb4d8e396
 +08809a72b57bec66c5b7cd6b97af2baeb4d8e396
 +python-softlayer_5.2.0.orig.tar.gz
 +07daf27740bc739d77136807a96899e820bcb6c2
 +216334
 +debianTag="debian/%e%v"
 +patchedTag="patched/%e%v"
 +upstreamTag="upstream/%e%u"
diff --cc debian/changelog
index 0ae243a,0000000..916e2b0
mode 100644,000000..100644
--- a/debian/changelog
+++ b/debian/changelog
@@@ -1,123 -1,0 +1,129 @@@
++python-softlayer (5.2.0-1) UNRELEASED; urgency=medium
++
++  * New upstream release
++
++ -- Scott Kitterman <scott at kitterman.com>  Fri, 09 Sep 2016 14:49:35 -0400
++
 +python-softlayer (5.1.0-1) unstable; urgency=medium
 +
 +  * New upstream release
 +  * Remove uupdate from debian/watch as it is no longer useful with the
 +    current DPMT packaging approach
 +  * Bump standards version to 3.9.8 without further change
 +  * Add missing depends on python/python3-pygments (it had previously
 +    been pulled in indirectly)
 +  * Add version constraints for depends based on upstream requirements
 +  * Add missing depends on python/python3-click (it is normally pulled
 +    in indirectly)
 +  * Update debian/copyright
 +
 + -- Scott Kitterman <scott at kitterman.com>  Thu, 26 May 2016 08:31:42 -0400
 +
 +python-softlayer (5.0.1-1) unstable; urgency=medium
 +
 +  [ Ondřej Nový ]
 +  * Fixed homepage (https)
 +  * Fixed VCS URL (https)
 +
 +  [ Scott Kitterman ]
 +  * New upstream release
 +  * Bump standards version to 3.9.7
 +
 + -- Scott Kitterman <scott at kitterman.com>  Sat, 02 Apr 2016 22:42:21 -0400
 +
 +python-softlayer (4.1.1-2) unstable; urgency=medium
 +
 +  * Fix package depends for python3-softlayer (spell python3-prompt-toolkit
 +    correctly)
 +
 + -- Scott Kitterman <scott at kitterman.com>  Sun, 13 Sep 2015 23:42:48 -0400
 +
 +python-softlayer (4.1.1-1) unstable; urgency=medium
 +
 +  * New upstream release
 +  * Add myself to debian/copyright for Debian packaging
 +  * Add python{3}-prompt-toolkit to Depends as the package uses it now
 +
 + -- Scott Kitterman <scott at kitterman.com>  Fri, 11 Sep 2015 08:09:24 -0400
 +
 +python-softlayer (4.0.4-1) unstable; urgency=medium
 +
 +  * New upstream release
 +  * Update debian/copyright
 +  * Add debian uupdate to debian/watch
 +
 + -- Scott Kitterman <scott at kitterman.com>  Tue, 07 Jul 2015 22:58:31 -0400
 +
 +python-softlayer (4.0.3-2) unstable; urgency=medium
 +
 +  * Update debian/python*-softlayer.prerm and postinst to provide alternatives
 +    for /usr/bin/slcli
 +
 + -- Scott Kitterman <scott at kitterman.com>  Fri, 26 Jun 2015 21:48:18 -0400
 +
 +python-softlayer (4.0.3-1) unstable; urgency=medium
 +
 +  * New upstream release
 +    - Drop debian/patches/docopt-versions.patch since docopt is no longer
 +      required
 +    - Drop depends on python-docopt and python3-docopt, no longer used
 +    - Drop debian/patches/1002-longdesc.patch, no longer required
 +    - Update debian/patches/1001-rename_sl.patch for upstream changes
 +
 + -- Scott Kitterman <scott at kitterman.com>  Mon, 22 Jun 2015 22:15:59 -0400
 +
 +python-softlayer (3.3.1-1) unstable; urgency=medium
 +
 +  * New upstream release
 +  * Bump standards version to 3.9.6 without further change
 +
 + -- Scott Kitterman <scott at kitterman.com>  Thu, 23 Apr 2015 19:34:30 -0400
 +
 +python-softlayer (3.2.0-2) unstable; urgency=medium
 +
 +  * Fix docopt version in requires to SL will start (Closes: #778344)
 +  * Fix python-softlayer postinst/postrm file names to that alternatives works
 +    and SL is properly provided by python-softlayer (Closes: #778279)
 +  * Agreed maintainer change to Debian Python Modules Team (Closes: #777337)
 +  * Add Vcs-* for DPMT repository
 +
 + -- Scott Kitterman <scott at kitterman.com>  Fri, 13 Feb 2015 16:13:11 -0500
 +
 +python-softlayer (3.2.0-1) unstable; urgency=medium
 +
 +  * New upstream release.
 +  * Refresh patch set.
 +  * Drop dependency on python-tox, not needed at all.
 +  * Refresh patches.
 +  * Add patch to fix FTBFS.
 +  * Add Python 3 support.
 +  * Handle /usr/bin/SL via update-alternatives.
 +
 + -- Alessio Treglia <alessio at debian.org>  Mon, 14 Jul 2014 14:41:50 +0100
 +
 +python-softlayer (3.1.0-1) unstable; urgency=low
 +
 +  * New upstream release.
 +
 + -- Alessio Treglia <alessio at debian.org>  Mon, 28 Apr 2014 12:35:22 +0100
 +
 +python-softlayer (3.0.2-1) unstable; urgency=low
 +
 +  * New upstream release.
 +  * Update examples, example.py is no longer provided.
 +  * Fix debian/watch.
 +  * Bump Standards.
 +
 + -- Alessio Treglia <alessio at debian.org>  Tue, 11 Mar 2014 09:35:46 +0000
 +
 +python-softlayer (3.0.1-1) unstable; urgency=low
 +
 +  * New upstream bugfix release.
 +
 + -- Alessio Treglia <alessio at debian.org>  Sun, 24 Nov 2013 23:43:01 +0000
 +
 +python-softlayer (3.0.0-1) unstable; urgency=low
 +
 +  * Initial release. (Closes: #725912)
 +
 + -- Alessio Treglia <alessio at debian.org>  Wed, 09 Oct 2013 23:29:25 +0100
diff --cc debian/patches/1001-rename_sl.patch
index 62e2330,0000000..99b4c5f
mode 100644,000000..100644
--- a/debian/patches/1001-rename_sl.patch
+++ b/debian/patches/1001-rename_sl.patch
@@@ -1,24 -1,0 +1,24 @@@
- From 55026378aac196aefa80460b11bda74e700e40e7 Mon Sep 17 00:00:00 2001
++From 8cb50c57df7229a05581ff0d69f65e41e9b14ee4 Mon Sep 17 00:00:00 2001
 +From: Alessio Treglia <alessio at debian.org>
 +Date: Thu, 8 Oct 2015 13:09:37 -0700
 +Subject: Rename launcher script to avoid namespace conflicts.
 +
 +Forwarded: not-needed
 +Patch-Name: 1001-rename_sl.patch
 +---
 + setup.py | 2 +-
 + 1 file changed, 1 insertion(+), 1 deletion(-)
 +
 +diff --git a/setup.py b/setup.py
- index 72e36e4..caa2272 100644
++index c6b246a..5457f47 100644
 +--- a/setup.py
 ++++ b/setup.py
 +@@ -27,7 +27,7 @@ setup(
 +     entry_points={
 +         'console_scripts': [
 +             'slcli = SoftLayer.CLI.core:main',
 +-            'sl = SoftLayer.CLI.deprecated:main',
 ++            'SL = SoftLayer.CLI.deprecated:main',
 +         ],
 +     },
 +     install_requires=[

-- 
Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/python-modules/packages/python-softlayer.git



More information about the Python-modules-commits mailing list