Remove dependencies no longer needed by pycurl
[osm/osmclient.git] / snap / snapcraft.yaml
1 ---
2 ##
3 # Copyright 2020 ETSI
4 #
5 # Licensed under the Apache License, Version 2.0 (the "License"); you may
6 # not use this file except in compliance with the License. You may obtain
7 # a copy of the License at
8 #
9 #         http://www.apache.org/licenses/LICENSE-2.0
10 #
11 # Unless required by applicable law or agreed to in writing, software
12 # distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
13 # WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
14 # License for the specific language governing permissions and limitations
15 # under the License.
16 ##
17 name: osmclient
18 base: core22
19 adopt-info: client
20 summary: A python client for orchestrating OSM
21 description: |
22   A python client for orchestrating Open Source Mano (OSM).
23
24 grade: stable
25
26 confinement: strict
27
28 environment:
29   LC_ALL: C.UTF-8
30   LANG: C.UTF-8
31
32 apps:
33   osm:
34     command: bin/osm
35     plugs:
36       - network
37       - home
38       - ssh-public-keys
39     environment:
40       PATH: $SNAP/usr/bin:$SNAP/bin/:$PATH:$SNAP/usr/local/bin/:/usr/local/bin/
41       MAGIC: $SNAP/usr/share/file/magic.mgc
42
43 parts:
44   client:
45     plugin: python
46     source: .
47     python-requirements:
48       - requirements.txt
49       - requirements-dev.txt
50     python-packages:
51       - pyangbind
52     build-environment:
53       - PIP_COMPILE: "false" # disable .pyc generation in pip
54       - PYTHONDONTWRITEBYTECODE: "false" # disable .pyc generation by setup.py
55     build-packages:
56       - wget
57     stage-packages:
58       - libmagic1
59       - python3
60     override-build: |
61       VERSION=$(git describe --match v* --tags --long --dirty)
62       snapcraftctl set-version $VERSION
63       snapcraftctl build
64       `find $SNAPCRAFT_PART_INSTALL -name '__pycache__' | xargs rm -r`
65       `find $SNAPCRAFT_PART_INSTALL -name 'RECORD' | xargs rm`