summarylogtreecommitdiffstats
path: root/PKGBUILD
diff options
context:
space:
mode:
authorStephan Springer2021-06-16 14:08:54 +0200
committerStephan Springer2021-06-16 14:08:54 +0200
commit1e4e4385cc005476f9e6099f3d0d2ea1fba85f1c (patch)
treeb7dbfd01eeb1a4e1a8bdf331ba350ab43dd9c7e2 /PKGBUILD
parentf31f3de95bf36decde2fbe463ee4dd78ff1f7a31 (diff)
downloadaur-1e4e4385cc005476f9e6099f3d0d2ea1fba85f1c.tar.gz
works on arch = aarch64, too
and update requirements.txt patching
Diffstat (limited to 'PKGBUILD')
-rw-r--r--PKGBUILD9
1 files changed, 6 insertions, 3 deletions
diff --git a/PKGBUILD b/PKGBUILD
index 2b1f496f9de9..58550288d147 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -3,10 +3,10 @@
_pkgname=gns3-server
pkgname=$_pkgname-git
-pkgver=v2.2.20.r4.g4e61cc81
+pkgver=v2.2.22.r0.g10daab21
pkgrel=1
pkgdesc='GNS3 network simulator, Server package'
-arch=('x86_64')
+arch=('x86_64' 'aarch64')
url='https://github.com/GNS3/gns3-server'
license=('GPL3')
groups=('gns3')
@@ -53,9 +53,12 @@ prepare() {
# Arch usually has the latest versions. Patch requirements to allow them.
sed -i \
-e 's|^aiohttp==3\.7\.4.*|aiohttp>=3.7.4|' \
- -e 's|^aiofiles==0\.6\.0$|aiofiles>=0.6.0|' \
+ -e 's|^aiofiles==0\.7\.0$|aiofiles>=0.7.0|' \
+ -e 's|^Jinja2==3\.0\.1$|Jinja2>=3.0.1|' \
+ -e 's|^sentry-sdk==1\.1\.0$|sentry-sdk>=1.1.0|' \
-e 's|^psutil==5\.8\.0$|psutil>=5.8.0|' \
-e 's|^distro==1\.5\.0$|distro>=1.5.0|' \
+ -e 's|^py-cpuinfo==8\.0\.0$|py-cpuinfo>=8.0.0|' \
requirements.txt
}