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.010897
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 .. 89 90 91 92 93 94 95 96 97 98 99 .. 152 Next › Last »

Det commented on 2012-10-31 00:00 (UTC)

@jeagoss, not as much out-of-date as meant for the _stable_ channel chromium. @sl1pkn07, jeagoss's patch (http://archrepo.jeago.com/sources/chromium-dev/pulse_audio_fix.patch) fixes http://crbug.com/157876? Well, shouldn't this be mentioned in the report?

crondog commented on 2012-10-30 06:32 (UTC)

Hey sl1pkn07 I have been building chromium-dev for a while now and have always had to fiddle with the PKGBUILD manually to get it working with BUILDDIR=/tmp/makepkg. I have finally made a PKGBUILD which keeps your functionality but is able to cope with the builddir being in a different location. --- PKGBUILD 2012-10-28 14:28:27.000000000 +1100 +++ PKGBUILD.new 2012-10-30 17:26:09.405889398 +1100 @@ -92,6 +92,7 @@ source+=("http://dl.google.com/linux/chrome/rpm/stable/"${_rpm_arch}"/google-chrome-unstable-"${pkgver}"-"${_rpm_build}"."${_rpm_arch}".rpm") sha1sums+=("${_rpm_sha1}") noextract+=("google-chrome-unstable-"${pkgver}"-"${_rpm_build}"."${_rpm_arch}".rpm") + _before_srcdir="$(pwd)" fi # Are we in Gnome? @@ -372,7 +373,7 @@ install -Dm755 "${srcdir}"/"${pkgname}".sh "${pkgdir}"/usr/bin/"${pkgname}" install -Dm644 LICENSE "${pkgdir}"/usr/share/licenses/"${pkgname}"/LICENSE - install -Dm644 "${srcdir}"/../default "${pkgdir}"/etc/chromium-dev/default + install -Dm644 "${srcdir}"/default "${pkgdir}"/etc/chromium-dev/default if [ "${_use_nacl}" = 1 ]; then msg2 "Adding NaCl components" @@ -406,7 +407,7 @@ for i in "${srcdir}"/opt/google/chrome/PepperFlash/*; do install -m644 "$i" "${_chromium_home}"/PepperFlash; done chmod 775 "${_chromium_home}"/PepperFlash/libpepflashplayer.so _flash_version="$(cat "${_chromium_home}"/PepperFlash/manifest.json | grep version | sed 's|[a-z,": ]*||g')" - sed -e "s|use_pepperflash=0|use_pepperflash=1|" -e "s|version=0|version=${_flash_version}|" -i "${srcdir}"/../"${pkgname}".install + sed -e "s|use_pepperflash=0|use_pepperflash=1|" -e "s|version=0|version=${_flash_version}|" -i $_before_srcdir/"${pkgname}".install rm -fr "${srcdir}"/opt fi

sl1pkn07 commented on 2012-10-28 11:29 (UTC)

update to 24.0.1305.3 - fix http://crbug.com/157876 (thanks to @jeagoss) - back to use internal copy of V8 sorry for delay

jeagoss commented on 2012-10-27 18:55 (UTC)

I have updated to 24.0.1305.3. In order to get it to compile on Arch, you'll need the following patch. http://archrepo.jeago.com/sources/chromium-dev/pulse_audio_fix.patch Also, for all of you experiencing crashes on Facebook, Google Reader, etc... the V8 library included in Arch is out of date. Try installing the v8-svn package from aur. Doing so has solved my problems with crashing. (You might need to recompile chromium after updating v8.)

sl1pkn07 commented on 2012-10-12 09:08 (UTC)

@hard try install v8 from community

sl1pkn07 commented on 2012-10-12 09:05 (UTC)

@cpatrick try now

HarD commented on 2012-10-12 06:46 (UTC)

In file included from ./webkit/plugins/webview_plugin.h:15:0, from webkit/plugins/webview_plugin.cc:5: ./third_party/WebKit/Source/WebKit/chromium/public/WebFrameClient.h:46:16: fatal error: v8.h: No such file or directory compilation aborted. make: *** [out/Release/obj.target/glue/webkit/plugins/webview_plugin.o] Error 1

cpatrick08 commented on 2012-10-12 01:16 (UTC)

error installing curl: (22) The requested URL returned error: 404 Not Found ==> ERROR: Failure while downloading google-chrome-unstable-24.0.1290.1-159713.x86_64.rpm

sl1pkn07 commented on 2012-09-21 13:26 (UTC)

the _toochain_rev is determine by hand because i search the revision by date release. the 23.0.1271.1 released 20 september 2012. then search toolchain revision release same day make this for possible incompatibility in buld

misc commented on 2012-09-21 12:49 (UTC)

The latest _toochain_rev can be dynamically determined eg. with: curl -s 'https://gsdview.appspot.com/nativeclient-archive2/x86_toolchain/?marker=x86_toolchain%2Fr9801%40' | grep toolchain | tail -n2 | head -n1 | cut -d '>' -f 3 | cut -c 2-5 (Note: For some weird reason that Google server acts up every now and then, requiring one to add/remove the "%40".)