Skip to content

Instantly share code, notes, and snippets.

name: skype
version: strict-v8.51.76.61
summary: Skype
description: Skype keeps the world talking, for free.
Skype keeps you together. Call, message and share with others.
* It's free to download and join.
* Call, instant message and send photos and documents to anyone else on Skype.
* Easily text message anywhere in the world.
* Get your friends together on a group call.
And that's just the start...
Sergios-Mac-mini:homebrew-core sergiusens$ brew config
HOMEBREW_VERSION: 1.6.1-39-g1669111
ORIGIN: https://github.com/Homebrew/brew
HEAD: 1669111bec0c7ecea75140f1100dfb4ace2088cf
Last commit: 9 hours ago
Core tap ORIGIN: https://github.com/Homebrew/homebrew-core
Core tap HEAD: d16dfc3867c11e2d43521d5d17fe4000cd93aab5
Core tap last commit: 8 hours ago
HOMEBREW_PREFIX: /usr/local
HOMEBREW_DEV_CMD_RUN: 1
diff --git a/snap/snapcraft.yaml b/snap/snapcraft.yaml
index 4caa0d5..e7fc11a 100644
--- a/snap/snapcraft.yaml
+++ b/snap/snapcraft.yaml
@@ -1,4 +1,3 @@
-
name: heroku
version: '6.12.17'
summary: Heroku CLI
@@ -8,11 +7,15 @@ confinement: classic
name: my-snap
version: '1'
summary: desktop files in apps
description: make it declarative
apps:
my-app:
command: some-command
# inside prime, will do the proper Exec replacement
desktop-file: usr/share/desktop/my-app.desktop
#!/usr/bin/python2
# -*- Mode:Python; indent-tabs-mode:nil; tab-width:4 -*-
#
# Copyright (C) 2016 Canonical Ltd
#
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License version 3 as
# published by the Free Software Foundation.
#
# This program is distributed in the hope that it will be useful,
# This is a project using a part in the cloud using one of the `other-parts` declared for a shared part.
parts:
my-part:
plugin: autotools
source: .
after: [main.my-other-part]

Snappy for Devices porting guide

This guide will get you started on porting snappy to your device. It covers setting the tools on your development machine and walks you through the basics of snappy porting by looking at the runtime requirement of a snappy system from a partition layout perspective. It will then go in depth explaining what is needed to make a snappy bootloader, kernel and initrd and will touch briefly on the requirements for installing/flashing images using ubuntu-device-flash.

Getting started

First of all, you should make sure you have enabled the Snappy Tools PPA, as explained in the snappy introduction.

@sergiusens
sergiusens / snapcraft.yaml
Last active November 2, 2015 18:11
source replacement
sources:
repo: <string>
type: <string>
tag: <string>
branch: <string>
commit-id: <string>
@sergiusens
sergiusens / autopilot.sh
Created April 16, 2015 22:06
Disable autopilot
#!/bin/sh
CONFIG=/tmp/core_config
snappy config ubuntu-core > "$CONFIG"
sed -i 's/autopilot: .*$/autopilot: false/' > "$CONFIG"
sudo snappy config ubuntu-core "$CONFIG"