This repository has been archived by the owner on Sep 2, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 28
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* update-version: Deosfile * add-pubkey: desantis/atd * update-meta: makefile * add: src/pypreprocessor * add: blockstack-cli * blockstack-load: wallet * update-blockstack: wallet * create: var/privkey * refactor: blockstack-cli * add: webpy tools * update: webpy docs * refactor: blockstack_registrar * add: pypreprocessor docs * add: pybitcoin * add: virtualchain * add-blockstack: keylib * refactor: blockstack * update-meta: makefile * update-meta: blockstack * update-meta: makefile * update-meta: makefile * add-feat: blocstack whois * update: src/blockstack * init-app: vault,wallet * add-app-vault: src * init-vault: build,config,main.py,templates * update-app: value/Makefile * update-meta: wiki/.gitignore * add: trezor * add-vault: templates * update-app: vault * update-app: vault * update-app-item: partial templates * add-vault: partials * fix: spacing * app-vault: cleanup main.py * app-vault: fix main.py env * update-app-vault: main.py * app-vault: update-main.py
- Loading branch information
Andrew DeSantis
authored
Dec 28, 2016
1 parent
2a0b668
commit a644a98
Showing
360 changed files
with
64,055 additions
and
2 deletions.
There are no files selected for viewing
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
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
author=atd@gmx.it | ||
version=v0.8-alpha.4 | ||
version=v0.8-alpha.6 | ||
|
||
[.deosrc] | ||
meta=meta/Δ:.deosrc.md | ||
|
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
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
#[ignore] | ||
* | ||
|
||
#[except] | ||
!.gitignore |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,60 @@ | ||
export MAKEFLAGS=--no-print-directory | ||
|
||
all: #build | ||
source .venv/bin/activate && \ | ||
python main.py | ||
|
||
clone: | ||
-rm -rf src | ||
git clone git@github.com:hiviah/TrezorPass.git src | ||
rm -rf src/.git | ||
|
||
build: clone | ||
source .venv/bin/activate && \ | ||
cd src && \ | ||
make && \ | ||
python TrezorPass.py | ||
|
||
install: brew venv sip pyqt | ||
|
||
brew: | ||
-brew install protobuf | ||
-brew install pyqt5 | ||
-brew install sip | ||
|
||
venv: | ||
#-rm -rf .venv | ||
#-virtualenv --always-copy --no-site-packages .venv | ||
source .venv/bin/activate && pip install web.py | ||
source .venv/bin/activate && pip install PyCrypto | ||
source .venv/bin/activate && pip install trezor | ||
source .venv/bin/activate && pip install simplejson | ||
source .venv/bin/activate && pip install ruamel.yaml | ||
source .venv/bin/activate && pip install jsonschema | ||
source .venv/bin/activate && pip install configobj | ||
|
||
sip: | ||
-rm -rf ext/sip | ||
cp .cache/sip-4.18.1.tar.gz sip.tar.gz | ||
gunzip sip.tar.gz | ||
tar -xvf sip.tar | ||
rm -rf sip.tar | ||
mv sip-4.18.1 ext/sip | ||
source .venv/bin/activate && \ | ||
cd ext/sip && \ | ||
python configure.py --incdir=../../.venv/include/python2.7 && \ | ||
make && \ | ||
make install | ||
|
||
pyqt: | ||
-rm -rf ext/pyqt | ||
cp .cache/PyQt-mac-gpl-4.11.4.tar.gz pyqt.tar.gz | ||
gunzip pyqt.tar.gz | ||
tar -xvf pyqt.tar | ||
rm -rf pyqt.tar | ||
mv PyQt-mac-gpl-4.11.4 ext/pyqt | ||
source .venv/bin/activate && \ | ||
cd ext/pyqt && \ | ||
python configure-ng.py --qmake=/usr/local/Cellar/qt5/5.7.0/bin/qmake && \ | ||
make && \ | ||
make install |
Oops, something went wrong.