Package Details: tangram 3.1-1

Git Clone URL: https://aur.archlinux.org/tangram.git (read-only, click to copy)
Package Base: tangram
Description: Browser for your pinned tabs
Upstream URL: https://apps.gnome.org/Tangram
Licenses: GPL-3.0-or-later
Submitter: sonny
Maintainer: yochananmarqos
Last Packager: yochananmarqos
Votes: 7
Popularity: 0.000031
First Submitted: 2019-09-16 16:37 (UTC)
Last Updated: 2024-05-27 15:17 (UTC)

Latest Comments

« First ‹ Previous 1 2 3 Next › Last »

iavalos commented on 2023-05-01 18:35 (UTC)

I upgraded to 3.0, and now I'm having this issue:

(re.sonny.Tangram:353685): Gjs-CRITICAL **: 12:03:48.560: JS ERROR: TypeError: application.runAsync is not a function
main@resource:///re/sonny/Tangram/main.js:33:22
@file:///usr/bin/re.sonny.Tangram:20:25


(re.sonny.Tangram:353685): Gjs-CRITICAL **: 12:03:48.560: Module file:///usr/bin/re.sonny.Tangram threw an exception

yochananmarqos commented on 2023-05-01 15:47 (UTC)

@greut: It's webkitgtk-6.0. Thanks for the heads up.

greut commented on 2023-05-01 09:22 (UTC) (edited on 2023-05-01 09:23 (UTC) by greut)

It looks like the v3 would require webkit2gtk-6.0 which doesn't exist yet (afaik).

(re.sonny.Tangram:5300): Gjs-CRITICAL **: 11:17:57.617: JS ERROR: Error: Requiring WebKit, version 6.0: Typelib file for namespace 'WebKit', version '6.0' not found
require@resource:///org/gnome/gjs/modules/esm/gi.js:14:24                                                                                                                                                                               
@gi://WebKit?version=6.0:3:25 

jlangeveld commented on 2023-01-19 08:07 (UTC)

For tangram 2 I got an error reporting that tangram needs webkit2-v5. I needed to install package webkit2gtk-5.0 to fix that error, so you probably need to fix that dependency

MartinX3 commented on 2022-04-30 17:48 (UTC)

@yochananmarqos: Thank you very much and good to know. :)

yochananmarqos commented on 2022-04-30 15:03 (UTC)

@MartinX3: Done. The project was originally called Gigagram and there was a tangram-web package for a short time, but that was quite awhile ago.

MartinX3 commented on 2022-04-30 09:45 (UTC)

You should add gst-plugins-bad as optional dependency. Telegram triggers the following warning:

WebKit wasn't able to find a WebVTT encoder. Subtitles handling will be degraded unless gst-plugins-bad is installed.
GStreamer element fakevideosink not found. Please install it

Also I don't find the conflicting packages gigagram, tangram-web in AUR or the repos. Maybe that should be removed?

yochananmarqos commented on 2021-11-24 02:59 (UTC)

Figures. The one time I do a quick pkgver bump, I miss something. Thanks for catching that.

ishanarora commented on 2021-11-23 23:48 (UTC) (edited on 2021-11-23 23:48 (UTC) by ishanarora)

@esrh git submodules should be added to the sources array according to https://wiki.archlinux.org/title/VCS_package_guidelines#Git_submodules

Following is a patch to fix the missing troll source.

diff --git a/PKGBUILD b/PKGBUILD
index 9853c25..9206a79 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -12,8 +12,15 @@ makedepends=('git' 'meson')
 #checkdepends=('appstream-glib')
 conflicts=('gigagram' "$pkgname-web")
 replaces=("$pkgname-web")
-source=("$pkgname::git+https://github.com/sonnyp/Tangram.git#tag=v$pkgver")
-sha256sums=('SKIP')
+source=("$pkgname::git+https://github.com/sonnyp/Tangram.git#tag=v$pkgver" "git+https://github.com/sonnyp/troll.git")
+sha256sums=('SKIP' 'SKIP')
+
+prepare() {
+  cd "$srcdir/$pkgname"
+  git submodule init
+  git config submodule.troll.url "$srcdir/troll"
+  git submodule update
+}

 build() {
   arch-meson "$pkgname" build