summarylogtreecommitdiffstats
diff options
context:
space:
mode:
authorBaptiste Careil2021-02-24 23:44:43 +0100
committerBaptiste Careil2021-02-24 23:44:43 +0100
commit61a6670c85ac59ca2f2be75cee1214d030e59f8b (patch)
tree2b72d85e73cf960fe476731c0794cb740b075409
parent2a633d4782b75920825033df351157c3b4240981 (diff)
downloadaur-61a6670c85ac59ca2f2be75cee1214d030e59f8b.tar.gz
Fixed patch and added url scheme association
-rw-r--r--.SRCINFO8
-rw-r--r--PKGBUILD10
-rw-r--r--PathOfBuilding-force-disable-devmode.patch7
-rw-r--r--PathOfBuilding.sh2
-rw-r--r--PathOfBuildingCommunity.desktop3
5 files changed, 12 insertions, 18 deletions
diff --git a/.SRCINFO b/.SRCINFO
index d80d43bf4ce2..25b76391a0cb 100644
--- a/.SRCINFO
+++ b/.SRCINFO
@@ -1,6 +1,6 @@
pkgbase = path-of-building-community-git
pkgdesc = An offline build planner for Path of Exile using PoBFrontent, LocalIdentity's fork
- pkgver = 1.4.170.25.r3406.52.513
+ pkgver = 1.4.170.27.r3697.53.513
pkgrel = 1
url = https://github.com/PathOfBuildingCommunity/PathOfBuilding
arch = x86_64
@@ -34,13 +34,13 @@ pkgbase = path-of-building-community-git
sha256sums = SKIP
sha256sums = SKIP
sha256sums = 6d21872a2b2bdbfaebb20de5cac28ac402316e5314c97a89049320ff13c2f622
- sha256sums = f0489b7dd1dcb3f3c22c41e646a5a85d1c7d63d014df6bf1df14fde4361d692d
+ sha256sums = db9eec714bf9d1c52b1ccd7adc9e720519585becf7f9a1f18cca1888d3e1cc11
sha256sums = 9dbc8802b74ceed78f1a6ba1d5b90251f5ae7f9a8cf5497426e4a35001112fcd
- sha256sums = 1cca891d3fcb74df7cdf7585c1d96f68b7c3a1cca913589730fcb7e7184888d7
+ sha256sums = 5774ca7bac28ac5e14fd502c3a80e65424f26a140dfe8f4546591fa7a93823a0
sha256sums = de8c586f5e69efefe7734f31de17137fc34a06da7428f8f57f640d490b94ea61
sha256sums = 2467d10c7b5e201e337ba334a829e293a07027251bcda2b1f39774a62e8ff194
sha256sums = a64198061f60168ec07df33c37948e343eced7eeafe574cc20bdcf3a1d480cbc
- sha256sums = 7e3f2870457dc40b44f6be43791901447c5a5754a77551b5ec92ac3a66fc7ee1
+ sha256sums = 079eff1a5e74cb6d776723f7c3d36349e426edaa332a8177ff8f5e78af56cf64
pkgname = path-of-building-community-git
diff --git a/PKGBUILD b/PKGBUILD
index 1905efc0477c..16fa51d761d9 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -6,7 +6,7 @@ pkgdesc="An offline build planner for Path of Exile using PoBFrontent, LocalIden
arch=('x86_64')
url='https://github.com/PathOfBuildingCommunity/PathOfBuilding'
license=('MIT')
-pkgver=1.4.170.25.r3406.52.513
+pkgver=1.4.170.27.r3697.53.513
depends=('zlib' 'qt5-base' 'lua51' 'lua51-bitop' 'libgl' 'curl' 'ttf-liberation' 'ttf-bitstream-vera')
makedepends=('meson' 'ninja' 'unzip' 'rsync' 'git')
@@ -29,13 +29,13 @@ sha256sums=(
'SKIP'
'SKIP'
'6d21872a2b2bdbfaebb20de5cac28ac402316e5314c97a89049320ff13c2f622'
- 'f0489b7dd1dcb3f3c22c41e646a5a85d1c7d63d014df6bf1df14fde4361d692d'
+ 'db9eec714bf9d1c52b1ccd7adc9e720519585becf7f9a1f18cca1888d3e1cc11'
'9dbc8802b74ceed78f1a6ba1d5b90251f5ae7f9a8cf5497426e4a35001112fcd'
- '1cca891d3fcb74df7cdf7585c1d96f68b7c3a1cca913589730fcb7e7184888d7'
+ '5774ca7bac28ac5e14fd502c3a80e65424f26a140dfe8f4546591fa7a93823a0'
'de8c586f5e69efefe7734f31de17137fc34a06da7428f8f57f640d490b94ea61'
'2467d10c7b5e201e337ba334a829e293a07027251bcda2b1f39774a62e8ff194'
'a64198061f60168ec07df33c37948e343eced7eeafe574cc20bdcf3a1d480cbc'
- '7e3f2870457dc40b44f6be43791901447c5a5754a77551b5ec92ac3a66fc7ee1'
+ '079eff1a5e74cb6d776723f7c3d36349e426edaa332a8177ff8f5e78af56cf64'
)
noextract=(
'PathOfBuilding-runtime-src.zip'
@@ -58,7 +58,7 @@ prepare() {
pkgver() {
cd "${srcdir}/PathOfBuilding"
- pob_v=$(head -n1 CHANGELOG.md | sed 's/[^0-9]*\(\w\+\(\.\w\+\)\+\).*/\1/')
+ pob_v=$(git describe --tags --abbrev=0 | sed 's/^v//')
pob_r=$(git rev-list --count HEAD)
cd "${srcdir}/pobfrontend"
pf_r=$(git rev-list --count HEAD)
diff --git a/PathOfBuilding-force-disable-devmode.patch b/PathOfBuilding-force-disable-devmode.patch
index 9a5c3d5ffdd6..4da5c9a6db1a 100644
--- a/PathOfBuilding-force-disable-devmode.patch
+++ b/PathOfBuilding-force-disable-devmode.patch
@@ -41,10 +41,3 @@ index 1af88e0..683fc33 100644
-- If running in dev mode or standalone mode, put user data in the script path
self.userPath = GetScriptPath().."/"
else
-@@ -917,4 +917,4 @@ do
- end
- end
-
--return main
-\ No newline at end of file
-+return main
diff --git a/PathOfBuilding.sh b/PathOfBuilding.sh
index 1b524e99e135..d7b640095bce 100644
--- a/PathOfBuilding.sh
+++ b/PathOfBuilding.sh
@@ -1,2 +1,2 @@
#!/bin/bash
-cd /opt/PathOfBuildingCommunity/ && LC_ALL=C ./pobfrontend
+cd /opt/PathOfBuildingCommunity/ && LC_ALL=C ./pobfrontend "$@"
diff --git a/PathOfBuildingCommunity.desktop b/PathOfBuildingCommunity.desktop
index fb847097cf3b..4474d2bc86cf 100644
--- a/PathOfBuildingCommunity.desktop
+++ b/PathOfBuildingCommunity.desktop
@@ -1,10 +1,11 @@
[Desktop Entry]
Name=Path of Building (Community)
Comment=Offline build planer for Path of Exile
-Exec=PathOfBuildingCommunity
+Exec=PathOfBuildingCommunity %U
Terminal=false
Type=Application
Encoding=UTF-8
Icon=PathOfBuildingCommunity
Categories=Game;
Keywords=poe;pob;pobc;path;exile;
+MimeType=x-scheme-handler/pob;