From e44032ee71bf185e60042451066e4be916c30d52 Mon Sep 17 00:00:00 2001 From: kz6fittycent Date: Sat, 24 Feb 2018 03:22:25 -0600 Subject: [PATCH 1/2] Snap for SLCLI I've created a "snap" package for `slcli`; testing and is working quite well. Snaps are universal packages for Linux distros and libs and software within a snap will not affect those on your system. This snap is already up and running and can be installed by running this command from your terminal: `sudo snap install slcli` --- snap/snapcraft.yaml | 29 +++++++++++++++++++++++++++++ 1 file changed, 29 insertions(+) create mode 100644 snap/snapcraft.yaml diff --git a/snap/snapcraft.yaml b/snap/snapcraft.yaml new file mode 100644 index 000000000..d0ac113bd --- /dev/null +++ b/snap/snapcraft.yaml @@ -0,0 +1,29 @@ +name: slcli # check to see if it's available +version: '5.4.1.3+git' # check versioning +summary: Python based SoftLayer API Tool. # 79 char long summary +description: | + A command-line interface is also included and can be used to manage various SoftLayer products and services. +grade: stable # must be 'stable' to release into candidate/stable channels +confinement: strict # use 'strict' once you have the right plugs + +apps: + slcli: + command: slcli + environment: + LC_ALL: C.UTF-8 + plugs: + - home + - network + - network-bind + +parts: + my-part: + source: https://github.com/softlayer/softlayer-python + source-type: git + plugin: python3 + + build-packages: + - python3 + + stage-packages: + - python3 From 6b9ea11054cd8015634aed433b113a2e72bb0d94 Mon Sep 17 00:00:00 2001 From: kz6fittycent Date: Tue, 27 Feb 2018 17:04:44 -0600 Subject: [PATCH 2/2] Upstream update to 5.4.2 --- snap/snapcraft.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/snap/snapcraft.yaml b/snap/snapcraft.yaml index d0ac113bd..6362bb2a9 100644 --- a/snap/snapcraft.yaml +++ b/snap/snapcraft.yaml @@ -1,5 +1,5 @@ name: slcli # check to see if it's available -version: '5.4.1.3+git' # check versioning +version: '5.4.2.0+git' # check versioning summary: Python based SoftLayer API Tool. # 79 char long summary description: | A command-line interface is also included and can be used to manage various SoftLayer products and services.