Package Details: blink 5.6.0-1

Git Clone URL: https://aur.archlinux.org/blink.git (read-only, click to copy)
Package Base: blink
Description: Fully featured, easy to use SIP client with a Qt based UI
Upstream URL: https://icanblink.com
Keywords: SIP VoIP
Licenses: GPL-3+
Submitter: ogarcia
Maintainer: josemslopes
Last Packager: josemslopes
Votes: 13
Popularity: 0.000428
First Submitted: 2016-06-18 13:13 (UTC)
Last Updated: 2023-08-03 13:02 (UTC)

Latest Comments

« First ‹ Previous 1 2 3 4 5 6 7 8 9 10 11 12 Next › Last »

bsdice commented on 2020-05-01 18:54 (UTC)

@mozo @cmonty14

You cannot just install the blink package! It does have many dependencies, mainly for python2-* packages. You have to install the package as I wrote on 2020-04-30 23:01 AND fix the line python2-application/PKGBUILD "source=(https://pypi.python.org/packages/source/p/python-application/python-application-$pkgver.tar.gz)" to be https. python.org no longer accepts http plaintext it seems.

Here are the first order dependencies:

icu libvncserver qt5-webkit qt5-svg python2-application python2-gmpy2 python2-gnutls python2-google-api-python-client python2-pyqt5 python2-sipsimple python2-zope-interface python2-oauth2client python2-service-identity python2-eventlib

cmonty14 commented on 2020-05-01 18:28 (UTC)

@mozo There are unfulfilled dependencies when I try to install blink-3.2.1-1-any.pkg.tar.xz:

$ sudo pacman -U ~/Downloads/blink-3.2.1-1-any.pkg.tar.xz 
Lade Pakete...
Löse Abhängigkeiten auf...
Warnung: Kann "python2-application" nicht auflösen (eine Abhängigkeit von "blink")
Warnung: Kann "python2-gmpy2" nicht auflösen (eine Abhängigkeit von "blink")
Warnung: Kann "python2-google-api-python-client" nicht auflösen (eine Abhängigkeit von "blink")
Warnung: Kann "python2-sipsimple" nicht auflösen (eine Abhängigkeit von "blink")
Warnung: Kann "python2-oauth2client" nicht auflösen (eine Abhängigkeit von "blink")
:: Das folgende Paket kann aufgrund nicht auflösbarer Abhängigkeiten nicht aktualisiert werden:
      blink

:: Möchten Sie das obengenannte Paket bei dieser Aktualisierung überspringen? [j/N] j
Suche nach in Konflikt stehenden Paketen...
 Es gibt nichts zu tun

But I installed the required packages using pip2 install <package>.

mozo commented on 2020-05-01 17:57 (UTC) (edited on 2020-05-01 17:57 (UTC) by mozo)

It's a binary package. Just drag and drop it in Octopi or:

sudo pacman -U blink-3.2.1-1-any.pkg.tar.xz

cmonty14 commented on 2020-05-01 16:29 (UTC)

@mozo Can you please advise what steps to execute after downloading tar-ball "blink-3.2.1-1-any.pkg.tar.xz" provided by you?

mozo commented on 2020-05-01 07:56 (UTC) (edited on 2020-05-01 08:02 (UTC) by mozo)

Yes, it's working!!! Thanks @bsdice!!!

Here's the binary for downloading:

https://my.pcloud.com/publink/show?code=XZFMxKkZ6QXtDl7h2GzmrPmYDsMQeLv1bfGX

@ogarcia

Can you make a new PKGBUILD? It's definitely working :)

mozo commented on 2020-05-01 07:47 (UTC)

I opened the PKGBUILD and changed http to https. This fixed the SSL error.

mozo commented on 2020-05-01 07:35 (UTC)

Hello, another error:

curl: (22) The requested URL returned error: 403 SSL is required

==> ERROR: Failure while downloading http://pypi.python.org/packages/source/p/python-application/python-application-2.8.0.tar.gz Aborting...

bsdice commented on 2020-04-30 21:01 (UTC) (edited on 2020-04-30 21:01 (UTC) by bsdice)

@mozo Yeah, my HOWTO was wrong. Try this:

cd python2-application && makepkg -Ccf && sudo pacman -U --asdeps *.pkg.tar.xz && cd ..
cd python2-cachetools && makepkg -Ccf && sudo pacman -U --asdeps *.pkg.tar.xz && cd ..

yay -S --asdeps cython2 icu libvncserver qt5-webkit qt5-svg \
    python2-zope-interface python2-gnutls python2-pyqt5 python2-greenlet \
    python2-pyopenssl python2-service-identity python2-dateutil python2-cjson \
    python2-dnspython python2-xcaplib python2-otr python2-httplib2 python2-pyasn1 \
    python2-pyasn1-modules python2-rsa python2-six python2-uritemplate \
    python2-pytest python2-werkzeug python2-requests python2-pytz python2-twisted \
    python2-pytest-runner python2-mock python2-flask python2-freezegun \
    python2-protobuf python2-responses

cd python2-eventlib && makepkg -Ccf && sudo pacman -U --asdeps *.pkg.tar.xz && cd ..
cd python2-gmpy2 && makepkg -Ccf && sudo pacman -U --asdeps *.pkg.tar.xz && cd ..
cd python2-msrplib && makepkg -Ccf && sudo pacman -U --asdeps *.pkg.tar.xz && cd ..
cd python2-sipsimple && makepkg -Ccf && sudo pacman -U --asdeps *.pkg.tar.xz && cd ..
cd python2-oauth2client && makepkg -Ccf && sudo pacman -U --asdeps *.pkg.tar.xz && cd ..
cd python2-pytest-localserver && makepkg -Ccf && sudo pacman -U --asdeps *.pkg.tar.xz && cd ..
cd python2-google-auth && makepkg -Ccf && sudo pacman -U --asdeps *.pkg.tar.xz && cd ..
cd python2-google-auth-httplib2 && makepkg -Ccf && sudo pacman -U --asdeps *.pkg.tar.xz && cd ..
cd python2-googleapis-common-protos && makepkg -Ccf && sudo pacman -U --asdeps *.pkg.tar.xz && cd ..
cd python2-google-api-core && makepkg -Ccf && sudo pacman -U --asdeps *.pkg.tar.xz && cd ..
cd python2-google-api-python-client && makepkg -Ccf && sudo pacman -U --asdeps *.pkg.tar.xz && cd ..
cd blink && makepkg -Ccf && sudo pacman -U *.pkg.tar.xz && cd ..

mozo commented on 2020-04-30 18:02 (UTC) (edited on 2020-04-30 18:03 (UTC) by mozo)

Thanks :)

But I have problems:

(1/1) Arming ConditionNeedsUpdate...

==> Error: Could not find all required packages: python2-cachetools (Target) python2-application (Wanted by: python2-xcaplib)