Skip to content

Instantly share code, notes, and snippets.

FROM ubuntu:xenial
ENV DEBIAN_FRONTEND noninteractive
ENV DEPS="\
build-essential \
curl \
python-catkin-pkg \
python-rosdep \
python-wstool \
python3-colcon-common-extensions \
sudo apt-get update
sudo apt-get install chrpath cpio diffstat gawk libmagickwand-dev libmath-prime-util-perl libsdl1.2-dev libssl-dev texinfo vim-tiny whiptail
mkdir -p ${HOME}/oe ${HOME}/bin
curl https://storage.googleapis.com/git-repo-downloads/repo > ${HOME}/bin/repo
chmod a+x ${HOME}/bin/repo
export PATH=${HOME}/bin:${PATH}
cd oe
repo init -u https://github.com/96boards/oe-rpb-manifest.git -b morty
export MACHINE=hikey
export DISTRO=rpb
@fboudra
fboudra / github-issues-to-phabricator-tasks.py
Created May 31, 2015 07:51
Simple python script to import github issues (including comments) to phabricator tasks. It depends on pygithub, arc and requires some basic configuration.
#!/usr/bin/python
import collections
import json
import os
import signal
import sys
import subprocess
# require pygithub installed
from github import Github