X-Git-Url: https://git.rkrishnan.org/?a=blobdiff_plain;f=Makefile;h=abda237a31a4c5f999d3550bdfa894d520d2113a;hb=refs%2Fheads%2F2438.magic-folder-stable.11;hp=c7aa539277e0a7cb6cbc5a14f17300fa63b2f447;hpb=fad766a8859b9228087cfbdd9eb8afaf9eba464f;p=tahoe-lafs%2Ftahoe-lafs.git diff --git a/Makefile b/Makefile index c7aa5392..abda237a 100644 --- a/Makefile +++ b/Makefile @@ -11,6 +11,7 @@ export PYTHON TAHOE=$(PYTHON) bin/tahoe SOURCES=src/allmydata src/buildtest static misc bin/tahoe-script.template setup.py +APPNAME=allmydata-tahoe # This is necessary only if you want to automatically produce a new # _version.py file from the current git history (without doing a build). @@ -32,30 +33,20 @@ build: touch .built # Build OS X pkg packages. -# The editing of .egg-link and .pth files ensures that we reference the source at the correct path. -.PHONY: build-osx-pkg -build-osx-pkg: - $(PYTHON) setup.py build - find support -name allmydata-tahoe.egg-link -execdir sh -c "echo >> {}; echo /Applications/tahoe.app/src >> {}" \; - find support -name easy-install.pth -execdir sed -i.bak 's|^.*/src$$|../../../../src|' '{}' \; - touch .built - -# create component pkg - pkgbuild --root $(shell pwd) \ - --identifier com.leastauthority.tahoe \ - --version $(shell sh -c "cat src/allmydata/_version.py | grep verstr | head -n 1 | cut -d' ' -f 3") \ - --ownership recommended \ - --install-location /Applications/tahoe.app \ - --scripts $(shell pwd)/misc/build_helpers/osx/scripts \ - tahoe-lafs.pkg +.PHONY: build-osx-pkg test-osx-pkg upload-osx-pkg +build-osx-pkg: build + misc/build_helpers/build-osx-pkg.sh $(APPNAME) -# create product archive - productbuild --distribution $(shell pwd)/misc/build_helpers/osx/Distribution.xml \ - --package-path . \ - tahoe-lafs-osx.pkg +test-osx-pkg: + $(PYTHON) misc/build_helpers/test-osx-pkg.py -# remove intermediate pkg - rm -f tahoe-lafs.pkg +upload-osx-pkg: + @echo "uploading to ~tahoe-tarballs/OS-X-packages/ via flappserver" + @if [ "X${BB_BRANCH}" = "Xmaster" ] || [ "X${BB_BRANCH}" = "X" ]; then \ + flappclient --furlfile ~/.tahoe-osx-pkg-upload.furl upload-file tahoe-lafs-*-osx.pkg; \ + else \ + echo not uploading tahoe-lafs-osx-pkg because this is not trunk but is branch \"${BB_BRANCH}\" ; \ + fi # TESTING @@ -92,6 +83,11 @@ _tmpfstest: make-version sudo umount '$(TMPDIR)' rmdir '$(TMPDIR)' +.PHONY: smoketest +smoketest: + -python ./src/allmydata/test/check_magicfolder_smoke.py kill + -rm -rf smoke_magicfolder/ + python ./src/allmydata/test/check_magicfolder_smoke.py # code coverage: install the "coverage" package from PyPI, do "make test-coverage" to # do a unit test run with coverage-gathering enabled, then use "make coverage-output" to @@ -297,6 +293,9 @@ test-desert-island: $(MAKE) 2>&1 | tee make.out $(PYTHON) misc/build_helpers/check-build.py make.out no-downloads +.PHONY: test-pip-install +test-pip-install: + $(PYTHON) misc/build_helpers/test-pip-install.py # TARBALL GENERATION .PHONY: tarballs @@ -307,4 +306,4 @@ tarballs: .PHONY: upload-tarballs upload-tarballs: - @if [ "X${BB_BRANCH}" = "Xmaster" ] || [ "X${BB_BRANCH}" = "X" ]; then for f in dist/allmydata-tahoe-*; do flappclient --furlfile ~/.tahoe-tarball-upload.furl upload-file $$f; done ; else echo not uploading tarballs because this is not trunk but is branch \"${BB_BRANCH}\" ; fi + @if [ "X${BB_BRANCH}" = "Xmaster" ] || [ "X${BB_BRANCH}" = "X" ]; then for f in dist/$(APPNAME)-*; do flappclient --furlfile ~/.tahoe-tarball-upload.furl upload-file $$f; done ; else echo not uploading tarballs because this is not trunk but is branch \"${BB_BRANCH}\" ; fi