This file contains 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
'''! | |
''' | |
from __future__ import ( | |
print_function, | |
unicode_literals,) | |
__author__ = 'Dawson Reid <[email protected]>' | |
import logging |
This file contains 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
def is_installed(pkg): | |
''' | |
Tests if a python module is installed. | |
''' | |
try: | |
__import__(pkg) | |
return True | |
except ImportError: | |
return False |
This file contains 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/bash | |
RBENV_DIR=$HOME/.rbenv | |
if [ ! -d "$RBENV_DIR" ]; then | |
git clone https://github.com/sstephenson/rbenv.git $RBENV_DIR | |
echo 'export PATH="$RBENV_DIR/bin:$PATH"' >> ~/.bash_profile | |
echo 'eval "$(rbenv init -)"' >> ~/.bash_profile | |
git clone https://github.com/sstephenson/ruby-build.git $RBENV_DIR/plugins/ruby-build |
This file contains 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/bash | |
WORKON_HOME=$HOME/.virtualenv | |
if [ ! -d "$WORKON_HOME" ]; then | |
pip install virtualenvwrapper | |
export WORKON_HOME=$WORKON_HOME | |
mkdir -p $WORKON_HOME |
This file contains 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
### | |
Dawson Reid ([email protected]) | |
### | |
exec = require('child_process').exec | |
util = require 'util' | |
path = require 'path' | |
module.exports = (grunt) -> | |
grunt.loadNpmTasks 'grunt-contrib-coffee' |
This file contains 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/bash | |
# Dawson Reid | |
# Feb 25, 2015 | |
# Note : Currently only supports Debian. | |
VAGRANT_USERNAME="vagrant" | |
VAGRANT_PASSWORD="vagrant" | |
LANGUAGE_LOCAL="en_US" |
This file contains 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 | |
PLIST_FILE_NAME="Info.plist" | |
plist="${SRCROOT}/${PROJECT}/${PLIST_FILE_NAME}" | |
dir="${SRCROOT}/.." | |
# Only increment the build number if source files have changed | |
if [ -n "$(find "$dir" \! -path "*xcuserdata*" \! -path "*.git" -newer "$plist")" ]; then | |
buildnum=$(/usr/libexec/Plistbuddy -c "Print CFBundleVersion" "$plist") | |
if [ -z "$buildnum" ]; then |
This file contains 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
[ 0%] Built target cpp-ethereum_BuildInfo.h | |
[ 2%] Built target scrypt | |
[ 3%] Built target secp256k1 | |
[ 3%] Built target dev_BuildInfo.h | |
Scanning dependencies of target devcore | |
[ 3%] Building CXX object libweb3core/libdevcore/CMakeFiles/devcore.dir/Base58.cpp.o | |
[ 3%] Building CXX object libweb3core/libdevcore/CMakeFiles/devcore.dir/Base64.cpp.o | |
[ 4%] Building CXX object libweb3core/libdevcore/CMakeFiles/devcore.dir/Common.cpp.o | |
[ 4%] Building CXX object libweb3core/libdevcore/CMakeFiles/devcore.dir/CommonData.cpp.o | |
[ 4%] Building CXX object libweb3core/libdevcore/CMakeFiles/devcore.dir/CommonIO.cpp.o |
This file contains 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
Scanning dependencies of target ethereum_BuildInfo.h | |
[ 0%] Built target ethereum_BuildInfo.h | |
Scanning dependencies of target evmjit | |
[ 1%] Building CXX object evmjit/libevmjit/CMakeFiles/evmjit.dir/JIT.cpp.o | |
[ 1%] Building CXX object evmjit/libevmjit/CMakeFiles/evmjit.dir/JIT-c.cpp.o | |
[ 2%] Building CXX object evmjit/libevmjit/CMakeFiles/evmjit.dir/Arith256.cpp.o | |
/Users/dawsonreid/Develop/Ethereum/mist/interface/webthree-umbrella/libethereum/evmjit/libevmjit/Arith256.cpp:86:14: error: no member named 'getNextNode' in 'llvm::Argument' | |
auto y = x->getNextNode(); | |
~ ^ | |
/Users/dawsonreid/Develop/Ethereum/mist/interface/webthree-umbrella/libethereum/evmjit/libevmjit/Arith256.cpp:203:17: error: no member named 'getNextNode' in 'llvm::Argument' |
This file contains 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
2016-01-09 12:26:53 -0400 | |
make | |
/usr/local/Cellar/cmake/3.4.1/bin/cmake -H/tmp/cpp-ethereum20160109-2036-a75pow -B/tmp/cpp-ethereum20160109-2036-a75pow --check-build-system CMakeFiles/Makefile.cmake 0 | |
/usr/local/Cellar/cmake/3.4.1/bin/cmake -E cmake_progress_start /tmp/cpp-ethereum20160109-2036-a75pow/CMakeFiles /tmp/cpp-ethereum20160109-2036-a75pow/CMakeFiles/progress.marks | |
/Applications/Xcode.app/Contents/Developer/usr/bin/make -f CMakeFiles/Makefile2 all | |
/Applications/Xcode.app/Contents/Developer/usr/bin/make -f CMakeFiles/cpp-ethereum_BuildInfo.h.dir/build.make CMakeFiles/cpp-ethereum_BuildInfo.h.dir/depend | |
/Applications/Xcode.app/Contents/Developer/usr/bin/make -f webthree-helpers/utils/libscrypt/CMakeFiles/scrypt.dir/build.make webthree-helpers/utils/libscrypt/CMakeFiles/scrypt.dir/depend | |
/Applications/Xcode.app/Contents/Developer/usr/bin/make -f webthree-helpers/utils/secp256k1/CMakeFiles/secp256k1.dir/build.make webthree-helpers/utils/secp256k1/CMakeFiles/secp256k1.dir/depend |
OlderNewer