Compatibility fixes

master
Tobi Sim 2015-02-21 15:59:41 +01:00
parent ad10570fb3
commit 706fe0011f
4 changed files with 30 additions and 21 deletions

View File

@ -1,6 +1,6 @@
Appname:=sailfish-python Appname:=$(shell cat appname.txt)
prefix:=/usr prefix:=/usr
temp:=/tmp/make temp:=/tmp/fpm
builddir:=./build builddir:=./build
sdkpath:=$(HOME)/SailfishOS sdkpath:=$(HOME)/SailfishOS
dependencies:=-d libsailfishapp-launcher -d python3-base -d pyotherside-qml-plugin-python3-qt5 dependencies:=-d libsailfishapp-launcher -d python3-base -d pyotherside-qml-plugin-python3-qt5
@ -12,7 +12,7 @@ jolla_wifi_ip:=Jolla
all: clean build-tmp rpm-virt rpm-jolla all: clean build-tmp rpm-virt rpm-jolla
make-jolla: build-tmp rpm-jolla send-jolla make-jolla-usb: build-tmp rpm-jolla send-jolla
make-jolla-wifi: build-tmp rpm-jolla send-jolla-wifi make-jolla-wifi: build-tmp rpm-jolla send-jolla-wifi
make-jolla-ap: build-tmp rpm-jolla send-jolla-ap make-jolla-ap: build-tmp rpm-jolla send-jolla-ap
make-virt: build-tmp rpm-virt send-virt make-virt: build-tmp rpm-virt send-virt
@ -30,32 +30,36 @@ build-tmp:
install -m 755 ./dat/$(Appname).sh $(temp)/usr/bin/$(Appname) install -m 755 ./dat/$(Appname).sh $(temp)/usr/bin/$(Appname)
rpm-virt: rpm-virt:
cd $(temp);fpm -f -s dir -t rpm $(dependencies) -p $(CURDIR)/$(Appname)-$(arch).rpm -n $(Appname) -a $(arch) --prefix / * cd $(temp);fpm -f -s dir -t rpm $(dependencies) -p $(CURDIR)/$(rpmname) -n $(Appname) -a $(arch) --prefix / *
rpm-jolla: arch:=noarch rpm-jolla: arch:=noarch
rpm-jolla: rpm-jolla:
cd $(temp);fpm -f -s dir -t rpm $(dependencies) -p $(CURDIR)/$(Appname)-$(arch).rpm -n $(Appname) -a $(arch) --prefix / * cd $(temp);fpm -f -s dir -t rpm $(dependencies) -p $(CURDIR)/$(rpmname) -n $(Appname) -a $(arch) --prefix / *
send-virt: send-virt:
rsync -vrp --rsh='ssh -p2223 -i $(sdkpath)/vmshare/ssh/private_keys/SailfishOS_Emulator/root' ./$(Appname)-$(arch).rpm root@localhost:/home/nemo/Downloads rsync -vrp --rsh='ssh -p2223 -i $(sdkpath)/vmshare/ssh/private_keys/SailfishOS_Emulator/root' ./$(rpmname) root@localhost:/tmp
ssh -p2223 -i $(sdkpath)/vmshare/ssh/private_keys/SailfishOS_Emulator/root root@localhost pkcon install-local -y /home/nemo/Downloads/$(Appname)-$(arch).rpm ssh -p2223 -i $(sdkpath)/vmshare/ssh/private_keys/SailfishOS_Emulator/root root@localhost pkcon install-local -y /tmp/$(rpmname) "&&" rm /tmp/$(rpmname)
send-jolla-wifi: arch:=noarch send-jolla-wifi: arch:=noarch
send-jolla-wifi: send-jolla-wifi:
rsync -vrp ./$(Appname)-$(arch).rpm root@$(jolla_wifi_ip):/home/nemo/Downloads rsync -vrp ./$(rpmname) root@$(jolla_wifi_ip):/tmp
ssh root@$(jolla_wifi_ip) pkcon install-local -y /home/nemo/Downloads/$(Appname)-$(arch).rpm ssh root@$(jolla_wifi_ip) pkcon install-local -y /tmp/$(rpmname) "&&" rm /tmp/$(rpmname)
send-jolla-ap: arch:=noarch send-jolla-ap: arch:=noarch
send-jolla-ap: jolla_wifi_ip:=192.168.1.1 send-jolla-ap: jolla_wifi_ip:=192.168.1.1
send-jolla-ap: send-jolla-ap:
rsync -vrp ./$(Appname)-$(arch).rpm root@$(jolla_wifi_ip):/home/nemo/Downloads rsync -vrp ./$(rpmname) root@$(jolla_wifi_ip):/tmp
ssh root@$(jolla_wifi_ip) pkcon install-local -y /home/nemo/Downloads/$(Appname)-$(arch).rpm ssh root@$(jolla_wifi_ip) pkcon install-local -y /tmp/$(rpmname) "&&" rm /tmp/$(rpmname)
send-jolla: arch:=noarch send-jolla: arch:=noarch
send-jolla: send-jolla:
rsync -vrp ./$(Appname)-$(arch).rpm root@$(jolla_usb_ip):/home/nemo/Downloads rsync -vrp ./$(Appname)-$(arch).rpm root@$(jolla_usb_ip):/tmp
ssh root@$(jolla_usb_ip) pkcon install-local -y /home/nemo/Downloads/$(Appname)-$(arch).rpm ssh root@$(jolla_usb_ip) pkcon install-local -y /tmp/$(Appname)-$(arch).rpm "&&" rm /tmp/$(Appname)-$(arch).rpm
clean: clean:
rm -rf $(temp) rm -rf $(temp)
rm -rf $(builddir) rm -rf $(builddir)
rm -rf ./$(rpmname)

View File

@ -1,6 +1,6 @@
[Desktop Entry] [Desktop Entry]
Type=Application Type=Application
X-Nemo-Application-Type=silica-qt5 X-Nemo-Application-Type=silica-qt5
Name=Scanner Name=sailfish-python
Icon=icon-launcher-component-gallery Icon=icon-launcher-component-gallery
Exec=sailfish-qml sailfish-scanner Exec=sailfish-qml sailfish-python

View File

@ -14,12 +14,17 @@ os.rename("./qml/"+oldname+".qml","./qml/"+newname+".qml")
os.rename("./dat/"+oldname+".desktop","./dat/"+newname+".desktop") os.rename("./dat/"+oldname+".desktop","./dat/"+newname+".desktop")
os.rename("./dat/"+oldname+".sh","./dat/"+newname+".sh") os.rename("./dat/"+oldname+".sh","./dat/"+newname+".sh")
makefile=open("./Makefile","r") def replaceInFile(oldname,newname,filename):
maketxt=makefile.read() makefile=open(filename,"r")
makefile.close() maketxt=makefile.read()
makefile=open("./Makefile","w") makefile.close()
makefile.write(re.sub("Appname:="+oldname,"Appname:="+newname,maketxt)) makefile=open(filename,"w")
makefile.close() makefile.write(re.sub("Appname:="+oldname,"Appname:="+newname,maketxt))
makefile.close()
for filename in ["./Makefile","./dat/"+newname+".desktop"]:
replaceInFile(oldname,newname,filename)
namefile=open("./appname.txt","w") namefile=open("./appname.txt","w")
namefile.write(newname+"\n") namefile.write(newname+"\n")

Binary file not shown.