From 6401c83068df3dfab615aec83ed2ec3b34df5fda Mon Sep 17 00:00:00 2001 From: nimbosa Date: Fri, 14 Sep 2018 19:27:30 +0800 Subject: [PATCH] Update links and version 1.0.7 / 3.1 Electrum-ZCL v1.0.7 based on Electrum v3.1 --- Dockerfile | 4 ++-- contrib/build-osx/make_osx | 6 +++--- contrib/build-osx/osx.spec | 2 +- 3 files changed, 6 insertions(+), 6 deletions(-) diff --git a/Dockerfile b/Dockerfile index e763fb17a58f..cb7286abffe3 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,12 +1,12 @@ FROM ubuntu:18.04 -ENV VERSION 1.0.2 +ENV VERSION 1.0.7 RUN set -x \ && apt-get update \ && apt-get install -y curl \ && curl -sL https://github.com/z-classic/electrum-zcl/archive/${VERSION}.tar.gz |tar xzv \ - && mv electrum-zcl-Z-${VERSION} electrum-zcl \ + && mv electrum-zcl-${VERSION} electrum-zcl \ && cd electrum-zcl \ && apt-get install -y $(grep -vE "^\s*#" packages.txt | tr "\n" " ") \ && pip3 install -r requirements.txt \ diff --git a/contrib/build-osx/make_osx b/contrib/build-osx/make_osx index e5a656049459..96c4b385f57a 100755 --- a/contrib/build-osx/make_osx +++ b/contrib/build-osx/make_osx @@ -20,8 +20,8 @@ VERSION=`git describe --tags` # Paramterize PYTHON_VERSION=3.6.4 BUILDDIR=/tmp/electrum-build -PACKAGE=Electrum -GIT_REPO=https://github.com/spesmilo/electrum +PACKAGE=Electrum-ZCL +GIT_REPO=https://github.com/z-classic/electrum-zcl info "Installing Python $PYTHON_VERSION" @@ -81,4 +81,4 @@ info "Building binary" pyinstaller --noconfirm --ascii --name $VERSION contrib/build-osx/osx.spec || fail "Could not build binary" info "Creating .DMG" -hdiutil create -fs HFS+ -volname $PACKAGE -srcfolder dist/$PACKAGE.app dist/electrum-$VERSION.dmg || fail "Could not create .DMG" +hdiutil create -fs HFS+ -volname $PACKAGE -srcfolder dist/$PACKAGE.app dist/Electrum-ZCL-$VERSION.dmg || fail "Could not create .DMG" diff --git a/contrib/build-osx/osx.spec b/contrib/build-osx/osx.spec index a2c02f39b5a9..2977b6858ea2 100644 --- a/contrib/build-osx/osx.spec +++ b/contrib/build-osx/osx.spec @@ -5,7 +5,7 @@ from PyInstaller.utils.hooks import collect_data_files, collect_submodules, coll import sys import os -PACKAGE='Electrum' +PACKAGE='Electrum-ZCL' PYPKG='electrum' MAIN_SCRIPT='electrum' ICONS_FILE='electrum.icns'