summarylogtreecommitdiffstats
diff options
context:
space:
mode:
authorGilrain2020-01-16 09:59:53 +0100
committerGilrain2020-01-16 09:59:53 +0100
commitca9d46657bd45edb70e4c2db3983aac38961768d (patch)
treeeaeec974db5cf7564dc7bda27900db797c2fc948
parent859a449463e829a68f045ef2a5878cef5b99d66a (diff)
downloadaur-ca9d46657bd45edb70e4c2db3983aac38961768d.tar.gz
explicitly depend on AUR dotnet binaries (FS#65128)
-rw-r--r--.SRCINFO8
-rw-r--r--PKGBUILD6
-rw-r--r--changelog3
3 files changed, 11 insertions, 6 deletions
diff --git a/.SRCINFO b/.SRCINFO
index 21f2527354b6..5fca7c1536f7 100644
--- a/.SRCINFO
+++ b/.SRCINFO
@@ -1,7 +1,7 @@
pkgbase = asf
pkgdesc = Steam cards farmer.
pkgver = 4.1.1.7
- pkgrel = 1
+ pkgrel = 2
url = https://github.com/JustArchiNET/ArchiSteamFarm
install = install
changelog = changelog
@@ -10,8 +10,10 @@ pkgbase = asf
arch = aarch64
license = Apache
makedepends = git
- makedepends = dotnet-sdk>=3.1
- depends = aspnet-runtime>=3.1
+ makedepends = dotnet-sdk-bin
+ depends = dotnet-host-bin
+ depends = dotnet-runtime-bin
+ depends = aspnet-runtime-bin
optdepends = asf-ui: standalone web interface for ASF
backup = var/lib/asf/config/ASF.json
backup = usr/lib/asf/NLog.config
diff --git a/PKGBUILD b/PKGBUILD
index 8c3a2e5b7d3c..6ef68cf6c000 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -3,14 +3,14 @@
pkgname="asf"
pkgver="4.1.1.7"
-pkgrel=1
+pkgrel=2
pkgdesc="Steam cards farmer."
arch=('x86_64' 'armv7h' 'aarch64')
url="https://github.com/JustArchiNET/ArchiSteamFarm"
license=('Apache')
-depends=('aspnet-runtime>=3.1')
+depends=('dotnet-host-bin' 'dotnet-runtime-bin' 'aspnet-runtime-bin')
optdepends=('asf-ui: standalone web interface for ASF')
-makedepends=('git' 'dotnet-sdk>=3.1')
+makedepends=('git' 'dotnet-sdk-bin')
changelog=changelog
backup=('var/lib/asf/config/ASF.json' 'usr/lib/asf/NLog.config')
install=install
diff --git a/changelog b/changelog
index 21f28f3280f8..de7d718ab69d 100644
--- a/changelog
+++ b/changelog
@@ -1,3 +1,6 @@
+2020-01-16 Gilrain <gilrain+libre.arch A_T castelmo DOT_ re>
+ * 4.1.1.7-2:
+ pkg: explicitly depend on AUR dotnet binaries (FS#65128)
2020-01-03 Gilrain <gilrain+libre.arch A_T castelmo DOT_ re>
* 4.1.1.7-1:
Added two new item types: Sticker and ChatEffect. Those can be used for lootable, transferable and matchable types in the config - #1567, #1559.