This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: limesuite-lool | |
version: 16.8.23.0 | |
summary: LimeSuite apps | |
description: LimeSuite command line utility and Graphical eval app. | |
confinement: strict | |
apps: | |
LimeUtil: | |
command: LimeUtil | |
plugs: [network, home] |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/sh | |
set -e -x | |
# for Ubuntu 16.04 | |
#PACKAGES="git build-essential libssl-dev libncurses5-dev unzip gawk python subversion mercurial" | |
PACKAGES="git build-essential libssl-dev libncurses5-dev unzip gawk python subversion" | |
sudo apt -y install $PACKAGES | |
if ! [ -d openwrt ]; then |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/sh | |
set -e -x | |
# snapcraft deps for Ubuntu 16.04 | |
SNAPCRAFT_PACKAGES="python3-jsonschema python3-magic python3-xdg python3-requests-oauthlib python3-ssoclient python3-progressbar python3-requests-toolbelt python3-docopt python3-petname" | |
sudo apt -y install $SNAPCRAFT_PACKAGES | |
if ! [ -d snapcraft ]; then | |
git clone https://github.com/ubuntu-core/snapcraft |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/sh | |
set -e | |
PACKAGES="git qemu-kvm libvirt-bin ubuntu-vm-builder bridge-utils virt-manager git realpath autoconf bison flex texinfo libtool libtool-bin libncurses5-dev gawk gperf stgit build-essential fakeroot libexpat1-dev python-dev xorriso mtools dosfstools" | |
ONIE_URL="https://github.com/opencomputeproject/onie.git" | |
# needed to locate mkdosfs | |
export PATH=$PATH:/sbin:/usr/sbin |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
parts: | |
zulu-8-arm: | |
plugin: copy | |
source: https://zulu/.../zulu-8-arm.tar.gz | |
files: | |
"*": "opt/zulu/" | |
snap: | |
- opt/zulu/jre | |
build-environment: | |
- PATH: "opt/zulu/bin:$PATH" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env python | |
import json, os, subprocess, sys, urllib2 | |
from termcolor import cprint | |
from xml.dom import minidom | |
def abort(error): | |
cprint(error, color='red', file=sys.stderr) | |
exit(1) |
NewerOlder