Ubuntu Pastebin

Paste from jdstrand at Wed, 29 Nov 2017 19:15:14 +0000

Download as text
 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
name: review-tools
version: '0.47+git'
summary: Review tools for snappy
description: |
  This snap provides the review tools as used by the Ubuntu store. They can
  be used to verify your snap before upload.

grade: devel
confinement: strict

apps:
  snap-review:
    command: snapcraft-preload click-review
    plugs: [ home, mount-observe ]
    aliases: [ snap-review ]
  snap-declaration:
    command: create-snap-declaration

parts:
  review-tools:
    source: .
    plugin: python
    prepare: ./run-snap-build-tests
    build-packages:
    - binutils
    - dpkg
    - execstack
    - file
    - libmagic1
    - make
    - python3-apt
    - python3-coverage
    - python3-debian
    - python3-lxml
    - python3-magic
    - python3-simplejson
    - python3-xdg
    - python3-yaml
    - squashfs-tools
    - pep8
    - pyflakes3
    - pylint3
  data:
    plugin: dump
    source: data
    organize:
      snapd-base-declaration.yaml: data/snapd-base-declaration.yaml
      apparmor-easyprof-ubuntu.json: data/apparmor-easyprof-ubuntu.json
  mypackages:
    plugin: nil
    stage-packages:
    - binutils
    - dpkg
    - execstack
    - file
    - libmagic1
    - python3-apt
    - python3-debian
    - python3-lxml
    - python3-magic
    - python3-simplejson
    - python3-xdg
    - python3-yaml
    - squashfs-tools
    stage:
    - -usr/lib/python3.5/
    - -usr/bin/2to3-3.5
    - -usr/bin/py3clean
    - -usr/bin/py3compile
    - -usr/bin/pydoc3.5
    - -usr/share/dh-python
    - -usr/share/python3/py3versions.py
    after:
    - snapcraft-preload
Download as text