Merge "Snap packaging"
authormarchettim <mmarchetti@sandvine.com>
Wed, 21 Jun 2017 19:06:02 +0000 (21:06 +0200)
committerGerrit Code Review <root@osm.etsi.org>
Wed, 21 Jun 2017 19:06:02 +0000 (21:06 +0200)
.gitignore
README.md
snap/snapcraft.yaml [new file with mode: 0644]

index 0584915..c4c79e8 100644 (file)
@@ -5,6 +5,10 @@ dist/
 *.gz
 *egg-info/
 .eggs
+parts/
+prime/
+stage/
+*.snap
 *venv/
 *venv3/
 .tox/
index b742339..43e838d 100644 (file)
--- a/README.md
+++ b/README.md
@@ -4,15 +4,23 @@ A python client for osm orchestration
 
 # Installation
 
-## Install dependencies
+## python-osmclient
+### Install dependencies
 ```bash
-sudo apt-get install python-dev libcurl4-gnutls-dev python-pip libgnutls-dev python-prettytable   
+sudo apt-get install python-dev libcurl4-gnutls-dev python-pip libgnutls-dev python-prettytable  
 sudo pip install pycurl
 ```
 
-## Install python-osmclient
+### Install python-osmclient
     sudo pip install git+https://github.com/mfmarche/python-osmclient
 
+
+## Snap
+```bash
+apt install snapd
+snap install osmclient --channel=beta
+```
+
 # Setup
 Set the OSM_HOSTNAME variable to the host of the osm server.
 
@@ -21,7 +29,7 @@ Example
 localhost$ export OSM_HOSTNAME=<hostname>:8008
 ```
 
-# Examples 
+# Examples
 
 ## upload vnfd
 ```bash
@@ -72,6 +80,5 @@ localhost$ osm ns-list
 
 # Bash Completion
 python-osmclient uses [click](http://click.pocoo.org/5/).  You can setup bash completion by putting this in your .bashrc:
-    
-    eval "$(_OSM_COMPLETE=source osm)"
 
+    eval "$(_OSM_COMPLETE=source osm)"
diff --git a/snap/snapcraft.yaml b/snap/snapcraft.yaml
new file mode 100644 (file)
index 0000000..b7d0f05
--- /dev/null
@@ -0,0 +1,20 @@
+name: osmclient # you probably want to 'snapcraft register <name>'
+version: '0.1' # just for humans, typically '1.2+git' or '1.3.2'
+summary: A python client for osm orchestration
+description: |
+    A python client for osm orchestration
+
+grade: stable # must be 'stable' to release into candidate/stable channels
+confinement: strict # use 'strict' once you have the right plugs and slots
+
+apps:
+  osmclient:
+    command: bin/osm
+
+parts:
+  osmclient:
+    source: .
+    plugin: python
+    python-version: python2
+    stage:
+      - -README.md