diff options
author | Stephan Springer | 2020-06-18 14:26:35 +0200 |
---|---|---|
committer | Stephan Springer | 2020-06-18 14:26:35 +0200 |
commit | 3279f37a47188ae74a4fbf15c2cbc68c4dd8132f (patch) | |
tree | fe17d1fa6de0a80fabc78b08a4b56c6a74a7d2ef | |
parent | 6c2ba188cc4300fa03cea478625a7926f72e0f83 (diff) | |
download | aur-3279f37a47188ae74a4fbf15c2cbc68c4dd8132f.tar.gz |
update to version 2.2.10
-rw-r--r-- | .SRCINFO | 8 | ||||
-rw-r--r-- | PKGBUILD | 8 |
2 files changed, 9 insertions, 7 deletions
@@ -1,7 +1,7 @@ pkgbase = gns3-server pkgdesc = GNS3 network simulator, Server package - pkgver = 2.2.9 - pkgrel = 2 + pkgver = 2.2.10 + pkgrel = 1 url = https://github.com/GNS3/gns3-server install = gns3-server.install arch = x86_64 @@ -30,9 +30,9 @@ pkgbase = gns3-server optdepends = libvirt: needed for the NAT cloud optdepends = vpcs: Simple PC emulation for basic network operations. optdepends = ubridge: Bridge for UDP tunnels, Ethernet, TAP and VMnet interfaces. - source = gns3-server-2.2.9.tar.gz::https://github.com/GNS3/gns3-server/archive/v2.2.9.tar.gz + source = gns3-server-2.2.10.tar.gz::https://github.com/GNS3/gns3-server/archive/v2.2.10.tar.gz source = gns3-server@.service - sha256sums = 054f37586551fb806d432ba8490ca85fc98da8897f0efae3672e2389fc698f79 + sha256sums = 4388974043680e877533564cb5a2efe2ed215a59a13abcabb3ac29d9b92f86e0 sha256sums = b43f0ead963a06e613d3303d2c66372b57f46c750b3d6df20eb99c11078de65f pkgname = gns3-server @@ -3,8 +3,8 @@ # Contributor: korjjj <korjjj+aur[at]gmail[dot]com> pkgname=gns3-server -pkgver=2.2.9 -pkgrel=2 +pkgver=2.2.10 +pkgrel=1 pkgdesc='GNS3 network simulator, Server package' arch=('x86_64') url='https://github.com/GNS3/gns3-server' @@ -40,14 +40,16 @@ optdepends=( install="$pkgname".install source=("$pkgname-$pkgver.tar.gz::$url/archive/v$pkgver.tar.gz" "$pkgname@.service") -sha256sums=('054f37586551fb806d432ba8490ca85fc98da8897f0efae3672e2389fc698f79' +sha256sums=('4388974043680e877533564cb5a2efe2ed215a59a13abcabb3ac29d9b92f86e0' 'b43f0ead963a06e613d3303d2c66372b57f46c750b3d6df20eb99c11078de65f') prepare() { cd "$pkgname-$pkgver" + # Arch usually has the latest versions. Patch requirements to allow them. sed -i \ -e 's|^aiofiles==0\.4\.0$|aiofiles>=0.4.0|' \ -e 's|^psutil==5\.6\.6$|psutil>=5.6.6|' \ + -e 's|^py-cpuinfo==5\.0\.0$|py-cpuinfo>=5.0.0|' \ requirements.txt } |