Package Details: trillian 6.3.0.1-1

Git Clone URL: https://aur.archlinux.org/trillian.git (read-only, click to copy)
Package Base: trillian
Description: A commercial, multi-protocol and cross-platform IM client
Upstream URL: https://www.trillian.im
Keywords: im
Licenses: proprietary
Submitter: mariusn
Maintainer: mwawrzyniak
Last Packager: mwawrzyniak
Votes: 16
Popularity: 0.000042
First Submitted: 2013-10-09 08:12 (UTC)
Last Updated: 2020-07-13 21:40 (UTC)

Latest Comments

« First ‹ Previous 1 2 3 4 5 6 7 Next › Last »

DefaultSpatula commented on 2017-12-15 14:24 (UTC)

I've been in touch with Kevin about the icu package dependency. They just released v6.1.0.4 yesterday that resolves all those issues. FYI: The libzip library hacks are also no longer needed.

Use this PKGBUILD, folks: https://pastebin.com/DF2P7HGs

Hi-Angel commented on 2017-12-15 08:06 (UTC)

Wow, that seriously screwed up. Ha-ha, I didn't even know comments support some kind of formatting. Well, here's the pastebin then https://pastebin.com/HzyqkHeg

Hi-Angel commented on 2017-12-15 08:04 (UTC)

Sorry, I don't really use trillian (I have it for some short experimental purposes) so can't take over the package; however after recent upgrade I started getting lots of errors with libs of icu package. I noted that trillian was linked to -59 icu version directly, so I was about to make a hacky package for icu-59, but then figured I could as well rather make newer PKGBUILD for trillian and share it. Here it is:

Original Maintainer: mariusn marius@softpedia.com
Previous Maintainer: HanFox <hanfox.co.uk></hanfox.co.uk>
Maintainer: Xyon admin@jbladen.co.uk
Contributor: Doug Newgard scimmia22@outlook.com

pkgname=trillian pkgver=6.1.0.4 pkgrel=1 pkgdesc="A commercial, multi-protocol and cross-platform IM client" arch=('x86_64') url="https://www.trillian.im" license=('Proprietary') depends=('gtkmm3' 'libzip' 'openssl' 'webkitgtk' 'libnotify' 'libpulse' 'libxss' 'librsvg') optdepends=('libappindicator-gtk3: tray icon support') install='trillian.install'

source_x86_64=("https://www.trillian.im/get/linux/6.1/${pkgname}_${pkgver}_amd64.deb") md5sums_x86_64=('72adfff33c583082b1605270a24577b0')

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

libzip_link=/usr/lib/libzip.so.2 if [ ! -f "$libzip_link" ]; then mkdir -p $pkgdir/usr/lib ln -s /usr/lib/libzip.so $pkgdir$libzip_link fi }

Kisuke-CZE commented on 2017-09-24 16:49 (UTC) (edited on 2017-09-26 11:59 (UTC) by Kisuke-CZE)

Tried to install 6.1, but new version does not even start for me. Seems like some webkitgtk problem: trillian: symbol lookup error: /usr/lib/libwebkitgtk-3.0.so.0: undefined symbol: cairo_gl_surface_get_width Update: Actually it works. I just had to recompile webkitgtk (which took a long time), then it works. BTW, does anyone got Fedora build working on arch? Since fedora has GNOME 3.24 as default DE it could be better integrated with this DE (which I use on arch). I tried to install it from RPM using medified PKGBUILD, but I ended up with trillian not starting and with this error: trillian: /usr/lib/libssl.so.10: version `libssl.so.10' not found (required by trillian) trillian: /usr/lib/libcrypto.so.10: version `libcrypto.so.10' not found (required by trillian) Unfortunately adding links does not help: mkdir -p ${pkgdir}/usr/lib ln -s /usr/lib/libcrypto.so ${pkgdir}/usr/lib/libcrypto.so.10 ln -s /usr/lib/libssl.so ${pkgdir}/usr/lib/libssl.so.10

realmain commented on 2017-09-23 17:49 (UTC)

Trillian 6.1 has been released btw https://www.trillian.im/get/linux/6.1/linux.html

Kisuke-CZE commented on 2017-09-08 19:35 (UTC)

Does not work for me. When trying to connect I got this error: trillian: symbol lookup error: /usr/share/trillian/plugins/oscar.so: undefined symbol:

DefaultSpatula commented on 2017-05-26 23:01 (UTC)

Version 1.0.2.l-1 of the openssl-1.0 package resolves the compatibility issues for me. Using HanFox's PKGBUILD below (thanks!), replace the openssl dependency with openssl-1.0. You shouldn't need libopenssl-1.0-compat anymore. The other dependencies seem correct based on the .deb file and it worked for me without doing anything extra.

Stitchless commented on 2017-05-23 07:13 (UTC) (edited on 2017-05-27 06:48 (UTC) by Stitchless)

I won't be updating this package because it still looks like trash (sadly) and I just don't need Trillian anymore. EDIT: I updated the PKGBUILD to reflect what defaultspatula says above: https://pastebin.com/hfuhWS4P Someone who uses Trillian should really take over this package though ;) --- OLD POST BELOW FOR BREVITY: In response to nullvoid though the "better" way to get around the error is to get libopenssl-1.0-compat from the AUR and launch trillian with: LD_PRELOAD=/usr/lib/openssl-1.0-compat/libssl.so.1.0.0:/usr/lib/openssl-1.0-compat/libcrypto.so.1.0.0 trillian Here's a quick PKGBUILD to deal with the above (not sure if the deps are 100% correct): https://pastebin.com/hfuhWS4P You'll still need to either edit the trillian.desktop or make a new one in your ~/.local folder with the aforementioned way to launch it.

nullvoid commented on 2017-05-09 12:55 (UTC)

For those of who are getting an error regarding "libcrypto.so" and "libssl.so.1.0.0", I have a temporary solution for you. * Download an old version of libssl for Debian: http://security.ubuntu.com/ubuntu/pool/main/o/openssl/libssl1.0.0_1.0.1-4ubuntu5.39_amd64.deb * Extract: ar vx libssl1.0.0_1.0.1-4ubuntu5.39_amd64.deb * Extract data: tar -xvf data.tar.gz * Copy the lib files into the trillian directory: sudo cp ./lib/x86_64-linux-gnu/lib* /usr/share/trillian Fixed it for me. Would really like an alternative though.

realmain commented on 2017-05-09 03:15 (UTC) (edited on 2017-05-09 03:16 (UTC) by realmain)

New Trillian version is out: https://www.trillian.im/get/linux/6.0/linux.html https://www.trillian.im/changelog/linux/6.0/