Package Details: gitfiend 0.44.3-1

Git Clone URL: https://aur.archlinux.org/gitfiend.git (read-only, click to copy)
Package Base: gitfiend
Description: A Git client designed for humans
Upstream URL: https://gitfiend.com
Keywords: git
Licenses: ISC
Submitter: None
Maintainer: guemidiborhane
Last Packager: guemidiborhane
Votes: 10
Popularity: 0.000034
First Submitted: 2019-10-15 18:28 (UTC)
Last Updated: 2023-11-22 15:14 (UTC)

Pinned Comments

<deleted-account> commented on 2020-03-08 18:54 (UTC)

Thanks @tlmhs - next time just flag the package out of date and I will update the pkgbuild

Latest Comments

Azzybana commented on 2023-06-10 03:49 (UTC) (edited on 2023-06-10 03:50 (UTC) by Azzybana)

Since it's already out of date, if anyone needs...

-pkgver=0.41.4

+pkgver=0.42.0

-md5sums=('a3ef28f163d8d082a4c8a716fb29798e')

+md5sums=('bde2c4f24fb25e8e40ce0e1c288c85d7')

MD5 confirmed via direct download, as well as https://web.archive.org/web/20230610034627/https://gitfiend.com/resources/GitFiend_0.42.0_amd64.deb

rfc commented on 2022-09-23 22:30 (UTC)

Can you please update it to 0.36.1?

pkgname=gitfiend
_pkgname=GitFiend
pkgver=0.36.1
pkgrel=1
pkgdesc='A Git client designed for humans'
arch=('x86_64')
license=('ISC')
depends=('libnotify' 'nss' 'libxss' 'libxtst' 'xdg-utils' 'at-spi2-atk' 'libappindicator-gtk3' 'libsecret')
url="https://gitfiend.com"
options=('!strip')
source=("https://gitfiend.com/resources/${_pkgname}_${pkgver}_amd64.deb")
md5sums=('25715a7d0524b621a67b7393bc000815')
package() {
    tar -xvf data.tar.xz -C ${pkgdir}
    chmod 4755 ${pkgdir}/opt/GitFiend/chrome-sandbox
    install -dm755 "$pkgdir/usr/bin"
    ln -sf "/opt/GitFiend/$pkgname" "$pkgdir/usr/bin/$pkgname"
}

djmattyg007 commented on 2021-03-01 02:45 (UTC)

The references to $pkgdir need to be quoted. As it stands right now, if I was to build this package in a directory with spaces in the name, it wouldn't work properly.

<deleted-account> commented on 2020-03-08 18:54 (UTC)

Thanks @tlmhs - next time just flag the package out of date and I will update the pkgbuild

timhs commented on 2020-03-08 18:38 (UTC)

Today I had problems while updating. I had to change PKGBUILD: pkgver=0.22.6 and md5sums=('3c818ac78a76d98ab28d178463dbb8b5') Now it works

<deleted-account> commented on 2019-10-16 04:44 (UTC)

Thank you very much for you time and work.

yochananmarqos commented on 2019-10-15 19:51 (UTC) (edited on 2019-10-15 19:55 (UTC) by yochananmarqos)

You're missing the dependencies and the license is ISC, not custom. The binary should also be symlinked. Please see the control and postinst files in the deb package.

Why are you disabling stripping the binary? It works fine and makes the package about 5 MB smaller.

pkgname=gitfiend
pkgver=0.19.5
pkgrel=1
pkgdesc='A Git client designed for humans'
arch=('x86_64')
url="https://gitfiend.com"
license=('ISC')
depends=('libnotify' 'nss' 'libxss' 'libxtst' 'xdg-utils' 'at-spi2-atk' 
         'libappindicator-gtk3' 'libsecret')
source=("https://gitfiend.com/resources/GitFiend_${pkgver}_amd64.deb")
sha256sums=('897c77da68760830ad4026ea36e46ee7a5ed9c238a8a2daa9155eba1363c2132')

package() {
    tar -xvf data.tar.xz -C "$pkgdir"

    install -dm755 "$pkgdir/usr/bin"
    ln -sf "/opt/GitFiend/$pkgname" "$pkgdir/usr/bin/$pkgname"
}