From 463fd19203271f101dbf0e82a1dae2a2d31f315b Mon Sep 17 00:00:00 2001 From: Leo Arias Date: Wed, 28 Jun 2017 16:12:47 +0000 Subject: [PATCH] Add the packaging metadata to build the pyethapp snap --- snap/snapcraft.yaml | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) create mode 100644 snap/snapcraft.yaml diff --git a/snap/snapcraft.yaml b/snap/snapcraft.yaml new file mode 100644 index 00000000..b2636c18 --- /dev/null +++ b/snap/snapcraft.yaml @@ -0,0 +1,24 @@ +name: pyethapp +version: master +summary: python based client implementing the Ethereum cryptoeconomic state machine +description: | + Ethereum as a platform is focussed on enabling people to build new ideas + using blockchain technology. + + The python implementation aims to provide an easily hackable and extendable + codebase. + +grade: devel # must be 'stable' to release into candidate/stable channels +confinement: strict + +apps: + pyethapp: + command: pyethapp + plugs: [network, network-bind] + +parts: + pyethapp: + source: . + plugin: python + python-version: python2 + build-packages: [libssl-dev] \ No newline at end of file