Package Details: google-chrome 129.0.6668.58-1

Git Clone URL: https://aur.archlinux.org/google-chrome.git (read-only, click to copy)
Package Base: google-chrome
Description: The popular web browser by Google (Stable Channel)
Upstream URL: https://www.google.com/chrome
Keywords: chromium
Licenses: custom:chrome
Submitter: None
Maintainer: gromit
Last Packager: gromit
Votes: 2236
Popularity: 7.19
First Submitted: 2010-05-25 20:25 (UTC)
Last Updated: 2024-09-17 21:41 (UTC)

Dependencies (12)

Sources (3)

Pinned Comments

gromit commented on 2023-04-15 08:22 (UTC) (edited on 2023-05-08 21:42 (UTC) by gromit)

When reporting this package as outdated make sure there is indeed a new version for Linux Desktop. You can have a look at the "Stable updates" tag in Release blog for this.

You can also run this command to obtain the version string for the latest chrome version:

$ curl -sSf https://dl.google.com/linux/chrome/deb/dists/stable/main/binary-amd64/Packages | \
     grep -A1 "Package: google-chrome-stable" | \
     awk '/Version/{print $2}' | \
     cut -d '-' -f1

Do not report updates for ChromeOS, Android or other platforms stable versions as updates here.

Latest Comments

« First ‹ Previous 1 .. 30 31 32 33 34 35 36 37 38 39 40 .. 157 Next › Last »

nlehmann commented on 2020-02-26 21:29 (UTC)

Thanks, @Det and @neo2011, that's pretty useful information.

Det commented on 2020-02-26 18:29 (UTC)

PKGEXT=".pkg.tar.lzo" & PKGEXT=".pkg.tar.lrz" good compromises.

neo2001 commented on 2020-02-26 18:26 (UTC) (edited on 2020-02-26 18:32 (UTC) by neo2001)

Pretty sure this is normal, yes. I guess there are many small files. Check out /etc/makepkg.conf. You may want to set PKGEXT to a less aggressive and faster compression format (PKGEXT='.pkg.tar.gz') or don't compress the packages at all (PKGEXT='.pkg.tar')

nlehmann commented on 2020-02-26 18:11 (UTC)

Hi, I use pacaur to install my aur pacakges and noticed that whenever I update chrome it stays way too long in "Compressing package", much more than any other package. Is that normal?

pinbo commented on 2020-02-15 16:06 (UTC)

