summarylogtreecommitdiffstats
diff options
context:
space:
mode:
authorIan MacKay2018-08-31 08:23:03 -0700
committerIan MacKay2018-08-31 08:23:03 -0700
commit6c49f979035e06720053a1264fb184756657814e (patch)
tree125cf358480d5305017e457e0ad19aaa0e137b93
parentf8941e414ff54727e93e82375e7acef3aacf7d5c (diff)
downloadaur-6c49f979035e06720053a1264fb184756657814e.tar.gz
Bump dependencies until dugite is updated
-rw-r--r--.SRCINFO8
-rw-r--r--PKGBUILD10
2 files changed, 9 insertions, 9 deletions
diff --git a/.SRCINFO b/.SRCINFO
index bccd532ab864..f6dede54b43b 100644
--- a/.SRCINFO
+++ b/.SRCINFO
@@ -1,19 +1,19 @@
pkgbase = github-desktop-bin
pkgdesc = GUI for managing Git and GitHub.
pkgver = 1.3.4
- pkgrel = 1
+ pkgrel = 2
url = https://desktop.github.com
arch = x86_64
license = MIT
depends = gnome-keyring
depends = git
- depends = libcurl-gnutls
+ depends = libcurl-openssl-1.0
optdepends = hub: CLI interface for GitHub.
provides = github-desktop
conflicts = github-desktop
- source = https://github.com/shiftkey/desktop/releases/download/release-1.3.3/GitHubDesktop-linux-amd64-1.3.3.deb
+ source = https://github.com/shiftkey/desktop/releases/download/release-1.3.4/GitHubDesktop-linux-amd64-1.3.4.deb
source = github-desktop.desktop
- sha256sums = SKIP
+ sha256sums = 47c1929b3d2c4c73aa5e8db9881a4d7ff03d4fbdf3f511481633275cbe0ad51c
sha256sums = 8545ffdcd8685a2d642a733f9dc407b9b269e2c8fd54f30e1eb336c2aff89318
pkgname = github-desktop-bin
diff --git a/PKGBUILD b/PKGBUILD
index 2fc82462a49a..0e399cd2e57b 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -4,12 +4,12 @@ _pkgname='github-desktop'
pkgname="${_pkgname}-bin"
pkgver=1.3.4
gitname="release-${pkgver//_/-}"
-pkgrel=1
+pkgrel=2
pkgdesc="GUI for managing Git and GitHub."
arch=('x86_64')
url="https://desktop.github.com"
license=('MIT')
-depends=('gnome-keyring' 'git' 'libcurl-gnutls')
+depends=('gnome-keyring' 'git' 'libcurl-openssl-1.0')
optdepends=('hub: CLI interface for GitHub.')
provides=(${_pkgname})
conflicts=(${_pkgname})
@@ -18,7 +18,7 @@ source=(
${_pkgname}.desktop
)
sha256sums=(
- 'SKIP'
+ 47c1929b3d2c4c73aa5e8db9881a4d7ff03d4fbdf3f511481633275cbe0ad51c
8545ffdcd8685a2d642a733f9dc407b9b269e2c8fd54f30e1eb336c2aff89318
)
package() {
@@ -26,5 +26,5 @@ package() {
mv "${pkgdir}/opt/GitHubDesktop" "${pkgdir}/opt/${_pkgname}"
rm "${pkgdir}/usr/share/applications/desktop.desktop"
install -Dm644 "${_pkgname}.desktop" "${pkgdir}/usr/share/applications/${_pkgname}.desktop"
- printf "#!/bin/sh\n\n/opt/${_pkgname}/desktop \"$@\"\n" | install -Dm755 /dev/stdin "${pkgdir}/usr/bin/${_pkgname}"
-} \ No newline at end of file
+ printf "#!/bin/sh\n\nLD_PRELOAD=libcurl.so.4 /opt/${_pkgname}/desktop \"$@\"\n" | install -Dm755 /dev/stdin "${pkgdir}/usr/bin/${_pkgname}"
+}