summaryrefslogtreecommitdiff
path: root/extra
diff options
context:
space:
mode:
authorroot <root@rshg054.dnsready.net>2013-06-28 00:32:41 -0700
committerroot <root@rshg054.dnsready.net>2013-06-28 00:32:41 -0700
commit0a66b29837912ffee94e074fc35ba46896a96f2a (patch)
treea80241ce657a9ebef8d45ca5cc48b670c3c3b626 /extra
parent7851c02115b35e64fc3b827b29c79023d4518f6f (diff)
Fri Jun 28 00:32:41 PDT 2013
Diffstat (limited to 'extra')
-rw-r--r--extra/colord/PKGBUILD6
-rw-r--r--extra/gnome-shell/0001-st-Be-more-forgiving-when-calling-get_theme_node-on-.patch37
-rw-r--r--extra/gnome-shell/PKGBUILD13
-rw-r--r--extra/imagemagick/PKGBUILD6
-rw-r--r--extra/intel-tbb/PKGBUILD10
-rw-r--r--extra/libkfbapi/PKGBUILD33
-rw-r--r--extra/libva-intel-driver/PKGBUILD6
-rw-r--r--extra/libva/PKGBUILD6
-rw-r--r--extra/ntfs-3g_ntfsprogs/PKGBUILD7
-rw-r--r--extra/xf86-video-intel/PKGBUILD12
-rw-r--r--extra/xf86-video-intel/pd_crash_X_fix.diff148
-rw-r--r--extra/xulrunner/PKGBUILD7
12 files changed, 260 insertions, 31 deletions
diff --git a/extra/colord/PKGBUILD b/extra/colord/PKGBUILD
index a311b0478..3d774d6b8 100644
--- a/extra/colord/PKGBUILD
+++ b/extra/colord/PKGBUILD
@@ -1,9 +1,9 @@
-# $Id: PKGBUILD 185329 2013-05-13 11:18:43Z heftig $
+# $Id: PKGBUILD 188955 2013-06-27 04:04:12Z heftig $
# Maintainer: Jan Alexander Steffens (heftig) <jan.steffens@gmail.com>
# Contributor: Ionut Biru <ibiru@archlinux.org>
pkgname=colord
-pkgver=1.0.0
+pkgver=1.0.1
pkgrel=1
pkgdesc="System daemon for managing color devices"
arch=(i686 x86_64)
@@ -16,7 +16,7 @@ options=('!libtool')
install=colord.install
backup=(etc/colord.conf)
source=($url/releases/$pkgname-$pkgver.tar.xz)
-sha1sums=('a01547080f0905dacca37c5ded3886431144a36a')
+sha1sums=('d480eb23a3de67cab090c810c894cc68069a278d')
build() {
cd $pkgname-$pkgver
diff --git a/extra/gnome-shell/0001-st-Be-more-forgiving-when-calling-get_theme_node-on-.patch b/extra/gnome-shell/0001-st-Be-more-forgiving-when-calling-get_theme_node-on-.patch
new file mode 100644
index 000000000..8a3f69bdb
--- /dev/null
+++ b/extra/gnome-shell/0001-st-Be-more-forgiving-when-calling-get_theme_node-on-.patch
@@ -0,0 +1,37 @@
+From ace549c1bf1861b4cbaec6f2451a6341aa738bae Mon Sep 17 00:00:00 2001
+From: =?UTF-8?q?Florian=20M=C3=BCllner?= <fmuellner@gnome.org>
+Date: Mon, 24 Jun 2013 18:09:04 +0200
+Subject: [PATCH] st: Be more forgiving when calling get_theme_node() on
+ unstaged widgets
+
+While it is obviously still an error to call get_theme_node() on a
+widget that hasn't been added to the stage hierarchy yet, asserting
+on it hasn't proven too successful in avoiding those errors - it's
+likely the most frequent reason for crash reports. Just accept that
+there'll always be code paths where we can hit this case and make
+it non-fatal.
+
+https://bugzilla.gnome.org/show_bug.cgi?id=610279
+---
+ src/st/st-widget.c | 5 +++--
+ 1 file changed, 3 insertions(+), 2 deletions(-)
+
+diff --git a/src/st/st-widget.c b/src/st/st-widget.c
+index 42992ec..4875acc 100644
+--- a/src/st/st-widget.c
++++ b/src/st/st-widget.c
+@@ -608,8 +608,9 @@ st_widget_get_theme_node (StWidget *widget)
+
+ if (stage == NULL)
+ {
+- g_error ("st_widget_get_theme_node called on the widget %s which is not in the stage.",
+- st_describe_actor (CLUTTER_ACTOR (widget)));
++ g_critical ("st_widget_get_theme_node called on the widget %s which is not in the stage.",
++ st_describe_actor (CLUTTER_ACTOR (widget)));
++ return g_object_new (ST_TYPE_THEME_NODE, NULL);
+ }
+
+ if (parent_node == NULL)
+--
+1.8.3.1
+
diff --git a/extra/gnome-shell/PKGBUILD b/extra/gnome-shell/PKGBUILD
index 55c76ce08..930763625 100644
--- a/extra/gnome-shell/PKGBUILD
+++ b/extra/gnome-shell/PKGBUILD
@@ -1,10 +1,10 @@
-# $Id: PKGBUILD 187902 2013-06-07 22:40:58Z heftig $
+# $Id: PKGBUILD 188954 2013-06-27 04:03:27Z heftig $
# Maintainer: Ionut Biru <ibiru@archlinux.org>
# Contributor: Flamelab <panosfilip@gmail.com
pkgname=gnome-shell
pkgver=3.8.3
-pkgrel=1
+pkgrel=2
pkgdesc="The next generation GNOME Shell"
arch=(i686 x86_64)
url="http://live.gnome.org/GnomeShell"
@@ -19,15 +19,20 @@ options=('!libtool' '!emptydirs')
install=gnome-shell.install
groups=(gnome)
source=(http://ftp.gnome.org/pub/GNOME/sources/$pkgname/${pkgver::3}/$pkgname-$pkgver.tar.xz
- nm-libexecdir.patch)
+ nm-libexecdir.patch
+ 0001-st-Be-more-forgiving-when-calling-get_theme_node-on-.patch)
sha256sums=('145724f21ead9dbe0c39d3ab468b39264c7aaf3f0fa5d152b295d905d8339c22'
- 'e5bb10ad2e5c3e0fde3d05babd1bfdda701e553e02d493f7e54cb7832ce7e607')
+ 'e5bb10ad2e5c3e0fde3d05babd1bfdda701e553e02d493f7e54cb7832ce7e607'
+ 'c5f0c9b071d5c31e11289c45743e1f82f6bba8201a28e0efb7a197f57cbb2105')
prepare() {
cd $pkgname-$pkgver
# FS#30747 FS#32730 Problems due to libexecdir different from NM
patch -Np1 -i ../nm-libexecdir.patch
+
+ # FS#35174 Nautilus crashes GS
+ patch -Np1 -i ../0001-st-Be-more-forgiving-when-calling-get_theme_node-on-.patch
}
build() {
diff --git a/extra/imagemagick/PKGBUILD b/extra/imagemagick/PKGBUILD
index 2d309d049..b167e4cf1 100644
--- a/extra/imagemagick/PKGBUILD
+++ b/extra/imagemagick/PKGBUILD
@@ -1,9 +1,9 @@
-# $Id: PKGBUILD 187911 2013-06-08 05:14:18Z eric $
+# $Id: PKGBUILD 188981 2013-06-27 18:52:49Z eric $
# Maintainer: Eric Bélanger <eric@archlinux.org>
pkgbase=imagemagick
pkgname=('imagemagick' 'imagemagick-doc')
-pkgver=6.8.5.10
+pkgver=6.8.6.2
pkgrel=1
arch=('i686' 'x86_64')
url="http://www.imagemagick.org/"
@@ -13,7 +13,7 @@ makedepends=('libltdl' 'lcms2' 'libxt' 'fontconfig' 'libxext' 'ghostscript' \
#source=(http://www.imagemagick.org/download/ImageMagick-${pkgver%.*}-${pkgver##*.}.tar.xz \
source=(ftp://ftp.sunet.se/pub/multimedia/graphics/ImageMagick/ImageMagick-${pkgver%.*}-${pkgver##*.}.tar.xz \
perlmagick.rpath.patch)
-sha1sums=('ae47754c676df262956d1c740cf4ff297dfda71b'
+sha1sums=('58b09b94a59457a7c82a4db9cc29e9a5718129a2'
'e143cf9d530fabf3b58023899b5cc544ba93daec')
prepare() {
diff --git a/extra/intel-tbb/PKGBUILD b/extra/intel-tbb/PKGBUILD
index 731e23024..950b81527 100644
--- a/extra/intel-tbb/PKGBUILD
+++ b/extra/intel-tbb/PKGBUILD
@@ -1,10 +1,10 @@
-# $Id: PKGBUILD 186302 2013-05-24 12:22:34Z stephane $
+# $Id: PKGBUILD 188979 2013-06-27 17:08:09Z eric $
# Maintainer: Stéphane Gaudreault <stephane@archlinux.org>
# Contributor: Thomas Dziedzic < gostrc at gmail >
# Contributor: Denis Martinez <deuns.martinez AT gmail.com>
pkgname=intel-tbb
-pkgver=4.1_20130314
+pkgver=4.1_20130613
pkgrel=1
pkgdesc='High level abstract threading library'
arch=('i686' 'x86_64')
@@ -12,16 +12,16 @@ url='http://www.threadingbuildingblocks.org/'
license=('GPL')
depends=('gcc-libs')
source=("http://threadingbuildingblocks.org/sites/default/files/software_releases/source/tbb${pkgver/\./}oss_src.tgz")
-sha1sums=('e2bf74c1e492b06faf3ecdf2321e64ca698c0921')
+sha1sums=('b1322bd10c5b05a79f61edb236adc0513b4a1532')
build() {
- cd "${srcdir}"/tbb${pkgver/\./}oss
+ cd tbb${pkgver/\./}oss
make
}
package() {
- cd "${srcdir}"/tbb${pkgver/\./}oss
+ cd tbb${pkgver/\./}oss
install -d "${pkgdir}"/usr/lib
install -m755 build/linux_*/*.so* "${pkgdir}"/usr/lib
diff --git a/extra/libkfbapi/PKGBUILD b/extra/libkfbapi/PKGBUILD
new file mode 100644
index 000000000..6182653fd
--- /dev/null
+++ b/extra/libkfbapi/PKGBUILD
@@ -0,0 +1,33 @@
+# $Id: PKGBUILD 188957 2013-06-27 06:08:07Z andrea $
+# Maintainer: Andrea Scarpino <andrea@archlinux.org>
+# Contributor: birdflesh <antkoul at gmail dot com>
+
+pkgname=libkfbapi
+pkgver=1.0
+pkgrel=1
+pkgdesc="KDE library for accessing Facebook services"
+arch=('i686' 'x86_64')
+url='https://projects.kde.org/libkfbapi'
+license=('GPL')
+depends=('kdepimlibs')
+makedepends=('cmake' 'automoc4' 'boost')
+source=("http://download.kde.org/stable/$pkgname/$pkgver/src/$pkgname-$pkgver.tar.bz2")
+md5sums=('05ce3213a1383796a02115705c2bf829')
+
+prepare() {
+ mkdir build
+}
+
+build() {
+ cd build
+ cmake ../$pkgname-$pkgver \
+ -DQT_QMAKE_EXECUTABLE=qmake-qt4 \
+ -DCMAKE_BUILD_TYPE=Release \
+ -DCMAKE_INSTALL_PREFIX=/usr
+ make
+}
+
+package() {
+ cd build
+ make DESTDIR="${pkgdir}" install
+}
diff --git a/extra/libva-intel-driver/PKGBUILD b/extra/libva-intel-driver/PKGBUILD
index e822af1bc..1bf94b42b 100644
--- a/extra/libva-intel-driver/PKGBUILD
+++ b/extra/libva-intel-driver/PKGBUILD
@@ -1,8 +1,8 @@
-# $Id: PKGBUILD 182376 2013-04-09 18:36:11Z ioni $
+# $Id: PKGBUILD 188964 2013-06-27 12:37:13Z heftig $
# Maintainer : Ionut Biru <ibiru@archlinux.org>
pkgname=libva-intel-driver
-pkgver=1.0.20
+pkgver=1.2.0
pkgrel=1
pkgdesc="VA-API implementation for Intel G45 chipsets and Intel HD Graphics for Intel Core processor family."
arch=('i686' 'x86_64')
@@ -12,7 +12,7 @@ depends=('libva')
options=('!libtool')
replaces=('libva-driver-intel')
source=(http://www.freedesktop.org/software/vaapi/releases/$pkgname/$pkgname-$pkgver.tar.bz2)
-sha1sums=('0aeba2d78f02c4f2c13b519c468e04fa88b2ae3e')
+sha1sums=('580c8dc5d2323b1e7dd9506512695001f845c2f1')
build() {
cd $pkgname-$pkgver
diff --git a/extra/libva/PKGBUILD b/extra/libva/PKGBUILD
index 7781d7219..c4424f064 100644
--- a/extra/libva/PKGBUILD
+++ b/extra/libva/PKGBUILD
@@ -1,8 +1,8 @@
-# $Id: PKGBUILD 182375 2013-04-09 18:35:29Z ioni $
+# $Id: PKGBUILD 188963 2013-06-27 12:36:37Z heftig $
# Maintainer : Ionut Biru <ibiru@archlinux.org>
pkgname=libva
-pkgver=1.1.1
+pkgver=1.2.1
pkgrel=1
pkgdesc="Video Acceleration (VA) API for Linux"
arch=('i686' 'x86_64')
@@ -14,7 +14,7 @@ optdepends=('libva-vdpau-driver: vdpau back-end for nvidia'
'libva-intel-driver: back-end for intel cards')
options=('!libtool')
source=(http://www.freedesktop.org/software/vaapi/releases/$pkgname/$pkgname-$pkgver.tar.bz2)
-sha1sums=('755e488677a196c9ac18b8c0d11aa2a56e050306')
+sha1sums=('f716a4cadd670b14f44a2e833f96a2c509956339')
build() {
cd "$pkgname-$pkgver"
diff --git a/extra/ntfs-3g_ntfsprogs/PKGBUILD b/extra/ntfs-3g_ntfsprogs/PKGBUILD
index 116ab72b7..4771b8a05 100644
--- a/extra/ntfs-3g_ntfsprogs/PKGBUILD
+++ b/extra/ntfs-3g_ntfsprogs/PKGBUILD
@@ -1,4 +1,4 @@
-# $Id: PKGBUILD 185299 2013-05-13 04:23:22Z eric $
+# $Id: PKGBUILD 188990 2013-06-27 19:50:33Z bpiotrowski $
# Maintainer: Tom Gundersen <teg@jklm.no>
# Contributor: Ronald van Haren <ronald.archlinux.org>
# Contributor: Thomas Bächler <thomas.archlinux.org>
@@ -6,7 +6,7 @@
pkgbase=ntfs-3g_ntfsprogs
pkgname=ntfs-3g
pkgver=2013.1.13
-pkgrel=3
+pkgrel=4
pkgdesc="NTFS filesystem utilities"
arch=('i686' 'x86_64')
url="http://www.tuxera.com/community/ntfs-3g-download/"
@@ -29,7 +29,8 @@ build() {
./configure --prefix=/usr \
--with-fuse=external --disable-static \
--enable-posix-acls --disable-ldconfig \
- --mandir=/usr/share/man --sbin=/usr/bin
+ --mandir=/usr/share/man --sbin=/usr/bin \
+ --enable-extras
make
}
diff --git a/extra/xf86-video-intel/PKGBUILD b/extra/xf86-video-intel/PKGBUILD
index 205ef1547..0176e4071 100644
--- a/extra/xf86-video-intel/PKGBUILD
+++ b/extra/xf86-video-intel/PKGBUILD
@@ -1,10 +1,10 @@
-# $Id: PKGBUILD 188921 2013-06-25 16:24:01Z andyrtr $
+# $Id: PKGBUILD 188960 2013-06-27 09:01:12Z lcarlier $
# Maintainer: AndyRTR <andyrtr@archlinux.org>
# Maintainer: Jan de Groot <jgc@archlinux.org>
pkgname=xf86-video-intel
pkgver=2.21.10
-pkgrel=2
+pkgrel=3
arch=(i686 x86_64)
url="http://xorg.freedesktop.org/"
license=('custom')
@@ -19,15 +19,19 @@ conflicts=('xorg-server<1.14.0' 'X-ABI-VIDEODRV_VERSION<14' 'X-ABI-VIDEODRV_VERS
options=('!libtool')
groups=('xorg-drivers' 'xorg')
source=(${url}/archive/individual/driver/${pkgname}-${pkgver}.tar.bz2
- firefox_image_fix.diff)
+ firefox_image_fix.diff
+ pd_crash_X_fix.diff)
sha256sums=('7a4bcad83e8153ab1eec46dfee2412b7b20d087f438af4bf97f460f67c5ca9b6'
- '33465c66b0a4bca2dfd242c86cb8cb882fbf841e1c2da632a5aa76f9d04b84d1')
+ '33465c66b0a4bca2dfd242c86cb8cb882fbf841e1c2da632a5aa76f9d04b84d1'
+ 'cfc83edf018408d9d5b7f5bb329ea364a203eb12bdf537270b89ad85203fbc44')
build() {
cd "${srcdir}/${pkgname}-${pkgver}"
# fix image issues in FF+TB, https://bugs.freedesktop.org/show_bug.cgi?id=66059
patch -Np1 -i ${srcdir}/firefox_image_fix.diff
+ # fix X crash with pd, https://bugs.freedesktop.org/show_bug.cgi?id=66104
+ patch -Np1 -i ${srcdir}/pd_crash_X_fix.diff
./configure --prefix=/usr \
--enable-dri
diff --git a/extra/xf86-video-intel/pd_crash_X_fix.diff b/extra/xf86-video-intel/pd_crash_X_fix.diff
new file mode 100644
index 000000000..6b10ec74e
--- /dev/null
+++ b/extra/xf86-video-intel/pd_crash_X_fix.diff
@@ -0,0 +1,148 @@
+From c88d911d4209a8ede5ec705ad925383c69182977 Mon Sep 17 00:00:00 2001
+From: Chris Wilson <chris@chris-wilson.co.uk>
+Date: Mon, 24 Jun 2013 14:30:00 +0100
+Subject: [PATCH] sna: Initialise gc->ops->PolyPoint for miWideDash
+
+The miWideDash may also call PolyPoint rather than emit spans, so make
+sure that we correctly prepare sna_poly_point before calling mi*.
+
+Reported-by: Tobias Brodel <toby.jamesjoy@gmail.com>
+Bugzilla: https://bugs.freedesktop.org/show_bug.cgi?id=66104
+Signed-off-by: Chris Wilson <chris@chris-wilson.co.uk>
+---
+ src/sna/sna_accel.c | 60 +++++++++++++++++++++++++++++++++++++++++++++++------
+ 1 file changed, 54 insertions(+), 6 deletions(-)
+
+diff --git a/src/sna/sna_accel.c b/src/sna/sna_accel.c
+index 43d6a67..a3e4ed4 100644
+--- a/src/sna/sna_accel.c
++++ b/src/sna/sna_accel.c
+@@ -5750,6 +5750,39 @@ sna_poly_point__fill_clip_boxes(DrawablePtr drawable, GCPtr gc,
+ }
+
+ static void
++sna_poly_point__dash(DrawablePtr drawable, GCPtr gc,
++ int mode, int n, DDXPointPtr pt)
++{
++ struct sna_fill_spans *data = sna_gc(gc)->priv;
++ struct sna_fill_op *op = data->op;
++
++ if (op->base.u.blt.pixel == gc->fgPixel)
++ sna_poly_point__fill(drawable, gc, mode, n, pt);
++}
++
++static void
++sna_poly_point__dash_clip_extents(DrawablePtr drawable, GCPtr gc,
++ int mode, int n, DDXPointPtr pt)
++{
++ struct sna_fill_spans *data = sna_gc(gc)->priv;
++ struct sna_fill_op *op = data->op;
++
++ if (op->base.u.blt.pixel == gc->fgPixel)
++ sna_poly_point__fill_clip_extents(drawable, gc, mode, n, pt);
++}
++
++static void
++sna_poly_point__dash_clip_boxes(DrawablePtr drawable, GCPtr gc,
++ int mode, int n, DDXPointPtr pt)
++{
++ struct sna_fill_spans *data = sna_gc(gc)->priv;
++ struct sna_fill_op *op = data->op;
++
++ if (op->base.u.blt.pixel == gc->fgPixel)
++ sna_poly_point__fill_clip_boxes(drawable, gc, mode, n, pt);
++}
++
++static void
+ sna_fill_spans__fill(DrawablePtr drawable,
+ GCPtr gc, int n,
+ DDXPointPtr pt, int *width, int sorted)
+@@ -8175,16 +8208,20 @@ spans_fallback:
+ sna_gc_ops__tmp.FillSpans = sna_fill_spans__fill_offset;
+ else
+ sna_gc_ops__tmp.FillSpans = sna_fill_spans__fill;
++ sna_gc_ops__tmp.PolyPoint = sna_poly_point__fill;
+ } else {
+ region_maybe_clip(&data.region,
+ gc->pCompositeClip);
+ if (RegionNil(&data.region))
+ return;
+
+- if (region_is_singular(&data.region))
++ if (region_is_singular(&data.region)) {
+ sna_gc_ops__tmp.FillSpans = sna_fill_spans__fill_clip_extents;
+- else
++ sna_gc_ops__tmp.PolyPoint = sna_poly_point__fill_clip_extents;
++ } else {
+ sna_gc_ops__tmp.FillSpans = sna_fill_spans__fill_clip_boxes;
++ sna_gc_ops__tmp.PolyPoint = sna_poly_point__fill_clip_boxes;
++ }
+ }
+ assert(gc->miTranslate);
+
+@@ -8200,16 +8237,20 @@ spans_fallback:
+ sna_gc_ops__tmp.FillSpans = sna_fill_spans__dash_offset;
+ else
+ sna_gc_ops__tmp.FillSpans = sna_fill_spans__dash;
++ sna_gc_ops__tmp.PolyPoint = sna_poly_point__dash;
+ } else {
+ region_maybe_clip(&data.region,
+ gc->pCompositeClip);
+ if (RegionNil(&data.region))
+ return;
+
+- if (region_is_singular(&data.region))
++ if (region_is_singular(&data.region)) {
+ sna_gc_ops__tmp.FillSpans = sna_fill_spans__dash_clip_extents;
+- else
++ sna_gc_ops__tmp.PolyPoint = sna_poly_point__dash_clip_extents;
++ } else {
+ sna_gc_ops__tmp.FillSpans = sna_fill_spans__dash_clip_boxes;
++ sna_gc_ops__tmp.PolyPoint = sna_poly_point__dash_clip_boxes;
++ }
+ }
+ assert(gc->miTranslate);
+
+@@ -8239,6 +8280,7 @@ spans_fallback:
+ */
+ sna_gc_ops__tmp.FillSpans = sna_fill_spans__gpu;
+ sna_gc_ops__tmp.PolyFillRect = sna_poly_fill_rect__gpu;
++ sna_gc_ops__tmp.PolyPoint = sna_poly_point__gpu;
+ gc->ops = &sna_gc_ops__tmp;
+
+ switch (gc->lineStyle) {
+@@ -9083,16 +9125,20 @@ spans_fallback:
+ sna_gc_ops__tmp.FillSpans = sna_fill_spans__fill_offset;
+ else
+ sna_gc_ops__tmp.FillSpans = sna_fill_spans__fill;
++ sna_gc_ops__tmp.PolyPoint = sna_poly_point__fill;
+ } else {
+ region_maybe_clip(&data.region,
+ gc->pCompositeClip);
+ if (RegionNil(&data.region))
+ return;
+
+- if (region_is_singular(&data.region))
++ if (region_is_singular(&data.region)) {
+ sna_gc_ops__tmp.FillSpans = sna_fill_spans__fill_clip_extents;
+- else
++ sna_gc_ops__tmp.PolyPoint = sna_poly_point__fill_clip_extents;
++ } else {
+ sna_gc_ops__tmp.FillSpans = sna_fill_spans__fill_clip_boxes;
++ sna_gc_ops__tmp.PolyPoint = sna_poly_point__fill_clip_boxes;
++ }
+ }
+ assert(gc->miTranslate);
+ gc->ops = &sna_gc_ops__tmp;
+@@ -9103,6 +9149,8 @@ spans_fallback:
+ fill.done(data.sna, &fill);
+ } else {
+ sna_gc_ops__tmp.FillSpans = sna_fill_spans__gpu;
++ sna_gc_ops__tmp.PolyFillRect = sna_poly_fill_rect__gpu;
++ sna_gc_ops__tmp.PolyPoint = sna_poly_point__gpu;
+ gc->ops = &sna_gc_ops__tmp;
+
+ for (i = 0; i < n; i++)
+--
+1.8.3.1
+
diff --git a/extra/xulrunner/PKGBUILD b/extra/xulrunner/PKGBUILD
index 8045f9ab8..1553ddcc3 100644
--- a/extra/xulrunner/PKGBUILD
+++ b/extra/xulrunner/PKGBUILD
@@ -1,8 +1,9 @@
-# $Id: PKGBUILD 185530 2013-05-14 19:12:24Z foutrelis $
+# $Id: PKGBUILD 188951 2013-06-27 01:33:26Z foutrelis $
# Maintainer: Jan de Groot <jgc@archlinux.org>
# Contributor: Alexander Baldeck <alexander@archlinux.org>
+
pkgname=xulrunner
-pkgver=21.0
+pkgver=22.0
pkgrel=1
pkgdesc="Mozilla Runtime Environment"
arch=('i686' 'x86_64')
@@ -16,7 +17,7 @@ source=(ftp://ftp.mozilla.org/pub/mozilla.org/xulrunner/releases/$pkgver/source/
shared-libs.patch)
options=('!emptydirs')
replaces=('xulrunner-oss')
-sha256sums=('c3623bc243bd57c7267eacac658993f5f635f639235bea9ed8fce9b52e59be64'
+sha256sums=('f806adf3f1c5b4c8d26322401ef876c73a549f93911be921044f508d698ac589'
'3fba82b327f8825ebe93ceaeaea4968d57cf7d700f40bf4457b06d263bcc2e8f'
'23485d937035648add27a7657f6934dc5b295e886cdb0506eebd02a43d07f269'
'e2b4a00d14f4ba69c62b3f9ef9908263fbab179ba8004197cbc67edbd916fdf1')