I am using Manjaro Gnome (5.5.2-1-MANJARO #1 SMP PREEMPT Tue Feb 4 19:22:35 UTC 2020 x86_64 GNU/Linux). Since last update, when Google Chrome is open, other windows under focus will lose focus after a few seconds. For example, when I was writing in Gedit, I cannot type in after a few seconds because the window has lost focus, and I need to click on it again to continue typing. Closing Google Chrome will solve the problem. Thanks.

arnohovhannisyan commented on 2020-02-09 07:31 (UTC)

As of v80.0.3987.87-1, I'm having problems with the maximize and restore buttons. When the window is not fullscreen, the maximize button doesn't do anything and it has the same icon as the restore button. This did not happen with v79. I'm using Manjaro GNOME if it matters.

felipea.braga commented on 2020-02-06 19:51 (UTC)

It seems to have a problem when using the "classic" theme on Manjaro KDE, has someone experienced this?

Det commented on 2020-02-06 13:54 (UTC)

echoing and sedding the thing with echo "diff [...] (END)" | sed "s/ +/\n+/g" | sed "s/diff \-\-/\n\ndiff \-\-/g" comes down to some patches: https://pastebin.com/vmxwpAfd

So it's about python2-txaio (a fairly recent package, uploaded 2020-01-25): https://aur.archlinux.org/packages/python2-txaio/

"Al poner fin no realiza ninguna acción." auto-detects as [Spanish] in Google Translate and translates to "When ending it does not perform any action.": https://translate.google.com/#auto/en/Al%20poner%20fin%20no%20realiza%20ninguna%20acci%C3%B3n.

jamezrin commented on 2020-02-06 13:31 (UTC)

@superhdj your comment is not very helpful, what happens? Also, speak english.

superhdj commented on 2020-02-05 23:33 (UTC)

diff --git /home/user/.cache/yay/python2-txaio/PKGBUILD /home/user/.cache/yay/python2-txaio/PKGBUILD new file mode 100644 index 0000000..a6a901a --- /dev/null +++ /home/user/.cache/yay/python2-txaio/PKGBUILD @@ -0,0 +1,34 @@ +# Maintainer: Jose Riha <jose1711 gmail com> + +pkgname=python2-txaio +pkgver=18.8.1 +pkgrel=1 +pkgdesc='Compatibility API between asyncio/Twisted/Trollius' +arch=('any') +url="https://github.com/crossbario/txaio" +license=('MIT') +makedepends=('python2-setuptools') +checkdepends=('python2-pytest' 'python2-mock' 'python2-twisted') +depends=('python2-six') +source=("https://pypi.io/packages/source/t/txaio/txaio-$pkgver.tar.gz" + "make-pytest-happy.patch") + +prepare() { + # https://github.com/crossbario/txaio/issues/140 + patch -Np1 -d txaio-$pkgver <make-pytest-happy.patch + + cp -a txaio-$pkgver{,-py2} +} + +build() { + cd "$srcdir"/txaio-$pkgver-py2 + python2 setup.py build +} + +package() { + cd txaio-$pkgver-py2 + python2 setup.py install --root="$pkgdir" --optimize=1 + install -Dm644 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE +} +md5sums=('ecdd4d0f401c7f01f22830b4d2788593' + '862ac257bb05a8064b6e2814686dcb3c') diff --git /home/user/.cache/yay/python2-txaio/make-pytest-happy.patch /home/user/.cache/yay/python2-txaio/make-pytest-happy.patch new file mode 100644 index 0000000..dcf5e40 --- /dev/null +++ /home/user/.cache/yay/python2-txaio/make-pytest-happy.patch @@ -0,0 +1,47 @@ +From 9217f054b7eccc120f84e01995479125e07de59a Mon Sep 17 00:00:00 2001 +From: meejah <a href="mailto:meejah@meejah.ca">meejah@meejah.ca +Date: Fri, 22 Feb 2019 12:01:46 -0700 +Subject: [PATCH] make pytest happy + +--- + test/conftest.py | 12 ++++++++++-- + 1 file changed, 10 insertions(+), 2 deletions(-) diff --git /home/user/.cache/yay/python2-txaio/PKGBUILD /home/user/.cache/yay/python2-txaio/PKGBUILD new file mode 100644 index 0000000..a6a901a --- /dev/null +++ /home/user/.cache/yay/python2-txaio/PKGBUILD @@ -0,0 +1,34 @@ +# Maintainer: Jose Riha <jose1711 gmail com> + +pkgname=python2-txaio +pkgver=18.8.1 +pkgrel=1 +pkgdesc='Compatibility API between asyncio/Twisted/Trollius' +arch=('any') +url="https://github.com/crossbario/txaio" +license=('MIT') +makedepends=('python2-setuptools') +checkdepends=('python2-pytest' 'python2-mock' 'python2-twisted') +depends=('python2-six') +source=("https://pypi.io/packages/source/t/txaio/txaio-$pkgver.tar.gz" + "make-pytest-happy.patch") + +prepare() { + # https://github.com/crossbario/txaio/issues/140 + patch -Np1 -d txaio-$pkgver <make-pytest-happy.patch + + cp -a txaio-$pkgver{,-py2} +} + +build() { + cd "$srcdir"/txaio-$pkgver-py2 + python2 setup.py build +} + +package() { + cd txaio-$pkgver-py2 + python2 setup.py install --root="$pkgdir" --optimize=1 + install -Dm644 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE +} +md5sums=('ecdd4d0f401c7f01f22830b4d2788593' + '862ac257bb05a8064b6e2814686dcb3c') diff --git /home/user/.cache/yay/python2-txaio/make-pytest-happy.patch /home/user/.cache/yay/python2-txaio/make-pytest-happy.patch new file mode 100644 index 0000000..dcf5e40 --- /dev/null +++ /home/user/.cache/yay/python2-txaio/make-pytest-happy.patch @@ -0,0 +1,47 @@ +From 9217f054b7eccc120f84e01995479125e07de59a Mon Sep 17 00:00:00 2001 +From: meejah meejah@meejah.ca +Date: Fri, 22 Feb 2019 12:01:46 -0700 +Subject: [PATCH] make pytest happy + +--- + test/conftest.py | 12 ++++++++++-- + 1 file changed, 10 insertions(+), 2 deletions(-) +--- + test/conftest.py | 12 ++++++++++-- + 1 file changed, 10 insertions(+), 2 deletions(-) +++ /home/user/.cache/yay/python2-txaio/make-pytest-happy.patch @@ -0,0 +1,47 @@ +From 9217f054b7eccc120f84e01995479125e07de59a Mon Sep 17 00:00:00 2001 +From: meejah meejah@meejah.ca +Date: Fri, 22 Feb 2019 12:01:46 -0700 +Subject: [PATCH] make pytest happy + +--- + test/conftest.py | 12 ++++++++++-- + 1 file changed, 10 insertions(+), 2 deletions(-) + +diff --git a/test/conftest.py b/test/conftest.py +index 4a225c8..a3ca2d6 100644 +--- a/test/conftest.py ++++ b/test/conftest.py +@@ -25,9 +25,9 @@ def framework(request): + + try: + if request.param == 'twisted': +- return framework_tx() ++ return _notfixture_framework_tx() + elif request.param == 'asyncio': +- return framework_aio() ++ return _notfixture_framework_aio() + except ImportError: + pytest.skip() + +@@ -43,6 +43,10 @@ def framework_uninitialized(): + + @pytest.fixture + def framework_tx(): ++ return _notfixture_framework_tx() ++ ++ ++def _notfixture_framework_tx(): + try: + import txaio + from txaio import tx +@@ -56,6 +60,10 @@ def framework_tx(): + + @pytest.fixture + def framework_aio(): ++ return _notfixture_framework_aio() ++ ++ ++def _notfixture_framework_aio(): + try: + import txaio + from txaio import aio (END)

Al poner fin no realiza ninguna acción.