diff options
| author | Micah Anderson <micah@riseup.net> | 2013-10-22 13:29:11 -0400 |
|---|---|---|
| committer | Micah Anderson <micah@riseup.net> | 2013-10-22 13:29:11 -0400 |
| commit | f22b1a04f892857d162d87f9c9e120e7c5daadf7 (patch) | |
| tree | 8998a60a2f55aa6f22a76e7aa1ec176e16f5cf33 /pkg | |
| parent | dd907d3098c582b9e92eb181efb87453f046dcc6 (diff) | |
| parent | 522b886046baf114f2b86173661e568c7c065da6 (diff) | |
Merge remote-tracking branch 'kali/debian-0.3.4' into debian
Diffstat (limited to 'pkg')
| -rwxr-xr-x | pkg/linux/build_bundle.sh | 12 | ||||
| -rw-r--r-- | pkg/requirements-docs.pip | 1 | ||||
| -rw-r--r-- | pkg/requirements.pip | 7 |
3 files changed, 11 insertions, 9 deletions
diff --git a/pkg/linux/build_bundle.sh b/pkg/linux/build_bundle.sh index 520ff256..60151a80 100755 --- a/pkg/linux/build_bundle.sh +++ b/pkg/linux/build_bundle.sh @@ -34,16 +34,18 @@ BITMASK_BIN=$TEMPLATE_BUNDLE/bitmask BUNDLE_NAME=Bitmask-linux$ARCH-$VERSION # clean template -rm $TEMPLATE_BUNDLE/CHANGELOG -rm $TEMPLATE_BUNDLE/relnotes.txt +rm -f $TEMPLATE_BUNDLE/CHANGELOG +rm -f $TEMPLATE_BUNDLE/relnotes.txt rm -rf $TEMPLATE_BUNDLE/apps/leap rm -rf $TEMPLATE_BUNDLE/lib/leap/{common,keymanager,soledad,mail} # checkout the latest tag in all repos for repo in $REPOSITORIES; do cd $REPOS_ROOT/$repo - git fetch - # checkout to the latest annotated tag, supress 'detached head' warning + git checkout master + git pull --ff-only origin master && git fetch + git reset --hard origin/master # this avoids problems if you are in a commit far in the past + # checkout to the closest annotated tag, supress 'detached head' warning git checkout --quiet `git describe --abbrev=0` done @@ -82,7 +84,7 @@ cp src/launcher $BITMASK_BIN # copy launcher.py to template bundle # e.g. TEMPLATE_BUNDLE/Bitmask.app/Contents/MacOS/apps/ -cd $REPOS_ROOT/bitmask_client_launcher/src/ +cd $REPOS_ROOT/bitmask_launcher/src/ cp launcher.py $TEMPLATE_BUNDLE/apps/ # copy relnotes, joint changelog and LICENSE to TEMPLATE_BUNDLE diff --git a/pkg/requirements-docs.pip b/pkg/requirements-docs.pip index 6966869c..ad14d003 100644 --- a/pkg/requirements-docs.pip +++ b/pkg/requirements-docs.pip @@ -1 +1,2 @@ sphinx +Sphinx-PyPI-upload diff --git a/pkg/requirements.pip b/pkg/requirements.pip index 154e51b4..35486dac 100644 --- a/pkg/requirements.pip +++ b/pkg/requirements.pip @@ -14,14 +14,13 @@ psutil ipaddr twisted qt4reactor -python-gnupg python-daemon # this should not be needed for Windows. keyring -leap.common>=0.3.2 +leap.common>=0.3.4 leap.soledad.client>=0.4.0 -leap.keymanager>=0.2.0 -leap.mail>=0.3.2 +leap.keymanager>=0.3.3 +leap.mail>=0.3.4 # Remove this when u1db fixes its dependency on oauth oauth |
