diff options
author | Kali Kaneko <kali@leap.se> | 2015-08-04 14:36:11 -0400 |
---|---|---|
committer | Kali Kaneko <kali@leap.se> | 2015-08-04 14:36:11 -0400 |
commit | 981c2a231384a67077061b29708e6feef49c78d8 (patch) | |
tree | 686aeeef573523f20020af1a9116aafebb8d00c0 /Makefile | |
parent | f69c59b403326953d11e7c1ffbd4734b491063c0 (diff) |
[pkg] add target to pull latest from all repos
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 11 |
1 files changed, 9 insertions, 2 deletions
@@ -44,6 +44,8 @@ LRELE = lrelease ################################# # DO NOT EDIT FOLLOWING +LEAP_REPOS = leap_pycommon keymanager leap_mail soledad + COMPILED_UI = $(UI_FILES:%.ui=$(COMPILED_DIR)/ui_%.py) COMPILED_RESOURCES = $(RESOURCES:%.qrc=$(COMPILED_DIR)/%_rc.py) @@ -58,7 +60,8 @@ ifndef RESOURCE_TIME endif CURDIR = $(shell pwd) -# + +########################################### all : resources ui @@ -77,6 +80,7 @@ $(COMPILED_DIR)/ui_%.py : $(UI_DIR)/%.ui $(COMPILED_DIR)/%_rc.py : $(RESOURCE_DIR)/%.qrc $(PYRCC) $< -o $@ + manpages: rst2man docs/man/bitmask.1.rst docs/man/bitmask.1 @@ -127,8 +131,11 @@ install_base_deps: for repo in leap_pycommon keymanager leap_mail soledad/common soledad/client; do cd $(CURDIR)/../$$repo && pkg/pip_install_requirements.sh; done pkg/pip_install_requirements.sh +pull_leapdeps: + for repo in $(LEAP_REPOS); do cd $(CURDIR)/../$$repo && git pull; done + checkout_leapdeps_develop: - for repo in leap_pycommon keymanager leap_mail soledad; do cd $(CURDIR)/../$$repo && git checkout develop; done + for repo in $(LEAP_REPOS); do cd $(CURDIR)/../$$repo && git checkout develop; done checkout_leapdeps_release: pkg/scripts/checkout_leap_versions.sh |