Package Details: chromium-dev 126.0.6423.2-1

Git Clone URL: https://aur.archlinux.org/chromium-dev.git (read-only, click to copy)
Package Base: chromium-dev
Description: The open-source project behind Google Chrome (Dev Channel)
Upstream URL: http://www.chromium.org
Keywords: browser web
Licenses: BSD
Submitter: None
Maintainer: sl1pkn07
Last Packager: sl1pkn07
Votes: 160
Popularity: 0.011120
First Submitted: 2010-05-17 09:04 (UTC)
Last Updated: 2024-04-21 19:18 (UTC)

Dependencies (84)

Required by (0)

Sources (13)

Latest Comments

« First ‹ Previous 1 .. 22 23 24 25 26 27 28 29 30 31 32 .. 152 Next › Last »

LordAro commented on 2017-04-17 16:43 (UTC)

I'm not convinced it is pacaur's bug though - it's this PKGBUILD that failed to build with makepkg -o && makepkg -es . I'll be quite happy to raise a bug report with pacaur if you can show that your PKGBUILD is doing it "correctly" (with documentation or whatever)

sl1pkn07 commented on 2017-04-16 12:33 (UTC)

open bug in pacaur. nothing to do in the pkgbuild

LordAro commented on 2017-04-16 10:28 (UTC)

@sl1pkn07 ah, found the issue. pacaur calls makepkg -o followed by makepkg -es Since your PKGBUILD only sets the $PATH in the prepare() function, the changes don't get added to the build() and other functions. Seems like the PATH change should be added either more globally (can you do that?) or to the other functions as needed

sl1pkn07 commented on 2017-04-11 13:57 (UTC)

done

deathangel908 commented on 2017-04-11 13:54 (UTC) (edited on 2017-04-11 13:56 (UTC) by deathangel908)

Just in case someone faced with the issue below - reinstall 'python2-six': ----------- FAILED: gen/content/browser/tracing/about_tracing.js gen/content/browser/tracing/about_tracing.html /usr/bin/python2 ../../third_party/catapult/tracing/bin/generate_about_tracing_contents --outdir gen/content/browser/tracing Traceback (most recent call last): File "../../third_party/catapult/tracing/bin/generate_about_tracing_contents", line 14, in <module> sys.exit(generate_about_tracing_contents.Main(sys.argv[1:])) File "/run/media/andrew/ext4/chromium-dev/src/chromium-59.0.3063.4/third_party/catapult/tracing/tracing_build/generate_about_tracing_contents.py", line 32, in Main load_sequence = vulcanizer.CalcLoadSequenceForModuleNames(names) File "/run/media/andrew/ext4/chromium-dev/src/chromium-59.0.3063.4/third_party/catapult/third_party/py_vulcanize/py_vulcanize/project.py", line 138, in CalcLoadSequenceForModuleNames name in module_names] File "/run/media/andrew/ext4/chromium-dev/src/chromium-59.0.3063.4/third_party/catapult/third_party/py_vulcanize/py_vulcanize/resource_loader.py", line 140, in LoadModule m.Parse() File "/run/media/andrew/ext4/chromium-dev/src/chromium-59.0.3063.4/third_party/catapult/third_party/py_vulcanize/py_vulcanize/html_module.py", line 29, in Parse raise Exception('While parsing %s: %s' % (self.name, str(ex))) Exception: While parsing tracing.ui.extras.about_tracing.about_tracing: Couldn't find a tree builder with the features you requested: html5lib. Do you need to install a parser library ---------- >>> import bs4 >>> bs4.BeautifulSoup(html, 'html5lib') ---------- >>> import html5lib Traceback (most recent call last): File "<stdin>", line 1, in <module> File "/usr/lib/python2.7/site-packages/html5lib/__init__.py", line 16, in <module> from .html5parser import HTMLParser, parse, parseFragment File "/usr/lib/python2.7/site-packages/html5lib/html5parser.py", line 2, in <module> from six import with_metaclass, viewkeys, PY3 ImportError: cannot import name viewkeys -------------------

digitalone commented on 2017-04-03 09:52 (UTC)

vaapi patch still doesn't work for AMD/Radeon cards?

sl1pkn07 commented on 2017-03-25 17:08 (UTC)

@kasei Done @lordaro seems is problem of you helper

kasei commented on 2017-03-25 16:46 (UTC)

missing depend harfbuzz-icu?

LordAro commented on 2017-03-25 13:35 (UTC)

Found my issue - # Set Python2 path. mkdir -p python-path ln -sf /usr/bin/python2 "${srcdir}/python-path/python" export PATH="${srcdir}/python-path:$PATH" conflicts with msg2 "Make sure use Python2" find . -name '*.py' -exec sed -r 's|/usr/bin/python$|&2|g' -i {} + find . -name '*.py' -exec sed -r 's|/usr/bin/env python$|&2|g' -i {} + changing the symlink to python2 sorts the issue