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.019293
First Submitted: 2010-05-17 09:04 (UTC)
Last Updated: 2024-04-21 19:18 (UTC)

Required by (0)

Sources (13)

Latest Comments

« First ‹ Previous 1 .. 88 89 90 91 92 93 94 95 96 97 98 .. 152 Next › Last »

<deleted-account> commented on 2012-11-16 01:52 (UTC)

I needed to add wget to makedepends in the PKGBUILD, but it otherwise builds and runs perfectly.

sl1pkn07 commented on 2012-11-06 12:37 (UTC)

python-simplejson move to community whit name python2-simplejson change this in new release

wuffleton commented on 2012-11-06 09:37 (UTC)

Is it just me or did the makedepend 'python-simplejson' vanish from the AUR with the updated interface? Packer keeps spitting errors about it and I can't even find a trace of it in the aur-mirror-git.

sl1pkn07 commented on 2012-11-04 10:00 (UTC)

in the pkgbuild have this (with little changes): rm -f *.sha1hash* wget -q "${_nacl_sdk_path}"/naclsdk_linux_x86.tgz.sha1hash wget -q "${_nacl_sdk_path}"/naclsdk_pnacl_linux_x86.tgz.sha1hash wget -q "${_toolchain_path}"/toolchain_linux_x86.tar.bz2.sha1hash _nacl_sdk_sha1sum="$(cat naclsdk_linux_x86.tgz.sha1hash)" _pnacl_sdk_sha1sum="$(cat naclsdk_pnacl_linux_x86.tgz.sha1hash)" _toolchain_sha1sum="$(cat toolchain_linux_x86.tar.bz2.sha1hash)" rm -f *.sha1hash* [ -e "${srcdir}/../naclsdk_linux_x86.tgz" ] && [ "$(sha1sum "${srcdir}/../naclsdk_linux_x86.tgz" | cut -d " " -f1)" != "${_nacl_sdk_sha1sum}" ] && rm -fr "${srcdir}/../naclsdk_linux_x86.tgz" [ -e "${srcdir}/../naclsdk_pnacl_linux_x86.tgz" ] && [ "$(sha1sum "${srcdir}/../naclsdk_pnacl_linux_x86.tgz" | cut -d " " -f1)" != "${_pnacl_sdk_sha1sum}" ] && rm -fr "${srcdir}/../naclsdk_pnacl_linux_x86.tgz" [ -e "${srcdir}/../toolchain_linux_x86.tar.bz2" ] && [ "$(sha1sum "${srcdir}/../toolchain_linux_x86.tar.bz2" | cut -d " " -f1)" != "${_toolchain_sha1sum}" ] && rm -fr "${srcdir}/../toolchain_linux_x86.tar.bz2" source+=("${_nacl_sdk_path}/naclsdk_linux_x86.tgz" "${_nacl_sdk_path}/naclsdk_pnacl_linux_x86.tgz" "${_toolchain_path}/toolchain_linux_x86.tar.bz2") sha1sums+=("${_nacl_sdk_sha1sum}" "${_pnacl_sdk_sha1sum}" "${_toolchain_sha1sum}") steps for this: - download the sha1file (from google) for these files and make variable with file contains. and add in sha1sums pkgbuild array - search if exists file --- if yes -> get the sha1 hash from existing file and compare with sha1has variable (get from sha1file download from google) if not same hash ------- if yes (not same hash) -> remove existing file and jump to next file ------- if no (same hash) -> jump to next file --- if no -> jump to next file make this for prevent you say i test this: https://wiki.archlinux.org/index.php/PKGBUILD#source Tip: You can specify a different name for the downloaded file - if the downloaded file has a different name for some reason like the URL had a GET parameter - using the following syntax: filename::fileuri, for example $pkgname-$pkgver.zip::http://199.91.152.193/7pd0l2tpkidg/jg2e1cynwii/Warez_collection_16.4.exe if working (the build need symlink nacl/pnacl/toolchain zips with the specific names (like download files)), add in next release greetings

pumbur commented on 2012-11-03 21:43 (UTC)

.... ==> Validating source files with sha1sums... .... pulse_audio_fix.patch ... Passed naclsdk_linux_x86.tgz ... FAILED naclsdk_pnacl_linux_x86.tgz ... FAILED toolchain_linux_x86.tar.bz2 ... Passed https://bugs.archlinux.org/index.php?do=details&task_id=29106

sl1pkn07 commented on 2012-10-31 14:42 (UTC)

@Det: what report?

jeagoss commented on 2012-10-31 01:28 (UTC)

@Det I apologize for not clarifying....

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