trivial fixes: devel dependencies, use git@github url instead of http to avoid password.

This commit is contained in:
Diogo Matsubara 2015-07-23 13:23:00 -03:00
parent c156c741cb
commit 714a2d6d4f
3 changed files with 6 additions and 2 deletions

View File

@ -2,7 +2,7 @@
# Makefile for subiquity # Makefile for subiquity
# #
PYTHONSRC=subiquity PYTHONSRC=subiquity
PYTHONPATH=$(shell pwd):$(shell pwd)/probert:$PYTHONPATH PYTHONPATH=$(shell pwd):$(HOME)/download/probert:
VENVPATH=$(shell pwd)/venv VENVPATH=$(shell pwd)/venv
VENVACTIVATE=$(VENVPATH)/bin/activate VENVACTIVATE=$(VENVPATH)/bin/activate
TOPDIR=$(shell pwd) TOPDIR=$(shell pwd)
@ -15,6 +15,9 @@ INSTALLER_RESOURCES += $(shell find installer/resources -type f)
all: dryrun all: dryrun
install_deps:
sudo apt-get install python3-urwid python3-pyudev python3-netifaces python3-nose python3-flake8 python3-parted python3-yaml git bzr ubuntu-cloudimage-keyring python3-jinja2
dryrun: dryrun:
$(MAKE) ui-view DRYRUN="--dry-run" $(MAKE) ui-view DRYRUN="--dry-run"

View File

@ -31,7 +31,7 @@ syslinux-common
grub2-common" grub2-common"
SRC_DEPS=( SRC_DEPS=(
"bzr" "lp:~wesley-wiedenmeier/curtin/custom-partitioning-layout" "curtin" "bzr" "lp:~wesley-wiedenmeier/curtin/custom-partitioning-layout" "curtin"
"git" "https://github.com/CanonicalLtd/probert.git" "probert" "git" "git@github.com:CanonicalLtd/probert.git" "probert"
) )
CACHEDIR="" CACHEDIR=""

View File

@ -4,3 +4,4 @@ netifaces==0.10.4
nose-cov nose-cov
nose nose
flake8 flake8
python3-parted