summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKali Kaneko (leap communications) <kali@leap.se>2016-09-27 15:25:15 -0400
committerKali Kaneko (leap communications) <kali@leap.se>2016-09-27 16:19:26 -0400
commit6cf1751a4231d6454e69641655b6c5ea848bff6d (patch)
treeec9aec1145cff16c43838375032af647ba9e91f8
parent0f34a5b42fb6dbbcefcc166a4ad71e8502960cdc (diff)
[pkg] make bundle from main makefile
-rw-r--r--.gitignore3
-rw-r--r--Makefile5
-rw-r--r--pkg/next-version1
-rw-r--r--pkg/pyinst/Makefile14
-rw-r--r--pkg/pyinst/build.mk24
5 files changed, 33 insertions, 14 deletions
diff --git a/.gitignore b/.gitignore
index a2f4b4e2..c0e25a1f 100644
--- a/.gitignore
+++ b/.gitignore
@@ -1,4 +1,4 @@
-### Python ###
+## Python ###
# Byte-compiled / optimized / DLL files
__pycache__/
*.py[cod]
@@ -45,3 +45,4 @@ ui/pydist/leap/bitmask_js
# PyInstaller
pkg/pyinst/dist/
pkg/pyinst/build/
+pkg/launcher/bitmask
diff --git a/Makefile b/Makefile
index 49472bb5..d15c5b8c 100644
--- a/Makefile
+++ b/Makefile
@@ -1,3 +1,8 @@
+DIST=dist/bitmask
+NEXT_VERSION = $(shell cat pkg/next-version)
+DIST_VERSION = dist/bitmask-$(NEXT_VERSION)/
+include pkg/pyinst/build.mk
+
clean:
find . -type f -name "*.py[co]" -delete
find . -type d -name "__pycache__" -delete
diff --git a/pkg/next-version b/pkg/next-version
new file mode 100644
index 00000000..1c1584f4
--- /dev/null
+++ b/pkg/next-version
@@ -0,0 +1 @@
+0.9.4rc1
diff --git a/pkg/pyinst/Makefile b/pkg/pyinst/Makefile
index e8d52f8c..1acde6dc 100644
--- a/pkg/pyinst/Makefile
+++ b/pkg/pyinst/Makefile
@@ -1,13 +1 @@
-build: clean
- pyinstaller -y app.spec
- cp $(VIRTUAL_ENV)/lib/python2.7/site-packages/_scrypt.so dist/bitmask/
- cp ../../src/leap/bitmask/core/bitmaskd.tac dist/bitmask
- mkdir dist/bitmask/leap
- cp -r $(VIRTUAL_ENV)/lib/python2.7/site-packages/leap/bitmask_js/ dist/bitmask/leap
- mv dist/bitmask lib && mkdir dist/bitmask && mv lib dist/bitmask/lib
- cd ../launcher && make
- cp ../launcher/bitmask dist/bitmask/
-
-clean:
- rm -rf dist build
-
+include build.mk
diff --git a/pkg/pyinst/build.mk b/pkg/pyinst/build.mk
new file mode 100644
index 00000000..ea82f9f6
--- /dev/null
+++ b/pkg/pyinst/build.mk
@@ -0,0 +1,24 @@
+# This makefile should be called from the topmost bitmask folder
+#
+bundle: bundle_clean
+ pyinstaller -y pkg/pyinst/app.spec
+ cp $(VIRTUAL_ENV)/lib/python2.7/site-packages/_scrypt.so $(DIST)
+ cp src/leap/bitmask/core/bitmaskd.tac $(DIST)
+ mkdir $(DIST)/leap
+ cp -r $(VIRTUAL_ENV)/lib/python2.7/site-packages/leap/bitmask_js/ $(DIST)/leap
+ mv $(DIST) _bundlelib && mkdir $(DIST_VERSION) && mv _bundlelib $(DIST_VERSION)/lib
+ cd pkg/launcher && make
+ cp pkg/launcher/bitmask $(DIST_VERSION)
+
+bundle_tar:
+ cd dist/ && tar cvzf Bitmask.$(NEXT_VERSION).tar.gz bitmask-$(NEXT_VERSION)
+
+bundle_sign:
+ gpg2 -a --sign --detach-sign dist/Bitmask.$(NEXT_VERSION).tar.gz
+
+bundle_upload:
+ rsync --rsh='ssh' -avztlpog --progress --partial dist/Bitmask.$(NEXT_VERSION).* salmon.leap.se:./
+
+bundle_clean:
+ rm -rf dist build
+