Package Details: hamsket-bin 0.6.3-2

Git Clone URL: https://aur.archlinux.org/hamsket-bin.git (read-only, click to copy)
Package Base: hamsket-bin
Description: Forked Free and Open Source messaging and emailing app that combines common web applications into one
Upstream URL: https://github.com/TheGoddessInari/hamsket
Licenses: GPL3
Provides: hamsket
Submitter: freaknils
Maintainer: freaknils
Last Packager: freaknils
Votes: 10
Popularity: 0.021476
First Submitted: 2019-07-27 17:01 (UTC)
Last Updated: 2022-03-10 14:10 (UTC)

Latest Comments

1 2 Next › Last »

killaruns commented on 2022-02-16 06:56 (UTC) (edited on 2022-02-16 06:59 (UTC) by killaruns)

If the hamsket application stopped launching with an error.

[14685:0216/094943.832010:FATAL:gpu_data_manager_impl_private.cc(442)] GPU process isn't usable. Goodbye.

Add key to startup

--in-process-gpu &

flying-sheep commented on 2020-12-07 09:38 (UTC) (edited on 2020-12-07 09:42 (UTC) by flying-sheep)

Hi @freaknils, fyi you forgot to commit the .SRCINFO with the removed gtk2 dependency.

Also the newest .SRCINFO has pkgrel=2 so you need to bump pkgrel to 3.

flying-sheep commented on 2020-12-06 12:22 (UTC)

GTK2 is no longer needed pls remove

WorLord commented on 2020-12-05 01:58 (UTC) (edited on 2020-12-05 01:59 (UTC) by WorLord)

Newest (0.6.1) PKGBUILD that works:

#Maintainer: Nils Czernia <nils[at]czserver.de>

pkgname=hamsket-bin
_pkgname=hamsket
pkgver=0.6.1
pkgrel=2
pkgdesc='Forked Free and Open Source messaging and emailing app that combines common web applications into one'
arch=('x86_64')
depends=('alsa-lib' 'bash' 'desktop-file-utils' 'gtk2' 'libnotify' 'libxtst' 'libxss' 'nss')
provides=('hamsket')
url='https://github.com/TheGoddessInari/hamsket'
license=('GPL3')
source=("$_pkgname.tar.gz::https://github.com/TheGoddessInari/hamsket/releases/download/$pkgver/hamsket-$pkgver.tar.gz"
        "${_pkgname}.desktop"
        "${_pkgname}.png")
sha256sums=('eef331a2dff77f4cc56ddcecd2effc245e431a2447c60f28c955106728f5cae5'
            '18ecd40929511a7083a690ed77690571b2160200298bf589e8818aad97317f27'
            '0bf4d0c849ad6151f77b346fea0424fab910f434378f9890b16fd15a32a10064')

package() {
    install -d "${pkgdir}/"{opt/hamsket,usr/{bin,share/pixmaps}}

    cp -R "${srcdir}/hamsket-${pkgver}/"* "${pkgdir}/opt/${_pkgname}/"
    ln -rs "${pkgdir}/opt/${_pkgname}/hamsket" "${pkgdir}/usr/bin/hamsket"
    chmod 4755 "${pkgdir}/opt/${_pkgname}/chrome-sandbox"

    install -Dm644 "$srcdir/${_pkgname}.png" "${pkgdir}/usr/share/pixmaps/${_pkgname}.png"

    desktop-file-install "${srcdir}/${_pkgname}.desktop" --dir "${pkgdir}/usr/share/applications/"
}

freaknils commented on 2020-11-25 18:14 (UTC)

@undu: Thanks for your support! Are you interested in Co-Maintaining?

undu commented on 2020-11-25 00:19 (UTC)

got 0.6.0 to work with changes in PKGBUILD and the dektop file: https://gist.github.com/undu/851f9a39091f2aff033e7e28c61c0293

The major change is that rambox name is not used anymore, I think the "conflicts" sections can be removed as well.

freaknils commented on 2020-03-24 06:14 (UTC)

@ngoonee: Sound (notifications) work fine for me.

ngoonee commented on 2020-03-24 02:52 (UTC) (edited on 2020-03-25 22:58 (UTC) by ngoonee)

Does sound work for anyone here? Mic and video does but I don't get any sound output.

EDIT: I'm an idiot, it was the 'do-not-disturb' mode. Don't remember ever setting that, but that's what killed all sound (including videos etc). A bit counter-intuitive but at least it can be made to work.

