[Python-modules-commits] [python-softlayer] branch patch-queue/debian/master updated (5fdaa26 -> 6603220)

Scott Kitterman kitterman at moszumanska.debian.org
Thu Jan 18 23:22:35 UTC 2018


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

kitterman pushed a change to branch patch-queue/debian/master
in repository python-softlayer.

      from  5fdaa26   Rename launcher script to avoid namespace conflicts.
      adds  23e4b2d   Refresh patches
      adds  4a0845c   Imported Upstream version 5.2.14
      adds  e7b6abf   Merge tag 'upstream/5.2.14' into debian/master
      adds  3fbeb9c   New upstream release
      adds  f32c941   Bump standards-version to 4.1.1.1 without further change
      adds  b8e5bd3   Imported Upstream version 5.3.2
      adds  d2bc375   Merge tag 'upstream/5.3.2' into debian/master
       new  c5de8d8   Rename launcher script to avoid namespace conflicts.
       new  6603220   Merge branch 'patch-queue/debian/master' of git+ssh://git.debian.org/git/python-modules/packages/python-softlayer into patch-queue/debian/master

The 2 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "adds" were already present in the repository and have only
been added to this reference.


Summary of changes:
 .gitignore                                         |    2 +-
 .travis.yml                                        |    6 +-
 CHANGELOG.md                                       |   90 +
 README.rst                                         |    7 +-
 RELEASE.md                                         |    2 +-
 SoftLayer/API.py                                   |    4 +-
 SoftLayer/CLI/__init__.py                          |    2 +-
 SoftLayer/CLI/block/access/password.py             |   27 +
 SoftLayer/CLI/block/count.py                       |   42 +
 SoftLayer/CLI/block/detail.py                      |   32 +-
 SoftLayer/CLI/block/duplicate.py                   |   19 +-
 SoftLayer/CLI/block/list.py                        |    5 +-
 SoftLayer/CLI/block/lun.py                         |   36 +
 SoftLayer/CLI/block/modify.py                      |   57 +
 SoftLayer/CLI/block/order.py                       |   47 +-
 SoftLayer/CLI/block/replication/order.py           |    4 +-
 SoftLayer/CLI/block/snapshot/disable.py            |    7 +-
 SoftLayer/CLI/block/snapshot/enable.py             |   11 +-
 SoftLayer/CLI/block/snapshot/order.py              |    5 +-
 SoftLayer/CLI/block/snapshot/schedule_list.py      |   70 +
 SoftLayer/CLI/config/setup.py                      |   13 +-
 SoftLayer/CLI/{dns => dedicatedhost}/__init__.py   |    2 +-
 SoftLayer/CLI/dedicatedhost/create.py              |  114 +
 SoftLayer/CLI/dedicatedhost/create_options.py      |   61 +
 SoftLayer/CLI/dedicatedhost/detail.py              |   65 +
 SoftLayer/CLI/dedicatedhost/list.py                |   70 +
 SoftLayer/CLI/exceptions.py                        |    1 +
 SoftLayer/CLI/file/count.py                        |   41 +
 SoftLayer/CLI/file/detail.py                       |   36 +-
 SoftLayer/CLI/file/duplicate.py                    |   15 +-
 SoftLayer/CLI/file/list.py                         |    5 +-
 SoftLayer/CLI/file/modify.py                       |   57 +
 SoftLayer/CLI/file/order.py                        |   47 +-
 SoftLayer/CLI/file/replication/order.py            |    4 +-
 SoftLayer/CLI/file/snapshot/disable.py             |    7 +-
 SoftLayer/CLI/file/snapshot/enable.py              |   11 +-
 SoftLayer/CLI/file/snapshot/order.py               |    5 +-
 SoftLayer/CLI/file/snapshot/schedule_list.py       |   70 +
 SoftLayer/CLI/firewall/edit.py                     |    2 -
 SoftLayer/CLI/formatting.py                        |    2 +-
 SoftLayer/CLI/hardware/create.py                   |    2 +-
 SoftLayer/CLI/hardware/credentials.py              |    4 +-
 SoftLayer/CLI/hardware/detail.py                   |   88 +-
 SoftLayer/CLI/hardware/power.py                    |   17 +
 SoftLayer/CLI/hardware/rescue.py                   |   28 -
 SoftLayer/CLI/routes.py                            |   36 +
 SoftLayer/CLI/securitygroup/__init__.py            |    1 +
 SoftLayer/CLI/securitygroup/create.py              |   32 +
 SoftLayer/CLI/securitygroup/delete.py              |   17 +
 SoftLayer/CLI/securitygroup/detail.py              |   73 +
 SoftLayer/CLI/securitygroup/edit.py                |   28 +
 SoftLayer/CLI/securitygroup/interface.py           |  150 +
 SoftLayer/CLI/securitygroup/list.py                |   36 +
 SoftLayer/CLI/securitygroup/rule.py                |  140 +
 SoftLayer/CLI/storage_utils.py                     |   20 +
 SoftLayer/CLI/subnet/detail.py                     |   14 +-
 SoftLayer/CLI/virt/__init__.py                     |    8 +-
 SoftLayer/CLI/virt/create.py                       |   78 +-
 SoftLayer/CLI/virt/create_options.py               |  102 +-
 SoftLayer/CLI/virt/detail.py                       |   36 +
 SoftLayer/__init__.py                              |    2 +-
 SoftLayer/config.py                                |   20 +-
 SoftLayer/consts.py                                |    2 +-
 SoftLayer/decoration.py                            |   48 +
 SoftLayer/fixtures/SoftLayer_Account.py            |   16 +-
 SoftLayer/fixtures/SoftLayer_Hardware_Server.py    |    6 +-
 .../fixtures/SoftLayer_Network_SecurityGroup.py    |   46 +
 SoftLayer/fixtures/SoftLayer_Network_Storage.py    |  183 +-
 .../SoftLayer_Network_Storage_Allowed_Host.py      |    1 +
 SoftLayer/fixtures/SoftLayer_Network_Subnet.py     |   30 +-
 SoftLayer/fixtures/SoftLayer_Product_Package.py    |  759 +++-
 SoftLayer/fixtures/SoftLayer_Resource_Metadata.py  |   16 +-
 .../fixtures/SoftLayer_Virtual_DedicatedHost.py    |   78 +
 SoftLayer/fixtures/SoftLayer_Virtual_Guest.py      |  241 +-
 SoftLayer/managers/__init__.py                     |    2 +
 SoftLayer/managers/block.py                        |  211 +-
 SoftLayer/managers/dedicated_host.py               |  384 ++
 SoftLayer/managers/file.py                         |  204 +-
 SoftLayer/managers/firewall.py                     |   22 +-
 SoftLayer/managers/hardware.py                     |   12 +-
 SoftLayer/managers/metadata.py                     |   36 +-
 SoftLayer/managers/network.py                      |  210 ++
 SoftLayer/managers/storage_utils.py                |  789 ++--
 SoftLayer/managers/vs.py                           |  285 +-
 SoftLayer/shell/completer.py                       |    7 +-
 SoftLayer/transports.py                            |   34 +-
 debian/changelog                                   |    7 +
 debian/control                                     |    2 +-
 ...ncher-script-to-avoid-namespace-conflicts.patch |    2 +-
 docs/conf.py                                       |    4 +-
 docs/dev/cli.rst                                   |   17 +-
 setup.py                                           |    2 +-
 tests/CLI/helper_tests.py                          |    9 +-
 tests/CLI/modules/block_tests.py                   |  276 +-
 tests/CLI/modules/config_tests.py                  |    3 +
 tests/CLI/modules/dedicatedhost_tests.py           |  327 ++
 tests/CLI/modules/file_tests.py                    |  248 +-
 tests/CLI/modules/securitygroup_tests.py           |  234 ++
 tests/CLI/modules/server_tests.py                  |   27 +-
 tests/CLI/modules/sshkey_tests.py                  |    3 +
 tests/CLI/modules/subnet_tests.py                  |   37 +
 tests/CLI/modules/vs_tests.py                      |  188 +-
 tests/decoration_tests.py                          |   95 +
 tests/managers/block_tests.py                      | 1113 +++---
 tests/managers/dedicated_host_tests.py             |  616 +++
 tests/managers/file_tests.py                       | 1095 +++---
 tests/managers/firewall_tests.py                   |   34 +
 tests/managers/metadata_tests.py                   |   16 +-
 tests/managers/network_tests.py                    |  153 +
 tests/managers/storage_utils_tests.py              | 3944 ++++++++++++++++----
 tests/managers/vs_tests.py                         |  103 +-
 tox.ini                                            |   15 +-
 112 files changed, 10808 insertions(+), 3419 deletions(-)
 create mode 100644 SoftLayer/CLI/block/access/password.py
 create mode 100644 SoftLayer/CLI/block/count.py
 create mode 100644 SoftLayer/CLI/block/lun.py
 create mode 100644 SoftLayer/CLI/block/modify.py
 create mode 100644 SoftLayer/CLI/block/snapshot/schedule_list.py
 copy SoftLayer/CLI/{dns => dedicatedhost}/__init__.py (64%)
 create mode 100644 SoftLayer/CLI/dedicatedhost/create.py
 create mode 100644 SoftLayer/CLI/dedicatedhost/create_options.py
 create mode 100644 SoftLayer/CLI/dedicatedhost/detail.py
 create mode 100644 SoftLayer/CLI/dedicatedhost/list.py
 create mode 100644 SoftLayer/CLI/file/count.py
 create mode 100644 SoftLayer/CLI/file/modify.py
 create mode 100644 SoftLayer/CLI/file/snapshot/schedule_list.py
 delete mode 100644 SoftLayer/CLI/hardware/rescue.py
 create mode 100644 SoftLayer/CLI/securitygroup/__init__.py
 create mode 100644 SoftLayer/CLI/securitygroup/create.py
 create mode 100644 SoftLayer/CLI/securitygroup/delete.py
 create mode 100644 SoftLayer/CLI/securitygroup/detail.py
 create mode 100644 SoftLayer/CLI/securitygroup/edit.py
 create mode 100644 SoftLayer/CLI/securitygroup/interface.py
 create mode 100644 SoftLayer/CLI/securitygroup/list.py
 create mode 100644 SoftLayer/CLI/securitygroup/rule.py
 create mode 100644 SoftLayer/decoration.py
 create mode 100644 SoftLayer/fixtures/SoftLayer_Network_SecurityGroup.py
 create mode 100644 SoftLayer/fixtures/SoftLayer_Network_Storage_Allowed_Host.py
 create mode 100644 SoftLayer/fixtures/SoftLayer_Virtual_DedicatedHost.py
 create mode 100644 SoftLayer/managers/dedicated_host.py
 create mode 100644 tests/CLI/modules/dedicatedhost_tests.py
 create mode 100644 tests/CLI/modules/securitygroup_tests.py
 create mode 100644 tests/CLI/modules/subnet_tests.py
 create mode 100644 tests/decoration_tests.py
 create mode 100644 tests/managers/dedicated_host_tests.py

-- 
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