dpeukert commented on 2019-12-08 12:04 (UTC)

@freaknils The current PKGBUILD is broken, because globbing doesn't work inside of quotes. Here's a fix:

diff --git a/.SRCINFO b/.SRCINFO
index 9c3a325..b638a9b 100644
--- a/.SRCINFO
+++ b/.SRCINFO
@@ -1,7 +1,7 @@
 pkgbase = hamsket-bin
    pkgdesc = Forked Free and Open Source messaging and emailing app that combines common web applications into one
    pkgver = 0.5.20
-   pkgrel = 2
+   pkgrel = 3
    url = https://github.com/TheGoddessInari/hamsket
    arch = x86_64
    license = GPL3
diff --git a/PKGBUILD b/PKGBUILD
index 24e1ae1..79b2e4a 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -3,7 +3,7 @@
 pkgname=hamsket-bin
 _pkgname=hamsket
 pkgver=0.5.20
-pkgrel=2
+pkgrel=3
 pkgdesc='Forked Free and Open Source messaging and emailing app that combines common web applications into one'
 arch=('x86_64')
 depends=('alsa-lib' 'bash' 'desktop-file-utils' 'gtk2' 'libnotify' 'libxtst' 'libxss' 'nss')
@@ -19,9 +19,9 @@ sha256sums=('badb9ecc1962135c6d284a92a99a8ce774e0eaf2eb2cde25e01c43e637611469'
             '0bf4d0c849ad6151f77b346fea0424fab910f434378f9890b16fd15a32a10064')

 package() {
-    install -d "${pkgdir}/{opt/hamsket,usr/{bin,share/pixmaps}}"
+    install -d "${pkgdir}/"{opt/hamsket,usr/{bin,share/pixmaps}}

-    cp -R "${srcdir}/Rambox-${pkgver}/*" "${pkgdir}/opt/${_pkgname}/"
+    cp -R "${srcdir}/Rambox-${pkgver}/"* "${pkgdir}/opt/${_pkgname}/"
     ln -rs "${pkgdir}/opt/${_pkgname}/rambox" "${pkgdir}/usr/bin/rambox"
     chmod 4755 "${pkgdir}/opt/${_pkgname}/chrome-sandbox"

flying-sheep commented on 2019-12-07 13:34 (UTC) (edited on 2019-12-07 13:34 (UTC) by flying-sheep)

Please remove the gconf dependency. Electron hasn’t depended on it for a long time.

Also you need to quote your shell variables. $srcdir and $pkgdir may not occur outside of "":

#Maintainer: Nils Czernia <nils[at]czserver.de>

pkgname=hamsket-bin
_pkgname=hamsket
pkgver=0.5.20
pkgrel=1
pkgdesc='Forked Free and Open Source messaging and emailing app that combines common web applications into one'
arch=('x86_64')
depends=('alsa-lib' 'bash' 'desktop-file-utils' 'gtk2' 'libnotify' 'libxtst' 'libxss' 'nss')
provides=('hamsket')
conflicts=('rambox' 'rambox-os-git' 'rambox-bin' 'ramboxpro-bin' 'rambox-os-bin' 'rambox-os')
url='https://github.com/TheGoddessInari/hamsket'
license=('GPL3')
source=("$_pkgname.tar.gz::https://github.com/TheGoddessInari/hamsket/releases/download/$pkgver/Rambox-$pkgver.tar.gz"
        "${_pkgname}.desktop"
        "${_pkgname}.png")
sha256sums=('badb9ecc1962135c6d284a92a99a8ce774e0eaf2eb2cde25e01c43e637611469'
            '688c911beb23d63234b29b912a744644957cffe944c6cdd068bd5c55423ae98c'
            '0bf4d0c849ad6151f77b346fea0424fab910f434378f9890b16fd15a32a10064')

package() {
    install -d "${pkgdir}"/{opt/hamsket,usr/{bin,share/pixmaps}}

    cp -R "${srcdir}/Rambox-${pkgver}/"* "${pkgdir}/opt/${_pkgname}/"
    ln -rs "${pkgdir}/opt/${_pkgname}/rambox" "${pkgdir}/usr/bin/rambox"
    chmod 4755 "${pkgdir}/opt/${_pkgname}/chrome-sandbox"

    install -Dm644 "$srcdir/${_pkgname}.png" "${pkgdir}/usr/share/pixmaps/${_pkgname}.png"

    desktop-file-install "${srcdir}/${_pkgname}.desktop" --dir "${pkgdir}/usr/share/applications/"
}