[arch-commits] Commit in xulrunner/repos (12 files)

2018-03-27 Thread Evangelos Foutras via arch-commits
Date: Tuesday, March 27, 2018 @ 23:01:22
  Author: foutrelis
Revision: 312980

archrelease: copy trunk to community-staging-x86_64

Added:
  xulrunner/repos/community-staging-x86_64/
  
xulrunner/repos/community-staging-x86_64/0001-Bug-1233963-Work-around-recent-GNU-gold-behavior-wit.patch
(from rev 312979, 
xulrunner/trunk/0001-Bug-1233963-Work-around-recent-GNU-gold-behavior-wit.patch)
  xulrunner/repos/community-staging-x86_64/Bug-1269171.patch
(from rev 312979, xulrunner/trunk/Bug-1269171.patch)
  xulrunner/repos/community-staging-x86_64/LFS_graphite2_harfbuzz.patch
(from rev 312979, xulrunner/trunk/LFS_graphite2_harfbuzz.patch)
  xulrunner/repos/community-staging-x86_64/PKGBUILD
(from rev 312979, xulrunner/trunk/PKGBUILD)
  xulrunner/repos/community-staging-x86_64/freetype261.patch
(from rev 312979, xulrunner/trunk/freetype261.patch)
  xulrunner/repos/community-staging-x86_64/gcc6.diff
(from rev 312979, xulrunner/trunk/gcc6.diff)
  xulrunner/repos/community-staging-x86_64/mozconfig
(from rev 312979, xulrunner/trunk/mozconfig)
  xulrunner/repos/community-staging-x86_64/mozilla-pkgconfig.patch
(from rev 312979, xulrunner/trunk/mozilla-pkgconfig.patch)
  xulrunner/repos/community-staging-x86_64/sed43.patch
(from rev 312979, xulrunner/trunk/sed43.patch)
  xulrunner/repos/community-staging-x86_64/shared-libs.patch
(from rev 312979, xulrunner/trunk/shared-libs.patch)
  xulrunner/repos/community-staging-x86_64/unbreak-plugin-build.patch
(from rev 312979, xulrunner/trunk/unbreak-plugin-build.patch)

-+
 0001-Bug-1233963-Work-around-recent-GNU-gold-behavior-wit.patch |   49 ++
 Bug-1269171.patch   |  139 ++
 LFS_graphite2_harfbuzz.patch|  212 
++
 PKGBUILD|  105 
 freetype261.patch   |   31 +
 gcc6.diff   |   37 +
 mozconfig   |   37 +
 mozilla-pkgconfig.patch |   40 +
 sed43.patch |   21 
 shared-libs.patch   |   12 
 unbreak-plugin-build.patch  |   76 +++
 11 files changed, 759 insertions(+)

Copied: 
xulrunner/repos/community-staging-x86_64/0001-Bug-1233963-Work-around-recent-GNU-gold-behavior-wit.patch
 (from rev 312979, 
xulrunner/trunk/0001-Bug-1233963-Work-around-recent-GNU-gold-behavior-wit.patch)
===
--- 
community-staging-x86_64/0001-Bug-1233963-Work-around-recent-GNU-gold-behavior-wit.patch
(rev 0)
+++ 
community-staging-x86_64/0001-Bug-1233963-Work-around-recent-GNU-gold-behavior-wit.patch
2018-03-27 23:01:22 UTC (rev 312980)
@@ -0,0 +1,49 @@
+From 4d0fe8f40364c170226f1ef3bc98975630463e87 Mon Sep 17 00:00:00 2001
+From: Mike Hommey 
+Date: Tue, 19 Jan 2016 14:31:04 +0900
+Subject: [PATCH] Bug 1233963 - Work around recent GNU gold behavior with
+ segments starting before the first section they contain
+
+---
+ build/unix/elfhack/elf.cpp | 7 +--
+ 1 file changed, 5 insertions(+), 2 deletions(-)
+
+diff --git a/build/unix/elfhack/elf.cpp b/build/unix/elfhack/elf.cpp
+index 666b535..743afde 100644
+--- a/build/unix/elfhack/elf.cpp
 b/build/unix/elfhack/elf.cpp
+@@ -253,26 +253,29 @@ Elf::Elf(std::ifstream &file)
+ }
+ if (phdr.p_type == PT_PHDR)
+ segment->addSection(phdr_section);
+ for (int j = 1; j < ehdr->e_shnum; j++)
+ if (phdr.contains(sections[j]))
+ segment->addSection(sections[j]);
+ // Make sure that our view of segments corresponds to the original
+ // ELF file.
+-assert(segment->getFileSize() == phdr.p_filesz);
++// GNU gold likes to start some segments before the first section
++// they contain. https://sourceware.org/bugzilla/show_bug.cgi?id=19392
++unsigned int gold_adjustment = segment->getAddr() - phdr.p_vaddr;
++assert(segment->getFileSize() == phdr.p_filesz - gold_adjustment);
+ // gold makes TLS segments end on an aligned virtual address, even
+ // when the underlying section ends before that, while bfd ld
+ // doesn't. It's fine if we don't keep that alignment.
+ unsigned int memsize = segment->getMemSize();
+ if (phdr.p_type == PT_TLS && memsize != phdr.p_memsz) {
+ unsigned int align = segment->getAlign();
+ memsize = (memsize + align - 1) & ~(align - 1);
+ }
+-assert(memsize == phdr.p_memsz);
++assert(memsize == phdr.p_memsz - gold_adjustment);
+ segments.push_back(segment);
+ }
+ 
+

[arch-commits] Commit in xulrunner/trunk (PKGBUILD)

2018-03-27 Thread Evangelos Foutras via arch-commits
Date: Tuesday, March 27, 2018 @ 23:00:59
  Author: foutrelis
Revision: 312979

icu 61.1 rebuild

Modified:
  xulrunner/trunk/PKGBUILD

--+
 PKGBUILD |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

Modified: PKGBUILD
===
--- PKGBUILD2018-03-27 22:54:05 UTC (rev 312978)
+++ PKGBUILD2018-03-27 23:00:59 UTC (rev 312979)
@@ -5,7 +5,7 @@
 
 pkgname=xulrunner
 pkgver=41.0.2
-pkgrel=14
+pkgrel=15
 pkgdesc="Mozilla Runtime Environment"
 arch=('x86_64')
 license=('MPL' 'GPL' 'LGPL')


[arch-commits] Commit in xulrunner/repos (12 files)

2018-02-04 Thread Evangelos Foutras via arch-commits
Date: Sunday, February 4, 2018 @ 10:12:07
  Author: foutrelis
Revision: 288947

archrelease: copy trunk to community-staging-x86_64

Added:
  xulrunner/repos/community-staging-x86_64/
  
xulrunner/repos/community-staging-x86_64/0001-Bug-1233963-Work-around-recent-GNU-gold-behavior-wit.patch
(from rev 288946, 
xulrunner/trunk/0001-Bug-1233963-Work-around-recent-GNU-gold-behavior-wit.patch)
  xulrunner/repos/community-staging-x86_64/Bug-1269171.patch
(from rev 288946, xulrunner/trunk/Bug-1269171.patch)
  xulrunner/repos/community-staging-x86_64/LFS_graphite2_harfbuzz.patch
(from rev 288946, xulrunner/trunk/LFS_graphite2_harfbuzz.patch)
  xulrunner/repos/community-staging-x86_64/PKGBUILD
(from rev 288946, xulrunner/trunk/PKGBUILD)
  xulrunner/repos/community-staging-x86_64/freetype261.patch
(from rev 288946, xulrunner/trunk/freetype261.patch)
  xulrunner/repos/community-staging-x86_64/gcc6.diff
(from rev 288946, xulrunner/trunk/gcc6.diff)
  xulrunner/repos/community-staging-x86_64/mozconfig
(from rev 288946, xulrunner/trunk/mozconfig)
  xulrunner/repos/community-staging-x86_64/mozilla-pkgconfig.patch
(from rev 288946, xulrunner/trunk/mozilla-pkgconfig.patch)
  xulrunner/repos/community-staging-x86_64/sed43.patch
(from rev 288946, xulrunner/trunk/sed43.patch)
  xulrunner/repos/community-staging-x86_64/shared-libs.patch
(from rev 288946, xulrunner/trunk/shared-libs.patch)
  xulrunner/repos/community-staging-x86_64/unbreak-plugin-build.patch
(from rev 288946, xulrunner/trunk/unbreak-plugin-build.patch)

-+
 0001-Bug-1233963-Work-around-recent-GNU-gold-behavior-wit.patch |   49 ++
 Bug-1269171.patch   |  139 ++
 LFS_graphite2_harfbuzz.patch|  212 
++
 PKGBUILD|  105 
 freetype261.patch   |   31 +
 gcc6.diff   |   37 +
 mozconfig   |   37 +
 mozilla-pkgconfig.patch |   40 +
 sed43.patch |   21 
 shared-libs.patch   |   12 
 unbreak-plugin-build.patch  |   76 +++
 11 files changed, 759 insertions(+)

Copied: 
xulrunner/repos/community-staging-x86_64/0001-Bug-1233963-Work-around-recent-GNU-gold-behavior-wit.patch
 (from rev 288946, 
xulrunner/trunk/0001-Bug-1233963-Work-around-recent-GNU-gold-behavior-wit.patch)
===
--- 
community-staging-x86_64/0001-Bug-1233963-Work-around-recent-GNU-gold-behavior-wit.patch
(rev 0)
+++ 
community-staging-x86_64/0001-Bug-1233963-Work-around-recent-GNU-gold-behavior-wit.patch
2018-02-04 10:12:07 UTC (rev 288947)
@@ -0,0 +1,49 @@
+From 4d0fe8f40364c170226f1ef3bc98975630463e87 Mon Sep 17 00:00:00 2001
+From: Mike Hommey 
+Date: Tue, 19 Jan 2016 14:31:04 +0900
+Subject: [PATCH] Bug 1233963 - Work around recent GNU gold behavior with
+ segments starting before the first section they contain
+
+---
+ build/unix/elfhack/elf.cpp | 7 +--
+ 1 file changed, 5 insertions(+), 2 deletions(-)
+
+diff --git a/build/unix/elfhack/elf.cpp b/build/unix/elfhack/elf.cpp
+index 666b535..743afde 100644
+--- a/build/unix/elfhack/elf.cpp
 b/build/unix/elfhack/elf.cpp
+@@ -253,26 +253,29 @@ Elf::Elf(std::ifstream &file)
+ }
+ if (phdr.p_type == PT_PHDR)
+ segment->addSection(phdr_section);
+ for (int j = 1; j < ehdr->e_shnum; j++)
+ if (phdr.contains(sections[j]))
+ segment->addSection(sections[j]);
+ // Make sure that our view of segments corresponds to the original
+ // ELF file.
+-assert(segment->getFileSize() == phdr.p_filesz);
++// GNU gold likes to start some segments before the first section
++// they contain. https://sourceware.org/bugzilla/show_bug.cgi?id=19392
++unsigned int gold_adjustment = segment->getAddr() - phdr.p_vaddr;
++assert(segment->getFileSize() == phdr.p_filesz - gold_adjustment);
+ // gold makes TLS segments end on an aligned virtual address, even
+ // when the underlying section ends before that, while bfd ld
+ // doesn't. It's fine if we don't keep that alignment.
+ unsigned int memsize = segment->getMemSize();
+ if (phdr.p_type == PT_TLS && memsize != phdr.p_memsz) {
+ unsigned int align = segment->getAlign();
+ memsize = (memsize + align - 1) & ~(align - 1);
+ }
+-assert(memsize == phdr.p_memsz);
++assert(memsize == phdr.p_memsz - gold_adjustment);
+ segments.push_back(segment);
+ }
+ 
+   

[arch-commits] Commit in xulrunner/trunk (PKGBUILD)

2018-02-04 Thread Evangelos Foutras via arch-commits
Date: Sunday, February 4, 2018 @ 10:11:53
  Author: foutrelis
Revision: 288946

upgpkg: xulrunner 41.0.2-14

libvpx 1.7.0 rebuild

Modified:
  xulrunner/trunk/PKGBUILD

--+
 PKGBUILD |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

Modified: PKGBUILD
===
--- PKGBUILD2018-02-04 09:11:43 UTC (rev 288945)
+++ PKGBUILD2018-02-04 10:11:53 UTC (rev 288946)
@@ -5,7 +5,7 @@
 
 pkgname=xulrunner
 pkgver=41.0.2
-pkgrel=13
+pkgrel=14
 pkgdesc="Mozilla Runtime Environment"
 arch=('x86_64')
 license=('MPL' 'GPL' 'LGPL')


[arch-commits] Commit in xulrunner/repos (12 files)

2017-11-12 Thread Evangelos Foutras
Date: Sunday, November 12, 2017 @ 14:01:52
  Author: foutrelis
Revision: 266360

archrelease: copy trunk to community-staging-x86_64

Added:
  xulrunner/repos/community-staging-x86_64/
  
xulrunner/repos/community-staging-x86_64/0001-Bug-1233963-Work-around-recent-GNU-gold-behavior-wit.patch
(from rev 266359, 
xulrunner/trunk/0001-Bug-1233963-Work-around-recent-GNU-gold-behavior-wit.patch)
  xulrunner/repos/community-staging-x86_64/Bug-1269171.patch
(from rev 266359, xulrunner/trunk/Bug-1269171.patch)
  xulrunner/repos/community-staging-x86_64/LFS_graphite2_harfbuzz.patch
(from rev 266359, xulrunner/trunk/LFS_graphite2_harfbuzz.patch)
  xulrunner/repos/community-staging-x86_64/PKGBUILD
(from rev 266359, xulrunner/trunk/PKGBUILD)
  xulrunner/repos/community-staging-x86_64/freetype261.patch
(from rev 266359, xulrunner/trunk/freetype261.patch)
  xulrunner/repos/community-staging-x86_64/gcc6.diff
(from rev 266359, xulrunner/trunk/gcc6.diff)
  xulrunner/repos/community-staging-x86_64/mozconfig
(from rev 266359, xulrunner/trunk/mozconfig)
  xulrunner/repos/community-staging-x86_64/mozilla-pkgconfig.patch
(from rev 266359, xulrunner/trunk/mozilla-pkgconfig.patch)
  xulrunner/repos/community-staging-x86_64/sed43.patch
(from rev 266359, xulrunner/trunk/sed43.patch)
  xulrunner/repos/community-staging-x86_64/shared-libs.patch
(from rev 266359, xulrunner/trunk/shared-libs.patch)
  xulrunner/repos/community-staging-x86_64/unbreak-plugin-build.patch
(from rev 266359, xulrunner/trunk/unbreak-plugin-build.patch)

-+
 0001-Bug-1233963-Work-around-recent-GNU-gold-behavior-wit.patch |   49 ++
 Bug-1269171.patch   |  139 ++
 LFS_graphite2_harfbuzz.patch|  212 
++
 PKGBUILD|  105 
 freetype261.patch   |   31 +
 gcc6.diff   |   37 +
 mozconfig   |   37 +
 mozilla-pkgconfig.patch |   40 +
 sed43.patch |   21 
 shared-libs.patch   |   12 
 unbreak-plugin-build.patch  |   76 +++
 11 files changed, 759 insertions(+)

Copied: 
xulrunner/repos/community-staging-x86_64/0001-Bug-1233963-Work-around-recent-GNU-gold-behavior-wit.patch
 (from rev 266359, 
xulrunner/trunk/0001-Bug-1233963-Work-around-recent-GNU-gold-behavior-wit.patch)
===
--- 
community-staging-x86_64/0001-Bug-1233963-Work-around-recent-GNU-gold-behavior-wit.patch
(rev 0)
+++ 
community-staging-x86_64/0001-Bug-1233963-Work-around-recent-GNU-gold-behavior-wit.patch
2017-11-12 14:01:52 UTC (rev 266360)
@@ -0,0 +1,49 @@
+From 4d0fe8f40364c170226f1ef3bc98975630463e87 Mon Sep 17 00:00:00 2001
+From: Mike Hommey 
+Date: Tue, 19 Jan 2016 14:31:04 +0900
+Subject: [PATCH] Bug 1233963 - Work around recent GNU gold behavior with
+ segments starting before the first section they contain
+
+---
+ build/unix/elfhack/elf.cpp | 7 +--
+ 1 file changed, 5 insertions(+), 2 deletions(-)
+
+diff --git a/build/unix/elfhack/elf.cpp b/build/unix/elfhack/elf.cpp
+index 666b535..743afde 100644
+--- a/build/unix/elfhack/elf.cpp
 b/build/unix/elfhack/elf.cpp
+@@ -253,26 +253,29 @@ Elf::Elf(std::ifstream &file)
+ }
+ if (phdr.p_type == PT_PHDR)
+ segment->addSection(phdr_section);
+ for (int j = 1; j < ehdr->e_shnum; j++)
+ if (phdr.contains(sections[j]))
+ segment->addSection(sections[j]);
+ // Make sure that our view of segments corresponds to the original
+ // ELF file.
+-assert(segment->getFileSize() == phdr.p_filesz);
++// GNU gold likes to start some segments before the first section
++// they contain. https://sourceware.org/bugzilla/show_bug.cgi?id=19392
++unsigned int gold_adjustment = segment->getAddr() - phdr.p_vaddr;
++assert(segment->getFileSize() == phdr.p_filesz - gold_adjustment);
+ // gold makes TLS segments end on an aligned virtual address, even
+ // when the underlying section ends before that, while bfd ld
+ // doesn't. It's fine if we don't keep that alignment.
+ unsigned int memsize = segment->getMemSize();
+ if (phdr.p_type == PT_TLS && memsize != phdr.p_memsz) {
+ unsigned int align = segment->getAlign();
+ memsize = (memsize + align - 1) & ~(align - 1);
+ }
+-assert(memsize == phdr.p_memsz);
++assert(memsize == phdr.p_memsz - gold_adjustment);
+ segments.push_back(segment);
+ }
+ 
+  

[arch-commits] Commit in xulrunner/trunk (PKGBUILD)

2017-11-12 Thread Evangelos Foutras
Date: Sunday, November 12, 2017 @ 14:01:19
  Author: foutrelis
Revision: 266359

icu 60.1 rebuild

Modified:
  xulrunner/trunk/PKGBUILD

--+
 PKGBUILD |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

Modified: PKGBUILD
===
--- PKGBUILD2017-11-12 13:54:46 UTC (rev 266358)
+++ PKGBUILD2017-11-12 14:01:19 UTC (rev 266359)
@@ -5,7 +5,7 @@
 
 pkgname=xulrunner
 pkgver=41.0.2
-pkgrel=12
+pkgrel=13
 pkgdesc="Mozilla Runtime Environment"
 arch=('i686' 'x86_64')
 license=('MPL' 'GPL' 'LGPL')


[arch-commits] Commit in xulrunner/trunk (PKGBUILD mozconfig)

2017-10-22 Thread Jelle van der Waa
Date: Sunday, October 22, 2017 @ 15:37:19
  Author: jelle
Revision: 263984

upgpkg: xulrunner 41.0.2-12

build against gcc6

Modified:
  xulrunner/trunk/PKGBUILD
  xulrunner/trunk/mozconfig

---+
 PKGBUILD  |   12 ++--
 mozconfig |4 ++--
 2 files changed, 8 insertions(+), 8 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2017-10-22 15:13:27 UTC (rev 263983)
+++ PKGBUILD2017-10-22 15:37:19 UTC (rev 263984)
@@ -5,12 +5,12 @@
 
 pkgname=xulrunner
 pkgver=41.0.2
-pkgrel=11
+pkgrel=12
 pkgdesc="Mozilla Runtime Environment"
 arch=('i686' 'x86_64')
 license=('MPL' 'GPL' 'LGPL')
 depends=('gtk2' 'mozilla-common' 'nss>3.18' 'libxt' 'hunspell' 
'startup-notification' 'mime-types' 'dbus-glib' 'libpulse' 'libevent' 'libvpx' 
'icu' 'python2')
-makedepends=('gcc5' 'zip' 'unzip' 'pkg-config' 'diffutils' 'yasm' 'mesa' 
'gconf' 'autoconf2.13' 'gst-plugins-base-libs')
+makedepends=('gcc6' 'zip' 'unzip' 'pkg-config' 'diffutils' 'yasm' 'mesa' 
'gconf' 'autoconf2.13' 'gst-plugins-base-libs')
 url="http://wiki.mozilla.org/XUL:Xul_Runner";
 
source=(https://ftp.mozilla.org/pub/mozilla.org/xulrunner/releases/$pkgver/source/xulrunner-$pkgver.source.tar.xz
 mozconfig
@@ -25,10 +25,10 @@
 options=('!emptydirs' '!makeflags' 'staticlibs')
 replaces=('xulrunner-oss')
 sha256sums=('f7abb2e2989779305ab1f80d30caf9fc55d96c7e66d1394e2cc9639442e2b864'
-'d9f5f9f03f2d70f8cdf3997f22b67ca5e441d9134c0e3b7b19e867054b33b15d'
+'8ab57ae3ba4660a721cdb210babee02488b670d9af9fdecf5da3b832d77e342b'
 '3aea9a83bf304da5525f34a911712cf42f8ded1c8b6becf0a2cf8a4b4f7facd6'
 '13a27a385fab88938ac7417f1e7ca7225ec6b88840bafe67e0f5642e5446554a'
-   'bd78da5d5319c8eb6a9195c3bd35bf919f9a9c030d69890f42e96171e32be60f'
+'bd78da5d5319c8eb6a9195c3bd35bf919f9a9c030d69890f42e96171e32be60f'
 'afcd7d3f6113b0f9ead0cb1b47b3fccedadce56a16b4406c439411864bd11863'
 '1aa9ebe67542a2b8c28905d070829ada5b29438c6a7961f2b0cdd6b92d8b9f5c'
 '59d9fc421bc10a5515b73e159f44a72365bf7b7e8b3fc8a8c46043ef40bd3a40'
@@ -50,8 +50,8 @@
 
   # It would be great to track down all the gcc7 fixes
   # https://bugzilla.mozilla.org/show_bug.cgi?id=1269171
-  #patch -Np1 -i ../gcc6.diff
-  #patch -Np1 -i ../Bug-1269171.patch
+  patch -Np1 -i ../gcc6.diff
+  patch -Np1 -i ../Bug-1269171.patch
 
   # https://bugzilla.mozilla.org/show_bug.cgi?id=847568
   patch -Np1 -i ../LFS_graphite2_harfbuzz.patch

Modified: mozconfig
===
--- mozconfig   2017-10-22 15:13:27 UTC (rev 263983)
+++ mozconfig   2017-10-22 15:37:19 UTC (rev 263984)
@@ -1,7 +1,7 @@
 . $topsrcdir/xulrunner/config/mozconfig
 
-export CC=gcc-5
-export CXX=g++-5
+export CC=gcc-6
+export CXX=g++-6
 
 ac_add_options --prefix=/usr
 ac_add_options --libdir=/usr/lib


[arch-commits] Commit in xulrunner/repos (44 files)

2017-10-22 Thread Jelle van der Waa
Date: Sunday, October 22, 2017 @ 15:37:48
  Author: jelle
Revision: 263985

archrelease: copy trunk to community-i686, community-x86_64

Added:
  
xulrunner/repos/community-i686/0001-Bug-1233963-Work-around-recent-GNU-gold-behavior-wit.patch
(from rev 263984, 
xulrunner/trunk/0001-Bug-1233963-Work-around-recent-GNU-gold-behavior-wit.patch)
  xulrunner/repos/community-i686/Bug-1269171.patch
(from rev 263984, xulrunner/trunk/Bug-1269171.patch)
  xulrunner/repos/community-i686/LFS_graphite2_harfbuzz.patch
(from rev 263984, xulrunner/trunk/LFS_graphite2_harfbuzz.patch)
  xulrunner/repos/community-i686/PKGBUILD
(from rev 263984, xulrunner/trunk/PKGBUILD)
  xulrunner/repos/community-i686/freetype261.patch
(from rev 263984, xulrunner/trunk/freetype261.patch)
  xulrunner/repos/community-i686/gcc6.diff
(from rev 263984, xulrunner/trunk/gcc6.diff)
  xulrunner/repos/community-i686/mozconfig
(from rev 263984, xulrunner/trunk/mozconfig)
  xulrunner/repos/community-i686/mozilla-pkgconfig.patch
(from rev 263984, xulrunner/trunk/mozilla-pkgconfig.patch)
  xulrunner/repos/community-i686/sed43.patch
(from rev 263984, xulrunner/trunk/sed43.patch)
  xulrunner/repos/community-i686/shared-libs.patch
(from rev 263984, xulrunner/trunk/shared-libs.patch)
  xulrunner/repos/community-i686/unbreak-plugin-build.patch
(from rev 263984, xulrunner/trunk/unbreak-plugin-build.patch)
  
xulrunner/repos/community-x86_64/0001-Bug-1233963-Work-around-recent-GNU-gold-behavior-wit.patch
(from rev 263984, 
xulrunner/trunk/0001-Bug-1233963-Work-around-recent-GNU-gold-behavior-wit.patch)
  xulrunner/repos/community-x86_64/Bug-1269171.patch
(from rev 263984, xulrunner/trunk/Bug-1269171.patch)
  xulrunner/repos/community-x86_64/LFS_graphite2_harfbuzz.patch
(from rev 263984, xulrunner/trunk/LFS_graphite2_harfbuzz.patch)
  xulrunner/repos/community-x86_64/PKGBUILD
(from rev 263984, xulrunner/trunk/PKGBUILD)
  xulrunner/repos/community-x86_64/freetype261.patch
(from rev 263984, xulrunner/trunk/freetype261.patch)
  xulrunner/repos/community-x86_64/gcc6.diff
(from rev 263984, xulrunner/trunk/gcc6.diff)
  xulrunner/repos/community-x86_64/mozconfig
(from rev 263984, xulrunner/trunk/mozconfig)
  xulrunner/repos/community-x86_64/mozilla-pkgconfig.patch
(from rev 263984, xulrunner/trunk/mozilla-pkgconfig.patch)
  xulrunner/repos/community-x86_64/sed43.patch
(from rev 263984, xulrunner/trunk/sed43.patch)
  xulrunner/repos/community-x86_64/shared-libs.patch
(from rev 263984, xulrunner/trunk/shared-libs.patch)
  xulrunner/repos/community-x86_64/unbreak-plugin-build.patch
(from rev 263984, xulrunner/trunk/unbreak-plugin-build.patch)
Deleted:
  
xulrunner/repos/community-i686/0001-Bug-1233963-Work-around-recent-GNU-gold-behavior-wit.patch
  xulrunner/repos/community-i686/Bug-1269171.patch
  xulrunner/repos/community-i686/LFS_graphite2_harfbuzz.patch
  xulrunner/repos/community-i686/PKGBUILD
  xulrunner/repos/community-i686/freetype261.patch
  xulrunner/repos/community-i686/gcc6.diff
  xulrunner/repos/community-i686/mozconfig
  xulrunner/repos/community-i686/mozilla-pkgconfig.patch
  xulrunner/repos/community-i686/sed43.patch
  xulrunner/repos/community-i686/shared-libs.patch
  xulrunner/repos/community-i686/unbreak-plugin-build.patch
  
xulrunner/repos/community-x86_64/0001-Bug-1233963-Work-around-recent-GNU-gold-behavior-wit.patch
  xulrunner/repos/community-x86_64/Bug-1269171.patch
  xulrunner/repos/community-x86_64/LFS_graphite2_harfbuzz.patch
  xulrunner/repos/community-x86_64/PKGBUILD
  xulrunner/repos/community-x86_64/freetype261.patch
  xulrunner/repos/community-x86_64/gcc6.diff
  xulrunner/repos/community-x86_64/mozconfig
  xulrunner/repos/community-x86_64/mozilla-pkgconfig.patch
  xulrunner/repos/community-x86_64/sed43.patch
  xulrunner/repos/community-x86_64/shared-libs.patch
  xulrunner/repos/community-x86_64/unbreak-plugin-build.patch

--+
 /0001-Bug-1233963-Work-around-recent-GNU-gold-behavior-wit.patch   
  |   98 ++
 /Bug-1269171.patch 
  |  278 ++
 /LFS_graphite2_harfbuzz.patch  
  |  424 ++
 /PKGBUILD  
  |  210 
 /freetype261.patch 
  |   62 +
 /gcc6.diff 
  |   74 +
 /mozconfig 
  |   74 +
 /mozilla-pkgconfig.patch   
  |   80 +
 /sed43.patch   
  |   42 
 /shared-libs.patch 
  |   24 
 /unbreak-plugin-build.patc

[arch-commits] Commit in xulrunner/repos (24 files)

2017-06-21 Thread Connor Behan
Date: Thursday, June 22, 2017 @ 00:30:55
  Author: cbehan
Revision: 239388

archrelease: copy trunk to community-staging-i686, community-staging-x86_64

Added:
  xulrunner/repos/community-staging-i686/
  
xulrunner/repos/community-staging-i686/0001-Bug-1233963-Work-around-recent-GNU-gold-behavior-wit.patch
(from rev 239387, 
xulrunner/trunk/0001-Bug-1233963-Work-around-recent-GNU-gold-behavior-wit.patch)
  xulrunner/repos/community-staging-i686/Bug-1269171.patch
(from rev 239387, xulrunner/trunk/Bug-1269171.patch)
  xulrunner/repos/community-staging-i686/LFS_graphite2_harfbuzz.patch
(from rev 239387, xulrunner/trunk/LFS_graphite2_harfbuzz.patch)
  xulrunner/repos/community-staging-i686/PKGBUILD
(from rev 239387, xulrunner/trunk/PKGBUILD)
  xulrunner/repos/community-staging-i686/freetype261.patch
(from rev 239387, xulrunner/trunk/freetype261.patch)
  xulrunner/repos/community-staging-i686/gcc6.diff
(from rev 239387, xulrunner/trunk/gcc6.diff)
  xulrunner/repos/community-staging-i686/mozconfig
(from rev 239387, xulrunner/trunk/mozconfig)
  xulrunner/repos/community-staging-i686/mozilla-pkgconfig.patch
(from rev 239387, xulrunner/trunk/mozilla-pkgconfig.patch)
  xulrunner/repos/community-staging-i686/sed43.patch
(from rev 239387, xulrunner/trunk/sed43.patch)
  xulrunner/repos/community-staging-i686/shared-libs.patch
(from rev 239387, xulrunner/trunk/shared-libs.patch)
  xulrunner/repos/community-staging-i686/unbreak-plugin-build.patch
(from rev 239387, xulrunner/trunk/unbreak-plugin-build.patch)
  xulrunner/repos/community-staging-x86_64/
  
xulrunner/repos/community-staging-x86_64/0001-Bug-1233963-Work-around-recent-GNU-gold-behavior-wit.patch
(from rev 239387, 
xulrunner/trunk/0001-Bug-1233963-Work-around-recent-GNU-gold-behavior-wit.patch)
  xulrunner/repos/community-staging-x86_64/Bug-1269171.patch
(from rev 239387, xulrunner/trunk/Bug-1269171.patch)
  xulrunner/repos/community-staging-x86_64/LFS_graphite2_harfbuzz.patch
(from rev 239387, xulrunner/trunk/LFS_graphite2_harfbuzz.patch)
  xulrunner/repos/community-staging-x86_64/PKGBUILD
(from rev 239387, xulrunner/trunk/PKGBUILD)
  xulrunner/repos/community-staging-x86_64/freetype261.patch
(from rev 239387, xulrunner/trunk/freetype261.patch)
  xulrunner/repos/community-staging-x86_64/gcc6.diff
(from rev 239387, xulrunner/trunk/gcc6.diff)
  xulrunner/repos/community-staging-x86_64/mozconfig
(from rev 239387, xulrunner/trunk/mozconfig)
  xulrunner/repos/community-staging-x86_64/mozilla-pkgconfig.patch
(from rev 239387, xulrunner/trunk/mozilla-pkgconfig.patch)
  xulrunner/repos/community-staging-x86_64/sed43.patch
(from rev 239387, xulrunner/trunk/sed43.patch)
  xulrunner/repos/community-staging-x86_64/shared-libs.patch
(from rev 239387, xulrunner/trunk/shared-libs.patch)
  xulrunner/repos/community-staging-x86_64/unbreak-plugin-build.patch
(from rev 239387, xulrunner/trunk/unbreak-plugin-build.patch)

--+
 
community-staging-i686/0001-Bug-1233963-Work-around-recent-GNU-gold-behavior-wit.patch
   |   49 ++
 community-staging-i686/Bug-1269171.patch   
  |  139 ++
 community-staging-i686/LFS_graphite2_harfbuzz.patch
  |  212 ++
 community-staging-i686/PKGBUILD
  |  105 
 community-staging-i686/freetype261.patch   
  |   31 +
 community-staging-i686/gcc6.diff   
  |   37 +
 community-staging-i686/mozconfig   
  |   37 +
 community-staging-i686/mozilla-pkgconfig.patch 
  |   40 +
 community-staging-i686/sed43.patch 
  |   21 
 community-staging-i686/shared-libs.patch   
  |   12 
 community-staging-i686/unbreak-plugin-build.patch  
  |   76 +++
 
community-staging-x86_64/0001-Bug-1233963-Work-around-recent-GNU-gold-behavior-wit.patch
 |   49 ++
 community-staging-x86_64/Bug-1269171.patch 
  |  139 ++
 community-staging-x86_64/LFS_graphite2_harfbuzz.patch  
  |  212 ++
 community-staging-x86_64/PKGBUILD  
  |  105 
 community-staging-x86_64/freetype261.patch 
  |   31 +
 community-staging-x86_64/gcc6.diff 
  |   37 +
 community-staging-x86_64/mozconfig 
  |   37 +
 community-staging-x86_64/mozilla-pkgconfig.patch   

[arch-commits] Commit in xulrunner/trunk (Bug-1269171.patch PKGBUILD mozconfig)

2017-06-21 Thread Connor Behan
Date: Thursday, June 22, 2017 @ 00:29:41
  Author: cbehan
Revision: 239387

upgpkg: xulrunner 41.0.2-11

Go back to gcc5 so that it will build

Added:
  xulrunner/trunk/Bug-1269171.patch
Modified:
  xulrunner/trunk/PKGBUILD
  xulrunner/trunk/mozconfig

---+
 Bug-1269171.patch |  139 
 PKGBUILD  |   18 --
 mozconfig |4 +
 3 files changed, 155 insertions(+), 6 deletions(-)

Added: Bug-1269171.patch
===
--- Bug-1269171.patch   (rev 0)
+++ Bug-1269171.patch   2017-06-22 00:29:41 UTC (rev 239387)
@@ -0,0 +1,139 @@
+diff --git a/config/gcc-stl-wrapper.template.h 
b/config/gcc-stl-wrapper.template.h
+--- a/config/gcc-stl-wrapper.template.h
 b/config/gcc-stl-wrapper.template.h
+@@ -22,21 +22,34 @@
+ #define NOMINMAX 1
+ #endif
+ 
++#if defined(DEBUG) && !defined(_GLIBCXX_DEBUG)
++// Enable checked iterators and other goodies
++//
++// FIXME/bug 551254: gcc's debug STL implementation requires -frtti.
++// Figure out how to resolve this with -fno-rtti.  Maybe build with
++// -frtti in DEBUG builds?
++//
++//  # define _GLIBCXX_DEBUG 1
++#endif
++
+ // Don't include mozalloc for cstdlib. See bug 1245076.
+ #ifndef moz_dont_include_mozalloc_for_cstdlib
+ #  define moz_dont_include_mozalloc_for_cstdlib
+ #endif
+-#ifndef moz_dont_include_mozalloc_for_${HEADER}
+-// mozalloc.h wants ; break the cycle by always explicitly
+-// including  here.  NB: this is a tad sneaky.  Sez the gcc docs:
+-//
+-//`#include_next' does not distinguish between  and "file"
+-//inclusion, nor does it check that the file you specify has the
+-//same name as the current file. It simply looks for the file
+-//named, starting with the directory in the search path after the
+-//one where the current file was found.
+-#  include_next 
+ 
++// Include mozalloc after the STL header and all other headers it includes
++// have been preprocessed.
++#if !defined(MOZ_INCLUDE_MOZALLOC_H) && \
++!defined(moz_dont_include_mozalloc_for_${HEADER})
++#  define MOZ_INCLUDE_MOZALLOC_H
++#  define MOZ_INCLUDE_MOZALLOC_H_FROM_${HEADER}
++#endif
++
++#pragma GCC visibility push(default)
++#include_next <${HEADER}>
++#pragma GCC visibility pop
++
++#ifdef MOZ_INCLUDE_MOZALLOC_H_FROM_${HEADER}
+ // See if we're in code that can use mozalloc.  NB: this duplicates
+ // code in nscore.h because nscore.h pulls in prtypes.h, and chromium
+ // can't build with that being included before base/basictypes.h.
+@@ -45,23 +58,8 @@
+ #  else
+ #error "STL code can only be used with infallible ::operator new()"
+ #  endif
+-
+-#endif
+-
+-#if defined(DEBUG) && !defined(_GLIBCXX_DEBUG)
+-// Enable checked iterators and other goodies
+-//
+-// FIXME/bug 551254: gcc's debug STL implementation requires -frtti.
+-// Figure out how to resolve this with -fno-rtti.  Maybe build with
+-// -frtti in DEBUG builds?
+-//
+-//  # define _GLIBCXX_DEBUG 1
+ #endif
+ 
+-#pragma GCC visibility push(default)
+-#include_next <${HEADER}>
+-#pragma GCC visibility pop
+-
+ // gcc calls a __throw_*() function from bits/functexcept.h when it
+ // wants to "throw an exception".  functexcept exists nominally to
+ // support -fno-exceptions, but since we'll always use the system
+diff --git a/config/make-stl-wrappers.py b/config/make-stl-wrappers.py
+--- a/config/make-stl-wrappers.py
 b/config/make-stl-wrappers.py
+@@ -25,28 +25,26 @@
+ def is_comment(line):
+ return re.match(r'\s*#.*', line)
+ 
+ def main(outdir, compiler, template_file, header_list_file):
+ if not os.path.isdir(outdir):
+ os.mkdir(outdir)
+ 
+ template = open(template_file, 'r').read()
+-path_to_new = header_path('new', compiler)
+ 
+ for header in open(header_list_file, 'r'):
+ header = header.rstrip()
+ if 0 == len(header) or is_comment(header):
+ continue
+ 
+ path = header_path(header, compiler)
+ with FileAvoidWrite(os.path.join(outdir, header)) as f:
+ f.write(string.Template(template).substitute(HEADER=header,
+- HEADER_PATH=path,
+- 
NEW_HEADER_PATH=path_to_new))
++ HEADER_PATH=path))
+ 
+ 
+ if __name__ == '__main__':
+ if 5 != len(sys.argv):
+ print("""Usage:
+   python {0} OUT_DIR ('msvc'|'gcc') TEMPLATE_FILE HEADER_LIST_FILE
+ """.format(sys.argv[0]), file=sys.stderr)
+ sys.exit(1)
+diff --git a/memory/mozalloc/mozalloc.h b/memory/mozalloc/mozalloc.h
+--- a/memory/mozalloc/mozalloc.h
 b/memory/mozalloc/mozalloc.h
+@@ -7,20 +7,27 @@
+ 
+ #ifndef mozilla_mozalloc_h
+ #define mozilla_mozalloc_h
+ 
+ /*
+  * https://bugzilla.mozilla.org/show_bug.cgi?id=427099
+  */
+ 
+-#include 
+-#include 
+ #if defined(__cplusplus)
+ #  include 
++// Since li

[arch-commits] Commit in xulrunner/repos (22 files)

2017-04-25 Thread Evangelos Foutras
Date: Wednesday, April 26, 2017 @ 06:12:24
  Author: foutrelis
Revision: 225391

archrelease: copy trunk to community-staging-i686, community-staging-x86_64

Added:
  xulrunner/repos/community-staging-i686/
  
xulrunner/repos/community-staging-i686/0001-Bug-1233963-Work-around-recent-GNU-gold-behavior-wit.patch
(from rev 225390, 
xulrunner/trunk/0001-Bug-1233963-Work-around-recent-GNU-gold-behavior-wit.patch)
  xulrunner/repos/community-staging-i686/LFS_graphite2_harfbuzz.patch
(from rev 225390, xulrunner/trunk/LFS_graphite2_harfbuzz.patch)
  xulrunner/repos/community-staging-i686/PKGBUILD
(from rev 225390, xulrunner/trunk/PKGBUILD)
  xulrunner/repos/community-staging-i686/freetype261.patch
(from rev 225390, xulrunner/trunk/freetype261.patch)
  xulrunner/repos/community-staging-i686/gcc6.diff
(from rev 225390, xulrunner/trunk/gcc6.diff)
  xulrunner/repos/community-staging-i686/mozconfig
(from rev 225390, xulrunner/trunk/mozconfig)
  xulrunner/repos/community-staging-i686/mozilla-pkgconfig.patch
(from rev 225390, xulrunner/trunk/mozilla-pkgconfig.patch)
  xulrunner/repos/community-staging-i686/sed43.patch
(from rev 225390, xulrunner/trunk/sed43.patch)
  xulrunner/repos/community-staging-i686/shared-libs.patch
(from rev 225390, xulrunner/trunk/shared-libs.patch)
  xulrunner/repos/community-staging-i686/unbreak-plugin-build.patch
(from rev 225390, xulrunner/trunk/unbreak-plugin-build.patch)
  xulrunner/repos/community-staging-x86_64/
  
xulrunner/repos/community-staging-x86_64/0001-Bug-1233963-Work-around-recent-GNU-gold-behavior-wit.patch
(from rev 225390, 
xulrunner/trunk/0001-Bug-1233963-Work-around-recent-GNU-gold-behavior-wit.patch)
  xulrunner/repos/community-staging-x86_64/LFS_graphite2_harfbuzz.patch
(from rev 225390, xulrunner/trunk/LFS_graphite2_harfbuzz.patch)
  xulrunner/repos/community-staging-x86_64/PKGBUILD
(from rev 225390, xulrunner/trunk/PKGBUILD)
  xulrunner/repos/community-staging-x86_64/freetype261.patch
(from rev 225390, xulrunner/trunk/freetype261.patch)
  xulrunner/repos/community-staging-x86_64/gcc6.diff
(from rev 225390, xulrunner/trunk/gcc6.diff)
  xulrunner/repos/community-staging-x86_64/mozconfig
(from rev 225390, xulrunner/trunk/mozconfig)
  xulrunner/repos/community-staging-x86_64/mozilla-pkgconfig.patch
(from rev 225390, xulrunner/trunk/mozilla-pkgconfig.patch)
  xulrunner/repos/community-staging-x86_64/sed43.patch
(from rev 225390, xulrunner/trunk/sed43.patch)
  xulrunner/repos/community-staging-x86_64/shared-libs.patch
(from rev 225390, xulrunner/trunk/shared-libs.patch)
  xulrunner/repos/community-staging-x86_64/unbreak-plugin-build.patch
(from rev 225390, xulrunner/trunk/unbreak-plugin-build.patch)

--+
 
community-staging-i686/0001-Bug-1233963-Work-around-recent-GNU-gold-behavior-wit.patch
   |   49 ++
 community-staging-i686/LFS_graphite2_harfbuzz.patch
  |  212 ++
 community-staging-i686/PKGBUILD
  |   99 
 community-staging-i686/freetype261.patch   
  |   31 +
 community-staging-i686/gcc6.diff   
  |   37 +
 community-staging-i686/mozconfig   
  |   33 +
 community-staging-i686/mozilla-pkgconfig.patch 
  |   40 +
 community-staging-i686/sed43.patch 
  |   21 
 community-staging-i686/shared-libs.patch   
  |   12 
 community-staging-i686/unbreak-plugin-build.patch  
  |   76 +++
 
community-staging-x86_64/0001-Bug-1233963-Work-around-recent-GNU-gold-behavior-wit.patch
 |   49 ++
 community-staging-x86_64/LFS_graphite2_harfbuzz.patch  
  |  212 ++
 community-staging-x86_64/PKGBUILD  
  |   99 
 community-staging-x86_64/freetype261.patch 
  |   31 +
 community-staging-x86_64/gcc6.diff 
  |   37 +
 community-staging-x86_64/mozconfig 
  |   33 +
 community-staging-x86_64/mozilla-pkgconfig.patch   
  |   40 +
 community-staging-x86_64/sed43.patch   
  |   21 
 community-staging-x86_64/shared-libs.patch 
  |   12 
 community-staging-x86_64/unbreak-plugin-build.patch
  |   76 +++
 20 files changed, 1220 insertions(+)

Copied: 
xulrunner/repos/community-staging-i686/0001-Bug-1233963-Work-around

[arch-commits] Commit in xulrunner/trunk (PKGBUILD)

2017-04-25 Thread Evangelos Foutras
Date: Wednesday, April 26, 2017 @ 06:11:54
  Author: foutrelis
Revision: 225390

icu 59.1 / hunspell 1.6.0 rebuild

Modified:
  xulrunner/trunk/PKGBUILD

--+
 PKGBUILD |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

Modified: PKGBUILD
===
--- PKGBUILD2017-04-26 05:43:50 UTC (rev 225389)
+++ PKGBUILD2017-04-26 06:11:54 UTC (rev 225390)
@@ -5,7 +5,7 @@
 
 pkgname=xulrunner
 pkgver=41.0.2
-pkgrel=9
+pkgrel=10
 pkgdesc="Mozilla Runtime Environment"
 arch=('i686' 'x86_64')
 license=('MPL' 'GPL' 'LGPL')


[arch-commits] Commit in xulrunner/trunk (PKGBUILD sed43.patch)

2017-04-25 Thread Evangelos Foutras
Date: Wednesday, April 26, 2017 @ 05:43:50
  Author: foutrelis
Revision: 225389

Fix detection of ICU version number with sed 4.3

Added:
  xulrunner/trunk/sed43.patch
Modified:
  xulrunner/trunk/PKGBUILD

-+
 PKGBUILD|5 +
 sed43.patch |   21 +
 2 files changed, 26 insertions(+)

Modified: PKGBUILD
===
--- PKGBUILD2017-04-26 04:06:11 UTC (rev 225388)
+++ PKGBUILD2017-04-26 05:43:50 UTC (rev 225389)
@@ -19,6 +19,7 @@
 LFS_graphite2_harfbuzz.patch
 mozilla-pkgconfig.patch
 shared-libs.patch
+sed43.patch
 gcc6.diff)
 options=('!emptydirs' '!makeflags' 'staticlibs')
 replaces=('xulrunner-oss')
@@ -29,6 +30,7 @@
 'afcd7d3f6113b0f9ead0cb1b47b3fccedadce56a16b4406c439411864bd11863'
 '1aa9ebe67542a2b8c28905d070829ada5b29438c6a7961f2b0cdd6b92d8b9f5c'
 '59d9fc421bc10a5515b73e159f44a72365bf7b7e8b3fc8a8c46043ef40bd3a40'
+'e9b7199b57fa07e440d37db0cc3cf52aa1c1fd7d5e8b31db14e511d77b5ce327'
 '0992d5dce883de760ff0445448466f096d0baa75fe5fd1e60bfd3cc13cb4d098')
 
 prepare() {
@@ -38,6 +40,9 @@
   # GCC6
   patch -Np1 -i ../gcc6.diff
 
+  # https://bugzilla.mozilla.org/show_bug.cgi?id=1329272
+  patch -Np1 -i ../sed43.patch
+
   # https://bugzilla.mozilla.org/show_bug.cgi?id=1194520
   patch -Np1 -i ../freetype261.patch
 

Added: sed43.patch
===
--- sed43.patch (rev 0)
+++ sed43.patch 2017-04-26 05:43:50 UTC (rev 225389)
@@ -0,0 +1,21 @@
+
+# HG changeset patch
+# User Daniel Stenberg 
+# Date 1484000700 -3600
+# Node ID ebcbf47a83e7d3b89460cf1c991b6be5a79a967b
+# Parent  0759511f24e1b8d42acf5e9612f3ab91715842c2
+Bug 1329272 - add bracket for sed 4.3 compliance, r=glandium
+
+diff --git a/build/autoconf/icu.m4 b/build/autoconf/icu.m4
+--- a/build/autoconf/icu.m4
 b/build/autoconf/icu.m4
+@@ -69,7 +69,7 @@ if test -n "$USE_ICU"; then
+ fi
+ fi
+ 
+-version=`sed -n 
's/^[[:space:]]*#[[:space:]]*define[[:space:]][[:space:]]*U_ICU_VERSION_MAJOR_NUM[[:space:]][[:space:]]*\([0-9][0-9]*\)[[:space:]]*$/\1/p'
 "$icudir/common/unicode/uvernum.h"`
++version=`sed -n 
's/^[[[:space:]]]*#[[:space:]]*define[[:space:]][[:space:]]*U_ICU_VERSION_MAJOR_NUM[[:space:]][[:space:]]*\([0-9][0-9]*\)[[:space:]]*$/\1/p'
 "$icudir/common/unicode/uvernum.h"`
+ if test x"$version" = x; then
+AC_MSG_ERROR([cannot determine icu version number from uvernum.h 
header file $lineno])
+ fi
+


[arch-commits] Commit in xulrunner/trunk (PKGBUILD mozconfig)

2016-11-28 Thread Evangelos Foutras
Date: Monday, November 28, 2016 @ 14:16:19
  Author: foutrelis
Revision: 197142

Switch back to system hunspell

Modified:
  xulrunner/trunk/PKGBUILD
  xulrunner/trunk/mozconfig

---+
 PKGBUILD  |4 ++--
 mozconfig |2 +-
 2 files changed, 3 insertions(+), 3 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2016-11-28 14:15:09 UTC (rev 197141)
+++ PKGBUILD2016-11-28 14:16:19 UTC (rev 197142)
@@ -9,7 +9,7 @@
 pkgdesc="Mozilla Runtime Environment"
 arch=('i686' 'x86_64')
 license=('MPL' 'GPL' 'LGPL')
-depends=('gtk2' 'mozilla-common' 'nss>3.18' 'libxt' 'startup-notification' 
'mime-types' 'dbus-glib' 'libpulse' 'libevent' 'libvpx' 'icu' 'python2')
+depends=('gtk2' 'mozilla-common' 'nss>3.18' 'libxt' 'hunspell' 
'startup-notification' 'mime-types' 'dbus-glib' 'libpulse' 'libevent' 'libvpx' 
'icu' 'python2')
 makedepends=('zip' 'unzip' 'pkg-config' 'diffutils' 'yasm' 'mesa' 'gconf' 
'autoconf2.13' 'gst-plugins-base-libs')
 url="http://wiki.mozilla.org/XUL:Xul_Runner";
 
source=(https://ftp.mozilla.org/pub/mozilla.org/xulrunner/releases/$pkgver/source/xulrunner-$pkgver.source.tar.xz
@@ -23,7 +23,7 @@
 options=('!emptydirs' '!makeflags' 'staticlibs')
 replaces=('xulrunner-oss')
 sha256sums=('f7abb2e2989779305ab1f80d30caf9fc55d96c7e66d1394e2cc9639442e2b864'
-'ba32eaa7e8c3b92414eb041722553c3d5282e5077b0d054ca10164d51ea970cd'
+'8c91a46e16652a6e30e52678955e801e620d10576edef7be32080815b002562e'
 '3aea9a83bf304da5525f34a911712cf42f8ded1c8b6becf0a2cf8a4b4f7facd6'
 '13a27a385fab88938ac7417f1e7ca7225ec6b88840bafe67e0f5642e5446554a'
 'afcd7d3f6113b0f9ead0cb1b47b3fccedadce56a16b4406c439411864bd11863'

Modified: mozconfig
===
--- mozconfig   2016-11-28 14:15:09 UTC (rev 197141)
+++ mozconfig   2016-11-28 14:16:19 UTC (rev 197142)
@@ -14,7 +14,7 @@
 ac_add_options --with-system-libvpx
 ac_add_options --with-system-icu
 ac_add_options --with-system-graphite2
-#ac_add_options --enable-system-hunspell   # cannot use system hunspell 1.5.0
+ac_add_options --enable-system-hunspell
 ac_add_options --enable-system-sqlite
 ac_add_options --enable-system-ffi
 ac_add_options --enable-system-cairo


[arch-commits] Commit in xulrunner/repos (20 files)

2016-11-27 Thread Evangelos Foutras
Date: Sunday, November 27, 2016 @ 15:19:05
  Author: foutrelis
Revision: 197034

archrelease: copy trunk to community-staging-i686, community-staging-x86_64

Added:
  xulrunner/repos/community-staging-i686/
  
xulrunner/repos/community-staging-i686/0001-Bug-1233963-Work-around-recent-GNU-gold-behavior-wit.patch
(from rev 197033, 
xulrunner/trunk/0001-Bug-1233963-Work-around-recent-GNU-gold-behavior-wit.patch)
  xulrunner/repos/community-staging-i686/LFS_graphite2_harfbuzz.patch
(from rev 197033, xulrunner/trunk/LFS_graphite2_harfbuzz.patch)
  xulrunner/repos/community-staging-i686/PKGBUILD
(from rev 197033, xulrunner/trunk/PKGBUILD)
  xulrunner/repos/community-staging-i686/freetype261.patch
(from rev 197033, xulrunner/trunk/freetype261.patch)
  xulrunner/repos/community-staging-i686/gcc6.diff
(from rev 197033, xulrunner/trunk/gcc6.diff)
  xulrunner/repos/community-staging-i686/mozconfig
(from rev 197033, xulrunner/trunk/mozconfig)
  xulrunner/repos/community-staging-i686/mozilla-pkgconfig.patch
(from rev 197033, xulrunner/trunk/mozilla-pkgconfig.patch)
  xulrunner/repos/community-staging-i686/shared-libs.patch
(from rev 197033, xulrunner/trunk/shared-libs.patch)
  xulrunner/repos/community-staging-i686/unbreak-plugin-build.patch
(from rev 197033, xulrunner/trunk/unbreak-plugin-build.patch)
  xulrunner/repos/community-staging-x86_64/
  
xulrunner/repos/community-staging-x86_64/0001-Bug-1233963-Work-around-recent-GNU-gold-behavior-wit.patch
(from rev 197033, 
xulrunner/trunk/0001-Bug-1233963-Work-around-recent-GNU-gold-behavior-wit.patch)
  xulrunner/repos/community-staging-x86_64/LFS_graphite2_harfbuzz.patch
(from rev 197033, xulrunner/trunk/LFS_graphite2_harfbuzz.patch)
  xulrunner/repos/community-staging-x86_64/PKGBUILD
(from rev 197033, xulrunner/trunk/PKGBUILD)
  xulrunner/repos/community-staging-x86_64/freetype261.patch
(from rev 197033, xulrunner/trunk/freetype261.patch)
  xulrunner/repos/community-staging-x86_64/gcc6.diff
(from rev 197033, xulrunner/trunk/gcc6.diff)
  xulrunner/repos/community-staging-x86_64/mozconfig
(from rev 197033, xulrunner/trunk/mozconfig)
  xulrunner/repos/community-staging-x86_64/mozilla-pkgconfig.patch
(from rev 197033, xulrunner/trunk/mozilla-pkgconfig.patch)
  xulrunner/repos/community-staging-x86_64/shared-libs.patch
(from rev 197033, xulrunner/trunk/shared-libs.patch)
  xulrunner/repos/community-staging-x86_64/unbreak-plugin-build.patch
(from rev 197033, xulrunner/trunk/unbreak-plugin-build.patch)

--+
 
community-staging-i686/0001-Bug-1233963-Work-around-recent-GNU-gold-behavior-wit.patch
   |   49 ++
 community-staging-i686/LFS_graphite2_harfbuzz.patch
  |  212 ++
 community-staging-i686/PKGBUILD
  |   94 
 community-staging-i686/freetype261.patch   
  |   31 +
 community-staging-i686/gcc6.diff   
  |   37 +
 community-staging-i686/mozconfig   
  |   33 +
 community-staging-i686/mozilla-pkgconfig.patch 
  |   40 +
 community-staging-i686/shared-libs.patch   
  |   12 
 community-staging-i686/unbreak-plugin-build.patch  
  |   76 +++
 
community-staging-x86_64/0001-Bug-1233963-Work-around-recent-GNU-gold-behavior-wit.patch
 |   49 ++
 community-staging-x86_64/LFS_graphite2_harfbuzz.patch  
  |  212 ++
 community-staging-x86_64/PKGBUILD  
  |   94 
 community-staging-x86_64/freetype261.patch 
  |   31 +
 community-staging-x86_64/gcc6.diff 
  |   37 +
 community-staging-x86_64/mozconfig 
  |   33 +
 community-staging-x86_64/mozilla-pkgconfig.patch   
  |   40 +
 community-staging-x86_64/shared-libs.patch 
  |   12 
 community-staging-x86_64/unbreak-plugin-build.patch
  |   76 +++
 18 files changed, 1168 insertions(+)

Copied: 
xulrunner/repos/community-staging-i686/0001-Bug-1233963-Work-around-recent-GNU-gold-behavior-wit.patch
 (from rev 197033, 
xulrunner/trunk/0001-Bug-1233963-Work-around-recent-GNU-gold-behavior-wit.patch)
===
--- 
community-staging-i686/0001-Bug-1233963-Work-around-recent-GNU-gold-behavior-wit.patch
  (rev 0)
+++ 
community-staging-i686/0001-Bug-1233963-Work-around-recent-GNU-gold-

[arch-commits] Commit in xulrunner/trunk (PKGBUILD)

2016-11-27 Thread Evangelos Foutras
Date: Sunday, November 27, 2016 @ 15:18:31
  Author: foutrelis
Revision: 197033

icu 58.1 / poppler 0.49.0 / hunspell 1.5.0 rebuild

Modified:
  xulrunner/trunk/PKGBUILD

--+
 PKGBUILD |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

Modified: PKGBUILD
===
--- PKGBUILD2016-11-27 14:47:10 UTC (rev 197032)
+++ PKGBUILD2016-11-27 15:18:31 UTC (rev 197033)
@@ -5,7 +5,7 @@
 
 pkgname=xulrunner
 pkgver=41.0.2
-pkgrel=8
+pkgrel=9
 pkgdesc="Mozilla Runtime Environment"
 arch=('i686' 'x86_64')
 license=('MPL' 'GPL' 'LGPL')


[arch-commits] Commit in xulrunner/trunk (PKGBUILD mozconfig)

2016-11-27 Thread Evangelos Foutras
Date: Sunday, November 27, 2016 @ 14:22:29
  Author: foutrelis
Revision: 197029

Switch to bundled hunspell

Modified:
  xulrunner/trunk/PKGBUILD
  xulrunner/trunk/mozconfig

---+
 PKGBUILD  |4 ++--
 mozconfig |2 +-
 2 files changed, 3 insertions(+), 3 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2016-11-27 14:02:14 UTC (rev 197028)
+++ PKGBUILD2016-11-27 14:22:29 UTC (rev 197029)
@@ -9,7 +9,7 @@
 pkgdesc="Mozilla Runtime Environment"
 arch=('i686' 'x86_64')
 license=('MPL' 'GPL' 'LGPL')
-depends=('gtk2' 'mozilla-common' 'nss>3.18' 'libxt' 'hunspell' 
'startup-notification' 'mime-types' 'dbus-glib' 'libpulse' 'libevent' 'libvpx' 
'icu' 'python2')
+depends=('gtk2' 'mozilla-common' 'nss>3.18' 'libxt' 'startup-notification' 
'mime-types' 'dbus-glib' 'libpulse' 'libevent' 'libvpx' 'icu' 'python2')
 makedepends=('zip' 'unzip' 'pkg-config' 'diffutils' 'yasm' 'mesa' 'gconf' 
'autoconf2.13' 'gst-plugins-base-libs')
 url="http://wiki.mozilla.org/XUL:Xul_Runner";
 
source=(https://ftp.mozilla.org/pub/mozilla.org/xulrunner/releases/$pkgver/source/xulrunner-$pkgver.source.tar.xz
@@ -23,7 +23,7 @@
 options=('!emptydirs' '!makeflags' 'staticlibs')
 replaces=('xulrunner-oss')
 sha256sums=('f7abb2e2989779305ab1f80d30caf9fc55d96c7e66d1394e2cc9639442e2b864'
-'8c91a46e16652a6e30e52678955e801e620d10576edef7be32080815b002562e'
+'ba32eaa7e8c3b92414eb041722553c3d5282e5077b0d054ca10164d51ea970cd'
 '3aea9a83bf304da5525f34a911712cf42f8ded1c8b6becf0a2cf8a4b4f7facd6'
 '13a27a385fab88938ac7417f1e7ca7225ec6b88840bafe67e0f5642e5446554a'
 'afcd7d3f6113b0f9ead0cb1b47b3fccedadce56a16b4406c439411864bd11863'

Modified: mozconfig
===
--- mozconfig   2016-11-27 14:02:14 UTC (rev 197028)
+++ mozconfig   2016-11-27 14:22:29 UTC (rev 197029)
@@ -14,7 +14,7 @@
 ac_add_options --with-system-libvpx
 ac_add_options --with-system-icu
 ac_add_options --with-system-graphite2
-ac_add_options --enable-system-hunspell
+#ac_add_options --enable-system-hunspell   # cannot use system hunspell 1.5.0
 ac_add_options --enable-system-sqlite
 ac_add_options --enable-system-ffi
 ac_add_options --enable-system-cairo


[arch-commits] Commit in xulrunner/repos (18 files)

2016-07-28 Thread Connor Behan
Date: Thursday, July 28, 2016 @ 20:26:40
  Author: cbehan
Revision: 184592

Manually doing what archrelease should do

Added:
  
xulrunner/repos/community-staging-i686/0001-Bug-1233963-Work-around-recent-GNU-gold-behavior-wit.patch
(from rev 184581, 
xulrunner/trunk/0001-Bug-1233963-Work-around-recent-GNU-gold-behavior-wit.patch)
  xulrunner/repos/community-staging-i686/LFS_graphite2_harfbuzz.patch
(from rev 184581, xulrunner/trunk/LFS_graphite2_harfbuzz.patch)
  xulrunner/repos/community-staging-i686/PKGBUILD
(from rev 184581, xulrunner/trunk/PKGBUILD)
  xulrunner/repos/community-staging-i686/freetype261.patch
(from rev 184581, xulrunner/trunk/freetype261.patch)
  xulrunner/repos/community-staging-i686/gcc6.diff
(from rev 184581, xulrunner/trunk/gcc6.diff)
  xulrunner/repos/community-staging-i686/mozconfig
(from rev 184581, xulrunner/trunk/mozconfig)
  xulrunner/repos/community-staging-i686/mozilla-pkgconfig.patch
(from rev 184581, xulrunner/trunk/mozilla-pkgconfig.patch)
  xulrunner/repos/community-staging-i686/shared-libs.patch
(from rev 184581, xulrunner/trunk/shared-libs.patch)
  xulrunner/repos/community-staging-i686/unbreak-plugin-build.patch
(from rev 184581, xulrunner/trunk/unbreak-plugin-build.patch)
  
xulrunner/repos/community-staging-x86_64/0001-Bug-1233963-Work-around-recent-GNU-gold-behavior-wit.patch
(from rev 184583, 
xulrunner/trunk/0001-Bug-1233963-Work-around-recent-GNU-gold-behavior-wit.patch)
  xulrunner/repos/community-staging-x86_64/LFS_graphite2_harfbuzz.patch
(from rev 184583, xulrunner/trunk/LFS_graphite2_harfbuzz.patch)
  xulrunner/repos/community-staging-x86_64/PKGBUILD
(from rev 184584, xulrunner/trunk/PKGBUILD)
  xulrunner/repos/community-staging-x86_64/freetype261.patch
(from rev 184583, xulrunner/trunk/freetype261.patch)
  xulrunner/repos/community-staging-x86_64/gcc6.diff
(from rev 184583, xulrunner/trunk/gcc6.diff)
  xulrunner/repos/community-staging-x86_64/mozconfig
(from rev 184584, xulrunner/trunk/mozconfig)
  xulrunner/repos/community-staging-x86_64/mozilla-pkgconfig.patch
(from rev 184583, xulrunner/trunk/mozilla-pkgconfig.patch)
  xulrunner/repos/community-staging-x86_64/shared-libs.patch
(from rev 184583, xulrunner/trunk/shared-libs.patch)
  xulrunner/repos/community-staging-x86_64/unbreak-plugin-build.patch
(from rev 184583, xulrunner/trunk/unbreak-plugin-build.patch)

--+
 
community-staging-i686/0001-Bug-1233963-Work-around-recent-GNU-gold-behavior-wit.patch
   |   49 ++
 community-staging-i686/LFS_graphite2_harfbuzz.patch
  |  212 ++
 community-staging-i686/PKGBUILD
  |   94 
 community-staging-i686/freetype261.patch   
  |   31 +
 community-staging-i686/gcc6.diff   
  |   37 +
 community-staging-i686/mozconfig   
  |   33 +
 community-staging-i686/mozilla-pkgconfig.patch 
  |   40 +
 community-staging-i686/shared-libs.patch   
  |   12 
 community-staging-i686/unbreak-plugin-build.patch  
  |   76 +++
 
community-staging-x86_64/0001-Bug-1233963-Work-around-recent-GNU-gold-behavior-wit.patch
 |   49 ++
 community-staging-x86_64/LFS_graphite2_harfbuzz.patch  
  |  212 ++
 community-staging-x86_64/PKGBUILD  
  |   94 
 community-staging-x86_64/freetype261.patch 
  |   31 +
 community-staging-x86_64/gcc6.diff 
  |   37 +
 community-staging-x86_64/mozconfig 
  |   33 +
 community-staging-x86_64/mozilla-pkgconfig.patch   
  |   40 +
 community-staging-x86_64/shared-libs.patch 
  |   12 
 community-staging-x86_64/unbreak-plugin-build.patch
  |   76 +++
 18 files changed, 1168 insertions(+)

The diff is longer than the limit of 200KB.
Use svn diff -r 184591:184592 to see the changes.


[arch-commits] Commit in xulrunner/repos (2 files)

2016-07-28 Thread Connor Behan
Date: Thursday, July 28, 2016 @ 19:51:05
  Author: cbehan
Revision: 184579

Create xulrunner staging dirs

Added:
  xulrunner/repos/community-staging-i686/
  xulrunner/repos/community-staging-x86_64/


[arch-commits] Commit in xulrunner/trunk (PKGBUILD)

2016-07-28 Thread Connor Behan
Date: Thursday, July 28, 2016 @ 19:46:09
  Author: cbehan
Revision: 184578

upgpkg: xulrunner 41.0.2-8

Bump to libvpx in staging

Modified:
  xulrunner/trunk/PKGBUILD

--+
 PKGBUILD |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

Modified: PKGBUILD
===
--- PKGBUILD2016-07-28 19:22:50 UTC (rev 184577)
+++ PKGBUILD2016-07-28 19:46:09 UTC (rev 184578)
@@ -5,7 +5,7 @@
 
 pkgname=xulrunner
 pkgver=41.0.2
-pkgrel=7
+pkgrel=8
 pkgdesc="Mozilla Runtime Environment"
 arch=('i686' 'x86_64')
 license=('MPL' 'GPL' 'LGPL')


[arch-commits] Commit in xulrunner/repos (36 files)

2016-07-28 Thread Connor Behan
Date: Thursday, July 28, 2016 @ 18:47:32
  Author: cbehan
Revision: 184568

archrelease: copy trunk to community-i686, community-x86_64

Added:
  
xulrunner/repos/community-i686/0001-Bug-1233963-Work-around-recent-GNU-gold-behavior-wit.patch
(from rev 184567, 
xulrunner/trunk/0001-Bug-1233963-Work-around-recent-GNU-gold-behavior-wit.patch)
  xulrunner/repos/community-i686/LFS_graphite2_harfbuzz.patch
(from rev 184567, xulrunner/trunk/LFS_graphite2_harfbuzz.patch)
  xulrunner/repos/community-i686/PKGBUILD
(from rev 184567, xulrunner/trunk/PKGBUILD)
  xulrunner/repos/community-i686/freetype261.patch
(from rev 184567, xulrunner/trunk/freetype261.patch)
  xulrunner/repos/community-i686/gcc6.diff
(from rev 184567, xulrunner/trunk/gcc6.diff)
  xulrunner/repos/community-i686/mozconfig
(from rev 184567, xulrunner/trunk/mozconfig)
  xulrunner/repos/community-i686/mozilla-pkgconfig.patch
(from rev 184567, xulrunner/trunk/mozilla-pkgconfig.patch)
  xulrunner/repos/community-i686/shared-libs.patch
(from rev 184567, xulrunner/trunk/shared-libs.patch)
  xulrunner/repos/community-i686/unbreak-plugin-build.patch
(from rev 184567, xulrunner/trunk/unbreak-plugin-build.patch)
  
xulrunner/repos/community-x86_64/0001-Bug-1233963-Work-around-recent-GNU-gold-behavior-wit.patch
(from rev 184567, 
xulrunner/trunk/0001-Bug-1233963-Work-around-recent-GNU-gold-behavior-wit.patch)
  xulrunner/repos/community-x86_64/LFS_graphite2_harfbuzz.patch
(from rev 184567, xulrunner/trunk/LFS_graphite2_harfbuzz.patch)
  xulrunner/repos/community-x86_64/PKGBUILD
(from rev 184567, xulrunner/trunk/PKGBUILD)
  xulrunner/repos/community-x86_64/freetype261.patch
(from rev 184567, xulrunner/trunk/freetype261.patch)
  xulrunner/repos/community-x86_64/gcc6.diff
(from rev 184567, xulrunner/trunk/gcc6.diff)
  xulrunner/repos/community-x86_64/mozconfig
(from rev 184567, xulrunner/trunk/mozconfig)
  xulrunner/repos/community-x86_64/mozilla-pkgconfig.patch
(from rev 184567, xulrunner/trunk/mozilla-pkgconfig.patch)
  xulrunner/repos/community-x86_64/shared-libs.patch
(from rev 184567, xulrunner/trunk/shared-libs.patch)
  xulrunner/repos/community-x86_64/unbreak-plugin-build.patch
(from rev 184567, xulrunner/trunk/unbreak-plugin-build.patch)
Deleted:
  
xulrunner/repos/community-i686/0001-Bug-1233963-Work-around-recent-GNU-gold-behavior-wit.patch
  xulrunner/repos/community-i686/LFS_graphite2_harfbuzz.patch
  xulrunner/repos/community-i686/PKGBUILD
  xulrunner/repos/community-i686/freetype261.patch
  xulrunner/repos/community-i686/gcc6.diff
  xulrunner/repos/community-i686/mozconfig
  xulrunner/repos/community-i686/mozilla-pkgconfig.patch
  xulrunner/repos/community-i686/shared-libs.patch
  xulrunner/repos/community-i686/unbreak-plugin-build.patch
  
xulrunner/repos/community-x86_64/0001-Bug-1233963-Work-around-recent-GNU-gold-behavior-wit.patch
  xulrunner/repos/community-x86_64/LFS_graphite2_harfbuzz.patch
  xulrunner/repos/community-x86_64/PKGBUILD
  xulrunner/repos/community-x86_64/freetype261.patch
  xulrunner/repos/community-x86_64/gcc6.diff
  xulrunner/repos/community-x86_64/mozconfig
  xulrunner/repos/community-x86_64/mozilla-pkgconfig.patch
  xulrunner/repos/community-x86_64/shared-libs.patch
  xulrunner/repos/community-x86_64/unbreak-plugin-build.patch

--+
 /0001-Bug-1233963-Work-around-recent-GNU-gold-behavior-wit.patch   
  |   98 ++
 /LFS_graphite2_harfbuzz.patch  
  |  424 ++
 /PKGBUILD  
  |  188 
 /freetype261.patch 
  |   62 +
 /gcc6.diff 
  |   74 +
 /mozconfig 
  |   66 +
 /mozilla-pkgconfig.patch   
  |   80 +
 /shared-libs.patch 
  |   24 
 /unbreak-plugin-build.patch
  |  152 +++
 community-i686/0001-Bug-1233963-Work-around-recent-GNU-gold-behavior-wit.patch 
  |   49 -
 community-i686/LFS_graphite2_harfbuzz.patch
  |  212 -
 community-i686/PKGBUILD
  |   94 --
 community-i686/freetype261.patch   
  |   31 
 community-i686/gcc6.diff   
  |   37 
 community-i686/mozconfig   
  |   33 
 community-i686/mozilla-pkgconfig.patch 
  |   40 
 community-i686/shared-libs.patch   
  |

[arch-commits] Commit in xulrunner/trunk (PKGBUILD)

2016-07-28 Thread Connor Behan
Date: Thursday, July 28, 2016 @ 18:44:27
  Author: cbehan
Revision: 184567

upgpkg: xulrunner 41.0.2-7

Revert premature libvpx bump in community

Modified:
  xulrunner/trunk/PKGBUILD

--+
 PKGBUILD |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

Modified: PKGBUILD
===
--- PKGBUILD2016-07-28 18:39:18 UTC (rev 184566)
+++ PKGBUILD2016-07-28 18:44:27 UTC (rev 184567)
@@ -5,7 +5,7 @@
 
 pkgname=xulrunner
 pkgver=41.0.2
-pkgrel=6
+pkgrel=7
 pkgdesc="Mozilla Runtime Environment"
 arch=('i686' 'x86_64')
 license=('MPL' 'GPL' 'LGPL')


[arch-commits] Commit in xulrunner/repos (36 files)

2016-07-25 Thread Connor Behan
Date: Monday, July 25, 2016 @ 18:22:33
  Author: cbehan
Revision: 183999

archrelease: copy trunk to community-i686, community-x86_64

Added:
  
xulrunner/repos/community-i686/0001-Bug-1233963-Work-around-recent-GNU-gold-behavior-wit.patch
(from rev 183998, 
xulrunner/trunk/0001-Bug-1233963-Work-around-recent-GNU-gold-behavior-wit.patch)
  xulrunner/repos/community-i686/LFS_graphite2_harfbuzz.patch
(from rev 183998, xulrunner/trunk/LFS_graphite2_harfbuzz.patch)
  xulrunner/repos/community-i686/PKGBUILD
(from rev 183998, xulrunner/trunk/PKGBUILD)
  xulrunner/repos/community-i686/freetype261.patch
(from rev 183998, xulrunner/trunk/freetype261.patch)
  xulrunner/repos/community-i686/gcc6.diff
(from rev 183998, xulrunner/trunk/gcc6.diff)
  xulrunner/repos/community-i686/mozconfig
(from rev 183998, xulrunner/trunk/mozconfig)
  xulrunner/repos/community-i686/mozilla-pkgconfig.patch
(from rev 183998, xulrunner/trunk/mozilla-pkgconfig.patch)
  xulrunner/repos/community-i686/shared-libs.patch
(from rev 183998, xulrunner/trunk/shared-libs.patch)
  xulrunner/repos/community-i686/unbreak-plugin-build.patch
(from rev 183998, xulrunner/trunk/unbreak-plugin-build.patch)
  
xulrunner/repos/community-x86_64/0001-Bug-1233963-Work-around-recent-GNU-gold-behavior-wit.patch
(from rev 183998, 
xulrunner/trunk/0001-Bug-1233963-Work-around-recent-GNU-gold-behavior-wit.patch)
  xulrunner/repos/community-x86_64/LFS_graphite2_harfbuzz.patch
(from rev 183998, xulrunner/trunk/LFS_graphite2_harfbuzz.patch)
  xulrunner/repos/community-x86_64/PKGBUILD
(from rev 183998, xulrunner/trunk/PKGBUILD)
  xulrunner/repos/community-x86_64/freetype261.patch
(from rev 183998, xulrunner/trunk/freetype261.patch)
  xulrunner/repos/community-x86_64/gcc6.diff
(from rev 183998, xulrunner/trunk/gcc6.diff)
  xulrunner/repos/community-x86_64/mozconfig
(from rev 183998, xulrunner/trunk/mozconfig)
  xulrunner/repos/community-x86_64/mozilla-pkgconfig.patch
(from rev 183998, xulrunner/trunk/mozilla-pkgconfig.patch)
  xulrunner/repos/community-x86_64/shared-libs.patch
(from rev 183998, xulrunner/trunk/shared-libs.patch)
  xulrunner/repos/community-x86_64/unbreak-plugin-build.patch
(from rev 183998, xulrunner/trunk/unbreak-plugin-build.patch)
Deleted:
  
xulrunner/repos/community-i686/0001-Bug-1233963-Work-around-recent-GNU-gold-behavior-wit.patch
  xulrunner/repos/community-i686/LFS_graphite2_harfbuzz.patch
  xulrunner/repos/community-i686/PKGBUILD
  xulrunner/repos/community-i686/freetype261.patch
  xulrunner/repos/community-i686/gcc6.diff
  xulrunner/repos/community-i686/mozconfig
  xulrunner/repos/community-i686/mozilla-pkgconfig.patch
  xulrunner/repos/community-i686/shared-libs.patch
  xulrunner/repos/community-i686/unbreak-plugin-build.patch
  
xulrunner/repos/community-x86_64/0001-Bug-1233963-Work-around-recent-GNU-gold-behavior-wit.patch
  xulrunner/repos/community-x86_64/LFS_graphite2_harfbuzz.patch
  xulrunner/repos/community-x86_64/PKGBUILD
  xulrunner/repos/community-x86_64/freetype261.patch
  xulrunner/repos/community-x86_64/gcc6.diff
  xulrunner/repos/community-x86_64/mozconfig
  xulrunner/repos/community-x86_64/mozilla-pkgconfig.patch
  xulrunner/repos/community-x86_64/shared-libs.patch
  xulrunner/repos/community-x86_64/unbreak-plugin-build.patch

--+
 /0001-Bug-1233963-Work-around-recent-GNU-gold-behavior-wit.patch   
  |   98 ++
 /LFS_graphite2_harfbuzz.patch  
  |  424 ++
 /PKGBUILD  
  |  188 
 /freetype261.patch 
  |   62 +
 /gcc6.diff 
  |   74 +
 /mozconfig 
  |   66 +
 /mozilla-pkgconfig.patch   
  |   80 +
 /shared-libs.patch 
  |   24 
 /unbreak-plugin-build.patch
  |  152 +++
 community-i686/0001-Bug-1233963-Work-around-recent-GNU-gold-behavior-wit.patch 
  |   49 -
 community-i686/LFS_graphite2_harfbuzz.patch
  |  212 -
 community-i686/PKGBUILD
  |   94 --
 community-i686/freetype261.patch   
  |   31 
 community-i686/gcc6.diff   
  |   37 
 community-i686/mozconfig   
  |   33 
 community-i686/mozilla-pkgconfig.patch 
  |   40 
 community-i686/shared-libs.patch   
  |  

[arch-commits] Commit in xulrunner/trunk (PKGBUILD)

2016-07-25 Thread Connor Behan
Date: Monday, July 25, 2016 @ 18:21:35
  Author: cbehan
Revision: 183998

upgpkg: xulrunner 41.0.2-6

Update to 41.0.2-6

Modified:
  xulrunner/trunk/PKGBUILD

--+
 PKGBUILD |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

Modified: PKGBUILD
===
--- PKGBUILD2016-07-25 16:58:15 UTC (rev 183997)
+++ PKGBUILD2016-07-25 18:21:35 UTC (rev 183998)
@@ -5,7 +5,7 @@
 
 pkgname=xulrunner
 pkgver=41.0.2
-pkgrel=5
+pkgrel=6
 pkgdesc="Mozilla Runtime Environment"
 arch=('i686' 'x86_64')
 license=('MPL' 'GPL' 'LGPL')


[arch-commits] Commit in xulrunner/repos (20 files)

2016-06-19 Thread Connor Behan
Date: Sunday, June 19, 2016 @ 10:04:11
  Author: cbehan
Revision: 180446

archrelease: copy trunk to community-staging-i686, community-staging-x86_64

Added:
  xulrunner/repos/community-staging-i686/
  
xulrunner/repos/community-staging-i686/0001-Bug-1233963-Work-around-recent-GNU-gold-behavior-wit.patch
(from rev 180445, 
xulrunner/trunk/0001-Bug-1233963-Work-around-recent-GNU-gold-behavior-wit.patch)
  xulrunner/repos/community-staging-i686/LFS_graphite2_harfbuzz.patch
(from rev 180445, xulrunner/trunk/LFS_graphite2_harfbuzz.patch)
  xulrunner/repos/community-staging-i686/PKGBUILD
(from rev 180445, xulrunner/trunk/PKGBUILD)
  xulrunner/repos/community-staging-i686/freetype261.patch
(from rev 180445, xulrunner/trunk/freetype261.patch)
  xulrunner/repos/community-staging-i686/gcc6.diff
(from rev 180445, xulrunner/trunk/gcc6.diff)
  xulrunner/repos/community-staging-i686/mozconfig
(from rev 180445, xulrunner/trunk/mozconfig)
  xulrunner/repos/community-staging-i686/mozilla-pkgconfig.patch
(from rev 180445, xulrunner/trunk/mozilla-pkgconfig.patch)
  xulrunner/repos/community-staging-i686/shared-libs.patch
(from rev 180445, xulrunner/trunk/shared-libs.patch)
  xulrunner/repos/community-staging-i686/unbreak-plugin-build.patch
(from rev 180445, xulrunner/trunk/unbreak-plugin-build.patch)
  xulrunner/repos/community-staging-x86_64/
  
xulrunner/repos/community-staging-x86_64/0001-Bug-1233963-Work-around-recent-GNU-gold-behavior-wit.patch
(from rev 180445, 
xulrunner/trunk/0001-Bug-1233963-Work-around-recent-GNU-gold-behavior-wit.patch)
  xulrunner/repos/community-staging-x86_64/LFS_graphite2_harfbuzz.patch
(from rev 180445, xulrunner/trunk/LFS_graphite2_harfbuzz.patch)
  xulrunner/repos/community-staging-x86_64/PKGBUILD
(from rev 180445, xulrunner/trunk/PKGBUILD)
  xulrunner/repos/community-staging-x86_64/freetype261.patch
(from rev 180445, xulrunner/trunk/freetype261.patch)
  xulrunner/repos/community-staging-x86_64/gcc6.diff
(from rev 180445, xulrunner/trunk/gcc6.diff)
  xulrunner/repos/community-staging-x86_64/mozconfig
(from rev 180445, xulrunner/trunk/mozconfig)
  xulrunner/repos/community-staging-x86_64/mozilla-pkgconfig.patch
(from rev 180445, xulrunner/trunk/mozilla-pkgconfig.patch)
  xulrunner/repos/community-staging-x86_64/shared-libs.patch
(from rev 180445, xulrunner/trunk/shared-libs.patch)
  xulrunner/repos/community-staging-x86_64/unbreak-plugin-build.patch
(from rev 180445, xulrunner/trunk/unbreak-plugin-build.patch)

--+
 
community-staging-i686/0001-Bug-1233963-Work-around-recent-GNU-gold-behavior-wit.patch
   |   49 ++
 community-staging-i686/LFS_graphite2_harfbuzz.patch
  |  212 ++
 community-staging-i686/PKGBUILD
  |   94 
 community-staging-i686/freetype261.patch   
  |   31 +
 community-staging-i686/gcc6.diff   
  |   37 +
 community-staging-i686/mozconfig   
  |   33 +
 community-staging-i686/mozilla-pkgconfig.patch 
  |   40 +
 community-staging-i686/shared-libs.patch   
  |   12 
 community-staging-i686/unbreak-plugin-build.patch  
  |   76 +++
 
community-staging-x86_64/0001-Bug-1233963-Work-around-recent-GNU-gold-behavior-wit.patch
 |   49 ++
 community-staging-x86_64/LFS_graphite2_harfbuzz.patch  
  |  212 ++
 community-staging-x86_64/PKGBUILD  
  |   94 
 community-staging-x86_64/freetype261.patch 
  |   31 +
 community-staging-x86_64/gcc6.diff 
  |   37 +
 community-staging-x86_64/mozconfig 
  |   33 +
 community-staging-x86_64/mozilla-pkgconfig.patch   
  |   40 +
 community-staging-x86_64/shared-libs.patch 
  |   12 
 community-staging-x86_64/unbreak-plugin-build.patch
  |   76 +++
 18 files changed, 1168 insertions(+)

The diff is longer than the limit of 200KB.
Use svn diff -r 180445:180446 to see the changes.


[arch-commits] Commit in xulrunner/trunk (3 files)

2016-06-19 Thread Connor Behan
Date: Sunday, June 19, 2016 @ 10:03:28
  Author: cbehan
Revision: 180445

upgpkg: xulrunner 41.0.2-5

Update to 41.0.2-5

Added:
  xulrunner/trunk/LFS_graphite2_harfbuzz.patch
Modified:
  xulrunner/trunk/PKGBUILD
  xulrunner/trunk/mozconfig

--+
 LFS_graphite2_harfbuzz.patch |  212 +
 PKGBUILD |9 +
 mozconfig|1 
 3 files changed, 221 insertions(+), 1 deletion(-)

Added: LFS_graphite2_harfbuzz.patch
===
--- LFS_graphite2_harfbuzz.patch(rev 0)
+++ LFS_graphite2_harfbuzz.patch2016-06-19 10:03:28 UTC (rev 180445)
@@ -0,0 +1,212 @@
+Submitted By: Ken Moffat 
+Date: 2016-06-13
+Initial Package Version: 47.0
+Upstream Status: Waiting for review
+Origin: OpenBSD (found at gentoo, rediffed because of one offset > 1500 lines)
+Description: Allow use of system versions of graphite2 and harfbuzz.  This
+should be regarded as experimental.  Add the options --enable-system-graphite
+and --enable-system-harfbuzz to use this (needs recent versions of both).
+
+diff -Naur ff47-vanilla/config/Makefile.in ff47-patched/config/Makefile.in
+--- ff47-vanilla/config/Makefile.in2016-06-01 05:11:40.0 +0100
 ff47-patched/config/Makefile.in2016-06-11 18:51:40.389876996 +0100
+@@ -49,6 +49,8 @@
+   -DMOZ_NATIVE_LIBEVENT=$(MOZ_NATIVE_LIBEVENT) \
+   -DMOZ_NATIVE_LIBVPX=$(MOZ_NATIVE_LIBVPX) \
+   -DMOZ_NATIVE_ICU=$(MOZ_NATIVE_ICU) \
++  -DMOZ_NATIVE_GRAPHITE2=$(MOZ_NATIVE_GRAPHITE2) \
++  -DMOZ_NATIVE_HARFBUZZ=$(MOZ_NATIVE_HARFBUZZ) \
+   $(srcdir)/system-headers | $(PERL) 
$(topsrcdir)/nsprpub/config/make-system-wrappers.pl system_wrappers
+   $(INSTALL) system_wrappers $(DIST)
+ 
+diff -Naur ff47-vanilla/config/system-headers 
ff47-patched/config/system-headers
+--- ff47-vanilla/config/system-headers 2016-06-01 05:11:40.0 +0100
 ff47-patched/config/system-headers 2016-06-11 18:51:40.389876996 +0100
+@@ -1345,3 +1345,11 @@
+ #endif
+ libutil.h
+ unwind.h
++#if MOZ_NATIVE_GRAPHITE2==1
++graphite2/Font.h
++graphite2/Segment.h
++#endif
++#if MOZ_NATIVE_HARFBUZZ==1
++harfbuzz/hb-ot.h
++harfbuzz/hb.h
++#endif
+diff -Naur ff47-vanilla/dom/base/moz.build ff47-patched/dom/base/moz.build
+--- ff47-vanilla/dom/base/moz.build2016-06-01 05:11:44.0 +0100
 ff47-patched/dom/base/moz.build2016-06-11 18:51:40.389876996 +0100
+@@ -482,6 +482,9 @@
+ if CONFIG['MOZ_X11']:
+ CXXFLAGS += CONFIG['TK_CFLAGS']
+ 
++if CONFIG['MOZ_NATIVE_HARFBUZZ']:
++CXXFLAGS += CONFIG['MOZ_HARFBUZZ_CFLAGS']
++
+ GENERATED_FILES += [
+ 'PropertyUseCounterMap.inc',
+ 'UseCounterList.h',
+diff -Naur ff47-vanilla/gfx/moz.build ff47-patched/gfx/moz.build
+--- ff47-vanilla/gfx/moz.build 2016-05-12 18:13:06.0 +0100
 ff47-patched/gfx/moz.build 2016-06-11 18:51:40.389876996 +0100
+@@ -7,6 +7,12 @@
+ if CONFIG['MOZ_TREE_CAIRO']:
+ DIRS += ['cairo']
+ 
++if not CONFIG['MOZ_NATIVE_GRAPHITE2']:
++DIRS += ['graphite2/src' ]
++
++if not CONFIG['MOZ_NATIVE_HARFBUZZ']:
++DIRS += ['harfbuzz/src']
++
+ DIRS += [
+ '2d',
+ 'ycbcr',
+@@ -15,8 +21,6 @@
+ 'qcms',
+ 'gl',
+ 'layers',
+-'graphite2/src',
+-'harfbuzz/src',
+ 'ots/src',
+ 'thebes',
+ 'ipc',
+diff -Naur ff47-vanilla/gfx/skia/generate_mozbuild.py 
ff47-patched/gfx/skia/generate_mozbuild.py
+--- ff47-vanilla/gfx/skia/generate_mozbuild.py 2016-06-01 05:11:44.0 
+0100
 ff47-patched/gfx/skia/generate_mozbuild.py 2016-06-11 18:51:40.389876996 
+0100
+@@ -134,6 +134,9 @@
+ '-Wno-unused-private-field',
+ ]
+ 
++if CONFIG['MOZ_NATIVE_HARFBUZZ']:
++CXXFLAGS += CONFIG['MOZ_HARFBUZZ_CFLAGS']
++
+ if CONFIG['MOZ_WIDGET_TOOLKIT'] in ('gtk2', 'gtk3', 'android', 'gonk', 'qt'):
+ CXXFLAGS += CONFIG['MOZ_CAIRO_CFLAGS']
+ CXXFLAGS += CONFIG['CAIRO_FT_CFLAGS']
+diff -Naur ff47-vanilla/gfx/skia/moz.build ff47-patched/gfx/skia/moz.build
+--- ff47-vanilla/gfx/skia/moz.build2016-06-01 05:11:44.0 +0100
 ff47-patched/gfx/skia/moz.build2016-06-11 18:51:40.389876996 +0100
+@@ -752,6 +752,9 @@
+ '-Wno-unused-private-field',
+ ]
+ 
++if CONFIG['MOZ_NATIVE_HARFBUZZ']:
++CXXFLAGS += CONFIG['MOZ_HARFBUZZ_CFLAGS']
++
+ if CONFIG['MOZ_WIDGET_TOOLKIT'] in ('gtk2', 'gtk3', 'android', 'gonk', 'qt'):
+ CXXFLAGS += CONFIG['MOZ_CAIRO_CFLAGS']
+ CXXFLAGS += CONFIG['CAIRO_FT_CFLAGS']
+diff -Naur ff47-vanilla/gfx/thebes/moz.build ff47-patched/gfx/thebes/moz.build
+--- ff47-vanilla/gfx/thebes/moz.build  2016-06-01 05:11:44.0 +0100
 ff47-patched/gfx/thebes/moz.build  2016-06-11 18:51:40.389876996 +0100
+@@ -307,7 +307,14 @@
+ 
+ LOCAL_INCLUDES += CONFIG['SKIA_INCLUDES']
+ 
+-DEFINES['GRAPHITE2_STATIC'] = True
++if CONFIG['MOZ_NATIVE_HARFBUZZ']:
++CXXFLAGS += CONFIG

[arch-commits] Commit in xulrunner/trunk (PKGBUILD gcc6.diff)

2016-06-14 Thread Andreas Radke
Date: Tuesday, June 14, 2016 @ 19:45:35
  Author: andyrtr
Revision: 180107

prepare hunspell rebuild, requires further gcc6 patching

Added:
  xulrunner/trunk/gcc6.diff
Modified:
  xulrunner/trunk/PKGBUILD

---+
 PKGBUILD  |   11 ---
 gcc6.diff |   37 +
 2 files changed, 45 insertions(+), 3 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2016-06-14 19:44:57 UTC (rev 180106)
+++ PKGBUILD2016-06-14 19:45:35 UTC (rev 180107)
@@ -5,7 +5,7 @@
 
 pkgname=xulrunner
 pkgver=41.0.2
-pkgrel=4
+pkgrel=5
 pkgdesc="Mozilla Runtime Environment"
 arch=('i686' 'x86_64')
 license=('MPL' 'GPL' 'LGPL')
@@ -17,7 +17,8 @@
 freetype261.patch
 0001-Bug-1233963-Work-around-recent-GNU-gold-behavior-wit.patch
 mozilla-pkgconfig.patch
-shared-libs.patch)
+shared-libs.patch
+gcc6.diff)
 options=('!emptydirs' '!makeflags' 'staticlibs')
 replaces=('xulrunner-oss')
 sha256sums=('f7abb2e2989779305ab1f80d30caf9fc55d96c7e66d1394e2cc9639442e2b864'
@@ -25,12 +26,16 @@
 '3aea9a83bf304da5525f34a911712cf42f8ded1c8b6becf0a2cf8a4b4f7facd6'
 '13a27a385fab88938ac7417f1e7ca7225ec6b88840bafe67e0f5642e5446554a'
 '1aa9ebe67542a2b8c28905d070829ada5b29438c6a7961f2b0cdd6b92d8b9f5c'
-'59d9fc421bc10a5515b73e159f44a72365bf7b7e8b3fc8a8c46043ef40bd3a40')
+'59d9fc421bc10a5515b73e159f44a72365bf7b7e8b3fc8a8c46043ef40bd3a40'
+'0992d5dce883de760ff0445448466f096d0baa75fe5fd1e60bfd3cc13cb4d098')
 
 prepare() {
   cd "$srcdir/mozilla-release"
   cp "$srcdir/mozconfig" .mozconfig
 
+  # GCC6
+  patch -Np1 -i ../gcc6.diff
+
   # https://bugzilla.mozilla.org/show_bug.cgi?id=1194520
   patch -Np1 -i ../freetype261.patch
 

Added: gcc6.diff
===
--- gcc6.diff   (rev 0)
+++ gcc6.diff   2016-06-14 19:45:35 UTC (rev 180107)
@@ -0,0 +1,37 @@
+--- mozilla-release/config/gcc-stl-wrapper.template.h  2015-10-14 
23:40:56.0 +0200
 mozilla-release/config/gcc-stl-wrapper.template.h.new  2016-06-14 
19:40:50.542435101 +0200
+@@ -22,6 +22,11 @@
+ #define NOMINMAX 1
+ #endif
+ 
++// Don't include mozalloc for cstdlib. See bug 1245076.
++#ifndef moz_dont_include_mozalloc_for_cstdlib
++#  define moz_dont_include_mozalloc_for_cstdlib
++#endif
++#ifndef moz_dont_include_mozalloc_for_${HEADER}
+ // mozalloc.h wants ; break the cycle by always explicitly
+ // including  here.  NB: this is a tad sneaky.  Sez the gcc docs:
+ //
+@@ -30,15 +35,17 @@
+ //same name as the current file. It simply looks for the file
+ //named, starting with the directory in the search path after the
+ //one where the current file was found.
+-#include_next 
++#  include_next 
+ 
+ // See if we're in code that can use mozalloc.  NB: this duplicates
+ // code in nscore.h because nscore.h pulls in prtypes.h, and chromium
+ // can't build with that being included before base/basictypes.h.
+-#if !defined(XPCOM_GLUE) && !defined(NS_NO_XPCOM) && !defined(MOZ_NO_MOZALLOC)
+-#  include "mozilla/mozalloc.h"
+-#else
+-#  error "STL code can only be used with infallible ::operator new()"
++#  if !defined(XPCOM_GLUE) && !defined(NS_NO_XPCOM) && 
!defined(MOZ_NO_MOZALLOC)
++#include "mozilla/mozalloc.h"
++#  else
++#error "STL code can only be used with infallible ::operator new()"
++#  endif
++
+ #endif
+ 
+ #if defined(DEBUG) && !defined(_GLIBCXX_DEBUG)


[arch-commits] Commit in xulrunner/repos (16 files)

2016-04-03 Thread Evangelos Foutras
Date: Sunday, April 3, 2016 @ 14:32:25
  Author: foutrelis
Revision: 169390

archrelease: copy trunk to community-staging-i686, community-staging-x86_64

Added:
  xulrunner/repos/community-staging-i686/
  
xulrunner/repos/community-staging-i686/0001-Bug-1233963-Work-around-recent-GNU-gold-behavior-wit.patch
(from rev 169389, 
xulrunner/trunk/0001-Bug-1233963-Work-around-recent-GNU-gold-behavior-wit.patch)
  xulrunner/repos/community-staging-i686/PKGBUILD
(from rev 169389, xulrunner/trunk/PKGBUILD)
  xulrunner/repos/community-staging-i686/freetype261.patch
(from rev 169389, xulrunner/trunk/freetype261.patch)
  xulrunner/repos/community-staging-i686/mozconfig
(from rev 169389, xulrunner/trunk/mozconfig)
  xulrunner/repos/community-staging-i686/mozilla-pkgconfig.patch
(from rev 169389, xulrunner/trunk/mozilla-pkgconfig.patch)
  xulrunner/repos/community-staging-i686/shared-libs.patch
(from rev 169389, xulrunner/trunk/shared-libs.patch)
  xulrunner/repos/community-staging-i686/unbreak-plugin-build.patch
(from rev 169389, xulrunner/trunk/unbreak-plugin-build.patch)
  xulrunner/repos/community-staging-x86_64/
  
xulrunner/repos/community-staging-x86_64/0001-Bug-1233963-Work-around-recent-GNU-gold-behavior-wit.patch
(from rev 169389, 
xulrunner/trunk/0001-Bug-1233963-Work-around-recent-GNU-gold-behavior-wit.patch)
  xulrunner/repos/community-staging-x86_64/PKGBUILD
(from rev 169389, xulrunner/trunk/PKGBUILD)
  xulrunner/repos/community-staging-x86_64/freetype261.patch
(from rev 169389, xulrunner/trunk/freetype261.patch)
  xulrunner/repos/community-staging-x86_64/mozconfig
(from rev 169389, xulrunner/trunk/mozconfig)
  xulrunner/repos/community-staging-x86_64/mozilla-pkgconfig.patch
(from rev 169389, xulrunner/trunk/mozilla-pkgconfig.patch)
  xulrunner/repos/community-staging-x86_64/shared-libs.patch
(from rev 169389, xulrunner/trunk/shared-libs.patch)
  xulrunner/repos/community-staging-x86_64/unbreak-plugin-build.patch
(from rev 169389, xulrunner/trunk/unbreak-plugin-build.patch)

--+
 
community-staging-i686/0001-Bug-1233963-Work-around-recent-GNU-gold-behavior-wit.patch
   |   49 +
 community-staging-i686/PKGBUILD
  |   82 ++
 community-staging-i686/freetype261.patch   
  |   31 +++
 community-staging-i686/mozconfig   
  |   32 +++
 community-staging-i686/mozilla-pkgconfig.patch 
  |   40 
 community-staging-i686/shared-libs.patch   
  |   12 +
 community-staging-i686/unbreak-plugin-build.patch  
  |   76 +
 
community-staging-x86_64/0001-Bug-1233963-Work-around-recent-GNU-gold-behavior-wit.patch
 |   49 +
 community-staging-x86_64/PKGBUILD  
  |   82 ++
 community-staging-x86_64/freetype261.patch 
  |   31 +++
 community-staging-x86_64/mozconfig 
  |   32 +++
 community-staging-x86_64/mozilla-pkgconfig.patch   
  |   40 
 community-staging-x86_64/shared-libs.patch 
  |   12 +
 community-staging-x86_64/unbreak-plugin-build.patch
  |   76 +
 14 files changed, 644 insertions(+)

Copied: 
xulrunner/repos/community-staging-i686/0001-Bug-1233963-Work-around-recent-GNU-gold-behavior-wit.patch
 (from rev 169389, 
xulrunner/trunk/0001-Bug-1233963-Work-around-recent-GNU-gold-behavior-wit.patch)
===
--- 
community-staging-i686/0001-Bug-1233963-Work-around-recent-GNU-gold-behavior-wit.patch
  (rev 0)
+++ 
community-staging-i686/0001-Bug-1233963-Work-around-recent-GNU-gold-behavior-wit.patch
  2016-04-03 12:32:25 UTC (rev 169390)
@@ -0,0 +1,49 @@
+From 4d0fe8f40364c170226f1ef3bc98975630463e87 Mon Sep 17 00:00:00 2001
+From: Mike Hommey 
+Date: Tue, 19 Jan 2016 14:31:04 +0900
+Subject: [PATCH] Bug 1233963 - Work around recent GNU gold behavior with
+ segments starting before the first section they contain
+
+---
+ build/unix/elfhack/elf.cpp | 7 +--
+ 1 file changed, 5 insertions(+), 2 deletions(-)
+
+diff --git a/build/unix/elfhack/elf.cpp b/build/unix/elfhack/elf.cpp
+index 666b535..743afde 100644
+--- a/build/unix/elfhack/elf.cpp
 b/build/unix/elfhack/elf.cpp
+@@ -253,26 +253,29 @@ Elf::Elf(std::ifstream &file)
+ }
+ if (phdr.p_type == PT_PHDR)
+ segment->addSection(phdr_section);
+ for (int j = 1; j < ehdr->e_shnum; j++)
+ if (phdr.contains(sections[j])

[arch-commits] Commit in xulrunner/trunk (PKGBUILD)

2016-04-03 Thread Evangelos Foutras
Date: Sunday, April 3, 2016 @ 14:32:06
  Author: foutrelis
Revision: 169389

icu 57.1 / poppler 0.42.0 rebuild

Modified:
  xulrunner/trunk/PKGBUILD

--+
 PKGBUILD |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

Modified: PKGBUILD
===
--- PKGBUILD2016-04-03 11:59:08 UTC (rev 169388)
+++ PKGBUILD2016-04-03 12:32:06 UTC (rev 169389)
@@ -5,7 +5,7 @@
 
 pkgname=xulrunner
 pkgver=41.0.2
-pkgrel=3
+pkgrel=4
 pkgdesc="Mozilla Runtime Environment"
 arch=('i686' 'x86_64')
 license=('MPL' 'GPL' 'LGPL')


[arch-commits] Commit in xulrunner/trunk (2 files)

2016-04-03 Thread Evangelos Foutras
Date: Sunday, April 3, 2016 @ 13:59:08
  Author: foutrelis
Revision: 169388

Fix build with recent binutils

Added:
  
xulrunner/trunk/0001-Bug-1233963-Work-around-recent-GNU-gold-behavior-wit.patch
Modified:
  xulrunner/trunk/PKGBUILD

-+
 0001-Bug-1233963-Work-around-recent-GNU-gold-behavior-wit.patch |   49 
++
 PKGBUILD|5 +
 2 files changed, 54 insertions(+)

Added: 0001-Bug-1233963-Work-around-recent-GNU-gold-behavior-wit.patch
===
--- 0001-Bug-1233963-Work-around-recent-GNU-gold-behavior-wit.patch 
(rev 0)
+++ 0001-Bug-1233963-Work-around-recent-GNU-gold-behavior-wit.patch 
2016-04-03 11:59:08 UTC (rev 169388)
@@ -0,0 +1,49 @@
+From 4d0fe8f40364c170226f1ef3bc98975630463e87 Mon Sep 17 00:00:00 2001
+From: Mike Hommey 
+Date: Tue, 19 Jan 2016 14:31:04 +0900
+Subject: [PATCH] Bug 1233963 - Work around recent GNU gold behavior with
+ segments starting before the first section they contain
+
+---
+ build/unix/elfhack/elf.cpp | 7 +--
+ 1 file changed, 5 insertions(+), 2 deletions(-)
+
+diff --git a/build/unix/elfhack/elf.cpp b/build/unix/elfhack/elf.cpp
+index 666b535..743afde 100644
+--- a/build/unix/elfhack/elf.cpp
 b/build/unix/elfhack/elf.cpp
+@@ -253,26 +253,29 @@ Elf::Elf(std::ifstream &file)
+ }
+ if (phdr.p_type == PT_PHDR)
+ segment->addSection(phdr_section);
+ for (int j = 1; j < ehdr->e_shnum; j++)
+ if (phdr.contains(sections[j]))
+ segment->addSection(sections[j]);
+ // Make sure that our view of segments corresponds to the original
+ // ELF file.
+-assert(segment->getFileSize() == phdr.p_filesz);
++// GNU gold likes to start some segments before the first section
++// they contain. https://sourceware.org/bugzilla/show_bug.cgi?id=19392
++unsigned int gold_adjustment = segment->getAddr() - phdr.p_vaddr;
++assert(segment->getFileSize() == phdr.p_filesz - gold_adjustment);
+ // gold makes TLS segments end on an aligned virtual address, even
+ // when the underlying section ends before that, while bfd ld
+ // doesn't. It's fine if we don't keep that alignment.
+ unsigned int memsize = segment->getMemSize();
+ if (phdr.p_type == PT_TLS && memsize != phdr.p_memsz) {
+ unsigned int align = segment->getAlign();
+ memsize = (memsize + align - 1) & ~(align - 1);
+ }
+-assert(memsize == phdr.p_memsz);
++assert(memsize == phdr.p_memsz - gold_adjustment);
+ segments.push_back(segment);
+ }
+ 
+ new (&eh_entry) ElfLocation(ehdr->e_entry, this);
+ }
+ 
+ Elf::~Elf()
+ {
+-- 
+2.7.0
+

Modified: PKGBUILD
===
--- PKGBUILD2016-04-03 10:54:31 UTC (rev 169387)
+++ PKGBUILD2016-04-03 11:59:08 UTC (rev 169388)
@@ -15,6 +15,7 @@
 
source=(https://ftp.mozilla.org/pub/mozilla.org/xulrunner/releases/$pkgver/source/xulrunner-$pkgver.source.tar.xz
 mozconfig
 freetype261.patch
+0001-Bug-1233963-Work-around-recent-GNU-gold-behavior-wit.patch
 mozilla-pkgconfig.patch
 shared-libs.patch)
 options=('!emptydirs' '!makeflags' 'staticlibs')
@@ -22,6 +23,7 @@
 sha256sums=('f7abb2e2989779305ab1f80d30caf9fc55d96c7e66d1394e2cc9639442e2b864'
 'df0e663e7f9246b84936882e564270fac541c6bb39450b759abe686e5c27a052'
 '3aea9a83bf304da5525f34a911712cf42f8ded1c8b6becf0a2cf8a4b4f7facd6'
+'13a27a385fab88938ac7417f1e7ca7225ec6b88840bafe67e0f5642e5446554a'
 '1aa9ebe67542a2b8c28905d070829ada5b29438c6a7961f2b0cdd6b92d8b9f5c'
 '59d9fc421bc10a5515b73e159f44a72365bf7b7e8b3fc8a8c46043ef40bd3a40')
 
@@ -32,6 +34,9 @@
   # https://bugzilla.mozilla.org/show_bug.cgi?id=1194520
   patch -Np1 -i ../freetype261.patch
 
+  # https://bugzilla.mozilla.org/show_bug.cgi?id=1233963
+  patch -Np1 -i 
../0001-Bug-1233963-Work-around-recent-GNU-gold-behavior-wit.patch
+
   # fix libdir/sdkdir - fedora
   patch -Np1 -i ../mozilla-pkgconfig.patch
   patch -Np1 -i ../shared-libs.patch


[arch-commits] Commit in xulrunner/repos (14 files)

2015-12-06 Thread Evangelos Foutras
Date: Sunday, December 6, 2015 @ 19:27:43
  Author: foutrelis
Revision: 149039

archrelease: copy trunk to community-staging-i686, community-staging-x86_64

Added:
  xulrunner/repos/community-staging-i686/
  xulrunner/repos/community-staging-i686/PKGBUILD
(from rev 149038, xulrunner/trunk/PKGBUILD)
  xulrunner/repos/community-staging-i686/freetype261.patch
(from rev 149038, xulrunner/trunk/freetype261.patch)
  xulrunner/repos/community-staging-i686/mozconfig
(from rev 149038, xulrunner/trunk/mozconfig)
  xulrunner/repos/community-staging-i686/mozilla-pkgconfig.patch
(from rev 149038, xulrunner/trunk/mozilla-pkgconfig.patch)
  xulrunner/repos/community-staging-i686/shared-libs.patch
(from rev 149038, xulrunner/trunk/shared-libs.patch)
  xulrunner/repos/community-staging-i686/unbreak-plugin-build.patch
(from rev 149038, xulrunner/trunk/unbreak-plugin-build.patch)
  xulrunner/repos/community-staging-x86_64/
  xulrunner/repos/community-staging-x86_64/PKGBUILD
(from rev 149038, xulrunner/trunk/PKGBUILD)
  xulrunner/repos/community-staging-x86_64/freetype261.patch
(from rev 149038, xulrunner/trunk/freetype261.patch)
  xulrunner/repos/community-staging-x86_64/mozconfig
(from rev 149038, xulrunner/trunk/mozconfig)
  xulrunner/repos/community-staging-x86_64/mozilla-pkgconfig.patch
(from rev 149038, xulrunner/trunk/mozilla-pkgconfig.patch)
  xulrunner/repos/community-staging-x86_64/shared-libs.patch
(from rev 149038, xulrunner/trunk/shared-libs.patch)
  xulrunner/repos/community-staging-x86_64/unbreak-plugin-build.patch
(from rev 149038, xulrunner/trunk/unbreak-plugin-build.patch)

-+
 community-staging-i686/PKGBUILD |   77 ++
 community-staging-i686/freetype261.patch|   31 +++
 community-staging-i686/mozconfig|   32 +++
 community-staging-i686/mozilla-pkgconfig.patch  |   40 +
 community-staging-i686/shared-libs.patch|   12 ++
 community-staging-i686/unbreak-plugin-build.patch   |   76 +
 community-staging-x86_64/PKGBUILD   |   77 ++
 community-staging-x86_64/freetype261.patch  |   31 +++
 community-staging-x86_64/mozconfig  |   32 +++
 community-staging-x86_64/mozilla-pkgconfig.patch|   40 +
 community-staging-x86_64/shared-libs.patch  |   12 ++
 community-staging-x86_64/unbreak-plugin-build.patch |   76 +
 12 files changed, 536 insertions(+)

Copied: xulrunner/repos/community-staging-i686/PKGBUILD (from rev 149038, 
xulrunner/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2015-12-06 18:27:43 UTC (rev 149039)
@@ -0,0 +1,77 @@
+# $Id$
+# Maintainer: Connor Behan 
+# Contributor: Jan de Groot 
+# Contributor: Alexander Baldeck 
+
+pkgname=xulrunner
+pkgver=41.0.2
+pkgrel=3
+pkgdesc="Mozilla Runtime Environment"
+arch=('i686' 'x86_64')
+license=('MPL' 'GPL' 'LGPL')
+depends=('gtk2' 'mozilla-common' 'nss>3.18' 'libxt' 'hunspell' 
'startup-notification' 'mime-types' 'dbus-glib' 'libpulse' 'libevent' 'libvpx' 
'icu' 'python2')
+makedepends=('zip' 'unzip' 'pkg-config' 'diffutils' 'yasm' 'mesa' 'gconf' 
'autoconf2.13' 'gst-plugins-base-libs')
+url="http://wiki.mozilla.org/XUL:Xul_Runner";
+source=(https://ftp.mozilla.org/pub/mozilla.org/xulrunner/releases/$pkgver/source/xulrunner-$pkgver.source.tar.xz
+mozconfig
+freetype261.patch
+mozilla-pkgconfig.patch
+shared-libs.patch)
+options=('!emptydirs' '!makeflags' 'staticlibs')
+replaces=('xulrunner-oss')
+sha256sums=('f7abb2e2989779305ab1f80d30caf9fc55d96c7e66d1394e2cc9639442e2b864'
+'df0e663e7f9246b84936882e564270fac541c6bb39450b759abe686e5c27a052'
+'3aea9a83bf304da5525f34a911712cf42f8ded1c8b6becf0a2cf8a4b4f7facd6'
+'1aa9ebe67542a2b8c28905d070829ada5b29438c6a7961f2b0cdd6b92d8b9f5c'
+'59d9fc421bc10a5515b73e159f44a72365bf7b7e8b3fc8a8c46043ef40bd3a40')
+
+prepare() {
+  cd "$srcdir/mozilla-release"
+  cp "$srcdir/mozconfig" .mozconfig
+
+  # https://bugzilla.mozilla.org/show_bug.cgi?id=1194520
+  patch -Np1 -i ../freetype261.patch
+
+  # fix libdir/sdkdir - fedora
+  patch -Np1 -i ../mozilla-pkgconfig.patch
+  patch -Np1 -i ../shared-libs.patch
+
+  # WebRTC build tries to execute "python" and expects Python 2
+  # Workaround taken from chromium PKGBUILD
+  mkdir "$srcdir/python2-path"
+  ln -s /usr/bin/python2 "$srcdir/python2-path/python"
+
+  # configure script misdetects the preprocessor without an optimization level
+  # https://bugs.archlinux.org/task/34644
+  sed -i '/ac_cpp=/s/$CPPFLAGS/& -O2/' configure
+}
+
+build() {
+  cd "$srcdir/mozilla-release"
+
+  export PATH="$srcdir/python2-path:$PATH"
+  export LDFLAGS="$LDFALGS -Wl,-r

[arch-commits] Commit in xulrunner/trunk (PKGBUILD)

2015-12-06 Thread Evangelos Foutras
Date: Sunday, December 6, 2015 @ 19:27:23
  Author: foutrelis
Revision: 149038

C++11 ABI rebuild

Modified:
  xulrunner/trunk/PKGBUILD

--+
 PKGBUILD |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

Modified: PKGBUILD
===
--- PKGBUILD2015-12-06 18:23:45 UTC (rev 149037)
+++ PKGBUILD2015-12-06 18:27:23 UTC (rev 149038)
@@ -5,7 +5,7 @@
 
 pkgname=xulrunner
 pkgver=41.0.2
-pkgrel=2
+pkgrel=3
 pkgdesc="Mozilla Runtime Environment"
 arch=('i686' 'x86_64')
 license=('MPL' 'GPL' 'LGPL')


[arch-commits] Commit in xulrunner/trunk (PKGBUILD)

2015-11-10 Thread Evangelos Foutras
Date: Tuesday, November 10, 2015 @ 14:48:09
  Author: foutrelis
Revision: 146492

libvpx 1.5.0 rebuild

Modified:
  xulrunner/trunk/PKGBUILD

--+
 PKGBUILD |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

Modified: PKGBUILD
===
--- PKGBUILD2015-11-10 13:11:36 UTC (rev 146491)
+++ PKGBUILD2015-11-10 13:48:09 UTC (rev 146492)
@@ -5,7 +5,7 @@
 
 pkgname=xulrunner
 pkgver=41.0.2
-pkgrel=1
+pkgrel=2
 pkgdesc="Mozilla Runtime Environment"
 arch=('i686' 'x86_64')
 license=('MPL' 'GPL' 'LGPL')


[arch-commits] Commit in xulrunner/repos (14 files)

2015-11-10 Thread Evangelos Foutras
Date: Tuesday, November 10, 2015 @ 14:48:27
  Author: foutrelis
Revision: 146493

archrelease: copy trunk to community-staging-i686, community-staging-x86_64

Added:
  xulrunner/repos/community-staging-i686/
  xulrunner/repos/community-staging-i686/PKGBUILD
(from rev 146492, xulrunner/trunk/PKGBUILD)
  xulrunner/repos/community-staging-i686/freetype261.patch
(from rev 146492, xulrunner/trunk/freetype261.patch)
  xulrunner/repos/community-staging-i686/mozconfig
(from rev 146492, xulrunner/trunk/mozconfig)
  xulrunner/repos/community-staging-i686/mozilla-pkgconfig.patch
(from rev 146492, xulrunner/trunk/mozilla-pkgconfig.patch)
  xulrunner/repos/community-staging-i686/shared-libs.patch
(from rev 146492, xulrunner/trunk/shared-libs.patch)
  xulrunner/repos/community-staging-i686/unbreak-plugin-build.patch
(from rev 146492, xulrunner/trunk/unbreak-plugin-build.patch)
  xulrunner/repos/community-staging-x86_64/
  xulrunner/repos/community-staging-x86_64/PKGBUILD
(from rev 146492, xulrunner/trunk/PKGBUILD)
  xulrunner/repos/community-staging-x86_64/freetype261.patch
(from rev 146492, xulrunner/trunk/freetype261.patch)
  xulrunner/repos/community-staging-x86_64/mozconfig
(from rev 146492, xulrunner/trunk/mozconfig)
  xulrunner/repos/community-staging-x86_64/mozilla-pkgconfig.patch
(from rev 146492, xulrunner/trunk/mozilla-pkgconfig.patch)
  xulrunner/repos/community-staging-x86_64/shared-libs.patch
(from rev 146492, xulrunner/trunk/shared-libs.patch)
  xulrunner/repos/community-staging-x86_64/unbreak-plugin-build.patch
(from rev 146492, xulrunner/trunk/unbreak-plugin-build.patch)

-+
 community-staging-i686/PKGBUILD |   77 ++
 community-staging-i686/freetype261.patch|   31 +++
 community-staging-i686/mozconfig|   32 +++
 community-staging-i686/mozilla-pkgconfig.patch  |   40 +
 community-staging-i686/shared-libs.patch|   12 ++
 community-staging-i686/unbreak-plugin-build.patch   |   76 +
 community-staging-x86_64/PKGBUILD   |   77 ++
 community-staging-x86_64/freetype261.patch  |   31 +++
 community-staging-x86_64/mozconfig  |   32 +++
 community-staging-x86_64/mozilla-pkgconfig.patch|   40 +
 community-staging-x86_64/shared-libs.patch  |   12 ++
 community-staging-x86_64/unbreak-plugin-build.patch |   76 +
 12 files changed, 536 insertions(+)

Copied: xulrunner/repos/community-staging-i686/PKGBUILD (from rev 146492, 
xulrunner/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2015-11-10 13:48:27 UTC (rev 146493)
@@ -0,0 +1,77 @@
+# $Id$
+# Maintainer: Connor Behan 
+# Contributor: Jan de Groot 
+# Contributor: Alexander Baldeck 
+
+pkgname=xulrunner
+pkgver=41.0.2
+pkgrel=2
+pkgdesc="Mozilla Runtime Environment"
+arch=('i686' 'x86_64')
+license=('MPL' 'GPL' 'LGPL')
+depends=('gtk2' 'mozilla-common' 'nss>3.18' 'libxt' 'hunspell' 
'startup-notification' 'mime-types' 'dbus-glib' 'libpulse' 'libevent' 'libvpx' 
'icu' 'python2')
+makedepends=('zip' 'unzip' 'pkg-config' 'diffutils' 'yasm' 'mesa' 'gconf' 
'autoconf2.13' 'gst-plugins-base-libs')
+url="http://wiki.mozilla.org/XUL:Xul_Runner";
+source=(https://ftp.mozilla.org/pub/mozilla.org/xulrunner/releases/$pkgver/source/xulrunner-$pkgver.source.tar.xz
+mozconfig
+freetype261.patch
+mozilla-pkgconfig.patch
+shared-libs.patch)
+options=('!emptydirs' '!makeflags' 'staticlibs')
+replaces=('xulrunner-oss')
+sha256sums=('f7abb2e2989779305ab1f80d30caf9fc55d96c7e66d1394e2cc9639442e2b864'
+'df0e663e7f9246b84936882e564270fac541c6bb39450b759abe686e5c27a052'
+'3aea9a83bf304da5525f34a911712cf42f8ded1c8b6becf0a2cf8a4b4f7facd6'
+'1aa9ebe67542a2b8c28905d070829ada5b29438c6a7961f2b0cdd6b92d8b9f5c'
+'59d9fc421bc10a5515b73e159f44a72365bf7b7e8b3fc8a8c46043ef40bd3a40')
+
+prepare() {
+  cd "$srcdir/mozilla-release"
+  cp "$srcdir/mozconfig" .mozconfig
+
+  # https://bugzilla.mozilla.org/show_bug.cgi?id=1194520
+  patch -Np1 -i ../freetype261.patch
+
+  # fix libdir/sdkdir - fedora
+  patch -Np1 -i ../mozilla-pkgconfig.patch
+  patch -Np1 -i ../shared-libs.patch
+
+  # WebRTC build tries to execute "python" and expects Python 2
+  # Workaround taken from chromium PKGBUILD
+  mkdir "$srcdir/python2-path"
+  ln -s /usr/bin/python2 "$srcdir/python2-path/python"
+
+  # configure script misdetects the preprocessor without an optimization level
+  # https://bugs.archlinux.org/task/34644
+  sed -i '/ac_cpp=/s/$CPPFLAGS/& -O2/' configure
+}
+
+build() {
+  cd "$srcdir/mozilla-release"
+
+  export PATH="$srcdir/python2-path:$PATH"
+  export LDFLAGS="$LDFALGS -Wl,

[arch-commits] Commit in xulrunner/repos (14 files)

2015-11-01 Thread Florian Pritz
Date: Sunday, November 1, 2015 @ 17:52:24
  Author: bluewind
Revision: 145458

archrelease: copy trunk to community-staging-i686, community-staging-x86_64

Added:
  xulrunner/repos/community-staging-i686/
  xulrunner/repos/community-staging-i686/PKGBUILD
(from rev 145457, xulrunner/trunk/PKGBUILD)
  xulrunner/repos/community-staging-i686/freetype261.patch
(from rev 145457, xulrunner/trunk/freetype261.patch)
  xulrunner/repos/community-staging-i686/mozconfig
(from rev 145457, xulrunner/trunk/mozconfig)
  xulrunner/repos/community-staging-i686/mozilla-pkgconfig.patch
(from rev 145457, xulrunner/trunk/mozilla-pkgconfig.patch)
  xulrunner/repos/community-staging-i686/shared-libs.patch
(from rev 145457, xulrunner/trunk/shared-libs.patch)
  xulrunner/repos/community-staging-i686/unbreak-plugin-build.patch
(from rev 145457, xulrunner/trunk/unbreak-plugin-build.patch)
  xulrunner/repos/community-staging-x86_64/
  xulrunner/repos/community-staging-x86_64/PKGBUILD
(from rev 145457, xulrunner/trunk/PKGBUILD)
  xulrunner/repos/community-staging-x86_64/freetype261.patch
(from rev 145457, xulrunner/trunk/freetype261.patch)
  xulrunner/repos/community-staging-x86_64/mozconfig
(from rev 145457, xulrunner/trunk/mozconfig)
  xulrunner/repos/community-staging-x86_64/mozilla-pkgconfig.patch
(from rev 145457, xulrunner/trunk/mozilla-pkgconfig.patch)
  xulrunner/repos/community-staging-x86_64/shared-libs.patch
(from rev 145457, xulrunner/trunk/shared-libs.patch)
  xulrunner/repos/community-staging-x86_64/unbreak-plugin-build.patch
(from rev 145457, xulrunner/trunk/unbreak-plugin-build.patch)

-+
 community-staging-i686/PKGBUILD |   77 ++
 community-staging-i686/freetype261.patch|   31 +++
 community-staging-i686/mozconfig|   32 +++
 community-staging-i686/mozilla-pkgconfig.patch  |   40 +
 community-staging-i686/shared-libs.patch|   12 ++
 community-staging-i686/unbreak-plugin-build.patch   |   76 +
 community-staging-x86_64/PKGBUILD   |   77 ++
 community-staging-x86_64/freetype261.patch  |   31 +++
 community-staging-x86_64/mozconfig  |   32 +++
 community-staging-x86_64/mozilla-pkgconfig.patch|   40 +
 community-staging-x86_64/shared-libs.patch  |   12 ++
 community-staging-x86_64/unbreak-plugin-build.patch |   76 +
 12 files changed, 536 insertions(+)

Copied: xulrunner/repos/community-staging-i686/PKGBUILD (from rev 145457, 
xulrunner/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2015-11-01 16:52:24 UTC (rev 145458)
@@ -0,0 +1,77 @@
+# $Id$
+# Maintainer: Connor Behan 
+# Contributor: Jan de Groot 
+# Contributor: Alexander Baldeck 
+
+pkgname=xulrunner
+pkgver=41.0.2
+pkgrel=1
+pkgdesc="Mozilla Runtime Environment"
+arch=('i686' 'x86_64')
+license=('MPL' 'GPL' 'LGPL')
+depends=('gtk2' 'mozilla-common' 'nss>3.18' 'libxt' 'hunspell' 
'startup-notification' 'mime-types' 'dbus-glib' 'libpulse' 'libevent' 'libvpx' 
'icu' 'python2')
+makedepends=('zip' 'unzip' 'pkg-config' 'diffutils' 'yasm' 'mesa' 'gconf' 
'autoconf2.13' 'gst-plugins-base-libs')
+url="http://wiki.mozilla.org/XUL:Xul_Runner";
+source=(https://ftp.mozilla.org/pub/mozilla.org/xulrunner/releases/$pkgver/source/xulrunner-$pkgver.source.tar.xz
+mozconfig
+freetype261.patch
+mozilla-pkgconfig.patch
+shared-libs.patch)
+options=('!emptydirs' '!makeflags' 'staticlibs')
+replaces=('xulrunner-oss')
+sha256sums=('f7abb2e2989779305ab1f80d30caf9fc55d96c7e66d1394e2cc9639442e2b864'
+'df0e663e7f9246b84936882e564270fac541c6bb39450b759abe686e5c27a052'
+'3aea9a83bf304da5525f34a911712cf42f8ded1c8b6becf0a2cf8a4b4f7facd6'
+'1aa9ebe67542a2b8c28905d070829ada5b29438c6a7961f2b0cdd6b92d8b9f5c'
+'59d9fc421bc10a5515b73e159f44a72365bf7b7e8b3fc8a8c46043ef40bd3a40')
+
+prepare() {
+  cd "$srcdir/mozilla-release"
+  cp "$srcdir/mozconfig" .mozconfig
+
+  # https://bugzilla.mozilla.org/show_bug.cgi?id=1194520
+  patch -Np1 -i ../freetype261.patch
+
+  # fix libdir/sdkdir - fedora
+  patch -Np1 -i ../mozilla-pkgconfig.patch
+  patch -Np1 -i ../shared-libs.patch
+
+  # WebRTC build tries to execute "python" and expects Python 2
+  # Workaround taken from chromium PKGBUILD
+  mkdir "$srcdir/python2-path"
+  ln -s /usr/bin/python2 "$srcdir/python2-path/python"
+
+  # configure script misdetects the preprocessor without an optimization level
+  # https://bugs.archlinux.org/task/34644
+  sed -i '/ac_cpp=/s/$CPPFLAGS/& -O2/' configure
+}
+
+build() {
+  cd "$srcdir/mozilla-release"
+
+  export PATH="$srcdir/python2-path:$PATH"
+  export LDFLAGS="$LDFALGS -Wl,-rp

[arch-commits] Commit in xulrunner/trunk (PKGBUILD)

2015-11-01 Thread Florian Pritz
Date: Sunday, November 1, 2015 @ 17:52:13
  Author: bluewind
Revision: 145457

icu 56.1 / poppler 0.37.0 rebuild

Modified:
  xulrunner/trunk/PKGBUILD

--+
 PKGBUILD |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

Modified: PKGBUILD
===
--- PKGBUILD2015-11-01 16:31:21 UTC (rev 145456)
+++ PKGBUILD2015-11-01 16:52:13 UTC (rev 145457)
@@ -5,7 +5,7 @@
 
 pkgname=xulrunner
 pkgver=41.0.2
-pkgrel=0
+pkgrel=1
 pkgdesc="Mozilla Runtime Environment"
 arch=('i686' 'x86_64')
 license=('MPL' 'GPL' 'LGPL')


[arch-commits] Commit in xulrunner/trunk (3 files)

2015-11-01 Thread Evangelos Foutras
Date: Sunday, November 1, 2015 @ 14:12:48
  Author: foutrelis
Revision: 145440

Fix build with FreeType 2.6.1

Added:
  xulrunner/trunk/freetype261.patch
Modified:
  xulrunner/trunk/PKGBUILD
Deleted:
  xulrunner/trunk/freetype-headers.patch

+
 PKGBUILD   |5 +++
 freetype-headers.patch |   66 ---
 freetype261.patch  |   31 ++
 3 files changed, 36 insertions(+), 66 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2015-11-01 13:04:56 UTC (rev 145439)
+++ PKGBUILD2015-11-01 13:12:48 UTC (rev 145440)
@@ -14,6 +14,7 @@
 url="http://wiki.mozilla.org/XUL:Xul_Runner";
 
source=(https://ftp.mozilla.org/pub/mozilla.org/xulrunner/releases/$pkgver/source/xulrunner-$pkgver.source.tar.xz
 mozconfig
+freetype261.patch
 mozilla-pkgconfig.patch
 shared-libs.patch)
 options=('!emptydirs' '!makeflags' 'staticlibs')
@@ -20,6 +21,7 @@
 replaces=('xulrunner-oss')
 sha256sums=('f7abb2e2989779305ab1f80d30caf9fc55d96c7e66d1394e2cc9639442e2b864'
 'df0e663e7f9246b84936882e564270fac541c6bb39450b759abe686e5c27a052'
+'3aea9a83bf304da5525f34a911712cf42f8ded1c8b6becf0a2cf8a4b4f7facd6'
 '1aa9ebe67542a2b8c28905d070829ada5b29438c6a7961f2b0cdd6b92d8b9f5c'
 '59d9fc421bc10a5515b73e159f44a72365bf7b7e8b3fc8a8c46043ef40bd3a40')
 
@@ -27,6 +29,9 @@
   cd "$srcdir/mozilla-release"
   cp "$srcdir/mozconfig" .mozconfig
 
+  # https://bugzilla.mozilla.org/show_bug.cgi?id=1194520
+  patch -Np1 -i ../freetype261.patch
+
   # fix libdir/sdkdir - fedora
   patch -Np1 -i ../mozilla-pkgconfig.patch
   patch -Np1 -i ../shared-libs.patch

Deleted: freetype-headers.patch
===
--- freetype-headers.patch  2015-11-01 13:04:56 UTC (rev 145439)
+++ freetype-headers.patch  2015-11-01 13:12:48 UTC (rev 145440)
@@ -1,66 +0,0 @@
-diff -Nur mozilla-release.orig/config/system-headers 
mozilla-release/config/system-headers
 mozilla-release.orig/config/system-headers
-+++ mozilla-release/config/system-headers
-@@ -408,16 +408,29 @@ freetype/ftoutln.h
- freetype/ttnameid.h
- freetype/tttables.h
- freetype/t1tables.h
- freetype/ftlcdfil.h
- freetype/ftsizes.h
- freetype/ftadvanc.h
- freetype/ftbitmap.h
- freetype/ftxf86.h
-+freetype.h
-+ftcache.h
-+ftglyph.h
-+ftsynth.h
-+ftoutln.h
-+ttnameid.h
-+tttables.h
-+t1tables.h
-+ftlcdfil.h
-+ftsizes.h
-+ftadvanc.h
-+ftbitmap.h
-+ftxf86.h
- fribidi/fribidi.h
- FSp_fopen.h
- fstream
- fstream.h
- ft2build.h
- fts.h
- gconf/gconf-client.h
- Gdiplus.h
-diff -Nur mozilla-release.orig/js/src/config/system-headers 
mozilla-release/js/src/config/system-headers
 mozilla-release.orig/js/src/config/system-headers
-+++ mozilla-release/js/src/config/system-headers
-@@ -408,16 +408,29 @@ freetype/ftoutln.h
- freetype/ttnameid.h
- freetype/tttables.h
- freetype/t1tables.h
- freetype/ftlcdfil.h
- freetype/ftsizes.h
- freetype/ftadvanc.h
- freetype/ftbitmap.h
- freetype/ftxf86.h
-+freetype.h
-+ftcache.h
-+ftglyph.h
-+ftsynth.h
-+ftoutln.h
-+ttnameid.h
-+tttables.h
-+t1tables.h
-+ftlcdfil.h
-+ftsizes.h
-+ftadvanc.h
-+ftbitmap.h
-+ftxf86.h
- fribidi/fribidi.h
- FSp_fopen.h
- fstream
- fstream.h
- ft2build.h
- fts.h
- gconf/gconf-client.h
- Gdiplus.h

Added: freetype261.patch
===
--- freetype261.patch   (rev 0)
+++ freetype261.patch   2015-11-01 13:12:48 UTC (rev 145440)
@@ -0,0 +1,31 @@
+
+# HG changeset patch
+# User Mike Hommey 
+# Date 1439509838 -32400
+# Node ID af40750720b59cb7af58c32f4f3325d6e03bbbc4
+# Parent  e578cc44a96a2a953e75e295b0d8954f467d5cff
+Bug 1194520 - Add a system header wrapper for . r=mshal
+
+
+diff --git a/config/system-headers b/config/system-headers
+--- a/config/system-headers
 b/config/system-headers
+@@ -450,16 +450,17 @@ foundation/base64.h
+ foundation/hexdump.h
+ #endif
+ fp.h
+ fpieee.h
+ frame/log.h
+ frame/req.h
+ freetype/freetype.h
+ freetype/ftcache.h
++freetype/ftfntfmt.h
+ freetype/ftglyph.h
+ freetype/ftsynth.h
+ freetype/ftoutln.h
+ freetype/ttnameid.h
+ freetype/tttables.h
+ freetype/t1tables.h
+ freetype/ftlcdfil.h
+ freetype/ftsizes.h
+


[arch-commits] Commit in xulrunner/trunk (PKGBUILD)

2015-11-01 Thread Evangelos Foutras
Date: Sunday, November 1, 2015 @ 12:45:07
  Author: foutrelis
Revision: 145428

Prepare bump to latest release

Modified:
  xulrunner/trunk/PKGBUILD

--+
 PKGBUILD |   10 +-
 1 file changed, 5 insertions(+), 5 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2015-11-01 11:24:38 UTC (rev 145427)
+++ PKGBUILD2015-11-01 11:45:07 UTC (rev 145428)
@@ -4,21 +4,21 @@
 # Contributor: Alexander Baldeck 
 
 pkgname=xulrunner
-pkgver=40.0.3
-pkgrel=1
+pkgver=41.0.2
+pkgrel=0
 pkgdesc="Mozilla Runtime Environment"
 arch=('i686' 'x86_64')
 license=('MPL' 'GPL' 'LGPL')
 depends=('gtk2' 'mozilla-common' 'nss>3.18' 'libxt' 'hunspell' 
'startup-notification' 'mime-types' 'dbus-glib' 'libpulse' 'libevent' 'libvpx' 
'icu' 'python2')
-makedepends=('zip' 'unzip' 'pkg-config' 'diffutils' 'yasm' 'mesa' 
'autoconf2.13' 'gst-plugins-base-libs')
+makedepends=('zip' 'unzip' 'pkg-config' 'diffutils' 'yasm' 'mesa' 'gconf' 
'autoconf2.13' 'gst-plugins-base-libs')
 url="http://wiki.mozilla.org/XUL:Xul_Runner";
-source=(https://ftp.mozilla.org/pub/mozilla.org/xulrunner/releases/$pkgver/source/xulrunner-$pkgver.source.tar.bz2
+source=(https://ftp.mozilla.org/pub/mozilla.org/xulrunner/releases/$pkgver/source/xulrunner-$pkgver.source.tar.xz
 mozconfig
 mozilla-pkgconfig.patch
 shared-libs.patch)
 options=('!emptydirs' '!makeflags' 'staticlibs')
 replaces=('xulrunner-oss')
-sha256sums=('500af8a84c48e31fe368cd89aa17118e4f18ef76ce7b7154a9d676222ce3ced5'
+sha256sums=('f7abb2e2989779305ab1f80d30caf9fc55d96c7e66d1394e2cc9639442e2b864'
 'df0e663e7f9246b84936882e564270fac541c6bb39450b759abe686e5c27a052'
 '1aa9ebe67542a2b8c28905d070829ada5b29438c6a7961f2b0cdd6b92d8b9f5c'
 '59d9fc421bc10a5515b73e159f44a72365bf7b7e8b3fc8a8c46043ef40bd3a40')


[arch-commits] Commit in xulrunner/repos (24 files)

2015-09-12 Thread Connor Behan
Date: Saturday, September 12, 2015 @ 18:53:53
  Author: cbehan
Revision: 139973

archrelease: copy trunk to community-i686, community-x86_64

Added:
  xulrunner/repos/community-i686/PKGBUILD
(from rev 139972, xulrunner/trunk/PKGBUILD)
  xulrunner/repos/community-i686/freetype-headers.patch
(from rev 139972, xulrunner/trunk/freetype-headers.patch)
  xulrunner/repos/community-i686/mozconfig
(from rev 139972, xulrunner/trunk/mozconfig)
  xulrunner/repos/community-i686/mozilla-pkgconfig.patch
(from rev 139972, xulrunner/trunk/mozilla-pkgconfig.patch)
  xulrunner/repos/community-i686/shared-libs.patch
(from rev 139972, xulrunner/trunk/shared-libs.patch)
  xulrunner/repos/community-i686/unbreak-plugin-build.patch
(from rev 139972, xulrunner/trunk/unbreak-plugin-build.patch)
  xulrunner/repos/community-x86_64/PKGBUILD
(from rev 139972, xulrunner/trunk/PKGBUILD)
  xulrunner/repos/community-x86_64/freetype-headers.patch
(from rev 139972, xulrunner/trunk/freetype-headers.patch)
  xulrunner/repos/community-x86_64/mozconfig
(from rev 139972, xulrunner/trunk/mozconfig)
  xulrunner/repos/community-x86_64/mozilla-pkgconfig.patch
(from rev 139972, xulrunner/trunk/mozilla-pkgconfig.patch)
  xulrunner/repos/community-x86_64/shared-libs.patch
(from rev 139972, xulrunner/trunk/shared-libs.patch)
  xulrunner/repos/community-x86_64/unbreak-plugin-build.patch
(from rev 139972, xulrunner/trunk/unbreak-plugin-build.patch)
Deleted:
  xulrunner/repos/community-i686/PKGBUILD
  xulrunner/repos/community-i686/freetype-headers.patch
  xulrunner/repos/community-i686/mozconfig
  xulrunner/repos/community-i686/mozilla-pkgconfig.patch
  xulrunner/repos/community-i686/shared-libs.patch
  xulrunner/repos/community-i686/unbreak-plugin-build.patch
  xulrunner/repos/community-x86_64/PKGBUILD
  xulrunner/repos/community-x86_64/freetype-headers.patch
  xulrunner/repos/community-x86_64/mozconfig
  xulrunner/repos/community-x86_64/mozilla-pkgconfig.patch
  xulrunner/repos/community-x86_64/shared-libs.patch
  xulrunner/repos/community-x86_64/unbreak-plugin-build.patch

-+
 /PKGBUILD   |  144 
 /freetype-headers.patch |  132 ++
 /mozconfig  |   64 ++
 /mozilla-pkgconfig.patch|   80 +
 /shared-libs.patch  |   24 
 /unbreak-plugin-build.patch |  152 ++
 community-i686/PKGBUILD |   72 
 community-i686/freetype-headers.patch   |   66 ---
 community-i686/mozconfig|   32 -
 community-i686/mozilla-pkgconfig.patch  |   40 --
 community-i686/shared-libs.patch|   12 --
 community-i686/unbreak-plugin-build.patch   |   76 -
 community-x86_64/PKGBUILD   |   72 
 community-x86_64/freetype-headers.patch |   66 ---
 community-x86_64/mozconfig  |   32 -
 community-x86_64/mozilla-pkgconfig.patch|   40 --
 community-x86_64/shared-libs.patch  |   12 --
 community-x86_64/unbreak-plugin-build.patch |   76 -
 18 files changed, 596 insertions(+), 596 deletions(-)

The diff is longer than the limit of 200KB.
Use svn diff -r 139972:139973 to see the changes.


[arch-commits] Commit in xulrunner/trunk (PKGBUILD)

2015-09-12 Thread Connor Behan
Date: Saturday, September 12, 2015 @ 18:52:57
  Author: cbehan
Revision: 139972

upgpkg: xulrunner 40.0.3-1

Update to 40.0.3-1

Modified:
  xulrunner/trunk/PKGBUILD

--+
 PKGBUILD |6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2015-09-12 15:12:38 UTC (rev 139971)
+++ PKGBUILD2015-09-12 16:52:57 UTC (rev 139972)
@@ -4,7 +4,7 @@
 # Contributor: Alexander Baldeck 
 
 pkgname=xulrunner
-pkgver=39.0
+pkgver=40.0.3
 pkgrel=1
 pkgdesc="Mozilla Runtime Environment"
 arch=('i686' 'x86_64')
@@ -12,13 +12,13 @@
 depends=('gtk2' 'mozilla-common' 'nss>3.18' 'libxt' 'hunspell' 
'startup-notification' 'mime-types' 'dbus-glib' 'libpulse' 'libevent' 'libvpx' 
'icu' 'python2')
 makedepends=('zip' 'unzip' 'pkg-config' 'diffutils' 'yasm' 'mesa' 
'autoconf2.13' 'gst-plugins-base-libs')
 url="http://wiki.mozilla.org/XUL:Xul_Runner";
-source=(ftp://ftp.mozilla.org/pub/mozilla.org/xulrunner/releases/$pkgver/source/xulrunner-$pkgver.source.tar.bz2
+source=(https://ftp.mozilla.org/pub/mozilla.org/xulrunner/releases/$pkgver/source/xulrunner-$pkgver.source.tar.bz2
 mozconfig
 mozilla-pkgconfig.patch
 shared-libs.patch)
 options=('!emptydirs' '!makeflags' 'staticlibs')
 replaces=('xulrunner-oss')
-sha256sums=('c38daf64e162f305d9b7117c97e759f65c4b086f8db90fd3cea10a05c65c507a'
+sha256sums=('500af8a84c48e31fe368cd89aa17118e4f18ef76ce7b7154a9d676222ce3ced5'
 'df0e663e7f9246b84936882e564270fac541c6bb39450b759abe686e5c27a052'
 '1aa9ebe67542a2b8c28905d070829ada5b29438c6a7961f2b0cdd6b92d8b9f5c'
 '59d9fc421bc10a5515b73e159f44a72365bf7b7e8b3fc8a8c46043ef40bd3a40')


[arch-commits] Commit in xulrunner/repos (24 files)

2015-07-23 Thread Connor Behan
Date: Thursday, July 23, 2015 @ 22:57:02
  Author: cbehan
Revision: 137343

archrelease: copy trunk to community-i686, community-x86_64

Added:
  xulrunner/repos/community-i686/PKGBUILD
(from rev 137342, xulrunner/trunk/PKGBUILD)
  xulrunner/repos/community-i686/freetype-headers.patch
(from rev 137342, xulrunner/trunk/freetype-headers.patch)
  xulrunner/repos/community-i686/mozconfig
(from rev 137342, xulrunner/trunk/mozconfig)
  xulrunner/repos/community-i686/mozilla-pkgconfig.patch
(from rev 137342, xulrunner/trunk/mozilla-pkgconfig.patch)
  xulrunner/repos/community-i686/shared-libs.patch
(from rev 137342, xulrunner/trunk/shared-libs.patch)
  xulrunner/repos/community-i686/unbreak-plugin-build.patch
(from rev 137342, xulrunner/trunk/unbreak-plugin-build.patch)
  xulrunner/repos/community-x86_64/PKGBUILD
(from rev 137342, xulrunner/trunk/PKGBUILD)
  xulrunner/repos/community-x86_64/freetype-headers.patch
(from rev 137342, xulrunner/trunk/freetype-headers.patch)
  xulrunner/repos/community-x86_64/mozconfig
(from rev 137342, xulrunner/trunk/mozconfig)
  xulrunner/repos/community-x86_64/mozilla-pkgconfig.patch
(from rev 137342, xulrunner/trunk/mozilla-pkgconfig.patch)
  xulrunner/repos/community-x86_64/shared-libs.patch
(from rev 137342, xulrunner/trunk/shared-libs.patch)
  xulrunner/repos/community-x86_64/unbreak-plugin-build.patch
(from rev 137342, xulrunner/trunk/unbreak-plugin-build.patch)
Deleted:
  xulrunner/repos/community-i686/PKGBUILD
  xulrunner/repos/community-i686/freetype-headers.patch
  xulrunner/repos/community-i686/mozconfig
  xulrunner/repos/community-i686/mozilla-pkgconfig.patch
  xulrunner/repos/community-i686/shared-libs.patch
  xulrunner/repos/community-i686/unbreak-plugin-build.patch
  xulrunner/repos/community-x86_64/PKGBUILD
  xulrunner/repos/community-x86_64/freetype-headers.patch
  xulrunner/repos/community-x86_64/mozconfig
  xulrunner/repos/community-x86_64/mozilla-pkgconfig.patch
  xulrunner/repos/community-x86_64/shared-libs.patch
  xulrunner/repos/community-x86_64/unbreak-plugin-build.patch

-+
 /PKGBUILD   |  144 
 /freetype-headers.patch |  132 ++
 /mozconfig  |   64 ++
 /mozilla-pkgconfig.patch|   80 +
 /shared-libs.patch  |   24 
 /unbreak-plugin-build.patch |  152 ++
 community-i686/PKGBUILD |   72 
 community-i686/freetype-headers.patch   |   66 ---
 community-i686/mozconfig|   32 -
 community-i686/mozilla-pkgconfig.patch  |   40 --
 community-i686/shared-libs.patch|   12 --
 community-i686/unbreak-plugin-build.patch   |   76 -
 community-x86_64/PKGBUILD   |   72 
 community-x86_64/freetype-headers.patch |   66 ---
 community-x86_64/mozconfig  |   32 -
 community-x86_64/mozilla-pkgconfig.patch|   40 --
 community-x86_64/shared-libs.patch  |   12 --
 community-x86_64/unbreak-plugin-build.patch |   76 -
 18 files changed, 596 insertions(+), 596 deletions(-)

The diff is longer than the limit of 200KB.
Use svn diff -r 137342:137343 to see the changes.


[arch-commits] Commit in xulrunner/repos (24 files)

2015-07-23 Thread Connor Behan
Date: Thursday, July 23, 2015 @ 22:54:56
  Author: cbehan
Revision: 137342

archrelease: copy trunk to community-i686, community-x86_64

Added:
  xulrunner/repos/community-i686/PKGBUILD
(from rev 137341, xulrunner/trunk/PKGBUILD)
  xulrunner/repos/community-i686/freetype-headers.patch
(from rev 137341, xulrunner/trunk/freetype-headers.patch)
  xulrunner/repos/community-i686/mozconfig
(from rev 137341, xulrunner/trunk/mozconfig)
  xulrunner/repos/community-i686/mozilla-pkgconfig.patch
(from rev 137341, xulrunner/trunk/mozilla-pkgconfig.patch)
  xulrunner/repos/community-i686/shared-libs.patch
(from rev 137341, xulrunner/trunk/shared-libs.patch)
  xulrunner/repos/community-i686/unbreak-plugin-build.patch
(from rev 137341, xulrunner/trunk/unbreak-plugin-build.patch)
  xulrunner/repos/community-x86_64/PKGBUILD
(from rev 137341, xulrunner/trunk/PKGBUILD)
  xulrunner/repos/community-x86_64/freetype-headers.patch
(from rev 137341, xulrunner/trunk/freetype-headers.patch)
  xulrunner/repos/community-x86_64/mozconfig
(from rev 137341, xulrunner/trunk/mozconfig)
  xulrunner/repos/community-x86_64/mozilla-pkgconfig.patch
(from rev 137341, xulrunner/trunk/mozilla-pkgconfig.patch)
  xulrunner/repos/community-x86_64/shared-libs.patch
(from rev 137341, xulrunner/trunk/shared-libs.patch)
  xulrunner/repos/community-x86_64/unbreak-plugin-build.patch
(from rev 137341, xulrunner/trunk/unbreak-plugin-build.patch)
Deleted:
  xulrunner/repos/community-i686/PKGBUILD
  xulrunner/repos/community-i686/freetype-headers.patch
  xulrunner/repos/community-i686/mozconfig
  xulrunner/repos/community-i686/mozilla-pkgconfig.patch
  xulrunner/repos/community-i686/shared-libs.patch
  xulrunner/repos/community-i686/unbreak-plugin-build.patch
  xulrunner/repos/community-x86_64/PKGBUILD
  xulrunner/repos/community-x86_64/freetype-headers.patch
  xulrunner/repos/community-x86_64/mozconfig
  xulrunner/repos/community-x86_64/mozilla-pkgconfig.patch
  xulrunner/repos/community-x86_64/shared-libs.patch
  xulrunner/repos/community-x86_64/unbreak-plugin-build.patch

-+
 /PKGBUILD   |  144 
 /freetype-headers.patch |  132 ++
 /mozconfig  |   64 ++
 /mozilla-pkgconfig.patch|   80 +
 /shared-libs.patch  |   24 
 /unbreak-plugin-build.patch |  152 ++
 community-i686/PKGBUILD |   72 
 community-i686/freetype-headers.patch   |   66 ---
 community-i686/mozconfig|   32 -
 community-i686/mozilla-pkgconfig.patch  |   40 --
 community-i686/shared-libs.patch|   12 --
 community-i686/unbreak-plugin-build.patch   |   76 -
 community-x86_64/PKGBUILD   |   72 
 community-x86_64/freetype-headers.patch |   66 ---
 community-x86_64/mozconfig  |   32 -
 community-x86_64/mozilla-pkgconfig.patch|   40 --
 community-x86_64/shared-libs.patch  |   12 --
 community-x86_64/unbreak-plugin-build.patch |   76 -
 18 files changed, 596 insertions(+), 596 deletions(-)

The diff is longer than the limit of 200KB.
Use svn diff -r 137341:137342 to see the changes.


[arch-commits] Commit in xulrunner/trunk (PKGBUILD)

2015-07-23 Thread Connor Behan
Date: Thursday, July 23, 2015 @ 22:54:07
  Author: cbehan
Revision: 137341

upgpkg: xulrunner 39.0-1

Update to 39.0-1

Modified:
  xulrunner/trunk/PKGBUILD

--+
 PKGBUILD |4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2015-07-23 20:40:02 UTC (rev 137340)
+++ PKGBUILD2015-07-23 20:54:07 UTC (rev 137341)
@@ -4,7 +4,7 @@
 # Contributor: Alexander Baldeck 
 
 pkgname=xulrunner
-pkgver=38.0.1
+pkgver=39.0
 pkgrel=1
 pkgdesc="Mozilla Runtime Environment"
 arch=('i686' 'x86_64')
@@ -18,7 +18,7 @@
 shared-libs.patch)
 options=('!emptydirs' '!makeflags' 'staticlibs')
 replaces=('xulrunner-oss')
-sha256sums=('5b59bd8065c44c11742339f04963667ec9d8f3783b0b9dc743d0d3e77163a937'
+sha256sums=('c38daf64e162f305d9b7117c97e759f65c4b086f8db90fd3cea10a05c65c507a'
 'df0e663e7f9246b84936882e564270fac541c6bb39450b759abe686e5c27a052'
 '1aa9ebe67542a2b8c28905d070829ada5b29438c6a7961f2b0cdd6b92d8b9f5c'
 '59d9fc421bc10a5515b73e159f44a72365bf7b7e8b3fc8a8c46043ef40bd3a40')


[arch-commits] Commit in xulrunner/repos (24 files)

2015-05-18 Thread Connor Behan
Date: Tuesday, May 19, 2015 @ 02:35:57
  Author: cbehan
Revision: 133751

archrelease: copy trunk to community-i686, community-x86_64

Added:
  xulrunner/repos/community-i686/PKGBUILD
(from rev 133750, xulrunner/trunk/PKGBUILD)
  xulrunner/repos/community-i686/freetype-headers.patch
(from rev 133750, xulrunner/trunk/freetype-headers.patch)
  xulrunner/repos/community-i686/mozconfig
(from rev 133750, xulrunner/trunk/mozconfig)
  xulrunner/repos/community-i686/mozilla-pkgconfig.patch
(from rev 133750, xulrunner/trunk/mozilla-pkgconfig.patch)
  xulrunner/repos/community-i686/shared-libs.patch
(from rev 133750, xulrunner/trunk/shared-libs.patch)
  xulrunner/repos/community-i686/unbreak-plugin-build.patch
(from rev 133750, xulrunner/trunk/unbreak-plugin-build.patch)
  xulrunner/repos/community-x86_64/PKGBUILD
(from rev 133750, xulrunner/trunk/PKGBUILD)
  xulrunner/repos/community-x86_64/freetype-headers.patch
(from rev 133750, xulrunner/trunk/freetype-headers.patch)
  xulrunner/repos/community-x86_64/mozconfig
(from rev 133750, xulrunner/trunk/mozconfig)
  xulrunner/repos/community-x86_64/mozilla-pkgconfig.patch
(from rev 133750, xulrunner/trunk/mozilla-pkgconfig.patch)
  xulrunner/repos/community-x86_64/shared-libs.patch
(from rev 133750, xulrunner/trunk/shared-libs.patch)
  xulrunner/repos/community-x86_64/unbreak-plugin-build.patch
(from rev 133750, xulrunner/trunk/unbreak-plugin-build.patch)
Deleted:
  xulrunner/repos/community-i686/PKGBUILD
  xulrunner/repos/community-i686/freetype-headers.patch
  xulrunner/repos/community-i686/mozconfig
  xulrunner/repos/community-i686/mozilla-pkgconfig.patch
  xulrunner/repos/community-i686/shared-libs.patch
  xulrunner/repos/community-i686/unbreak-plugin-build.patch
  xulrunner/repos/community-x86_64/PKGBUILD
  xulrunner/repos/community-x86_64/freetype-headers.patch
  xulrunner/repos/community-x86_64/mozconfig
  xulrunner/repos/community-x86_64/mozilla-pkgconfig.patch
  xulrunner/repos/community-x86_64/shared-libs.patch
  xulrunner/repos/community-x86_64/unbreak-plugin-build.patch

-+
 /PKGBUILD   |  144 
 /freetype-headers.patch |  132 ++
 /mozconfig  |   64 ++
 /mozilla-pkgconfig.patch|   80 +
 /shared-libs.patch  |   24 
 /unbreak-plugin-build.patch |  152 ++
 community-i686/PKGBUILD |   72 
 community-i686/freetype-headers.patch   |   66 ---
 community-i686/mozconfig|   32 -
 community-i686/mozilla-pkgconfig.patch  |   40 --
 community-i686/shared-libs.patch|   12 --
 community-i686/unbreak-plugin-build.patch   |   76 -
 community-x86_64/PKGBUILD   |   72 
 community-x86_64/freetype-headers.patch |   66 ---
 community-x86_64/mozconfig  |   32 -
 community-x86_64/mozilla-pkgconfig.patch|   40 --
 community-x86_64/shared-libs.patch  |   12 --
 community-x86_64/unbreak-plugin-build.patch |   76 -
 18 files changed, 596 insertions(+), 596 deletions(-)

The diff is longer than the limit of 200KB.
Use svn diff -r 133750:133751 to see the changes.


[arch-commits] Commit in xulrunner/trunk (PKGBUILD)

2015-05-18 Thread Connor Behan
Date: Tuesday, May 19, 2015 @ 02:35:13
  Author: cbehan
Revision: 133750

upgpkg: xulrunner 38.0.1-1

Update to 38.0.1-1

Modified:
  xulrunner/trunk/PKGBUILD

--+
 PKGBUILD |6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2015-05-18 23:39:28 UTC (rev 133749)
+++ PKGBUILD2015-05-19 00:35:13 UTC (rev 133750)
@@ -4,12 +4,12 @@
 # Contributor: Alexander Baldeck 
 
 pkgname=xulrunner
-pkgver=37.0.2
+pkgver=38.0.1
 pkgrel=1
 pkgdesc="Mozilla Runtime Environment"
 arch=('i686' 'x86_64')
 license=('MPL' 'GPL' 'LGPL')
-depends=('gtk2' 'mozilla-common' 'nss' 'libxt' 'hunspell' 
'startup-notification' 'mime-types' 'dbus-glib' 'libpulse' 'libevent' 'libvpx' 
'icu' 'python2')
+depends=('gtk2' 'mozilla-common' 'nss>3.18' 'libxt' 'hunspell' 
'startup-notification' 'mime-types' 'dbus-glib' 'libpulse' 'libevent' 'libvpx' 
'icu' 'python2')
 makedepends=('zip' 'unzip' 'pkg-config' 'diffutils' 'yasm' 'mesa' 
'autoconf2.13' 'gst-plugins-base-libs')
 url="http://wiki.mozilla.org/XUL:Xul_Runner";
 
source=(ftp://ftp.mozilla.org/pub/mozilla.org/xulrunner/releases/$pkgver/source/xulrunner-$pkgver.source.tar.bz2
@@ -18,7 +18,7 @@
 shared-libs.patch)
 options=('!emptydirs' '!makeflags' 'staticlibs')
 replaces=('xulrunner-oss')
-sha256sums=('c08bc152c54bb26d21320ddc2fb57c29ea5f4d84f3d04434698d9d6172c2cd60'
+sha256sums=('5b59bd8065c44c11742339f04963667ec9d8f3783b0b9dc743d0d3e77163a937'
 'df0e663e7f9246b84936882e564270fac541c6bb39450b759abe686e5c27a052'
 '1aa9ebe67542a2b8c28905d070829ada5b29438c6a7961f2b0cdd6b92d8b9f5c'
 '59d9fc421bc10a5515b73e159f44a72365bf7b7e8b3fc8a8c46043ef40bd3a40')


[arch-commits] Commit in xulrunner/repos (14 files)

2015-04-20 Thread Evangelos Foutras
Date: Tuesday, April 21, 2015 @ 03:27:29
  Author: foutrelis
Revision: 131764

archrelease: copy trunk to community-staging-i686, community-staging-x86_64

Added:
  xulrunner/repos/community-staging-i686/
  xulrunner/repos/community-staging-i686/PKGBUILD
(from rev 131763, xulrunner/trunk/PKGBUILD)
  xulrunner/repos/community-staging-i686/freetype-headers.patch
(from rev 131763, xulrunner/trunk/freetype-headers.patch)
  xulrunner/repos/community-staging-i686/mozconfig
(from rev 131763, xulrunner/trunk/mozconfig)
  xulrunner/repos/community-staging-i686/mozilla-pkgconfig.patch
(from rev 131763, xulrunner/trunk/mozilla-pkgconfig.patch)
  xulrunner/repos/community-staging-i686/shared-libs.patch
(from rev 131763, xulrunner/trunk/shared-libs.patch)
  xulrunner/repos/community-staging-i686/unbreak-plugin-build.patch
(from rev 131763, xulrunner/trunk/unbreak-plugin-build.patch)
  xulrunner/repos/community-staging-x86_64/
  xulrunner/repos/community-staging-x86_64/PKGBUILD
(from rev 131763, xulrunner/trunk/PKGBUILD)
  xulrunner/repos/community-staging-x86_64/freetype-headers.patch
(from rev 131763, xulrunner/trunk/freetype-headers.patch)
  xulrunner/repos/community-staging-x86_64/mozconfig
(from rev 131763, xulrunner/trunk/mozconfig)
  xulrunner/repos/community-staging-x86_64/mozilla-pkgconfig.patch
(from rev 131763, xulrunner/trunk/mozilla-pkgconfig.patch)
  xulrunner/repos/community-staging-x86_64/shared-libs.patch
(from rev 131763, xulrunner/trunk/shared-libs.patch)
  xulrunner/repos/community-staging-x86_64/unbreak-plugin-build.patch
(from rev 131763, xulrunner/trunk/unbreak-plugin-build.patch)

-+
 community-staging-i686/PKGBUILD |   72 +
 community-staging-i686/freetype-headers.patch   |   66 +++
 community-staging-i686/mozconfig|   32 +++
 community-staging-i686/mozilla-pkgconfig.patch  |   40 +
 community-staging-i686/shared-libs.patch|   12 ++
 community-staging-i686/unbreak-plugin-build.patch   |   76 ++
 community-staging-x86_64/PKGBUILD   |   72 +
 community-staging-x86_64/freetype-headers.patch |   66 +++
 community-staging-x86_64/mozconfig  |   32 +++
 community-staging-x86_64/mozilla-pkgconfig.patch|   40 +
 community-staging-x86_64/shared-libs.patch  |   12 ++
 community-staging-x86_64/unbreak-plugin-build.patch |   76 ++
 12 files changed, 596 insertions(+)

Copied: xulrunner/repos/community-staging-i686/PKGBUILD (from rev 131763, 
xulrunner/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2015-04-21 01:27:29 UTC (rev 131764)
@@ -0,0 +1,72 @@
+# $Id$
+# Maintainer: Connor Behan 
+# Contributor: Jan de Groot 
+# Contributor: Alexander Baldeck 
+
+pkgname=xulrunner
+pkgver=37.0.2
+pkgrel=1
+pkgdesc="Mozilla Runtime Environment"
+arch=('i686' 'x86_64')
+license=('MPL' 'GPL' 'LGPL')
+depends=('gtk2' 'mozilla-common' 'nss' 'libxt' 'hunspell' 
'startup-notification' 'mime-types' 'dbus-glib' 'libpulse' 'libevent' 'libvpx' 
'icu' 'python2')
+makedepends=('zip' 'unzip' 'pkg-config' 'diffutils' 'yasm' 'mesa' 
'autoconf2.13' 'gst-plugins-base-libs')
+url="http://wiki.mozilla.org/XUL:Xul_Runner";
+source=(ftp://ftp.mozilla.org/pub/mozilla.org/xulrunner/releases/$pkgver/source/xulrunner-$pkgver.source.tar.bz2
+mozconfig
+mozilla-pkgconfig.patch
+shared-libs.patch)
+options=('!emptydirs' '!makeflags' 'staticlibs')
+replaces=('xulrunner-oss')
+sha256sums=('c08bc152c54bb26d21320ddc2fb57c29ea5f4d84f3d04434698d9d6172c2cd60'
+'df0e663e7f9246b84936882e564270fac541c6bb39450b759abe686e5c27a052'
+'1aa9ebe67542a2b8c28905d070829ada5b29438c6a7961f2b0cdd6b92d8b9f5c'
+'59d9fc421bc10a5515b73e159f44a72365bf7b7e8b3fc8a8c46043ef40bd3a40')
+
+prepare() {
+  cd "$srcdir/mozilla-release"
+  cp "$srcdir/mozconfig" .mozconfig
+
+  # fix libdir/sdkdir - fedora
+  patch -Np1 -i ../mozilla-pkgconfig.patch
+  patch -Np1 -i ../shared-libs.patch
+
+  # WebRTC build tries to execute "python" and expects Python 2
+  # Workaround taken from chromium PKGBUILD
+  mkdir "$srcdir/python2-path"
+  ln -s /usr/bin/python2 "$srcdir/python2-path/python"
+
+  # configure script misdetects the preprocessor without an optimization level
+  # https://bugs.archlinux.org/task/34644
+  sed -i '/ac_cpp=/s/$CPPFLAGS/& -O2/' configure
+}
+
+build() {
+  cd "$srcdir/mozilla-release"
+
+  export PATH="$srcdir/python2-path:$PATH"
+  export LDFLAGS="$LDFALGS -Wl,-rpath,/usr/lib/xulrunner-$pkgver"
+  export PYTHON="/usr/bin/python2"
+
+  make -j1 -f client.mk build
+}
+
+package() {
+  cd "$srcdir/mozilla-release"
+  make -j1 -f client.mk DESTDIR

[arch-commits] Commit in xulrunner/trunk (PKGBUILD rhbz-966424.patch)

2015-04-20 Thread Evangelos Foutras
Date: Tuesday, April 21, 2015 @ 03:27:09
  Author: foutrelis
Revision: 131763

upgpkg: xulrunner 37.0.2-1

- libvpx 1.4.0 rebuild.
- New upstream release.
- Drop patch that accepts p11-kit's trust stores; nss 3.18-3 uses the
  same token label as libnssckbi.

Modified:
  xulrunner/trunk/PKGBUILD
Deleted:
  xulrunner/trunk/rhbz-966424.patch

---+
 PKGBUILD  |   13 -
 rhbz-966424.patch |   23 ---
 2 files changed, 4 insertions(+), 32 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2015-04-21 01:02:47 UTC (rev 131762)
+++ PKGBUILD2015-04-21 01:27:09 UTC (rev 131763)
@@ -4,7 +4,7 @@
 # Contributor: Alexander Baldeck 
 
 pkgname=xulrunner
-pkgver=37.0.1
+pkgver=37.0.2
 pkgrel=1
 pkgdesc="Mozilla Runtime Environment"
 arch=('i686' 'x86_64')
@@ -15,15 +15,13 @@
 
source=(ftp://ftp.mozilla.org/pub/mozilla.org/xulrunner/releases/$pkgver/source/xulrunner-$pkgver.source.tar.bz2
 mozconfig
 mozilla-pkgconfig.patch
-shared-libs.patch
-rhbz-966424.patch)
+shared-libs.patch)
 options=('!emptydirs' '!makeflags' 'staticlibs')
 replaces=('xulrunner-oss')
-sha256sums=('b06a8c9bb04d128ab0637abf7dc1b2c36ffe8930c76e1f37e5abe18c48815952'
+sha256sums=('c08bc152c54bb26d21320ddc2fb57c29ea5f4d84f3d04434698d9d6172c2cd60'
 'df0e663e7f9246b84936882e564270fac541c6bb39450b759abe686e5c27a052'
 '1aa9ebe67542a2b8c28905d070829ada5b29438c6a7961f2b0cdd6b92d8b9f5c'
-'59d9fc421bc10a5515b73e159f44a72365bf7b7e8b3fc8a8c46043ef40bd3a40'
-'746cb474c5a2c26fc474256e430e035e604b71b27df1003d4af85018fa263f4a')
+'59d9fc421bc10a5515b73e159f44a72365bf7b7e8b3fc8a8c46043ef40bd3a40')
 
 prepare() {
   cd "$srcdir/mozilla-release"
@@ -33,9 +31,6 @@
   patch -Np1 -i ../mozilla-pkgconfig.patch
   patch -Np1 -i ../shared-libs.patch
 
-  # https://bugs.archlinux.org/task/41689
-  patch -Np1 -i ../rhbz-966424.patch
-
   # WebRTC build tries to execute "python" and expects Python 2
   # Workaround taken from chromium PKGBUILD
   mkdir "$srcdir/python2-path"

Deleted: rhbz-966424.patch
===
--- rhbz-966424.patch   2015-04-21 01:02:47 UTC (rev 131762)
+++ rhbz-966424.patch   2015-04-21 01:27:09 UTC (rev 131763)
@@ -1,23 +0,0 @@
 a/toolkit/modules/CertUtils.jsm
-+++ b/toolkit/modules/CertUtils.jsm
-@@ -170,17 +170,19 @@ this.checkCert =
-   issuerCert = issuerCert.QueryInterface(Ci.nsIX509Cert3);
-   var tokenNames = issuerCert.getAllTokenNames({});
- 
-   if (!tokenNames || !tokenNames.some(isBuiltinToken))
- throw new Ce(certNotBuiltInErr, Cr.NS_ERROR_ABORT);
- }
- 
- function isBuiltinToken(tokenName) {
--  return tokenName == "Builtin Object Token";
-+  return tokenName == "Builtin Object Token" ||
-+ tokenName == "Default Trust" ||
-+ tokenName == "System Trust";
- }
- 
- /**
-  * This class implements nsIBadCertListener.  Its job is to prevent "bad cert"
-  * security dialogs from being shown to the user.  It is better to simply fail
-  * if the certificate is bad. See bug 304286.
-  *
-  * @param  aAllowNonBuiltInCerts (optional)


[arch-commits] Commit in xulrunner/repos (16 files)

2015-04-04 Thread Connor Behan
Date: Sunday, April 5, 2015 @ 05:09:29
  Author: cbehan
Revision: 130697

archrelease: copy trunk to community-staging-i686, community-staging-x86_64

Added:
  xulrunner/repos/community-staging-i686/
  xulrunner/repos/community-staging-i686/PKGBUILD
(from rev 130696, xulrunner/trunk/PKGBUILD)
  xulrunner/repos/community-staging-i686/freetype-headers.patch
(from rev 130696, xulrunner/trunk/freetype-headers.patch)
  xulrunner/repos/community-staging-i686/mozconfig
(from rev 130696, xulrunner/trunk/mozconfig)
  xulrunner/repos/community-staging-i686/mozilla-pkgconfig.patch
(from rev 130696, xulrunner/trunk/mozilla-pkgconfig.patch)
  xulrunner/repos/community-staging-i686/rhbz-966424.patch
(from rev 130696, xulrunner/trunk/rhbz-966424.patch)
  xulrunner/repos/community-staging-i686/shared-libs.patch
(from rev 130696, xulrunner/trunk/shared-libs.patch)
  xulrunner/repos/community-staging-i686/unbreak-plugin-build.patch
(from rev 130696, xulrunner/trunk/unbreak-plugin-build.patch)
  xulrunner/repos/community-staging-x86_64/
  xulrunner/repos/community-staging-x86_64/PKGBUILD
(from rev 130696, xulrunner/trunk/PKGBUILD)
  xulrunner/repos/community-staging-x86_64/freetype-headers.patch
(from rev 130696, xulrunner/trunk/freetype-headers.patch)
  xulrunner/repos/community-staging-x86_64/mozconfig
(from rev 130696, xulrunner/trunk/mozconfig)
  xulrunner/repos/community-staging-x86_64/mozilla-pkgconfig.patch
(from rev 130696, xulrunner/trunk/mozilla-pkgconfig.patch)
  xulrunner/repos/community-staging-x86_64/rhbz-966424.patch
(from rev 130696, xulrunner/trunk/rhbz-966424.patch)
  xulrunner/repos/community-staging-x86_64/shared-libs.patch
(from rev 130696, xulrunner/trunk/shared-libs.patch)
  xulrunner/repos/community-staging-x86_64/unbreak-plugin-build.patch
(from rev 130696, xulrunner/trunk/unbreak-plugin-build.patch)

-+
 community-staging-i686/PKGBUILD |   77 ++
 community-staging-i686/freetype-headers.patch   |   66 +++
 community-staging-i686/mozconfig|   32 +++
 community-staging-i686/mozilla-pkgconfig.patch  |   40 +
 community-staging-i686/rhbz-966424.patch|   23 +
 community-staging-i686/shared-libs.patch|   12 ++
 community-staging-i686/unbreak-plugin-build.patch   |   76 +
 community-staging-x86_64/PKGBUILD   |   77 ++
 community-staging-x86_64/freetype-headers.patch |   66 +++
 community-staging-x86_64/mozconfig  |   32 +++
 community-staging-x86_64/mozilla-pkgconfig.patch|   40 +
 community-staging-x86_64/rhbz-966424.patch  |   23 +
 community-staging-x86_64/shared-libs.patch  |   12 ++
 community-staging-x86_64/unbreak-plugin-build.patch |   76 +
 14 files changed, 652 insertions(+)

Copied: xulrunner/repos/community-staging-i686/PKGBUILD (from rev 130696, 
xulrunner/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2015-04-05 03:09:29 UTC (rev 130697)
@@ -0,0 +1,77 @@
+# $Id$
+# Maintainer: Connor Behan 
+# Contributor: Jan de Groot 
+# Contributor: Alexander Baldeck 
+
+pkgname=xulrunner
+pkgver=37.0.1
+pkgrel=1
+pkgdesc="Mozilla Runtime Environment"
+arch=('i686' 'x86_64')
+license=('MPL' 'GPL' 'LGPL')
+depends=('gtk2' 'mozilla-common' 'nss' 'libxt' 'hunspell' 
'startup-notification' 'mime-types' 'dbus-glib' 'libpulse' 'libevent' 'libvpx' 
'icu' 'python2')
+makedepends=('zip' 'unzip' 'pkg-config' 'diffutils' 'yasm' 'mesa' 
'autoconf2.13' 'gst-plugins-base-libs')
+url="http://wiki.mozilla.org/XUL:Xul_Runner";
+source=(ftp://ftp.mozilla.org/pub/mozilla.org/xulrunner/releases/$pkgver/source/xulrunner-$pkgver.source.tar.bz2
+mozconfig
+mozilla-pkgconfig.patch
+shared-libs.patch
+rhbz-966424.patch)
+options=('!emptydirs' '!makeflags' 'staticlibs')
+replaces=('xulrunner-oss')
+sha256sums=('b06a8c9bb04d128ab0637abf7dc1b2c36ffe8930c76e1f37e5abe18c48815952'
+'df0e663e7f9246b84936882e564270fac541c6bb39450b759abe686e5c27a052'
+'1aa9ebe67542a2b8c28905d070829ada5b29438c6a7961f2b0cdd6b92d8b9f5c'
+'59d9fc421bc10a5515b73e159f44a72365bf7b7e8b3fc8a8c46043ef40bd3a40'
+'746cb474c5a2c26fc474256e430e035e604b71b27df1003d4af85018fa263f4a')
+
+prepare() {
+  cd "$srcdir/mozilla-release"
+  cp "$srcdir/mozconfig" .mozconfig
+
+  # fix libdir/sdkdir - fedora
+  patch -Np1 -i ../mozilla-pkgconfig.patch
+  patch -Np1 -i ../shared-libs.patch
+
+  # https://bugs.archlinux.org/task/41689
+  patch -Np1 -i ../rhbz-966424.patch
+
+  # WebRTC build tries to execute "python" and expects Python 2
+  # Workaround taken from chromium PKGBUILD
+  mkdir "$srcdir/python

[arch-commits] Commit in xulrunner/trunk (PKGBUILD)

2015-04-04 Thread Connor Behan
Date: Sunday, April 5, 2015 @ 05:08:38
  Author: cbehan
Revision: 130696

upgpkg: xulrunner 37.0.1-1

Update to 37.0.1

Modified:
  xulrunner/trunk/PKGBUILD

--+
 PKGBUILD |4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2015-04-04 22:48:11 UTC (rev 130695)
+++ PKGBUILD2015-04-05 03:08:38 UTC (rev 130696)
@@ -4,7 +4,7 @@
 # Contributor: Alexander Baldeck 
 
 pkgname=xulrunner
-pkgver=36.0
+pkgver=37.0.1
 pkgrel=1
 pkgdesc="Mozilla Runtime Environment"
 arch=('i686' 'x86_64')
@@ -19,7 +19,7 @@
 rhbz-966424.patch)
 options=('!emptydirs' '!makeflags' 'staticlibs')
 replaces=('xulrunner-oss')
-sha256sums=('b5db72bea7f5938892cab45373394bfb37210e4490281aad2d3f3ad07826fd61'
+sha256sums=('b06a8c9bb04d128ab0637abf7dc1b2c36ffe8930c76e1f37e5abe18c48815952'
 'df0e663e7f9246b84936882e564270fac541c6bb39450b759abe686e5c27a052'
 '1aa9ebe67542a2b8c28905d070829ada5b29438c6a7961f2b0cdd6b92d8b9f5c'
 '59d9fc421bc10a5515b73e159f44a72365bf7b7e8b3fc8a8c46043ef40bd3a40'


[arch-commits] Commit in xulrunner/repos (28 files)

2015-02-28 Thread Connor Behan
Date: Sunday, March 1, 2015 @ 01:31:19
  Author: cbehan
Revision: 128440

archrelease: copy trunk to community-i686, community-x86_64

Added:
  xulrunner/repos/community-i686/PKGBUILD
(from rev 128439, xulrunner/trunk/PKGBUILD)
  xulrunner/repos/community-i686/freetype-headers.patch
(from rev 128439, xulrunner/trunk/freetype-headers.patch)
  xulrunner/repos/community-i686/mozconfig
(from rev 128439, xulrunner/trunk/mozconfig)
  xulrunner/repos/community-i686/mozilla-pkgconfig.patch
(from rev 128439, xulrunner/trunk/mozilla-pkgconfig.patch)
  xulrunner/repos/community-i686/rhbz-966424.patch
(from rev 128439, xulrunner/trunk/rhbz-966424.patch)
  xulrunner/repos/community-i686/shared-libs.patch
(from rev 128439, xulrunner/trunk/shared-libs.patch)
  xulrunner/repos/community-i686/unbreak-plugin-build.patch
(from rev 128439, xulrunner/trunk/unbreak-plugin-build.patch)
  xulrunner/repos/community-x86_64/PKGBUILD
(from rev 128439, xulrunner/trunk/PKGBUILD)
  xulrunner/repos/community-x86_64/freetype-headers.patch
(from rev 128439, xulrunner/trunk/freetype-headers.patch)
  xulrunner/repos/community-x86_64/mozconfig
(from rev 128439, xulrunner/trunk/mozconfig)
  xulrunner/repos/community-x86_64/mozilla-pkgconfig.patch
(from rev 128439, xulrunner/trunk/mozilla-pkgconfig.patch)
  xulrunner/repos/community-x86_64/rhbz-966424.patch
(from rev 128439, xulrunner/trunk/rhbz-966424.patch)
  xulrunner/repos/community-x86_64/shared-libs.patch
(from rev 128439, xulrunner/trunk/shared-libs.patch)
  xulrunner/repos/community-x86_64/unbreak-plugin-build.patch
(from rev 128439, xulrunner/trunk/unbreak-plugin-build.patch)
Deleted:
  xulrunner/repos/community-i686/PKGBUILD
  xulrunner/repos/community-i686/freetype-headers.patch
  xulrunner/repos/community-i686/mozconfig
  xulrunner/repos/community-i686/mozilla-pkgconfig.patch
  xulrunner/repos/community-i686/rhbz-966424.patch
  xulrunner/repos/community-i686/shared-libs.patch
  xulrunner/repos/community-i686/unbreak-plugin-build.patch
  xulrunner/repos/community-x86_64/PKGBUILD
  xulrunner/repos/community-x86_64/freetype-headers.patch
  xulrunner/repos/community-x86_64/mozconfig
  xulrunner/repos/community-x86_64/mozilla-pkgconfig.patch
  xulrunner/repos/community-x86_64/rhbz-966424.patch
  xulrunner/repos/community-x86_64/shared-libs.patch
  xulrunner/repos/community-x86_64/unbreak-plugin-build.patch

-+
 /PKGBUILD   |  154 ++
 /freetype-headers.patch |  132 ++
 /mozconfig  |   64 ++
 /mozilla-pkgconfig.patch|   80 +
 /rhbz-966424.patch  |   46 +++
 /shared-libs.patch  |   24 
 /unbreak-plugin-build.patch |  152 +
 community-i686/PKGBUILD |   77 -
 community-i686/freetype-headers.patch   |   66 ---
 community-i686/mozconfig|   32 -
 community-i686/mozilla-pkgconfig.patch  |   40 --
 community-i686/rhbz-966424.patch|   23 ---
 community-i686/shared-libs.patch|   12 --
 community-i686/unbreak-plugin-build.patch   |   76 
 community-x86_64/PKGBUILD   |   77 -
 community-x86_64/freetype-headers.patch |   66 ---
 community-x86_64/mozconfig  |   32 -
 community-x86_64/mozilla-pkgconfig.patch|   40 --
 community-x86_64/rhbz-966424.patch  |   23 ---
 community-x86_64/shared-libs.patch  |   12 --
 community-x86_64/unbreak-plugin-build.patch |   76 
 21 files changed, 652 insertions(+), 652 deletions(-)

The diff is longer than the limit of 200KB.
Use svn diff -r 128439:128440 to see the changes.


[arch-commits] Commit in xulrunner/trunk (PKGBUILD)

2015-02-28 Thread Connor Behan
Date: Sunday, March 1, 2015 @ 01:30:28
  Author: cbehan
Revision: 128439

upgpkg: xulrunner 36.0-1

Update to 36.0-1

Modified:
  xulrunner/trunk/PKGBUILD

--+
 PKGBUILD |4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2015-02-28 21:24:46 UTC (rev 128438)
+++ PKGBUILD2015-03-01 00:30:28 UTC (rev 128439)
@@ -4,7 +4,7 @@
 # Contributor: Alexander Baldeck 
 
 pkgname=xulrunner
-pkgver=35.0
+pkgver=36.0
 pkgrel=1
 pkgdesc="Mozilla Runtime Environment"
 arch=('i686' 'x86_64')
@@ -19,7 +19,7 @@
 rhbz-966424.patch)
 options=('!emptydirs' '!makeflags' 'staticlibs')
 replaces=('xulrunner-oss')
-sha256sums=('4b0689513f2ecffba68b17bff2c36f1b227148d44db0eb7068871ff97422af92'
+sha256sums=('b5db72bea7f5938892cab45373394bfb37210e4490281aad2d3f3ad07826fd61'
 'df0e663e7f9246b84936882e564270fac541c6bb39450b759abe686e5c27a052'
 '1aa9ebe67542a2b8c28905d070829ada5b29438c6a7961f2b0cdd6b92d8b9f5c'
 '59d9fc421bc10a5515b73e159f44a72365bf7b7e8b3fc8a8c46043ef40bd3a40'


[arch-commits] Commit in xulrunner/repos (28 files)

2015-01-16 Thread Connor Behan
Date: Saturday, January 17, 2015 @ 00:53:43
  Author: cbehan
Revision: 126019

archrelease: copy trunk to community-i686, community-x86_64

Added:
  xulrunner/repos/community-i686/PKGBUILD
(from rev 126018, xulrunner/trunk/PKGBUILD)
  xulrunner/repos/community-i686/freetype-headers.patch
(from rev 126018, xulrunner/trunk/freetype-headers.patch)
  xulrunner/repos/community-i686/mozconfig
(from rev 126018, xulrunner/trunk/mozconfig)
  xulrunner/repos/community-i686/mozilla-pkgconfig.patch
(from rev 126018, xulrunner/trunk/mozilla-pkgconfig.patch)
  xulrunner/repos/community-i686/rhbz-966424.patch
(from rev 126018, xulrunner/trunk/rhbz-966424.patch)
  xulrunner/repos/community-i686/shared-libs.patch
(from rev 126018, xulrunner/trunk/shared-libs.patch)
  xulrunner/repos/community-i686/unbreak-plugin-build.patch
(from rev 126018, xulrunner/trunk/unbreak-plugin-build.patch)
  xulrunner/repos/community-x86_64/PKGBUILD
(from rev 126018, xulrunner/trunk/PKGBUILD)
  xulrunner/repos/community-x86_64/freetype-headers.patch
(from rev 126018, xulrunner/trunk/freetype-headers.patch)
  xulrunner/repos/community-x86_64/mozconfig
(from rev 126018, xulrunner/trunk/mozconfig)
  xulrunner/repos/community-x86_64/mozilla-pkgconfig.patch
(from rev 126018, xulrunner/trunk/mozilla-pkgconfig.patch)
  xulrunner/repos/community-x86_64/rhbz-966424.patch
(from rev 126018, xulrunner/trunk/rhbz-966424.patch)
  xulrunner/repos/community-x86_64/shared-libs.patch
(from rev 126018, xulrunner/trunk/shared-libs.patch)
  xulrunner/repos/community-x86_64/unbreak-plugin-build.patch
(from rev 126018, xulrunner/trunk/unbreak-plugin-build.patch)
Deleted:
  xulrunner/repos/community-i686/PKGBUILD
  xulrunner/repos/community-i686/freetype-headers.patch
  xulrunner/repos/community-i686/mozconfig
  xulrunner/repos/community-i686/mozilla-pkgconfig.patch
  xulrunner/repos/community-i686/rhbz-966424.patch
  xulrunner/repos/community-i686/shared-libs.patch
  xulrunner/repos/community-i686/unbreak-plugin-build.patch
  xulrunner/repos/community-x86_64/PKGBUILD
  xulrunner/repos/community-x86_64/freetype-headers.patch
  xulrunner/repos/community-x86_64/mozconfig
  xulrunner/repos/community-x86_64/mozilla-pkgconfig.patch
  xulrunner/repos/community-x86_64/rhbz-966424.patch
  xulrunner/repos/community-x86_64/shared-libs.patch
  xulrunner/repos/community-x86_64/unbreak-plugin-build.patch

-+
 /PKGBUILD   |  154 ++
 /freetype-headers.patch |  132 ++
 /mozconfig  |   64 ++
 /mozilla-pkgconfig.patch|   80 +
 /rhbz-966424.patch  |   46 +++
 /shared-libs.patch  |   24 
 /unbreak-plugin-build.patch |  152 +
 community-i686/PKGBUILD |   77 -
 community-i686/freetype-headers.patch   |   66 ---
 community-i686/mozconfig|   32 -
 community-i686/mozilla-pkgconfig.patch  |   40 --
 community-i686/rhbz-966424.patch|   23 ---
 community-i686/shared-libs.patch|   12 --
 community-i686/unbreak-plugin-build.patch   |   76 
 community-x86_64/PKGBUILD   |   77 -
 community-x86_64/freetype-headers.patch |   66 ---
 community-x86_64/mozconfig  |   32 -
 community-x86_64/mozilla-pkgconfig.patch|   40 --
 community-x86_64/rhbz-966424.patch  |   23 ---
 community-x86_64/shared-libs.patch  |   12 --
 community-x86_64/unbreak-plugin-build.patch |   76 
 21 files changed, 652 insertions(+), 652 deletions(-)

The diff is longer than the limit of 200KB.
Use svn diff -r 126018:126019 to see the changes.


[arch-commits] Commit in xulrunner/trunk (PKGBUILD)

2015-01-16 Thread Connor Behan
Date: Saturday, January 17, 2015 @ 00:52:42
  Author: cbehan
Revision: 126018

upgpkg: xulrunner 35.0-1

Update to 35.0

Modified:
  xulrunner/trunk/PKGBUILD

--+
 PKGBUILD |4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2015-01-16 22:02:19 UTC (rev 126017)
+++ PKGBUILD2015-01-16 23:52:42 UTC (rev 126018)
@@ -4,7 +4,7 @@
 # Contributor: Alexander Baldeck 
 
 pkgname=xulrunner
-pkgver=34.0.5
+pkgver=35.0
 pkgrel=1
 pkgdesc="Mozilla Runtime Environment"
 arch=('i686' 'x86_64')
@@ -19,7 +19,7 @@
 rhbz-966424.patch)
 options=('!emptydirs' '!makeflags' 'staticlibs')
 replaces=('xulrunner-oss')
-sha256sums=('581c2f82f48e2331fdccea33bdbc4d8951694319ebac11eeca30172f622955de'
+sha256sums=('4b0689513f2ecffba68b17bff2c36f1b227148d44db0eb7068871ff97422af92'
 'df0e663e7f9246b84936882e564270fac541c6bb39450b759abe686e5c27a052'
 '1aa9ebe67542a2b8c28905d070829ada5b29438c6a7961f2b0cdd6b92d8b9f5c'
 '59d9fc421bc10a5515b73e159f44a72365bf7b7e8b3fc8a8c46043ef40bd3a40'


[arch-commits] Commit in xulrunner/repos (28 files)

2014-12-03 Thread Connor Behan
Date: Wednesday, December 3, 2014 @ 23:05:06
  Author: cbehan
Revision: 123423

archrelease: copy trunk to community-i686, community-x86_64

Added:
  xulrunner/repos/community-i686/PKGBUILD
(from rev 123422, xulrunner/trunk/PKGBUILD)
  xulrunner/repos/community-i686/freetype-headers.patch
(from rev 123422, xulrunner/trunk/freetype-headers.patch)
  xulrunner/repos/community-i686/mozconfig
(from rev 123422, xulrunner/trunk/mozconfig)
  xulrunner/repos/community-i686/mozilla-pkgconfig.patch
(from rev 123422, xulrunner/trunk/mozilla-pkgconfig.patch)
  xulrunner/repos/community-i686/rhbz-966424.patch
(from rev 123422, xulrunner/trunk/rhbz-966424.patch)
  xulrunner/repos/community-i686/shared-libs.patch
(from rev 123422, xulrunner/trunk/shared-libs.patch)
  xulrunner/repos/community-i686/unbreak-plugin-build.patch
(from rev 123422, xulrunner/trunk/unbreak-plugin-build.patch)
  xulrunner/repos/community-x86_64/PKGBUILD
(from rev 123422, xulrunner/trunk/PKGBUILD)
  xulrunner/repos/community-x86_64/freetype-headers.patch
(from rev 123422, xulrunner/trunk/freetype-headers.patch)
  xulrunner/repos/community-x86_64/mozconfig
(from rev 123422, xulrunner/trunk/mozconfig)
  xulrunner/repos/community-x86_64/mozilla-pkgconfig.patch
(from rev 123422, xulrunner/trunk/mozilla-pkgconfig.patch)
  xulrunner/repos/community-x86_64/rhbz-966424.patch
(from rev 123422, xulrunner/trunk/rhbz-966424.patch)
  xulrunner/repos/community-x86_64/shared-libs.patch
(from rev 123422, xulrunner/trunk/shared-libs.patch)
  xulrunner/repos/community-x86_64/unbreak-plugin-build.patch
(from rev 123422, xulrunner/trunk/unbreak-plugin-build.patch)
Deleted:
  xulrunner/repos/community-i686/PKGBUILD
  xulrunner/repos/community-i686/freetype-headers.patch
  xulrunner/repos/community-i686/mozconfig
  xulrunner/repos/community-i686/mozilla-pkgconfig.patch
  xulrunner/repos/community-i686/rhbz-966424.patch
  xulrunner/repos/community-i686/shared-libs.patch
  xulrunner/repos/community-i686/unbreak-plugin-build.patch
  xulrunner/repos/community-x86_64/PKGBUILD
  xulrunner/repos/community-x86_64/freetype-headers.patch
  xulrunner/repos/community-x86_64/mozconfig
  xulrunner/repos/community-x86_64/mozilla-pkgconfig.patch
  xulrunner/repos/community-x86_64/rhbz-966424.patch
  xulrunner/repos/community-x86_64/shared-libs.patch
  xulrunner/repos/community-x86_64/unbreak-plugin-build.patch

-+
 /PKGBUILD   |  154 ++
 /freetype-headers.patch |  132 ++
 /mozconfig  |   64 ++
 /mozilla-pkgconfig.patch|   80 +
 /rhbz-966424.patch  |   46 +++
 /shared-libs.patch  |   24 
 /unbreak-plugin-build.patch |  152 +
 community-i686/PKGBUILD |   77 -
 community-i686/freetype-headers.patch   |   66 ---
 community-i686/mozconfig|   32 -
 community-i686/mozilla-pkgconfig.patch  |   40 --
 community-i686/rhbz-966424.patch|   23 ---
 community-i686/shared-libs.patch|   12 --
 community-i686/unbreak-plugin-build.patch   |   76 
 community-x86_64/PKGBUILD   |   77 -
 community-x86_64/freetype-headers.patch |   66 ---
 community-x86_64/mozconfig  |   32 -
 community-x86_64/mozilla-pkgconfig.patch|   40 --
 community-x86_64/rhbz-966424.patch  |   23 ---
 community-x86_64/shared-libs.patch  |   12 --
 community-x86_64/unbreak-plugin-build.patch |   76 
 21 files changed, 652 insertions(+), 652 deletions(-)

The diff is longer than the limit of 200KB.
Use svn diff -r 123422:123423 to see the changes.


[arch-commits] Commit in xulrunner/trunk (PKGBUILD mozilla-pkgconfig.patch)

2014-12-03 Thread Connor Behan
Date: Wednesday, December 3, 2014 @ 23:04:15
  Author: cbehan
Revision: 123422

upgpkg: xulrunner 34.0.5-1

Update to 34.0.5-1

Modified:
  xulrunner/trunk/PKGBUILD
  xulrunner/trunk/mozilla-pkgconfig.patch

-+
 PKGBUILD|8 
 mozilla-pkgconfig.patch |4 ++--
 2 files changed, 6 insertions(+), 6 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2014-12-03 21:57:33 UTC (rev 123421)
+++ PKGBUILD2014-12-03 22:04:15 UTC (rev 123422)
@@ -4,8 +4,8 @@
 # Contributor: Alexander Baldeck 
 
 pkgname=xulrunner
-pkgver=33.0
-pkgrel=2
+pkgver=34.0.5
+pkgrel=1
 pkgdesc="Mozilla Runtime Environment"
 arch=('i686' 'x86_64')
 license=('MPL' 'GPL' 'LGPL')
@@ -19,9 +19,9 @@
 rhbz-966424.patch)
 options=('!emptydirs' '!makeflags' 'staticlibs')
 replaces=('xulrunner-oss')
-sha256sums=('99402cf84949e06bac72d8abbdecde57e8af465727001ed6849a34632f20bcdb'
+sha256sums=('581c2f82f48e2331fdccea33bdbc4d8951694319ebac11eeca30172f622955de'
 'df0e663e7f9246b84936882e564270fac541c6bb39450b759abe686e5c27a052'
-'23485d937035648add27a7657f6934dc5b295e886cdb0506eebd02a43d07f269'
+'1aa9ebe67542a2b8c28905d070829ada5b29438c6a7961f2b0cdd6b92d8b9f5c'
 '59d9fc421bc10a5515b73e159f44a72365bf7b7e8b3fc8a8c46043ef40bd3a40'
 '746cb474c5a2c26fc474256e430e035e604b71b27df1003d4af85018fa263f4a')
 

Modified: mozilla-pkgconfig.patch
===
--- mozilla-pkgconfig.patch 2014-12-03 21:57:33 UTC (rev 123421)
+++ mozilla-pkgconfig.patch 2014-12-03 22:04:15 UTC (rev 123422)
@@ -36,5 +36,5 @@
  Version: %MOZILLA_VERSION%
  Requires: %NSPR_NAME% >= %NSPR_VERSION%
  Libs: -L${sdkdir}/lib %MOZ_JS_LINK%
--Cflags: -I${includedir} -DXP_UNIX -DJS_THREADSAFE
-+Cflags: -I${includedir} -I${includedir}/js -DXP_UNIX -DJS_THREADSAFE
+-Cflags: -I${includedir} -DXP_UNIX
++Cflags: -I${includedir} -I${includedir}/js -DXP_UNIX


[arch-commits] Commit in xulrunner/repos (28 files)

2014-10-20 Thread Connor Behan
Date: Tuesday, October 21, 2014 @ 04:53:43
  Author: cbehan
Revision: 121114

archrelease: copy trunk to community-i686, community-x86_64

Added:
  xulrunner/repos/community-i686/PKGBUILD
(from rev 121113, xulrunner/trunk/PKGBUILD)
  xulrunner/repos/community-i686/freetype-headers.patch
(from rev 121113, xulrunner/trunk/freetype-headers.patch)
  xulrunner/repos/community-i686/mozconfig
(from rev 121113, xulrunner/trunk/mozconfig)
  xulrunner/repos/community-i686/mozilla-pkgconfig.patch
(from rev 121113, xulrunner/trunk/mozilla-pkgconfig.patch)
  xulrunner/repos/community-i686/rhbz-966424.patch
(from rev 121113, xulrunner/trunk/rhbz-966424.patch)
  xulrunner/repos/community-i686/shared-libs.patch
(from rev 121113, xulrunner/trunk/shared-libs.patch)
  xulrunner/repos/community-i686/unbreak-plugin-build.patch
(from rev 121113, xulrunner/trunk/unbreak-plugin-build.patch)
  xulrunner/repos/community-x86_64/PKGBUILD
(from rev 121113, xulrunner/trunk/PKGBUILD)
  xulrunner/repos/community-x86_64/freetype-headers.patch
(from rev 121113, xulrunner/trunk/freetype-headers.patch)
  xulrunner/repos/community-x86_64/mozconfig
(from rev 121113, xulrunner/trunk/mozconfig)
  xulrunner/repos/community-x86_64/mozilla-pkgconfig.patch
(from rev 121113, xulrunner/trunk/mozilla-pkgconfig.patch)
  xulrunner/repos/community-x86_64/rhbz-966424.patch
(from rev 121113, xulrunner/trunk/rhbz-966424.patch)
  xulrunner/repos/community-x86_64/shared-libs.patch
(from rev 121113, xulrunner/trunk/shared-libs.patch)
  xulrunner/repos/community-x86_64/unbreak-plugin-build.patch
(from rev 121113, xulrunner/trunk/unbreak-plugin-build.patch)
Deleted:
  xulrunner/repos/community-i686/PKGBUILD
  xulrunner/repos/community-i686/freetype-headers.patch
  xulrunner/repos/community-i686/mozconfig
  xulrunner/repos/community-i686/mozilla-pkgconfig.patch
  xulrunner/repos/community-i686/rhbz-966424.patch
  xulrunner/repos/community-i686/shared-libs.patch
  xulrunner/repos/community-i686/unbreak-plugin-build.patch
  xulrunner/repos/community-x86_64/PKGBUILD
  xulrunner/repos/community-x86_64/freetype-headers.patch
  xulrunner/repos/community-x86_64/mozconfig
  xulrunner/repos/community-x86_64/mozilla-pkgconfig.patch
  xulrunner/repos/community-x86_64/rhbz-966424.patch
  xulrunner/repos/community-x86_64/shared-libs.patch
  xulrunner/repos/community-x86_64/unbreak-plugin-build.patch

-+
 /PKGBUILD   |  154 ++
 /freetype-headers.patch |  132 ++
 /mozconfig  |   64 ++
 /mozilla-pkgconfig.patch|   80 +
 /rhbz-966424.patch  |   46 +++
 /shared-libs.patch  |   24 
 /unbreak-plugin-build.patch |  152 +
 community-i686/PKGBUILD |   77 -
 community-i686/freetype-headers.patch   |   66 ---
 community-i686/mozconfig|   32 -
 community-i686/mozilla-pkgconfig.patch  |   40 --
 community-i686/rhbz-966424.patch|   23 ---
 community-i686/shared-libs.patch|   12 --
 community-i686/unbreak-plugin-build.patch   |   76 
 community-x86_64/PKGBUILD   |   77 -
 community-x86_64/freetype-headers.patch |   66 ---
 community-x86_64/mozconfig  |   32 -
 community-x86_64/mozilla-pkgconfig.patch|   40 --
 community-x86_64/rhbz-966424.patch  |   23 ---
 community-x86_64/shared-libs.patch  |   12 --
 community-x86_64/unbreak-plugin-build.patch |   76 
 21 files changed, 652 insertions(+), 652 deletions(-)

The diff is longer than the limit of 200KB.
Use svn diff -r 121113:121114 to see the changes.


[arch-commits] Commit in xulrunner/repos/community-i686 (14 files)

2014-10-20 Thread Connor Behan
Date: Tuesday, October 21, 2014 @ 04:42:35
  Author: cbehan
Revision: 121113

Update to 33.0-2

Added:
  xulrunner/repos/community-i686/PKGBUILD
(from rev 121112, xulrunner/trunk/PKGBUILD)
  xulrunner/repos/community-i686/freetype-headers.patch
(from rev 121112, xulrunner/trunk/freetype-headers.patch)
  xulrunner/repos/community-i686/mozconfig
(from rev 121112, xulrunner/trunk/mozconfig)
  xulrunner/repos/community-i686/mozilla-pkgconfig.patch
(from rev 121112, xulrunner/trunk/mozilla-pkgconfig.patch)
  xulrunner/repos/community-i686/rhbz-966424.patch
(from rev 121112, xulrunner/trunk/rhbz-966424.patch)
  xulrunner/repos/community-i686/shared-libs.patch
(from rev 121112, xulrunner/trunk/shared-libs.patch)
  xulrunner/repos/community-i686/unbreak-plugin-build.patch
(from rev 121112, xulrunner/trunk/unbreak-plugin-build.patch)
Deleted:
  xulrunner/repos/community-i686/PKGBUILD
  xulrunner/repos/community-i686/freetype-headers.patch
  xulrunner/repos/community-i686/mozconfig
  xulrunner/repos/community-i686/mozilla-pkgconfig.patch
  xulrunner/repos/community-i686/rhbz-966424.patch
  xulrunner/repos/community-i686/shared-libs.patch
  xulrunner/repos/community-i686/unbreak-plugin-build.patch

+
 PKGBUILD   |  154 +--
 freetype-headers.patch |  132 ++--
 mozconfig  |   64 -
 mozilla-pkgconfig.patch|   80 +++---
 rhbz-966424.patch  |   46 ++--
 shared-libs.patch  |   24 +++---
 unbreak-plugin-build.patch |  152 +-
 7 files changed, 326 insertions(+), 326 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2014-10-21 02:29:46 UTC (rev 121112)
+++ PKGBUILD2014-10-21 02:42:35 UTC (rev 121113)
@@ -1,77 +0,0 @@
-# $Id$
-# Maintainer: Connor Behan 
-# Contributor: Jan de Groot 
-# Contributor: Alexander Baldeck 
-
-pkgname=xulrunner
-pkgver=33.0
-pkgrel=1
-pkgdesc="Mozilla Runtime Environment"
-arch=('i686' 'x86_64')
-license=('MPL' 'GPL' 'LGPL')
-depends=('gtk2' 'mozilla-common' 'nss' 'libxt' 'hunspell' 
'startup-notification' 'mime-types' 'dbus-glib' 'libpulse' 'libevent' 'libvpx' 
'icu' 'python2')
-makedepends=('zip' 'unzip' 'pkg-config' 'diffutils' 'yasm' 'mesa' 
'autoconf2.13' 'gst-plugins-base-libs')
-url="http://wiki.mozilla.org/XUL:Xul_Runner";
-source=(ftp://ftp.mozilla.org/pub/mozilla.org/xulrunner/releases/$pkgver/source/xulrunner-$pkgver.source.tar.bz2
-mozconfig
-mozilla-pkgconfig.patch
-shared-libs.patch
-rhbz-966424.patch)
-options=('!emptydirs' '!makeflags' 'staticlibs')
-replaces=('xulrunner-oss')
-sha256sums=('99402cf84949e06bac72d8abbdecde57e8af465727001ed6849a34632f20bcdb'
-'df0e663e7f9246b84936882e564270fac541c6bb39450b759abe686e5c27a052'
-'23485d937035648add27a7657f6934dc5b295e886cdb0506eebd02a43d07f269'
-'59d9fc421bc10a5515b73e159f44a72365bf7b7e8b3fc8a8c46043ef40bd3a40'
-'746cb474c5a2c26fc474256e430e035e604b71b27df1003d4af85018fa263f4a')
-
-prepare() {
-  cd "$srcdir/mozilla-release"
-  cp "$srcdir/mozconfig" .mozconfig
-
-  # fix libdir/sdkdir - fedora
-  patch -Np1 -i ../mozilla-pkgconfig.patch
-  patch -Np1 -i ../shared-libs.patch
-
-  # https://bugs.archlinux.org/task/41689
-  patch -Np1 -i ../rhbz-966424.patch
-
-  # WebRTC build tries to execute "python" and expects Python 2
-  # Workaround taken from chromium PKGBUILD
-  mkdir "$srcdir/python2-path"
-  ln -s /usr/bin/python2 "$srcdir/python2-path/python"
-
-  # configure script misdetects the preprocessor without an optimization level
-  # https://bugs.archlinux.org/task/34644
-  sed -i '/ac_cpp=/s/$CPPFLAGS/& -O2/' configure
-}
-
-build() {
-  cd "$srcdir/mozilla-release"
-
-  export PATH="$srcdir/python2-path:$PATH"
-  export LDFLAGS="$LDFALGS -Wl,-rpath,/usr/lib/xulrunner-$pkgver"
-  export PYTHON="/usr/bin/python2"
-
-  make -j1 -f client.mk build
-}
-
-package() {
-  cd "$srcdir/mozilla-release"
-  make -j1 -f client.mk DESTDIR="$pkgdir" install
-
-  # Use system-provided dictionaries
-  rm -rf "$pkgdir"/usr/lib/xulrunner-$pkgver/{dictionaries,hyphenation}
-  ln -sf /usr/share/hunspell "$pkgdir/usr/lib/xulrunner-$pkgver/dictionaries"
-  ln -sf /usr/share/hyphen "$pkgdir/usr/lib/xulrunner-$pkgver/hyphenation"
-
-  # add xulrunner library path to ld.so.conf
-  install -d $pkgdir/etc/ld.so.conf.d
-  echo "/usr/lib/xulrunner-$pkgver" > $pkgdir/etc/ld.so.conf.d/xulrunner.conf
-
-  chmod +x "${pkgdir}/usr/lib/xulrunner-devel-$pkgver/sdk/bin/xpt.py"
-  chmod +x "${pkgdir}/usr/lib/xulrunner-devel-$pkgver/sdk/bin/xpcshell"
-  ln -s /usr/lib/xulrunner-devel-$pkgver/sdk/bin/xpcshell 
"${pkgdir}/usr/lib/xulrunner-$pkgver/xpcshell"
-  sed -i 's|!/usr/bin/env python$|!/usr/bin/env python2|' \
-
"$pkgdir"/usr/lib/xulrunner-devel-$pkgver/

[arch-commits] Commit in xulrunner/trunk (PKGBUILD)

2014-10-20 Thread Connor Behan
Date: Tuesday, October 21, 2014 @ 04:29:46
  Author: cbehan
Revision: 121112

upgpkg: xulrunner 33.0-2

Modified:
  xulrunner/trunk/PKGBUILD

--+
 PKGBUILD |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

Modified: PKGBUILD
===
--- PKGBUILD2014-10-20 23:28:08 UTC (rev 12)
+++ PKGBUILD2014-10-21 02:29:46 UTC (rev 121112)
@@ -5,7 +5,7 @@
 
 pkgname=xulrunner
 pkgver=33.0
-pkgrel=1
+pkgrel=2
 pkgdesc="Mozilla Runtime Environment"
 arch=('i686' 'x86_64')
 license=('MPL' 'GPL' 'LGPL')


[arch-commits] Commit in xulrunner/repos (28 files)

2014-10-18 Thread Connor Behan
Date: Sunday, October 19, 2014 @ 06:16:41
  Author: cbehan
Revision: 120971

archrelease: copy trunk to community-testing-i686, community-testing-x86_64

Added:
  xulrunner/repos/community-testing-i686/PKGBUILD
(from rev 120970, xulrunner/trunk/PKGBUILD)
  xulrunner/repos/community-testing-i686/freetype-headers.patch
(from rev 120970, xulrunner/trunk/freetype-headers.patch)
  xulrunner/repos/community-testing-i686/mozconfig
(from rev 120970, xulrunner/trunk/mozconfig)
  xulrunner/repos/community-testing-i686/mozilla-pkgconfig.patch
(from rev 120970, xulrunner/trunk/mozilla-pkgconfig.patch)
  xulrunner/repos/community-testing-i686/rhbz-966424.patch
(from rev 120970, xulrunner/trunk/rhbz-966424.patch)
  xulrunner/repos/community-testing-i686/shared-libs.patch
(from rev 120970, xulrunner/trunk/shared-libs.patch)
  xulrunner/repos/community-testing-i686/unbreak-plugin-build.patch
(from rev 120970, xulrunner/trunk/unbreak-plugin-build.patch)
  xulrunner/repos/community-testing-x86_64/PKGBUILD
(from rev 120970, xulrunner/trunk/PKGBUILD)
  xulrunner/repos/community-testing-x86_64/freetype-headers.patch
(from rev 120970, xulrunner/trunk/freetype-headers.patch)
  xulrunner/repos/community-testing-x86_64/mozconfig
(from rev 120970, xulrunner/trunk/mozconfig)
  xulrunner/repos/community-testing-x86_64/mozilla-pkgconfig.patch
(from rev 120970, xulrunner/trunk/mozilla-pkgconfig.patch)
  xulrunner/repos/community-testing-x86_64/rhbz-966424.patch
(from rev 120970, xulrunner/trunk/rhbz-966424.patch)
  xulrunner/repos/community-testing-x86_64/shared-libs.patch
(from rev 120970, xulrunner/trunk/shared-libs.patch)
  xulrunner/repos/community-testing-x86_64/unbreak-plugin-build.patch
(from rev 120970, xulrunner/trunk/unbreak-plugin-build.patch)
Deleted:
  xulrunner/repos/community-testing-i686/PKGBUILD
  xulrunner/repos/community-testing-i686/freetype-headers.patch
  xulrunner/repos/community-testing-i686/mozconfig
  xulrunner/repos/community-testing-i686/mozilla-pkgconfig.patch
  xulrunner/repos/community-testing-i686/rhbz-966424.patch
  xulrunner/repos/community-testing-i686/shared-libs.patch
  xulrunner/repos/community-testing-i686/unbreak-plugin-build.patch
  xulrunner/repos/community-testing-x86_64/PKGBUILD
  xulrunner/repos/community-testing-x86_64/freetype-headers.patch
  xulrunner/repos/community-testing-x86_64/mozconfig
  xulrunner/repos/community-testing-x86_64/mozilla-pkgconfig.patch
  xulrunner/repos/community-testing-x86_64/rhbz-966424.patch
  xulrunner/repos/community-testing-x86_64/shared-libs.patch
  xulrunner/repos/community-testing-x86_64/unbreak-plugin-build.patch

-+
 /PKGBUILD   |  154 ++
 /freetype-headers.patch |  132 +++
 /mozconfig  |   64 +++
 /mozilla-pkgconfig.patch|   80 +
 /rhbz-966424.patch  |   46 +
 /shared-libs.patch  |   24 ++
 /unbreak-plugin-build.patch |  152 +
 community-testing-i686/PKGBUILD |   77 -
 community-testing-i686/freetype-headers.patch   |   66 ---
 community-testing-i686/mozconfig|   32 ---
 community-testing-i686/mozilla-pkgconfig.patch  |   40 
 community-testing-i686/rhbz-966424.patch|   23 --
 community-testing-i686/shared-libs.patch|   14 -
 community-testing-i686/unbreak-plugin-build.patch   |   76 
 community-testing-x86_64/PKGBUILD   |   77 -
 community-testing-x86_64/freetype-headers.patch |   66 ---
 community-testing-x86_64/mozconfig  |   32 ---
 community-testing-x86_64/mozilla-pkgconfig.patch|   40 
 community-testing-x86_64/rhbz-966424.patch  |   23 --
 community-testing-x86_64/shared-libs.patch  |   14 -
 community-testing-x86_64/unbreak-plugin-build.patch |   76 
 21 files changed, 652 insertions(+), 656 deletions(-)

The diff is longer than the limit of 200KB.
Use svn diff -r 120970:120971 to see the changes.


[arch-commits] Commit in xulrunner/trunk (PKGBUILD shared-libs.patch)

2014-10-18 Thread Connor Behan
Date: Sunday, October 19, 2014 @ 05:42:44
  Author: cbehan
Revision: 120968

Update to 33.0-1

Modified:
  xulrunner/trunk/PKGBUILD
  xulrunner/trunk/shared-libs.patch

---+
 PKGBUILD  |   10 +-
 shared-libs.patch |8 +++-
 2 files changed, 8 insertions(+), 10 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2014-10-19 02:04:17 UTC (rev 120967)
+++ PKGBUILD2014-10-19 03:42:44 UTC (rev 120968)
@@ -4,8 +4,8 @@
 # Contributor: Alexander Baldeck 
 
 pkgname=xulrunner
-pkgver=32.0
-pkgrel=2
+pkgver=33.0
+pkgrel=1
 pkgdesc="Mozilla Runtime Environment"
 arch=('i686' 'x86_64')
 license=('MPL' 'GPL' 'LGPL')
@@ -19,10 +19,10 @@
 rhbz-966424.patch)
 options=('!emptydirs' '!makeflags' 'staticlibs')
 replaces=('xulrunner-oss')
-sha256sums=('769671c97bfa5ab0719cc792a55109540287939e11d515e125769b5104056a21'
+sha256sums=('99402cf84949e06bac72d8abbdecde57e8af465727001ed6849a34632f20bcdb'
 'df0e663e7f9246b84936882e564270fac541c6bb39450b759abe686e5c27a052'
 '23485d937035648add27a7657f6934dc5b295e886cdb0506eebd02a43d07f269'
-'3729eb95167f704e627cfd4ef5ce24414c6c33df68d2fd968d315f1873d6dc7c'
+'59d9fc421bc10a5515b73e159f44a72365bf7b7e8b3fc8a8c46043ef40bd3a40'
 '746cb474c5a2c26fc474256e430e035e604b71b27df1003d4af85018fa263f4a')
 
 prepare() {
@@ -29,7 +29,7 @@
   cd "$srcdir/mozilla-release"
   cp "$srcdir/mozconfig" .mozconfig
 
-  #fix libdir/sdkdir - fedora
+  # fix libdir/sdkdir - fedora
   patch -Np1 -i ../mozilla-pkgconfig.patch
   patch -Np1 -i ../shared-libs.patch
 

Modified: shared-libs.patch
===
--- shared-libs.patch   2014-10-19 02:04:17 UTC (rev 120967)
+++ shared-libs.patch   2014-10-19 03:42:44 UTC (rev 120968)
@@ -1,14 +1,12 @@
 diff -Nur mozilla-release.orig/browser/installer/Makefile.in 
mozilla-release/browser/installer/Makefile.in
 --- mozilla-release.orig/browser/installer/Makefile.in 2012-07-17 
16:19:29.480356991 +
 +++ mozilla-release/browser/installer/Makefile.in  2012-07-17 
17:32:41.250937293 +
-@@ -50,7 +50,7 @@
- MOZ_PKG_MANIFEST_P = $(srcdir)/package-manifest.in
+@@ -17,7 +17,7 @@
+ 
  # Some files have been already bundled with xulrunner
- ifndef SYSTEM_LIBXUL
  ifndef MOZ_MULET
 -MOZ_PKG_FATAL_WARNINGS = 1
 +MOZ_PKG_FATAL_WARNINGS = 0
  endif
- endif
  
- MOZ_NONLOCALIZED_PKG_LIST = \
+ DEFINES += -DAB_CD=$(AB_CD) -DMOZ_APP_NAME=$(MOZ_APP_NAME) 
-DPREF_DIR=$(PREF_DIR)


[arch-commits] Commit in xulrunner/repos (22 files)

2014-10-18 Thread Felix Yan
Date: Saturday, October 18, 2014 @ 20:15:40
  Author: fyan
Revision: 120947

archrelease: copy trunk to community-staging-i686, community-staging-x86_64

Added:
  xulrunner/repos/community-staging-i686/
  xulrunner/repos/community-staging-i686/PKGBUILD
(from rev 120946, xulrunner/trunk/PKGBUILD)
  xulrunner/repos/community-staging-i686/freetype-headers.patch
(from rev 120946, xulrunner/trunk/freetype-headers.patch)
  xulrunner/repos/community-staging-i686/mozconfig
(from rev 120946, xulrunner/trunk/mozconfig)
  xulrunner/repos/community-staging-i686/mozilla-pkgconfig.patch
(from rev 120946, xulrunner/trunk/mozilla-pkgconfig.patch)
  xulrunner/repos/community-staging-i686/rhbz-966424.patch
(from rev 120946, xulrunner/trunk/rhbz-966424.patch)
  xulrunner/repos/community-staging-i686/shared-libs.patch
(from rev 120946, xulrunner/trunk/shared-libs.patch)
  xulrunner/repos/community-staging-i686/unbreak-plugin-build.patch
(from rev 120946, xulrunner/trunk/unbreak-plugin-build.patch)
  xulrunner/repos/community-staging-x86_64/PKGBUILD
(from rev 120946, xulrunner/trunk/PKGBUILD)
  xulrunner/repos/community-staging-x86_64/freetype-headers.patch
(from rev 120946, xulrunner/trunk/freetype-headers.patch)
  xulrunner/repos/community-staging-x86_64/mozconfig
(from rev 120946, xulrunner/trunk/mozconfig)
  xulrunner/repos/community-staging-x86_64/mozilla-pkgconfig.patch
(from rev 120946, xulrunner/trunk/mozilla-pkgconfig.patch)
  xulrunner/repos/community-staging-x86_64/rhbz-966424.patch
(from rev 120946, xulrunner/trunk/rhbz-966424.patch)
  xulrunner/repos/community-staging-x86_64/shared-libs.patch
(from rev 120946, xulrunner/trunk/shared-libs.patch)
  xulrunner/repos/community-staging-x86_64/unbreak-plugin-build.patch
(from rev 120946, xulrunner/trunk/unbreak-plugin-build.patch)
Deleted:
  xulrunner/repos/community-staging-x86_64/PKGBUILD
  xulrunner/repos/community-staging-x86_64/freetype-headers.patch
  xulrunner/repos/community-staging-x86_64/mozconfig
  xulrunner/repos/community-staging-x86_64/mozilla-pkgconfig.patch
  xulrunner/repos/community-staging-x86_64/rhbz-966424.patch
  xulrunner/repos/community-staging-x86_64/shared-libs.patch
  xulrunner/repos/community-staging-x86_64/unbreak-plugin-build.patch

-+
 /PKGBUILD   |   77 ++
 /freetype-headers.patch |   66 +++
 /mozconfig  |   32 +++
 /mozilla-pkgconfig.patch|   40 +
 /rhbz-966424.patch  |   23 +
 /shared-libs.patch  |   14 +++
 /unbreak-plugin-build.patch |   76 +
 community-staging-i686/PKGBUILD |   77 ++
 community-staging-i686/freetype-headers.patch   |   66 +++
 community-staging-i686/mozconfig|   32 +++
 community-staging-i686/mozilla-pkgconfig.patch  |   40 +
 community-staging-i686/rhbz-966424.patch|   23 +
 community-staging-i686/shared-libs.patch|   14 +++
 community-staging-i686/unbreak-plugin-build.patch   |   76 +
 community-staging-x86_64/PKGBUILD   |   77 --
 community-staging-x86_64/freetype-headers.patch |   66 ---
 community-staging-x86_64/mozconfig  |   32 ---
 community-staging-x86_64/mozilla-pkgconfig.patch|   40 -
 community-staging-x86_64/rhbz-966424.patch  |   23 -
 community-staging-x86_64/shared-libs.patch  |   14 ---
 community-staging-x86_64/unbreak-plugin-build.patch |   76 -
 21 files changed, 656 insertions(+), 328 deletions(-)

The diff is longer than the limit of 200KB.
Use svn diff -r 120946:120947 to see the changes.


[arch-commits] Commit in xulrunner/repos (8 files)

2014-10-18 Thread Felix Yan
Date: Saturday, October 18, 2014 @ 20:10:33
  Author: fyan
Revision: 120946

archrelease: copy trunk to community-staging-x86_64

Added:
  xulrunner/repos/community-staging-x86_64/
  xulrunner/repos/community-staging-x86_64/PKGBUILD
(from rev 120945, xulrunner/trunk/PKGBUILD)
  xulrunner/repos/community-staging-x86_64/freetype-headers.patch
(from rev 120945, xulrunner/trunk/freetype-headers.patch)
  xulrunner/repos/community-staging-x86_64/mozconfig
(from rev 120945, xulrunner/trunk/mozconfig)
  xulrunner/repos/community-staging-x86_64/mozilla-pkgconfig.patch
(from rev 120945, xulrunner/trunk/mozilla-pkgconfig.patch)
  xulrunner/repos/community-staging-x86_64/rhbz-966424.patch
(from rev 120945, xulrunner/trunk/rhbz-966424.patch)
  xulrunner/repos/community-staging-x86_64/shared-libs.patch
(from rev 120945, xulrunner/trunk/shared-libs.patch)
  xulrunner/repos/community-staging-x86_64/unbreak-plugin-build.patch
(from rev 120945, xulrunner/trunk/unbreak-plugin-build.patch)

+
 PKGBUILD   |   77 +++
 freetype-headers.patch |   66 
 mozconfig  |   32 +
 mozilla-pkgconfig.patch|   40 ++
 rhbz-966424.patch  |   23 
 shared-libs.patch  |   14 +++
 unbreak-plugin-build.patch |   76 ++
 7 files changed, 328 insertions(+)

Copied: xulrunner/repos/community-staging-x86_64/PKGBUILD (from rev 120945, 
xulrunner/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2014-10-18 18:10:33 UTC (rev 120946)
@@ -0,0 +1,77 @@
+# $Id$
+# Maintainer: Connor Behan 
+# Contributor: Jan de Groot 
+# Contributor: Alexander Baldeck 
+
+pkgname=xulrunner
+pkgver=32.0
+pkgrel=2
+pkgdesc="Mozilla Runtime Environment"
+arch=('i686' 'x86_64')
+license=('MPL' 'GPL' 'LGPL')
+depends=('gtk2' 'mozilla-common' 'nss' 'libxt' 'hunspell' 
'startup-notification' 'mime-types' 'dbus-glib' 'libpulse' 'libevent' 'libvpx' 
'icu' 'python2')
+makedepends=('zip' 'unzip' 'pkg-config' 'diffutils' 'yasm' 'mesa' 
'autoconf2.13' 'gst-plugins-base-libs')
+url="http://wiki.mozilla.org/XUL:Xul_Runner";
+source=(ftp://ftp.mozilla.org/pub/mozilla.org/xulrunner/releases/$pkgver/source/xulrunner-$pkgver.source.tar.bz2
+mozconfig
+mozilla-pkgconfig.patch
+shared-libs.patch
+rhbz-966424.patch)
+options=('!emptydirs' '!makeflags' 'staticlibs')
+replaces=('xulrunner-oss')
+sha256sums=('769671c97bfa5ab0719cc792a55109540287939e11d515e125769b5104056a21'
+'df0e663e7f9246b84936882e564270fac541c6bb39450b759abe686e5c27a052'
+'23485d937035648add27a7657f6934dc5b295e886cdb0506eebd02a43d07f269'
+'3729eb95167f704e627cfd4ef5ce24414c6c33df68d2fd968d315f1873d6dc7c'
+'746cb474c5a2c26fc474256e430e035e604b71b27df1003d4af85018fa263f4a')
+
+prepare() {
+  cd "$srcdir/mozilla-release"
+  cp "$srcdir/mozconfig" .mozconfig
+
+  #fix libdir/sdkdir - fedora
+  patch -Np1 -i ../mozilla-pkgconfig.patch
+  patch -Np1 -i ../shared-libs.patch
+
+  # https://bugs.archlinux.org/task/41689
+  patch -Np1 -i ../rhbz-966424.patch
+
+  # WebRTC build tries to execute "python" and expects Python 2
+  # Workaround taken from chromium PKGBUILD
+  mkdir "$srcdir/python2-path"
+  ln -s /usr/bin/python2 "$srcdir/python2-path/python"
+
+  # configure script misdetects the preprocessor without an optimization level
+  # https://bugs.archlinux.org/task/34644
+  sed -i '/ac_cpp=/s/$CPPFLAGS/& -O2/' configure
+}
+
+build() {
+  cd "$srcdir/mozilla-release"
+
+  export PATH="$srcdir/python2-path:$PATH"
+  export LDFLAGS="$LDFALGS -Wl,-rpath,/usr/lib/xulrunner-$pkgver"
+  export PYTHON="/usr/bin/python2"
+
+  make -j1 -f client.mk build
+}
+
+package() {
+  cd "$srcdir/mozilla-release"
+  make -j1 -f client.mk DESTDIR="$pkgdir" install
+
+  # Use system-provided dictionaries
+  rm -rf "$pkgdir"/usr/lib/xulrunner-$pkgver/{dictionaries,hyphenation}
+  ln -sf /usr/share/hunspell "$pkgdir/usr/lib/xulrunner-$pkgver/dictionaries"
+  ln -sf /usr/share/hyphen "$pkgdir/usr/lib/xulrunner-$pkgver/hyphenation"
+
+  # add xulrunner library path to ld.so.conf
+  install -d $pkgdir/etc/ld.so.conf.d
+  echo "/usr/lib/xulrunner-$pkgver" > $pkgdir/etc/ld.so.conf.d/xulrunner.conf
+
+  chmod +x "${pkgdir}/usr/lib/xulrunner-devel-$pkgver/sdk/bin/xpt.py"
+  chmod +x "${pkgdir}/usr/lib/xulrunner-devel-$pkgver/sdk/bin/xpcshell"
+  ln -s /usr/lib/xulrunner-devel-$pkgver/sdk/bin/xpcshell 
"${pkgdir}/usr/lib/xulrunner-$pkgver/xpcshell"
+  sed -i 's|!/usr/bin/env python$|!/usr/bin/env python2|' \
+
"$pkgdir"/usr/lib/xulrunner-devel-$pkgver/sdk/bin/{xpt,header,typelib,xpidl}.py
+}

Copied: xulrunner/repos/community-staging-x86_64/freetype-headers.pat

[arch-commits] Commit in xulrunner/trunk (PKGBUILD)

2014-10-18 Thread Felix Yan
Date: Saturday, October 18, 2014 @ 20:10:08
  Author: fyan
Revision: 120945

upgpkg: xulrunner 32.0-2

icu 54.1 rebuild

Modified:
  xulrunner/trunk/PKGBUILD

--+
 PKGBUILD |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

Modified: PKGBUILD
===
--- PKGBUILD2014-10-18 17:31:05 UTC (rev 120944)
+++ PKGBUILD2014-10-18 18:10:08 UTC (rev 120945)
@@ -5,7 +5,7 @@
 
 pkgname=xulrunner
 pkgver=32.0
-pkgrel=1
+pkgrel=2
 pkgdesc="Mozilla Runtime Environment"
 arch=('i686' 'x86_64')
 license=('MPL' 'GPL' 'LGPL')


[arch-commits] Commit in xulrunner/repos (28 files)

2014-09-26 Thread Connor Behan
Date: Saturday, September 27, 2014 @ 04:05:14
  Author: cbehan
Revision: 119640

archrelease: copy trunk to community-i686, community-x86_64

Added:
  xulrunner/repos/community-i686/PKGBUILD
(from rev 119639, xulrunner/trunk/PKGBUILD)
  xulrunner/repos/community-i686/freetype-headers.patch
(from rev 119639, xulrunner/trunk/freetype-headers.patch)
  xulrunner/repos/community-i686/mozconfig
(from rev 119639, xulrunner/trunk/mozconfig)
  xulrunner/repos/community-i686/mozilla-pkgconfig.patch
(from rev 119639, xulrunner/trunk/mozilla-pkgconfig.patch)
  xulrunner/repos/community-i686/rhbz-966424.patch
(from rev 119639, xulrunner/trunk/rhbz-966424.patch)
  xulrunner/repos/community-i686/shared-libs.patch
(from rev 119639, xulrunner/trunk/shared-libs.patch)
  xulrunner/repos/community-i686/unbreak-plugin-build.patch
(from rev 119639, xulrunner/trunk/unbreak-plugin-build.patch)
  xulrunner/repos/community-x86_64/PKGBUILD
(from rev 119639, xulrunner/trunk/PKGBUILD)
  xulrunner/repos/community-x86_64/freetype-headers.patch
(from rev 119639, xulrunner/trunk/freetype-headers.patch)
  xulrunner/repos/community-x86_64/mozconfig
(from rev 119639, xulrunner/trunk/mozconfig)
  xulrunner/repos/community-x86_64/mozilla-pkgconfig.patch
(from rev 119639, xulrunner/trunk/mozilla-pkgconfig.patch)
  xulrunner/repos/community-x86_64/rhbz-966424.patch
(from rev 119639, xulrunner/trunk/rhbz-966424.patch)
  xulrunner/repos/community-x86_64/shared-libs.patch
(from rev 119639, xulrunner/trunk/shared-libs.patch)
  xulrunner/repos/community-x86_64/unbreak-plugin-build.patch
(from rev 119639, xulrunner/trunk/unbreak-plugin-build.patch)
Deleted:
  xulrunner/repos/community-i686/PKGBUILD
  xulrunner/repos/community-i686/freetype-headers.patch
  xulrunner/repos/community-i686/mozconfig
  xulrunner/repos/community-i686/mozilla-pkgconfig.patch
  xulrunner/repos/community-i686/rhbz-966424.patch
  xulrunner/repos/community-i686/shared-libs.patch
  xulrunner/repos/community-i686/unbreak-plugin-build.patch
  xulrunner/repos/community-x86_64/PKGBUILD
  xulrunner/repos/community-x86_64/freetype-headers.patch
  xulrunner/repos/community-x86_64/mozconfig
  xulrunner/repos/community-x86_64/mozilla-pkgconfig.patch
  xulrunner/repos/community-x86_64/rhbz-966424.patch
  xulrunner/repos/community-x86_64/shared-libs.patch
  xulrunner/repos/community-x86_64/unbreak-plugin-build.patch

-+
 /PKGBUILD   |  154 ++
 /freetype-headers.patch |  132 ++
 /mozconfig  |   64 ++
 /mozilla-pkgconfig.patch|   80 +
 /rhbz-966424.patch  |   46 +++
 /shared-libs.patch  |   28 
 /unbreak-plugin-build.patch |  152 +
 community-i686/PKGBUILD |   77 -
 community-i686/freetype-headers.patch   |   66 ---
 community-i686/mozconfig|   32 -
 community-i686/mozilla-pkgconfig.patch  |   40 --
 community-i686/rhbz-966424.patch|   23 ---
 community-i686/shared-libs.patch|   12 --
 community-i686/unbreak-plugin-build.patch   |   76 
 community-x86_64/PKGBUILD   |   77 -
 community-x86_64/freetype-headers.patch |   66 ---
 community-x86_64/mozconfig  |   32 -
 community-x86_64/mozilla-pkgconfig.patch|   40 --
 community-x86_64/rhbz-966424.patch  |   23 ---
 community-x86_64/shared-libs.patch  |   12 --
 community-x86_64/unbreak-plugin-build.patch |   76 
 21 files changed, 656 insertions(+), 652 deletions(-)

The diff is longer than the limit of 200KB.
Use svn diff -r 119639:119640 to see the changes.


[arch-commits] Commit in xulrunner/trunk (PKGBUILD shared-libs.patch)

2014-09-26 Thread Connor Behan
Date: Saturday, September 27, 2014 @ 04:03:45
  Author: cbehan
Revision: 119639

upgpkg: xulrunner 32.0-1

Update to 32.0-1

Modified:
  xulrunner/trunk/PKGBUILD
  xulrunner/trunk/shared-libs.patch

---+
 PKGBUILD  |8 
 shared-libs.patch |2 ++
 2 files changed, 6 insertions(+), 4 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2014-09-27 01:21:20 UTC (rev 119638)
+++ PKGBUILD2014-09-27 02:03:45 UTC (rev 119639)
@@ -4,8 +4,8 @@
 # Contributor: Alexander Baldeck 
 
 pkgname=xulrunner
-pkgver=31.0
-pkgrel=2
+pkgver=32.0
+pkgrel=1
 pkgdesc="Mozilla Runtime Environment"
 arch=('i686' 'x86_64')
 license=('MPL' 'GPL' 'LGPL')
@@ -19,10 +19,10 @@
 rhbz-966424.patch)
 options=('!emptydirs' '!makeflags' 'staticlibs')
 replaces=('xulrunner-oss')
-sha256sums=('6f4cb97e4debe2225f94bc813057154d2aa2680f5aa69573048633507cecb21e'
+sha256sums=('769671c97bfa5ab0719cc792a55109540287939e11d515e125769b5104056a21'
 'df0e663e7f9246b84936882e564270fac541c6bb39450b759abe686e5c27a052'
 '23485d937035648add27a7657f6934dc5b295e886cdb0506eebd02a43d07f269'
-'e2b4a00d14f4ba69c62b3f9ef9908263fbab179ba8004197cbc67edbd916fdf1'
+'3729eb95167f704e627cfd4ef5ce24414c6c33df68d2fd968d315f1873d6dc7c'
 '746cb474c5a2c26fc474256e430e035e604b71b27df1003d4af85018fa263f4a')
 
 prepare() {

Modified: shared-libs.patch
===
--- shared-libs.patch   2014-09-27 01:21:20 UTC (rev 119638)
+++ shared-libs.patch   2014-09-27 02:03:45 UTC (rev 119639)
@@ -5,8 +5,10 @@
  MOZ_PKG_MANIFEST_P = $(srcdir)/package-manifest.in
  # Some files have been already bundled with xulrunner
  ifndef SYSTEM_LIBXUL
+ ifndef MOZ_MULET
 -MOZ_PKG_FATAL_WARNINGS = 1
 +MOZ_PKG_FATAL_WARNINGS = 0
  endif
+ endif
  
  MOZ_NONLOCALIZED_PKG_LIST = \


[arch-commits] Commit in xulrunner/repos (16 files)

2014-08-28 Thread Jan Steffens
Date: Thursday, August 28, 2014 @ 21:59:16
  Author: heftig
Revision: 118042

archrelease: copy trunk to community-testing-i686, community-testing-x86_64

Added:
  xulrunner/repos/community-testing-i686/
  xulrunner/repos/community-testing-i686/PKGBUILD
(from rev 118041, xulrunner/trunk/PKGBUILD)
  xulrunner/repos/community-testing-i686/freetype-headers.patch
(from rev 118041, xulrunner/trunk/freetype-headers.patch)
  xulrunner/repos/community-testing-i686/mozconfig
(from rev 118041, xulrunner/trunk/mozconfig)
  xulrunner/repos/community-testing-i686/mozilla-pkgconfig.patch
(from rev 118041, xulrunner/trunk/mozilla-pkgconfig.patch)
  xulrunner/repos/community-testing-i686/rhbz-966424.patch
(from rev 118041, xulrunner/trunk/rhbz-966424.patch)
  xulrunner/repos/community-testing-i686/shared-libs.patch
(from rev 118041, xulrunner/trunk/shared-libs.patch)
  xulrunner/repos/community-testing-i686/unbreak-plugin-build.patch
(from rev 118041, xulrunner/trunk/unbreak-plugin-build.patch)
  xulrunner/repos/community-testing-x86_64/
  xulrunner/repos/community-testing-x86_64/PKGBUILD
(from rev 118041, xulrunner/trunk/PKGBUILD)
  xulrunner/repos/community-testing-x86_64/freetype-headers.patch
(from rev 118041, xulrunner/trunk/freetype-headers.patch)
  xulrunner/repos/community-testing-x86_64/mozconfig
(from rev 118041, xulrunner/trunk/mozconfig)
  xulrunner/repos/community-testing-x86_64/mozilla-pkgconfig.patch
(from rev 118041, xulrunner/trunk/mozilla-pkgconfig.patch)
  xulrunner/repos/community-testing-x86_64/rhbz-966424.patch
(from rev 118041, xulrunner/trunk/rhbz-966424.patch)
  xulrunner/repos/community-testing-x86_64/shared-libs.patch
(from rev 118041, xulrunner/trunk/shared-libs.patch)
  xulrunner/repos/community-testing-x86_64/unbreak-plugin-build.patch
(from rev 118041, xulrunner/trunk/unbreak-plugin-build.patch)

-+
 community-testing-i686/PKGBUILD |   77 ++
 community-testing-i686/freetype-headers.patch   |   66 +++
 community-testing-i686/mozconfig|   32 +++
 community-testing-i686/mozilla-pkgconfig.patch  |   40 +
 community-testing-i686/rhbz-966424.patch|   23 +
 community-testing-i686/shared-libs.patch|   12 ++
 community-testing-i686/unbreak-plugin-build.patch   |   76 +
 community-testing-x86_64/PKGBUILD   |   77 ++
 community-testing-x86_64/freetype-headers.patch |   66 +++
 community-testing-x86_64/mozconfig  |   32 +++
 community-testing-x86_64/mozilla-pkgconfig.patch|   40 +
 community-testing-x86_64/rhbz-966424.patch  |   23 +
 community-testing-x86_64/shared-libs.patch  |   12 ++
 community-testing-x86_64/unbreak-plugin-build.patch |   76 +
 14 files changed, 652 insertions(+)

Copied: xulrunner/repos/community-testing-i686/PKGBUILD (from rev 118041, 
xulrunner/trunk/PKGBUILD)
===
--- community-testing-i686/PKGBUILD (rev 0)
+++ community-testing-i686/PKGBUILD 2014-08-28 19:59:16 UTC (rev 118042)
@@ -0,0 +1,77 @@
+# $Id$
+# Maintainer: Connor Behan 
+# Contributor: Jan de Groot 
+# Contributor: Alexander Baldeck 
+
+pkgname=xulrunner
+pkgver=31.0
+pkgrel=2
+pkgdesc="Mozilla Runtime Environment"
+arch=('i686' 'x86_64')
+license=('MPL' 'GPL' 'LGPL')
+depends=('gtk2' 'mozilla-common' 'nss' 'libxt' 'hunspell' 
'startup-notification' 'mime-types' 'dbus-glib' 'libpulse' 'libevent' 'libvpx' 
'icu' 'python2')
+makedepends=('zip' 'unzip' 'pkg-config' 'diffutils' 'yasm' 'mesa' 
'autoconf2.13' 'gst-plugins-base-libs')
+url="http://wiki.mozilla.org/XUL:Xul_Runner";
+source=(ftp://ftp.mozilla.org/pub/mozilla.org/xulrunner/releases/$pkgver/source/xulrunner-$pkgver.source.tar.bz2
+mozconfig
+mozilla-pkgconfig.patch
+shared-libs.patch
+rhbz-966424.patch)
+options=('!emptydirs' '!makeflags' 'staticlibs')
+replaces=('xulrunner-oss')
+sha256sums=('6f4cb97e4debe2225f94bc813057154d2aa2680f5aa69573048633507cecb21e'
+'df0e663e7f9246b84936882e564270fac541c6bb39450b759abe686e5c27a052'
+'23485d937035648add27a7657f6934dc5b295e886cdb0506eebd02a43d07f269'
+'e2b4a00d14f4ba69c62b3f9ef9908263fbab179ba8004197cbc67edbd916fdf1'
+'746cb474c5a2c26fc474256e430e035e604b71b27df1003d4af85018fa263f4a')
+
+prepare() {
+  cd "$srcdir/mozilla-release"
+  cp "$srcdir/mozconfig" .mozconfig
+
+  #fix libdir/sdkdir - fedora
+  patch -Np1 -i ../mozilla-pkgconfig.patch
+  patch -Np1 -i ../shared-libs.patch
+
+  # https://bugs.archlinux.org/task/41689
+  patch -Np1 -i ../rhbz-966424.patch
+
+  # WebRTC build tries to execute "python" and expects Python 2
+  # Workaround taken from chromium PKGBUILD
+  mkdir "$srcdir/pytho

[arch-commits] Commit in xulrunner/trunk (PKGBUILD rhbz-966424.patch)

2014-08-28 Thread Jan Steffens
Date: Thursday, August 28, 2014 @ 20:29:18
  Author: heftig
Revision: 118036

https://bugs.archlinux.org/task/41689

Added:
  xulrunner/trunk/rhbz-966424.patch
Modified:
  xulrunner/trunk/PKGBUILD

---+
 PKGBUILD  |   12 
 rhbz-966424.patch |   23 +++
 2 files changed, 31 insertions(+), 4 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2014-08-28 18:29:00 UTC (rev 118035)
+++ PKGBUILD2014-08-28 18:29:18 UTC (rev 118036)
@@ -5,7 +5,7 @@
 
 pkgname=xulrunner
 pkgver=31.0
-pkgrel=1
+pkgrel=2
 pkgdesc="Mozilla Runtime Environment"
 arch=('i686' 'x86_64')
 license=('MPL' 'GPL' 'LGPL')
@@ -15,13 +15,15 @@
 
source=(ftp://ftp.mozilla.org/pub/mozilla.org/xulrunner/releases/$pkgver/source/xulrunner-$pkgver.source.tar.bz2
 mozconfig
 mozilla-pkgconfig.patch
-shared-libs.patch)
+shared-libs.patch
+rhbz-966424.patch)
 options=('!emptydirs' '!makeflags' 'staticlibs')
 replaces=('xulrunner-oss')
 sha256sums=('6f4cb97e4debe2225f94bc813057154d2aa2680f5aa69573048633507cecb21e'
 'df0e663e7f9246b84936882e564270fac541c6bb39450b759abe686e5c27a052'
 '23485d937035648add27a7657f6934dc5b295e886cdb0506eebd02a43d07f269'
-   'e2b4a00d14f4ba69c62b3f9ef9908263fbab179ba8004197cbc67edbd916fdf1')
+'e2b4a00d14f4ba69c62b3f9ef9908263fbab179ba8004197cbc67edbd916fdf1'
+'746cb474c5a2c26fc474256e430e035e604b71b27df1003d4af85018fa263f4a')
 
 prepare() {
   cd "$srcdir/mozilla-release"
@@ -31,6 +33,9 @@
   patch -Np1 -i ../mozilla-pkgconfig.patch
   patch -Np1 -i ../shared-libs.patch
 
+  # https://bugs.archlinux.org/task/41689
+  patch -Np1 -i ../rhbz-966424.patch
+
   # WebRTC build tries to execute "python" and expects Python 2
   # Workaround taken from chromium PKGBUILD
   mkdir "$srcdir/python2-path"
@@ -70,4 +75,3 @@
   sed -i 's|!/usr/bin/env python$|!/usr/bin/env python2|' \
 
"$pkgdir"/usr/lib/xulrunner-devel-$pkgver/sdk/bin/{xpt,header,typelib,xpidl}.py
 }
-sha256sums=('6f4cb97e4debe2225f94bc813057154d2aa2680f5aa69573048633507cecb21e' 
'df0e663e7f9246b84936882e564270fac541c6bb39450b759abe686e5c27a052' 
'23485d937035648add27a7657f6934dc5b295e886cdb0506eebd02a43d07f269' 
'e2b4a00d14f4ba69c62b3f9ef9908263fbab179ba8004197cbc67edbd916fdf1')

Added: rhbz-966424.patch
===
--- rhbz-966424.patch   (rev 0)
+++ rhbz-966424.patch   2014-08-28 18:29:18 UTC (rev 118036)
@@ -0,0 +1,23 @@
+--- a/toolkit/modules/CertUtils.jsm
 b/toolkit/modules/CertUtils.jsm
+@@ -170,17 +170,19 @@ this.checkCert =
+   issuerCert = issuerCert.QueryInterface(Ci.nsIX509Cert3);
+   var tokenNames = issuerCert.getAllTokenNames({});
+ 
+   if (!tokenNames || !tokenNames.some(isBuiltinToken))
+ throw new Ce(certNotBuiltInErr, Cr.NS_ERROR_ABORT);
+ }
+ 
+ function isBuiltinToken(tokenName) {
+-  return tokenName == "Builtin Object Token";
++  return tokenName == "Builtin Object Token" ||
++ tokenName == "Default Trust" ||
++ tokenName == "System Trust";
+ }
+ 
+ /**
+  * This class implements nsIBadCertListener.  Its job is to prevent "bad cert"
+  * security dialogs from being shown to the user.  It is better to simply fail
+  * if the certificate is bad. See bug 304286.
+  *
+  * @param  aAllowNonBuiltInCerts (optional)



[arch-commits] Commit in xulrunner/repos (24 files)

2014-07-24 Thread Connor Behan
Date: Thursday, July 24, 2014 @ 11:31:33
  Author: cbehan
Revision: 116295

archrelease: copy trunk to community-i686, community-x86_64

Added:
  xulrunner/repos/community-i686/PKGBUILD
(from rev 116294, xulrunner/trunk/PKGBUILD)
  xulrunner/repos/community-i686/freetype-headers.patch
(from rev 116294, xulrunner/trunk/freetype-headers.patch)
  xulrunner/repos/community-i686/mozconfig
(from rev 116294, xulrunner/trunk/mozconfig)
  xulrunner/repos/community-i686/mozilla-pkgconfig.patch
(from rev 116294, xulrunner/trunk/mozilla-pkgconfig.patch)
  xulrunner/repos/community-i686/shared-libs.patch
(from rev 116294, xulrunner/trunk/shared-libs.patch)
  xulrunner/repos/community-i686/unbreak-plugin-build.patch
(from rev 116294, xulrunner/trunk/unbreak-plugin-build.patch)
  xulrunner/repos/community-x86_64/PKGBUILD
(from rev 116294, xulrunner/trunk/PKGBUILD)
  xulrunner/repos/community-x86_64/freetype-headers.patch
(from rev 116294, xulrunner/trunk/freetype-headers.patch)
  xulrunner/repos/community-x86_64/mozconfig
(from rev 116294, xulrunner/trunk/mozconfig)
  xulrunner/repos/community-x86_64/mozilla-pkgconfig.patch
(from rev 116294, xulrunner/trunk/mozilla-pkgconfig.patch)
  xulrunner/repos/community-x86_64/shared-libs.patch
(from rev 116294, xulrunner/trunk/shared-libs.patch)
  xulrunner/repos/community-x86_64/unbreak-plugin-build.patch
(from rev 116294, xulrunner/trunk/unbreak-plugin-build.patch)
Deleted:
  xulrunner/repos/community-i686/PKGBUILD
  xulrunner/repos/community-i686/freetype-headers.patch
  xulrunner/repos/community-i686/mozconfig
  xulrunner/repos/community-i686/mozilla-pkgconfig.patch
  xulrunner/repos/community-i686/shared-libs.patch
  xulrunner/repos/community-i686/unbreak-plugin-build.patch
  xulrunner/repos/community-x86_64/PKGBUILD
  xulrunner/repos/community-x86_64/freetype-headers.patch
  xulrunner/repos/community-x86_64/mozconfig
  xulrunner/repos/community-x86_64/mozilla-pkgconfig.patch
  xulrunner/repos/community-x86_64/shared-libs.patch
  xulrunner/repos/community-x86_64/unbreak-plugin-build.patch

-+
 /PKGBUILD   |  146 
 /freetype-headers.patch |  132 ++
 /mozconfig  |   64 ++
 /mozilla-pkgconfig.patch|   80 +
 /shared-libs.patch  |   24 
 /unbreak-plugin-build.patch |  152 ++
 community-i686/PKGBUILD |   72 
 community-i686/freetype-headers.patch   |   66 ---
 community-i686/mozconfig|   32 -
 community-i686/mozilla-pkgconfig.patch  |   40 --
 community-i686/shared-libs.patch|   12 --
 community-i686/unbreak-plugin-build.patch   |   76 -
 community-x86_64/PKGBUILD   |   72 
 community-x86_64/freetype-headers.patch |   66 ---
 community-x86_64/mozconfig  |   32 -
 community-x86_64/mozilla-pkgconfig.patch|   40 --
 community-x86_64/shared-libs.patch  |   12 --
 community-x86_64/unbreak-plugin-build.patch |   76 -
 18 files changed, 598 insertions(+), 596 deletions(-)

The diff is longer than the limit of 200KB.
Use svn diff -r 116294:116295 to see the changes.


[arch-commits] Commit in xulrunner/trunk (PKGBUILD)

2014-07-24 Thread Connor Behan
Date: Thursday, July 24, 2014 @ 11:30:16
  Author: cbehan
Revision: 116294

upgpkg: xulrunner 31.0-1

Update to 31.0-1

Modified:
  xulrunner/trunk/PKGBUILD

--+
 PKGBUILD |5 +++--
 1 file changed, 3 insertions(+), 2 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2014-07-24 07:04:30 UTC (rev 116293)
+++ PKGBUILD2014-07-24 09:30:16 UTC (rev 116294)
@@ -4,7 +4,7 @@
 # Contributor: Alexander Baldeck 
 
 pkgname=xulrunner
-pkgver=30.0
+pkgver=31.0
 pkgrel=1
 pkgdesc="Mozilla Runtime Environment"
 arch=('i686' 'x86_64')
@@ -18,7 +18,7 @@
 shared-libs.patch)
 options=('!emptydirs' '!makeflags' 'staticlibs')
 replaces=('xulrunner-oss')
-sha256sums=('7faee20752c87433c746a650006acdeb710b21d216894101bb44356123f557ad'
+sha256sums=('6f4cb97e4debe2225f94bc813057154d2aa2680f5aa69573048633507cecb21e'
 'df0e663e7f9246b84936882e564270fac541c6bb39450b759abe686e5c27a052'
 '23485d937035648add27a7657f6934dc5b295e886cdb0506eebd02a43d07f269'
'e2b4a00d14f4ba69c62b3f9ef9908263fbab179ba8004197cbc67edbd916fdf1')
@@ -70,3 +70,4 @@
   sed -i 's|!/usr/bin/env python$|!/usr/bin/env python2|' \
 
"$pkgdir"/usr/lib/xulrunner-devel-$pkgver/sdk/bin/{xpt,header,typelib,xpidl}.py
 }
+sha256sums=('6f4cb97e4debe2225f94bc813057154d2aa2680f5aa69573048633507cecb21e' 
'df0e663e7f9246b84936882e564270fac541c6bb39450b759abe686e5c27a052' 
'23485d937035648add27a7657f6934dc5b295e886cdb0506eebd02a43d07f269' 
'e2b4a00d14f4ba69c62b3f9ef9908263fbab179ba8004197cbc67edbd916fdf1')



[arch-commits] Commit in xulrunner/repos (24 files)

2014-06-15 Thread Connor Behan
Date: Monday, June 16, 2014 @ 05:29:43
  Author: cbehan
Revision: 113196

archrelease: copy trunk to community-i686, community-x86_64

Added:
  xulrunner/repos/community-i686/PKGBUILD
(from rev 113195, xulrunner/trunk/PKGBUILD)
  xulrunner/repos/community-i686/freetype-headers.patch
(from rev 113195, xulrunner/trunk/freetype-headers.patch)
  xulrunner/repos/community-i686/mozconfig
(from rev 113195, xulrunner/trunk/mozconfig)
  xulrunner/repos/community-i686/mozilla-pkgconfig.patch
(from rev 113195, xulrunner/trunk/mozilla-pkgconfig.patch)
  xulrunner/repos/community-i686/shared-libs.patch
(from rev 113195, xulrunner/trunk/shared-libs.patch)
  xulrunner/repos/community-i686/unbreak-plugin-build.patch
(from rev 113195, xulrunner/trunk/unbreak-plugin-build.patch)
  xulrunner/repos/community-x86_64/PKGBUILD
(from rev 113195, xulrunner/trunk/PKGBUILD)
  xulrunner/repos/community-x86_64/freetype-headers.patch
(from rev 113195, xulrunner/trunk/freetype-headers.patch)
  xulrunner/repos/community-x86_64/mozconfig
(from rev 113195, xulrunner/trunk/mozconfig)
  xulrunner/repos/community-x86_64/mozilla-pkgconfig.patch
(from rev 113195, xulrunner/trunk/mozilla-pkgconfig.patch)
  xulrunner/repos/community-x86_64/shared-libs.patch
(from rev 113195, xulrunner/trunk/shared-libs.patch)
  xulrunner/repos/community-x86_64/unbreak-plugin-build.patch
(from rev 113195, xulrunner/trunk/unbreak-plugin-build.patch)
Deleted:
  xulrunner/repos/community-i686/PKGBUILD
  xulrunner/repos/community-i686/freetype-headers.patch
  xulrunner/repos/community-i686/mozconfig
  xulrunner/repos/community-i686/mozilla-pkgconfig.patch
  xulrunner/repos/community-i686/shared-libs.patch
  xulrunner/repos/community-i686/unbreak-plugin-build.patch
  xulrunner/repos/community-x86_64/PKGBUILD
  xulrunner/repos/community-x86_64/freetype-headers.patch
  xulrunner/repos/community-x86_64/mozconfig
  xulrunner/repos/community-x86_64/mozilla-pkgconfig.patch
  xulrunner/repos/community-x86_64/shared-libs.patch
  xulrunner/repos/community-x86_64/unbreak-plugin-build.patch

-+
 /PKGBUILD   |  144 
 /freetype-headers.patch |  132 ++
 /mozconfig  |   64 ++
 /mozilla-pkgconfig.patch|   80 +
 /shared-libs.patch  |   24 
 /unbreak-plugin-build.patch |  152 ++
 community-i686/PKGBUILD |   72 
 community-i686/freetype-headers.patch   |   66 ---
 community-i686/mozconfig|   31 -
 community-i686/mozilla-pkgconfig.patch  |   40 --
 community-i686/shared-libs.patch|   12 --
 community-i686/unbreak-plugin-build.patch   |   76 -
 community-x86_64/PKGBUILD   |   72 
 community-x86_64/freetype-headers.patch |   66 ---
 community-x86_64/mozconfig  |   31 -
 community-x86_64/mozilla-pkgconfig.patch|   40 --
 community-x86_64/shared-libs.patch  |   12 --
 community-x86_64/unbreak-plugin-build.patch |   76 -
 18 files changed, 596 insertions(+), 594 deletions(-)

The diff is longer than the limit of 200KB.
Use svn diff -r 113195:113196 to see the changes.


[arch-commits] Commit in xulrunner/trunk (PKGBUILD mozconfig)

2014-06-15 Thread Connor Behan
Date: Monday, June 16, 2014 @ 05:28:28
  Author: cbehan
Revision: 113195

upgpkg: xulrunner 30.0-1

Update to 30.0-1

Modified:
  xulrunner/trunk/PKGBUILD
  xulrunner/trunk/mozconfig

---+
 PKGBUILD  |   10 +-
 mozconfig |3 ++-
 2 files changed, 7 insertions(+), 6 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2014-06-15 22:52:12 UTC (rev 113194)
+++ PKGBUILD2014-06-16 03:28:28 UTC (rev 113195)
@@ -4,13 +4,13 @@
 # Contributor: Alexander Baldeck 
 
 pkgname=xulrunner
-pkgver=29.0
+pkgver=30.0
 pkgrel=1
 pkgdesc="Mozilla Runtime Environment"
 arch=('i686' 'x86_64')
 license=('MPL' 'GPL' 'LGPL')
-depends=('gtk2' 'mozilla-common' 'nss' 'libxt' 'hunspell' 
'startup-notification' 'mime-types' 'dbus-glib' 'libpulse' 'libevent' 'libvpx' 
'python2')
-makedepends=('zip' 'unzip' 'pkg-config' 'diffutils' 'yasm' 'mesa' 
'autoconf2.13' 'gstreamer0.10-base')
+depends=('gtk2' 'mozilla-common' 'nss' 'libxt' 'hunspell' 
'startup-notification' 'mime-types' 'dbus-glib' 'libpulse' 'libevent' 'libvpx' 
'icu' 'python2')
+makedepends=('zip' 'unzip' 'pkg-config' 'diffutils' 'yasm' 'mesa' 
'autoconf2.13' 'gst-plugins-base-libs')
 url="http://wiki.mozilla.org/XUL:Xul_Runner";
 
source=(ftp://ftp.mozilla.org/pub/mozilla.org/xulrunner/releases/$pkgver/source/xulrunner-$pkgver.source.tar.bz2
 mozconfig
@@ -18,8 +18,8 @@
 shared-libs.patch)
 options=('!emptydirs' '!makeflags' 'staticlibs')
 replaces=('xulrunner-oss')
-sha256sums=('408fe73f88f6db2594e4e2bf44b51954c086d1c6948bfa79bb604321d8145230'
-'38f1f7a49a03b67a6b96bb696640a28fd20b42f6e45a27a81d25d66fd0148e4e'
+sha256sums=('7faee20752c87433c746a650006acdeb710b21d216894101bb44356123f557ad'
+'df0e663e7f9246b84936882e564270fac541c6bb39450b759abe686e5c27a052'
 '23485d937035648add27a7657f6934dc5b295e886cdb0506eebd02a43d07f269'
'e2b4a00d14f4ba69c62b3f9ef9908263fbab179ba8004197cbc67edbd916fdf1')
 

Modified: mozconfig
===
--- mozconfig   2014-06-15 22:52:12 UTC (rev 113194)
+++ mozconfig   2014-06-16 03:28:28 UTC (rev 113195)
@@ -12,6 +12,7 @@
 ac_add_options --with-system-png
 ac_add_options --with-system-libevent
 ac_add_options --with-system-libvpx
+ac_add_options --with-system-icu
 ac_add_options --enable-system-hunspell
 ac_add_options --enable-system-sqlite
 ac_add_options --enable-system-ffi
@@ -21,7 +22,7 @@
 
 # Features
 ac_add_options --enable-startup-notification
-ac_add_options --enable-gstreamer
+ac_add_options --enable-gstreamer=1.0
 ac_add_options --disable-crashreporter
 ac_add_options --disable-updater
 ac_add_options --disable-tests



[arch-commits] Commit in xulrunner/repos (24 files)

2014-04-23 Thread Connor Behan
Date: Thursday, April 24, 2014 @ 02:59:43
  Author: cbehan
Revision: 110094

archrelease: copy trunk to community-i686, community-x86_64

Added:
  xulrunner/repos/community-i686/PKGBUILD
(from rev 110093, xulrunner/trunk/PKGBUILD)
  xulrunner/repos/community-i686/freetype-headers.patch
(from rev 110093, xulrunner/trunk/freetype-headers.patch)
  xulrunner/repos/community-i686/mozconfig
(from rev 110093, xulrunner/trunk/mozconfig)
  xulrunner/repos/community-i686/mozilla-pkgconfig.patch
(from rev 110093, xulrunner/trunk/mozilla-pkgconfig.patch)
  xulrunner/repos/community-i686/shared-libs.patch
(from rev 110093, xulrunner/trunk/shared-libs.patch)
  xulrunner/repos/community-i686/unbreak-plugin-build.patch
(from rev 110093, xulrunner/trunk/unbreak-plugin-build.patch)
  xulrunner/repos/community-x86_64/PKGBUILD
(from rev 110093, xulrunner/trunk/PKGBUILD)
  xulrunner/repos/community-x86_64/freetype-headers.patch
(from rev 110093, xulrunner/trunk/freetype-headers.patch)
  xulrunner/repos/community-x86_64/mozconfig
(from rev 110093, xulrunner/trunk/mozconfig)
  xulrunner/repos/community-x86_64/mozilla-pkgconfig.patch
(from rev 110093, xulrunner/trunk/mozilla-pkgconfig.patch)
  xulrunner/repos/community-x86_64/shared-libs.patch
(from rev 110093, xulrunner/trunk/shared-libs.patch)
  xulrunner/repos/community-x86_64/unbreak-plugin-build.patch
(from rev 110093, xulrunner/trunk/unbreak-plugin-build.patch)
Deleted:
  xulrunner/repos/community-i686/PKGBUILD
  xulrunner/repos/community-i686/freetype-headers.patch
  xulrunner/repos/community-i686/mozconfig
  xulrunner/repos/community-i686/mozilla-pkgconfig.patch
  xulrunner/repos/community-i686/shared-libs.patch
  xulrunner/repos/community-i686/unbreak-plugin-build.patch
  xulrunner/repos/community-x86_64/PKGBUILD
  xulrunner/repos/community-x86_64/freetype-headers.patch
  xulrunner/repos/community-x86_64/mozconfig
  xulrunner/repos/community-x86_64/mozilla-pkgconfig.patch
  xulrunner/repos/community-x86_64/shared-libs.patch
  xulrunner/repos/community-x86_64/unbreak-plugin-build.patch

-+
 /PKGBUILD   |  144 
 /freetype-headers.patch |  132 ++
 /mozconfig  |   62 ++
 /mozilla-pkgconfig.patch|   80 +
 /shared-libs.patch  |   24 
 /unbreak-plugin-build.patch |  152 ++
 community-i686/PKGBUILD |   73 
 community-i686/freetype-headers.patch   |   66 ---
 community-i686/mozconfig|   31 -
 community-i686/mozilla-pkgconfig.patch  |   40 --
 community-i686/shared-libs.patch|   12 --
 community-i686/unbreak-plugin-build.patch   |   76 -
 community-x86_64/PKGBUILD   |   73 
 community-x86_64/freetype-headers.patch |   66 ---
 community-x86_64/mozconfig  |   31 -
 community-x86_64/mozilla-pkgconfig.patch|   40 --
 community-x86_64/shared-libs.patch  |   12 --
 community-x86_64/unbreak-plugin-build.patch |   76 -
 18 files changed, 594 insertions(+), 596 deletions(-)

The diff is longer than the limit of 200KB.
Use svn diff -r 110093:110094 to see the changes.


[arch-commits] Commit in xulrunner/trunk (PKGBUILD)

2014-04-23 Thread Connor Behan
Date: Thursday, April 24, 2014 @ 02:58:15
  Author: cbehan
Revision: 110093

upgpkg: xulrunner 29.0-1

Update to 29.0-1

Modified:
  xulrunner/trunk/PKGBUILD

--+
 PKGBUILD |5 ++---
 1 file changed, 2 insertions(+), 3 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2014-04-23 23:38:06 UTC (rev 110092)
+++ PKGBUILD2014-04-24 00:58:15 UTC (rev 110093)
@@ -4,7 +4,7 @@
 # Contributor: Alexander Baldeck 
 
 pkgname=xulrunner
-pkgver=28.0
+pkgver=29.0
 pkgrel=1
 pkgdesc="Mozilla Runtime Environment"
 arch=('i686' 'x86_64')
@@ -18,7 +18,7 @@
 shared-libs.patch)
 options=('!emptydirs' '!makeflags' 'staticlibs')
 replaces=('xulrunner-oss')
-sha256sums=('6eacdc549c252da57d1f51a363ad8c7e62f09ec8c796e8eb69ddb3e1008df7af'
+sha256sums=('408fe73f88f6db2594e4e2bf44b51954c086d1c6948bfa79bb604321d8145230'
 '38f1f7a49a03b67a6b96bb696640a28fd20b42f6e45a27a81d25d66fd0148e4e'
 '23485d937035648add27a7657f6934dc5b295e886cdb0506eebd02a43d07f269'
'e2b4a00d14f4ba69c62b3f9ef9908263fbab179ba8004197cbc67edbd916fdf1')
@@ -30,7 +30,6 @@
   #fix libdir/sdkdir - fedora
   patch -Np1 -i ../mozilla-pkgconfig.patch
   patch -Np1 -i ../shared-libs.patch
-  #patch -Np1 -i ../unbreak-plugin-build.patch
 
   # WebRTC build tries to execute "python" and expects Python 2
   # Workaround taken from chromium PKGBUILD



[arch-commits] Commit in xulrunner/repos (24 files)

2014-03-13 Thread Connor Behan
Date: Friday, March 14, 2014 @ 05:14:05
  Author: cbehan
Revision: 107175

archrelease: copy trunk to community-i686, community-x86_64

Added:
  xulrunner/repos/community-i686/PKGBUILD
(from rev 107174, xulrunner/trunk/PKGBUILD)
  xulrunner/repos/community-i686/freetype-headers.patch
(from rev 107174, xulrunner/trunk/freetype-headers.patch)
  xulrunner/repos/community-i686/mozconfig
(from rev 107174, xulrunner/trunk/mozconfig)
  xulrunner/repos/community-i686/mozilla-pkgconfig.patch
(from rev 107174, xulrunner/trunk/mozilla-pkgconfig.patch)
  xulrunner/repos/community-i686/shared-libs.patch
(from rev 107174, xulrunner/trunk/shared-libs.patch)
  xulrunner/repos/community-i686/unbreak-plugin-build.patch
(from rev 107174, xulrunner/trunk/unbreak-plugin-build.patch)
  xulrunner/repos/community-x86_64/PKGBUILD
(from rev 107174, xulrunner/trunk/PKGBUILD)
  xulrunner/repos/community-x86_64/freetype-headers.patch
(from rev 107174, xulrunner/trunk/freetype-headers.patch)
  xulrunner/repos/community-x86_64/mozconfig
(from rev 107174, xulrunner/trunk/mozconfig)
  xulrunner/repos/community-x86_64/mozilla-pkgconfig.patch
(from rev 107174, xulrunner/trunk/mozilla-pkgconfig.patch)
  xulrunner/repos/community-x86_64/shared-libs.patch
(from rev 107174, xulrunner/trunk/shared-libs.patch)
  xulrunner/repos/community-x86_64/unbreak-plugin-build.patch
(from rev 107174, xulrunner/trunk/unbreak-plugin-build.patch)
Deleted:
  xulrunner/repos/community-i686/PKGBUILD
  xulrunner/repos/community-i686/freetype-headers.patch
  xulrunner/repos/community-i686/mozconfig
  xulrunner/repos/community-i686/mozilla-pkgconfig.patch
  xulrunner/repos/community-i686/shared-libs.patch
  xulrunner/repos/community-i686/unbreak-plugin-build.patch
  xulrunner/repos/community-x86_64/PKGBUILD
  xulrunner/repos/community-x86_64/freetype-headers.patch
  xulrunner/repos/community-x86_64/mozconfig
  xulrunner/repos/community-x86_64/mozilla-pkgconfig.patch
  xulrunner/repos/community-x86_64/shared-libs.patch
  xulrunner/repos/community-x86_64/unbreak-plugin-build.patch

-+
 /PKGBUILD   |  146 
 /freetype-headers.patch |  132 ++
 /mozconfig  |   62 ++
 /mozilla-pkgconfig.patch|   80 +
 /shared-libs.patch  |   24 
 /unbreak-plugin-build.patch |  152 ++
 community-i686/PKGBUILD |   75 
 community-i686/freetype-headers.patch   |   66 ---
 community-i686/mozconfig|   31 -
 community-i686/mozilla-pkgconfig.patch  |   40 --
 community-i686/shared-libs.patch|   12 --
 community-i686/unbreak-plugin-build.patch   |   76 -
 community-x86_64/PKGBUILD   |   75 
 community-x86_64/freetype-headers.patch |   66 ---
 community-x86_64/mozconfig  |   31 -
 community-x86_64/mozilla-pkgconfig.patch|   40 --
 community-x86_64/shared-libs.patch  |   12 --
 community-x86_64/unbreak-plugin-build.patch |   76 -
 18 files changed, 596 insertions(+), 600 deletions(-)

The diff is longer than the limit of 200KB.
Use svn diff -r 107174:107175 to see the changes.


[arch-commits] Commit in xulrunner/trunk (PKGBUILD mozconfig)

2014-03-13 Thread Connor Behan
Date: Friday, March 14, 2014 @ 05:12:40
  Author: cbehan
Revision: 107174

upgpkg: xulrunner 28.0-1

Plugin and gold issues were fixed

Modified:
  xulrunner/trunk/PKGBUILD
  xulrunner/trunk/mozconfig

---+
 PKGBUILD  |   18 --
 mozconfig |2 +-
 2 files changed, 9 insertions(+), 11 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2014-03-14 00:16:07 UTC (rev 107173)
+++ PKGBUILD2014-03-14 04:12:40 UTC (rev 107174)
@@ -4,26 +4,24 @@
 # Contributor: Alexander Baldeck 
 
 pkgname=xulrunner
-pkgver=27.0
-pkgrel=2
+pkgver=28.0
+pkgrel=1
 pkgdesc="Mozilla Runtime Environment"
 arch=('i686' 'x86_64')
 license=('MPL' 'GPL' 'LGPL')
-depends=('gtk2' 'mozilla-common' 'nss' 'libxt' 'hunspell' 
'startup-notification' 'mime-types' 'dbus-glib' 'alsa-lib' 'libevent' 'libvpx' 
'python2')
+depends=('gtk2' 'mozilla-common' 'nss' 'libxt' 'hunspell' 
'startup-notification' 'mime-types' 'dbus-glib' 'libpulse' 'libevent' 'libvpx' 
'python2')
 makedepends=('zip' 'unzip' 'pkg-config' 'diffutils' 'yasm' 'mesa' 
'autoconf2.13' 'gstreamer0.10-base')
 url="http://wiki.mozilla.org/XUL:Xul_Runner";
 
source=(ftp://ftp.mozilla.org/pub/mozilla.org/xulrunner/releases/$pkgver/source/xulrunner-$pkgver.source.tar.bz2
 mozconfig
 mozilla-pkgconfig.patch
-shared-libs.patch
-unbreak-plugin-build.patch)
+shared-libs.patch)
 options=('!emptydirs' '!makeflags' 'staticlibs')
 replaces=('xulrunner-oss')
-sha256sums=('4f6125c053e12c4ac3317b075e289b10ce470dd90ed6fc43c4572bf1acc64981'
-'8455f7bc00e8ad6e69bba43171083c778420a8b1c566347ed5381ae9cf98191a'
+sha256sums=('6eacdc549c252da57d1f51a363ad8c7e62f09ec8c796e8eb69ddb3e1008df7af'
+'38f1f7a49a03b67a6b96bb696640a28fd20b42f6e45a27a81d25d66fd0148e4e'
 '23485d937035648add27a7657f6934dc5b295e886cdb0506eebd02a43d07f269'
-'e2b4a00d14f4ba69c62b3f9ef9908263fbab179ba8004197cbc67edbd916fdf1'
-'94eef5c52868bf306017898b424f41b124fa39b70dbc8f2bc1c18d9f1c042752')
+   'e2b4a00d14f4ba69c62b3f9ef9908263fbab179ba8004197cbc67edbd916fdf1')
 
 prepare() {
   cd "$srcdir/mozilla-release"
@@ -32,7 +30,7 @@
   #fix libdir/sdkdir - fedora
   patch -Np1 -i ../mozilla-pkgconfig.patch
   patch -Np1 -i ../shared-libs.patch
-  patch -Np1 -i ../unbreak-plugin-build.patch
+  #patch -Np1 -i ../unbreak-plugin-build.patch
 
   # WebRTC build tries to execute "python" and expects Python 2
   # Workaround taken from chromium PKGBUILD

Modified: mozconfig
===
--- mozconfig   2014-03-14 00:16:07 UTC (rev 107173)
+++ mozconfig   2014-03-14 04:12:40 UTC (rev 107174)
@@ -28,4 +28,4 @@
 ac_add_options --disable-installer
 
 # https://bugzilla.mozilla.org/show_bug.cgi?id=955876
-ac_add_options --enable-release
+#ac_add_options --enable-release



[arch-commits] Commit in xulrunner/repos (22 files)

2014-03-13 Thread Jan Steffens
Date: Friday, March 14, 2014 @ 00:44:01
  Author: heftig
Revision: 107171

archrelease: copy trunk to community-i686, community-x86_64

Added:
  xulrunner/repos/community-i686/PKGBUILD
(from rev 107170, xulrunner/trunk/PKGBUILD)
  xulrunner/repos/community-i686/freetype-headers.patch
(from rev 107170, xulrunner/trunk/freetype-headers.patch)
  xulrunner/repos/community-i686/mozconfig
(from rev 107170, xulrunner/trunk/mozconfig)
  xulrunner/repos/community-i686/mozilla-pkgconfig.patch
(from rev 107170, xulrunner/trunk/mozilla-pkgconfig.patch)
  xulrunner/repos/community-i686/shared-libs.patch
(from rev 107170, xulrunner/trunk/shared-libs.patch)
  xulrunner/repos/community-i686/unbreak-plugin-build.patch
(from rev 107170, xulrunner/trunk/unbreak-plugin-build.patch)
  xulrunner/repos/community-x86_64/PKGBUILD
(from rev 107170, xulrunner/trunk/PKGBUILD)
  xulrunner/repos/community-x86_64/freetype-headers.patch
(from rev 107170, xulrunner/trunk/freetype-headers.patch)
  xulrunner/repos/community-x86_64/mozconfig
(from rev 107170, xulrunner/trunk/mozconfig)
  xulrunner/repos/community-x86_64/mozilla-pkgconfig.patch
(from rev 107170, xulrunner/trunk/mozilla-pkgconfig.patch)
  xulrunner/repos/community-x86_64/shared-libs.patch
(from rev 107170, xulrunner/trunk/shared-libs.patch)
  xulrunner/repos/community-x86_64/unbreak-plugin-build.patch
(from rev 107170, xulrunner/trunk/unbreak-plugin-build.patch)
Deleted:
  xulrunner/repos/community-i686/PKGBUILD
  xulrunner/repos/community-i686/freetype-headers.patch
  xulrunner/repos/community-i686/mozconfig
  xulrunner/repos/community-i686/mozilla-pkgconfig.patch
  xulrunner/repos/community-i686/shared-libs.patch
  xulrunner/repos/community-x86_64/PKGBUILD
  xulrunner/repos/community-x86_64/freetype-headers.patch
  xulrunner/repos/community-x86_64/mozconfig
  xulrunner/repos/community-x86_64/mozilla-pkgconfig.patch
  xulrunner/repos/community-x86_64/shared-libs.patch

-+
 /PKGBUILD   |  150 ++
 /freetype-headers.patch |  132 ++
 /mozconfig  |   62 ++
 /mozilla-pkgconfig.patch|   80 +
 /shared-libs.patch  |   24 
 community-i686/PKGBUILD |   72 
 community-i686/freetype-headers.patch   |   66 ---
 community-i686/mozconfig|   31 -
 community-i686/mozilla-pkgconfig.patch  |   40 --
 community-i686/shared-libs.patch|   12 --
 community-i686/unbreak-plugin-build.patch   |   76 +
 community-x86_64/PKGBUILD   |   72 
 community-x86_64/freetype-headers.patch |   66 ---
 community-x86_64/mozconfig  |   31 -
 community-x86_64/mozilla-pkgconfig.patch|   40 --
 community-x86_64/shared-libs.patch  |   12 --
 community-x86_64/unbreak-plugin-build.patch |   76 +
 17 files changed, 600 insertions(+), 442 deletions(-)

The diff is longer than the limit of 200KB.
Use svn diff -r 107170:107171 to see the changes.


[arch-commits] Commit in xulrunner/trunk (PKGBUILD unbreak-plugin-build.patch)

2014-03-13 Thread Jan Steffens
Date: Thursday, March 13, 2014 @ 23:57:17
  Author: heftig
Revision: 107170

Fix building plugins

Added:
  xulrunner/trunk/unbreak-plugin-build.patch
Modified:
  xulrunner/trunk/PKGBUILD

+
 PKGBUILD   |9 +++--
 unbreak-plugin-build.patch |   76 +++
 2 files changed, 82 insertions(+), 3 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2014-03-13 21:45:37 UTC (rev 107169)
+++ PKGBUILD2014-03-13 22:57:17 UTC (rev 107170)
@@ -5,7 +5,7 @@
 
 pkgname=xulrunner
 pkgver=27.0
-pkgrel=1
+pkgrel=2
 pkgdesc="Mozilla Runtime Environment"
 arch=('i686' 'x86_64')
 license=('MPL' 'GPL' 'LGPL')
@@ -15,13 +15,15 @@
 
source=(ftp://ftp.mozilla.org/pub/mozilla.org/xulrunner/releases/$pkgver/source/xulrunner-$pkgver.source.tar.bz2
 mozconfig
 mozilla-pkgconfig.patch
-shared-libs.patch)
+shared-libs.patch
+unbreak-plugin-build.patch)
 options=('!emptydirs' '!makeflags' 'staticlibs')
 replaces=('xulrunner-oss')
 sha256sums=('4f6125c053e12c4ac3317b075e289b10ce470dd90ed6fc43c4572bf1acc64981'
 '8455f7bc00e8ad6e69bba43171083c778420a8b1c566347ed5381ae9cf98191a'
 '23485d937035648add27a7657f6934dc5b295e886cdb0506eebd02a43d07f269'
-'e2b4a00d14f4ba69c62b3f9ef9908263fbab179ba8004197cbc67edbd916fdf1')
+'e2b4a00d14f4ba69c62b3f9ef9908263fbab179ba8004197cbc67edbd916fdf1'
+'94eef5c52868bf306017898b424f41b124fa39b70dbc8f2bc1c18d9f1c042752')
 
 prepare() {
   cd "$srcdir/mozilla-release"
@@ -30,6 +32,7 @@
   #fix libdir/sdkdir - fedora
   patch -Np1 -i ../mozilla-pkgconfig.patch
   patch -Np1 -i ../shared-libs.patch
+  patch -Np1 -i ../unbreak-plugin-build.patch
 
   # WebRTC build tries to execute "python" and expects Python 2
   # Workaround taken from chromium PKGBUILD

Added: unbreak-plugin-build.patch
===
--- unbreak-plugin-build.patch  (rev 0)
+++ unbreak-plugin-build.patch  2014-03-13 22:57:17 UTC (rev 107170)
@@ -0,0 +1,76 @@
+
+# HG changeset patch
+# User Ehsan Akhgari 
+# Date 1392421799 18000
+# Node ID 0691948a0abedc7db35c4cb67ec11ad06f782ab0
+# Parent  6f78482c5792b03adca38c924cc4a41f6e16b8ff
+Bug 784739 follow-up: Use NULL in npruntime.h
+
+diff --git a/dom/plugins/base/npruntime.h b/dom/plugins/base/npruntime.h
+--- a/dom/plugins/base/npruntime.h
 b/dom/plugins/base/npruntime.h
+@@ -132,23 +132,23 @@ void NPN_ReleaseVariantValue(NPVariant *
+ #define NPVARIANT_TO_INT32(_v)   ((_v).value.intValue)
+ #define NPVARIANT_TO_DOUBLE(_v)  ((_v).value.doubleValue)
+ #define NPVARIANT_TO_STRING(_v)  ((_v).value.stringValue)
+ #define NPVARIANT_TO_OBJECT(_v)  ((_v).value.objectValue)
+ 
+ #define VOID_TO_NPVARIANT(_v) 
\
+ NP_BEGIN_MACRO
\
+ (_v).type = NPVariantType_Void;   
\
+-(_v).value.objectValue = nullptr; 
\
++(_v).value.objectValue = NULL;
\
+ NP_END_MACRO
+ 
+ #define NULL_TO_NPVARIANT(_v) 
\
+ NP_BEGIN_MACRO
\
+ (_v).type = NPVariantType_Null;   
\
+-(_v).value.objectValue = nullptr; 
\
++(_v).value.objectValue = NULL;
\
+ NP_END_MACRO
+ 
+ #define BOOLEAN_TO_NPVARIANT(_val, _v)
\
+ NP_BEGIN_MACRO
\
+ (_v).type = NPVariantType_Bool;   
\
+ (_v).value.boolValue = !!(_val);  
\
+ NP_END_MACRO
+ 
+@@ -211,17 +211,17 @@ typedef void *NPIdentifier;
+ 
+ /*
+ NPObjects have methods and properties.  Methods and properties are
+ identified with NPIdentifiers.  These identifiers may be reflected
+ in script.  NPIdentifiers can be either strings or integers, IOW,
+ methods and properties can be identified by either strings or
+ integers (i.e. foo["bar"] vs foo[1]). NPIdentifiers can be
+ compared using ==.  In case of any errors, the requested
+-NPIdentifier(s) will be nullptr. NPIdentifier lifetime is controlled
++NPIdentifier(s) will be NULL. NPIdentifier lifetime is controlled
+ by the browser. Plugins do not need to worry about memory management
+ with regards to NPIdentifiers.
+ */
+ NPIdentifier NPN_GetStringIdentifier(const NPUTF8 *name);
+ void NPN_GetStringIdentifiers(const NPUTF8 **names, int32_t nameCount,
+   NPIdentifier *identifiers)

[arch-commits] Commit in xulrunner/repos (20 files)

2014-02-08 Thread Connor Behan
Date: Sunday, February 9, 2014 @ 05:20:46
  Author: cbehan
Revision: 105483

archrelease: copy trunk to community-i686, community-x86_64

Added:
  xulrunner/repos/community-i686/PKGBUILD
(from rev 105482, xulrunner/trunk/PKGBUILD)
  xulrunner/repos/community-i686/freetype-headers.patch
(from rev 105482, xulrunner/trunk/freetype-headers.patch)
  xulrunner/repos/community-i686/mozconfig
(from rev 105482, xulrunner/trunk/mozconfig)
  xulrunner/repos/community-i686/mozilla-pkgconfig.patch
(from rev 105482, xulrunner/trunk/mozilla-pkgconfig.patch)
  xulrunner/repos/community-i686/shared-libs.patch
(from rev 105482, xulrunner/trunk/shared-libs.patch)
  xulrunner/repos/community-x86_64/PKGBUILD
(from rev 105482, xulrunner/trunk/PKGBUILD)
  xulrunner/repos/community-x86_64/freetype-headers.patch
(from rev 105482, xulrunner/trunk/freetype-headers.patch)
  xulrunner/repos/community-x86_64/mozconfig
(from rev 105482, xulrunner/trunk/mozconfig)
  xulrunner/repos/community-x86_64/mozilla-pkgconfig.patch
(from rev 105482, xulrunner/trunk/mozilla-pkgconfig.patch)
  xulrunner/repos/community-x86_64/shared-libs.patch
(from rev 105482, xulrunner/trunk/shared-libs.patch)
Deleted:
  xulrunner/repos/community-i686/PKGBUILD
  xulrunner/repos/community-i686/freetype-headers.patch
  xulrunner/repos/community-i686/mozconfig
  xulrunner/repos/community-i686/mozilla-pkgconfig.patch
  xulrunner/repos/community-i686/shared-libs.patch
  xulrunner/repos/community-x86_64/PKGBUILD
  xulrunner/repos/community-x86_64/freetype-headers.patch
  xulrunner/repos/community-x86_64/mozconfig
  xulrunner/repos/community-x86_64/mozilla-pkgconfig.patch
  xulrunner/repos/community-x86_64/shared-libs.patch

--+
 /PKGBUILD|  144 +
 /freetype-headers.patch  |  132 ++
 /mozconfig   |   62 
 /mozilla-pkgconfig.patch |   80 
 /shared-libs.patch   |   24 
 community-i686/PKGBUILD  |   75 ---
 community-i686/freetype-headers.patch|   66 -
 community-i686/mozconfig |   29 -
 community-i686/mozilla-pkgconfig.patch   |   40 
 community-i686/shared-libs.patch |   12 --
 community-x86_64/PKGBUILD|   75 ---
 community-x86_64/freetype-headers.patch  |   66 -
 community-x86_64/mozconfig   |   29 -
 community-x86_64/mozilla-pkgconfig.patch |   40 
 community-x86_64/shared-libs.patch   |   12 --
 15 files changed, 442 insertions(+), 444 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2014-02-09 04:19:30 UTC (rev 105482)
+++ community-i686/PKGBUILD 2014-02-09 04:20:46 UTC (rev 105483)
@@ -1,75 +0,0 @@
-# $Id$
-# Maintainer: Connor Behan 
-# Contributor: Jan de Groot 
-# Contributor: Alexander Baldeck 
-
-pkgname=xulrunner
-pkgver=25.0
-pkgrel=1
-pkgdesc="Mozilla Runtime Environment"
-arch=('i686' 'x86_64')
-license=('MPL' 'GPL' 'LGPL')
-depends=('gtk2' 'mozilla-common' 'nss>=3.15' 'libxt' 'hunspell' 
'startup-notification' 'mime-types' 'dbus-glib' 'alsa-lib' 'libevent' 'libvpx' 
'python2')
-makedepends=('zip' 'unzip' 'pkg-config' 'diffutils' 'yasm' 'mesa' 
'autoconf2.13' 'gstreamer0.10-base>=0.10.25')
-url="http://wiki.mozilla.org/XUL:Xul_Runner";
-source=(ftp://ftp.mozilla.org/pub/mozilla.org/xulrunner/releases/$pkgver/source/xulrunner-$pkgver.source.tar.bz2
-mozconfig
-mozilla-pkgconfig.patch
-shared-libs.patch
-   freetype-headers.patch)
-options=('!emptydirs' 'staticlibs')
-replaces=('xulrunner-oss')
-sha256sums=('796614f7a7a02ae4bceb5d1f2dce2de5096f9e390e91ec09fa5a40bcdff45cb1'
-'b5e66890e991b194d9a6d2179bccd5ac0015d4aab0a8411c55c6ecfd06576c24'
-'23485d937035648add27a7657f6934dc5b295e886cdb0506eebd02a43d07f269'
-'e2b4a00d14f4ba69c62b3f9ef9908263fbab179ba8004197cbc67edbd916fdf1'
-'b62975b25fa3a0dc3e57e32c2b980daf2ee2497eff1d9661595b8e8bafbaa5f8')
-
-prepare() {
-  cd "$srcdir/mozilla-release"
-  cp "$srcdir/mozconfig" .mozconfig
-
-  #fix libdir/sdkdir - fedora
-  patch -Np1 -i ../mozilla-pkgconfig.patch
-  patch -Np1 -i ../shared-libs.patch
-  patch -Np1 -i ../freetype-headers.patch
-
-  # WebRTC build tries to execute "python" and expects Python 2
-  # Workaround taken from chromium PKGBUILD
-  mkdir "$srcdir/python2-path"
-  ln -s /usr/bin/python2 "$srcdir/python2-path/python"
-
-  # configure script misdetects the preprocessor without an optimization level
-  # https://bugs.archlinux.org/task/34644
-  sed -i '/ac_cpp=/s/$CPPFLAGS/& -O2/' configure
-}
-
-build() {
-  cd "$srcdir/mozilla-release"
-
-  export PATH="$srcdir/python2-path:$PATH"
-  export LDFLAGS="$LDFALGS 

[arch-commits] Commit in xulrunner/trunk (PKGBUILD mozconfig)

2014-02-08 Thread Connor Behan
Date: Sunday, February 9, 2014 @ 05:19:30
  Author: cbehan
Revision: 105482

upgpkg: xulrunner 27.0-1

xulrunner 27, finally compiles after lots of pain

Modified:
  xulrunner/trunk/PKGBUILD
  xulrunner/trunk/mozconfig

---+
 PKGBUILD  |   21 +
 mozconfig |4 +++-
 2 files changed, 12 insertions(+), 13 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2014-02-09 02:00:52 UTC (rev 105481)
+++ PKGBUILD2014-02-09 04:19:30 UTC (rev 105482)
@@ -4,26 +4,24 @@
 # Contributor: Alexander Baldeck 
 
 pkgname=xulrunner
-pkgver=25.0
+pkgver=27.0
 pkgrel=1
 pkgdesc="Mozilla Runtime Environment"
 arch=('i686' 'x86_64')
 license=('MPL' 'GPL' 'LGPL')
-depends=('gtk2' 'mozilla-common' 'nss>=3.15' 'libxt' 'hunspell' 
'startup-notification' 'mime-types' 'dbus-glib' 'alsa-lib' 'libevent' 'libvpx' 
'python2')
-makedepends=('zip' 'unzip' 'pkg-config' 'diffutils' 'yasm' 'mesa' 
'autoconf2.13' 'gstreamer0.10-base>=0.10.25')
+depends=('gtk2' 'mozilla-common' 'nss' 'libxt' 'hunspell' 
'startup-notification' 'mime-types' 'dbus-glib' 'alsa-lib' 'libevent' 'libvpx' 
'python2')
+makedepends=('zip' 'unzip' 'pkg-config' 'diffutils' 'yasm' 'mesa' 
'autoconf2.13' 'gstreamer0.10-base')
 url="http://wiki.mozilla.org/XUL:Xul_Runner";
 
source=(ftp://ftp.mozilla.org/pub/mozilla.org/xulrunner/releases/$pkgver/source/xulrunner-$pkgver.source.tar.bz2
 mozconfig
 mozilla-pkgconfig.patch
-shared-libs.patch
-   freetype-headers.patch)
-options=('!emptydirs' 'staticlibs')
+shared-libs.patch)
+options=('!emptydirs' '!makeflags' 'staticlibs')
 replaces=('xulrunner-oss')
-sha256sums=('796614f7a7a02ae4bceb5d1f2dce2de5096f9e390e91ec09fa5a40bcdff45cb1'
-'b5e66890e991b194d9a6d2179bccd5ac0015d4aab0a8411c55c6ecfd06576c24'
+sha256sums=('4f6125c053e12c4ac3317b075e289b10ce470dd90ed6fc43c4572bf1acc64981'
+'8455f7bc00e8ad6e69bba43171083c778420a8b1c566347ed5381ae9cf98191a'
 '23485d937035648add27a7657f6934dc5b295e886cdb0506eebd02a43d07f269'
-'e2b4a00d14f4ba69c62b3f9ef9908263fbab179ba8004197cbc67edbd916fdf1'
-'b62975b25fa3a0dc3e57e32c2b980daf2ee2497eff1d9661595b8e8bafbaa5f8')
+'e2b4a00d14f4ba69c62b3f9ef9908263fbab179ba8004197cbc67edbd916fdf1')
 
 prepare() {
   cd "$srcdir/mozilla-release"
@@ -32,7 +30,6 @@
   #fix libdir/sdkdir - fedora
   patch -Np1 -i ../mozilla-pkgconfig.patch
   patch -Np1 -i ../shared-libs.patch
-  patch -Np1 -i ../freetype-headers.patch
 
   # WebRTC build tries to execute "python" and expects Python 2
   # Workaround taken from chromium PKGBUILD
@@ -51,7 +48,7 @@
   export LDFLAGS="$LDFALGS -Wl,-rpath,/usr/lib/xulrunner-$pkgver"
   export PYTHON="/usr/bin/python2"
 
-  make -j1 -f client.mk build MOZ_MAKE_FLAGS="$MAKEFLAGS"
+  make -j1 -f client.mk build
 }
 
 package() {

Modified: mozconfig
===
--- mozconfig   2014-02-09 02:00:52 UTC (rev 105481)
+++ mozconfig   2014-02-09 04:19:30 UTC (rev 105482)
@@ -22,8 +22,10 @@
 # Features
 ac_add_options --enable-startup-notification
 ac_add_options --enable-gstreamer
-
 ac_add_options --disable-crashreporter
 ac_add_options --disable-updater
 ac_add_options --disable-tests
 ac_add_options --disable-installer
+
+# https://bugzilla.mozilla.org/show_bug.cgi?id=955876
+ac_add_options --enable-release



[arch-commits] Commit in xulrunner/repos (10 files)

2014-01-03 Thread Connor Behan
Date: Saturday, January 4, 2014 @ 07:59:57
  Author: cbehan
Revision: 103367

archrelease: copy trunk to community-i686, community-x86_64

Added:
  xulrunner/repos/community-i686/PKGBUILD
(from rev 103366, xulrunner/trunk/PKGBUILD)
  xulrunner/repos/community-i686/freetype-headers.patch
(from rev 103366, xulrunner/trunk/freetype-headers.patch)
  xulrunner/repos/community-i686/mozconfig
(from rev 103366, xulrunner/trunk/mozconfig)
  xulrunner/repos/community-i686/mozilla-pkgconfig.patch
(from rev 103366, xulrunner/trunk/mozilla-pkgconfig.patch)
  xulrunner/repos/community-i686/shared-libs.patch
(from rev 103366, xulrunner/trunk/shared-libs.patch)
  xulrunner/repos/community-x86_64/PKGBUILD
(from rev 103366, xulrunner/trunk/PKGBUILD)
  xulrunner/repos/community-x86_64/freetype-headers.patch
(from rev 103366, xulrunner/trunk/freetype-headers.patch)
  xulrunner/repos/community-x86_64/mozconfig
(from rev 103366, xulrunner/trunk/mozconfig)
  xulrunner/repos/community-x86_64/mozilla-pkgconfig.patch
(from rev 103366, xulrunner/trunk/mozilla-pkgconfig.patch)
  xulrunner/repos/community-x86_64/shared-libs.patch
(from rev 103366, xulrunner/trunk/shared-libs.patch)

--+
 community-i686/PKGBUILD  |   75 +
 community-i686/freetype-headers.patch|   66 +
 community-i686/mozconfig |   29 +++
 community-i686/mozilla-pkgconfig.patch   |   40 +++
 community-i686/shared-libs.patch |   12 
 community-x86_64/PKGBUILD|   75 +
 community-x86_64/freetype-headers.patch  |   66 +
 community-x86_64/mozconfig   |   29 +++
 community-x86_64/mozilla-pkgconfig.patch |   40 +++
 community-x86_64/shared-libs.patch   |   12 
 10 files changed, 444 insertions(+)

Copied: xulrunner/repos/community-i686/PKGBUILD (from rev 103366, 
xulrunner/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2014-01-04 06:59:57 UTC (rev 103367)
@@ -0,0 +1,75 @@
+# $Id$
+# Maintainer: Connor Behan 
+# Contributor: Jan de Groot 
+# Contributor: Alexander Baldeck 
+
+pkgname=xulrunner
+pkgver=25.0
+pkgrel=1
+pkgdesc="Mozilla Runtime Environment"
+arch=('i686' 'x86_64')
+license=('MPL' 'GPL' 'LGPL')
+depends=('gtk2' 'mozilla-common' 'nss>=3.15' 'libxt' 'hunspell' 
'startup-notification' 'mime-types' 'dbus-glib' 'alsa-lib' 'libevent' 'libvpx' 
'python2')
+makedepends=('zip' 'unzip' 'pkg-config' 'diffutils' 'yasm' 'mesa' 
'autoconf2.13' 'gstreamer0.10-base>=0.10.25')
+url="http://wiki.mozilla.org/XUL:Xul_Runner";
+source=(ftp://ftp.mozilla.org/pub/mozilla.org/xulrunner/releases/$pkgver/source/xulrunner-$pkgver.source.tar.bz2
+mozconfig
+mozilla-pkgconfig.patch
+shared-libs.patch
+   freetype-headers.patch)
+options=('!emptydirs' 'staticlibs')
+replaces=('xulrunner-oss')
+sha256sums=('796614f7a7a02ae4bceb5d1f2dce2de5096f9e390e91ec09fa5a40bcdff45cb1'
+'b5e66890e991b194d9a6d2179bccd5ac0015d4aab0a8411c55c6ecfd06576c24'
+'23485d937035648add27a7657f6934dc5b295e886cdb0506eebd02a43d07f269'
+'e2b4a00d14f4ba69c62b3f9ef9908263fbab179ba8004197cbc67edbd916fdf1'
+'b62975b25fa3a0dc3e57e32c2b980daf2ee2497eff1d9661595b8e8bafbaa5f8')
+
+prepare() {
+  cd "$srcdir/mozilla-release"
+  cp "$srcdir/mozconfig" .mozconfig
+
+  #fix libdir/sdkdir - fedora
+  patch -Np1 -i ../mozilla-pkgconfig.patch
+  patch -Np1 -i ../shared-libs.patch
+  patch -Np1 -i ../freetype-headers.patch
+
+  # WebRTC build tries to execute "python" and expects Python 2
+  # Workaround taken from chromium PKGBUILD
+  mkdir "$srcdir/python2-path"
+  ln -s /usr/bin/python2 "$srcdir/python2-path/python"
+
+  # configure script misdetects the preprocessor without an optimization level
+  # https://bugs.archlinux.org/task/34644
+  sed -i '/ac_cpp=/s/$CPPFLAGS/& -O2/' configure
+}
+
+build() {
+  cd "$srcdir/mozilla-release"
+
+  export PATH="$srcdir/python2-path:$PATH"
+  export LDFLAGS="$LDFALGS -Wl,-rpath,/usr/lib/xulrunner-$pkgver"
+  export PYTHON="/usr/bin/python2"
+
+  make -j1 -f client.mk build MOZ_MAKE_FLAGS="$MAKEFLAGS"
+}
+
+package() {
+  cd "$srcdir/mozilla-release"
+  make -j1 -f client.mk DESTDIR="$pkgdir" install
+
+  # Use system-provided dictionaries
+  rm -rf "$pkgdir"/usr/lib/xulrunner-$pkgver/{dictionaries,hyphenation}
+  ln -sf /usr/share/hunspell "$pkgdir/usr/lib/xulrunner-$pkgver/dictionaries"
+  ln -sf /usr/share/hyphen "$pkgdir/usr/lib/xulrunner-$pkgver/hyphenation"
+
+  # add xulrunner library path to ld.so.conf
+  install -d $pkgdir/etc/ld.so.conf.d
+  echo "/usr/lib/xulrunner-$pkgver" > $pkgdir/etc/ld.so.conf.d/xulrunner.conf
+
+  chmod +x "${pkgdir}/usr/lib/xulrunner-devel-$pkgver/sdk/bi

[arch-commits] Commit in xulrunner/repos (8 files)

2014-01-03 Thread Connor Behan
Date: Saturday, January 4, 2014 @ 07:49:43
  Author: cbehan
Revision: 103366

archrelease: copy trunk to community-i686, community-x86_64

Deleted:
  xulrunner/repos/community-i686/PKGBUILD
  xulrunner/repos/community-i686/mozconfig
  xulrunner/repos/community-i686/mozilla-pkgconfig.patch
  xulrunner/repos/community-i686/shared-libs.patch
  xulrunner/repos/community-x86_64/PKGBUILD
  xulrunner/repos/community-x86_64/mozconfig
  xulrunner/repos/community-x86_64/mozilla-pkgconfig.patch
  xulrunner/repos/community-x86_64/shared-libs.patch

--+
 community-i686/PKGBUILD  |   68 -
 community-i686/mozconfig |   29 
 community-i686/mozilla-pkgconfig.patch   |   40 -
 community-i686/shared-libs.patch |   12 -
 community-x86_64/PKGBUILD|   68 -
 community-x86_64/mozconfig   |   29 
 community-x86_64/mozilla-pkgconfig.patch |   40 -
 community-x86_64/shared-libs.patch   |   12 -
 8 files changed, 298 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2014-01-04 06:48:04 UTC (rev 103365)
+++ community-i686/PKGBUILD 2014-01-04 06:49:43 UTC (rev 103366)
@@ -1,68 +0,0 @@
-# $Id$
-# Maintainer: Jan de Groot 
-# Contributor: Alexander Baldeck 
-
-pkgname=xulrunner
-pkgver=23.0.1
-pkgrel=1
-pkgdesc="Mozilla Runtime Environment"
-arch=('i686' 'x86_64')
-license=('MPL' 'GPL' 'LGPL')
-depends=('gtk2' 'mozilla-common' 'nss>=3.14.1' 'libxt' 'libxrender' 'hunspell' 
'startup-notification' 'mime-types' 'dbus-glib' 'alsa-lib' 'libevent' 
'sqlite>=3.7.4' 'libvpx' 'python2')
-makedepends=('zip' 'unzip' 'pkg-config' 'diffutils' 'yasm' 'mesa' 
'autoconf2.13')
-url="http://wiki.mozilla.org/XUL:Xul_Runner";
-source=(ftp://ftp.mozilla.org/pub/mozilla.org/xulrunner/releases/$pkgver/source/xulrunner-$pkgver.source.tar.bz2
-mozconfig
-mozilla-pkgconfig.patch
-shared-libs.patch)
-options=('!emptydirs' 'staticlibs')
-replaces=('xulrunner-oss')
-sha256sums=('50d70813cee1c966a6037957206626bb62dc047b011d2e4fab11c559008f9336'
-'3fba82b327f8825ebe93ceaeaea4968d57cf7d700f40bf4457b06d263bcc2e8f'
-'23485d937035648add27a7657f6934dc5b295e886cdb0506eebd02a43d07f269'
-'e2b4a00d14f4ba69c62b3f9ef9908263fbab179ba8004197cbc67edbd916fdf1')
-
-prepare() {
-  cd "$srcdir/mozilla-release"
-  cp "$srcdir/mozconfig" .mozconfig
-
-  #fix libdir/sdkdir - fedora
-  patch -Np1 -i ../mozilla-pkgconfig.patch
-  patch -Np1 -i ../shared-libs.patch
-
-  # WebRTC build tries to execute "python" and expects Python 2
-  # Workaround taken from chromium PKGBUILD
-  mkdir "$srcdir/python2-path"
-  ln -s /usr/bin/python2 "$srcdir/python2-path/python"
-
-  # configure script misdetects the preprocessor without an optimization level
-  # https://bugs.archlinux.org/task/34644
-  sed -i '/ac_cpp=/s/$CPPFLAGS/& -O2/' configure
-}
-
-build() {
-  cd "$srcdir/mozilla-release"
-
-  export PATH="$srcdir/python2-path:$PATH"
-  export LDFLAGS="$LDFLAGS -Wl,-rpath,/usr/lib/xulrunner-$pkgver"
-  export PYTHON="/usr/bin/python2"
-
-  make -j1 -f client.mk build MOZ_MAKE_FLAGS="$MAKEFLAGS"
-}
-
-package() {
-  cd "$srcdir/mozilla-release"
-  make -j1 -f client.mk DESTDIR="$pkgdir" install
-
-  rm -rf "$pkgdir"/usr/lib/xulrunner-$pkgver/{dictionaries,hyphenation}
-  ln -sf /usr/share/hunspell "$pkgdir/usr/lib/xulrunner-$pkgver/dictionaries"
-  ln -sf /usr/share/hyphen "$pkgdir/usr/lib/xulrunner-$pkgver/hyphenation"
-
-  # add xulrunner library path to ld.so.conf
-  install -d $pkgdir/etc/ld.so.conf.d
-  echo "/usr/lib/xulrunner-$pkgver" > $pkgdir/etc/ld.so.conf.d/xulrunner.conf
-
-  chmod +x "${pkgdir}/usr/lib/xulrunner-devel-$pkgver/sdk/bin/xpt.py"
-  sed -i 's|!/usr/bin/env python$|!/usr/bin/env python2|' \
-
"$pkgdir"/usr/lib/xulrunner-devel-$pkgver/sdk/bin/{xpt,header,typelib,xpidl}.py
-}

Deleted: community-i686/mozconfig
===
--- community-i686/mozconfig2014-01-04 06:48:04 UTC (rev 103365)
+++ community-i686/mozconfig2014-01-04 06:49:43 UTC (rev 103366)
@@ -1,29 +0,0 @@
-. $topsrcdir/xulrunner/config/mozconfig
-
-ac_add_options --prefix=/usr
-ac_add_options --libdir=/usr/lib
-
-# System libraries
-ac_add_options --with-system-nspr
-ac_add_options --with-system-nss
-ac_add_options --with-system-jpeg
-ac_add_options --with-system-zlib
-ac_add_options --with-system-bz2
-ac_add_options --with-system-png
-ac_add_options --with-system-libevent
-ac_add_options --with-system-libvpx
-ac_add_options --enable-system-hunspell
-ac_add_options --enable-system-sqlite
-ac_add_options --enable-system-ffi
-#ac_add_options --enable-system-cairo
-ac_add_options --enable-system-pixman
-ac_add_options --with-pthreads
-
-# Features
-ac_add_options --

[arch-commits] Commit in xulrunner/trunk (PKGBUILD freetype-headers.patch mozconfig)

2014-01-03 Thread Connor Behan
Date: Saturday, January 4, 2014 @ 07:48:04
  Author: cbehan
Revision: 103365

upgpkg: xulrunner 25.0-1

Update to 25.0-1

Added:
  xulrunner/trunk/freetype-headers.patch
Modified:
  xulrunner/trunk/PKGBUILD
  xulrunner/trunk/mozconfig

+
 PKGBUILD   |   25 +++--
 freetype-headers.patch |   66 +++
 mozconfig  |4 +-
 3 files changed, 84 insertions(+), 11 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2014-01-04 05:39:02 UTC (rev 103364)
+++ PKGBUILD2014-01-04 06:48:04 UTC (rev 103365)
@@ -1,26 +1,29 @@
 # $Id$
-# Maintainer: Jan de Groot 
+# Maintainer: Connor Behan 
+# Contributor: Jan de Groot 
 # Contributor: Alexander Baldeck 
 
 pkgname=xulrunner
-pkgver=23.0.1
+pkgver=25.0
 pkgrel=1
 pkgdesc="Mozilla Runtime Environment"
 arch=('i686' 'x86_64')
 license=('MPL' 'GPL' 'LGPL')
-depends=('gtk2' 'mozilla-common' 'nss>=3.14.1' 'libxt' 'libxrender' 'hunspell' 
'startup-notification' 'mime-types' 'dbus-glib' 'alsa-lib' 'libevent' 
'sqlite>=3.7.4' 'libvpx' 'python2')
-makedepends=('zip' 'unzip' 'pkg-config' 'diffutils' 'yasm' 'mesa' 
'autoconf2.13')
+depends=('gtk2' 'mozilla-common' 'nss>=3.15' 'libxt' 'hunspell' 
'startup-notification' 'mime-types' 'dbus-glib' 'alsa-lib' 'libevent' 'libvpx' 
'python2')
+makedepends=('zip' 'unzip' 'pkg-config' 'diffutils' 'yasm' 'mesa' 
'autoconf2.13' 'gstreamer0.10-base>=0.10.25')
 url="http://wiki.mozilla.org/XUL:Xul_Runner";
 
source=(ftp://ftp.mozilla.org/pub/mozilla.org/xulrunner/releases/$pkgver/source/xulrunner-$pkgver.source.tar.bz2
 mozconfig
 mozilla-pkgconfig.patch
-shared-libs.patch)
+shared-libs.patch
+   freetype-headers.patch)
 options=('!emptydirs' 'staticlibs')
 replaces=('xulrunner-oss')
-sha256sums=('50d70813cee1c966a6037957206626bb62dc047b011d2e4fab11c559008f9336'
-'3fba82b327f8825ebe93ceaeaea4968d57cf7d700f40bf4457b06d263bcc2e8f'
+sha256sums=('796614f7a7a02ae4bceb5d1f2dce2de5096f9e390e91ec09fa5a40bcdff45cb1'
+'b5e66890e991b194d9a6d2179bccd5ac0015d4aab0a8411c55c6ecfd06576c24'
 '23485d937035648add27a7657f6934dc5b295e886cdb0506eebd02a43d07f269'
-'e2b4a00d14f4ba69c62b3f9ef9908263fbab179ba8004197cbc67edbd916fdf1')
+'e2b4a00d14f4ba69c62b3f9ef9908263fbab179ba8004197cbc67edbd916fdf1'
+'b62975b25fa3a0dc3e57e32c2b980daf2ee2497eff1d9661595b8e8bafbaa5f8')
 
 prepare() {
   cd "$srcdir/mozilla-release"
@@ -29,6 +32,7 @@
   #fix libdir/sdkdir - fedora
   patch -Np1 -i ../mozilla-pkgconfig.patch
   patch -Np1 -i ../shared-libs.patch
+  patch -Np1 -i ../freetype-headers.patch
 
   # WebRTC build tries to execute "python" and expects Python 2
   # Workaround taken from chromium PKGBUILD
@@ -44,7 +48,7 @@
   cd "$srcdir/mozilla-release"
 
   export PATH="$srcdir/python2-path:$PATH"
-  export LDFLAGS="$LDFLAGS -Wl,-rpath,/usr/lib/xulrunner-$pkgver"
+  export LDFLAGS="$LDFALGS -Wl,-rpath,/usr/lib/xulrunner-$pkgver"
   export PYTHON="/usr/bin/python2"
 
   make -j1 -f client.mk build MOZ_MAKE_FLAGS="$MAKEFLAGS"
@@ -54,6 +58,7 @@
   cd "$srcdir/mozilla-release"
   make -j1 -f client.mk DESTDIR="$pkgdir" install
 
+  # Use system-provided dictionaries
   rm -rf "$pkgdir"/usr/lib/xulrunner-$pkgver/{dictionaries,hyphenation}
   ln -sf /usr/share/hunspell "$pkgdir/usr/lib/xulrunner-$pkgver/dictionaries"
   ln -sf /usr/share/hyphen "$pkgdir/usr/lib/xulrunner-$pkgver/hyphenation"
@@ -63,6 +68,8 @@
   echo "/usr/lib/xulrunner-$pkgver" > $pkgdir/etc/ld.so.conf.d/xulrunner.conf
 
   chmod +x "${pkgdir}/usr/lib/xulrunner-devel-$pkgver/sdk/bin/xpt.py"
+  chmod +x "${pkgdir}/usr/lib/xulrunner-devel-$pkgver/sdk/bin/xpcshell"
+  ln -s /usr/lib/xulrunner-devel-$pkgver/sdk/bin/xpcshell 
"${pkgdir}/usr/lib/xulrunner-$pkgver/xpcshell"
   sed -i 's|!/usr/bin/env python$|!/usr/bin/env python2|' \
 
"$pkgdir"/usr/lib/xulrunner-devel-$pkgver/sdk/bin/{xpt,header,typelib,xpidl}.py
 }

Added: freetype-headers.patch
===
--- freetype-headers.patch  (rev 0)
+++ freetype-headers.patch  2014-01-04 06:48:04 UTC (rev 103365)
@@ -0,0 +1,66 @@
+diff -Nur mozilla-release.orig/config/system-headers 
mozilla-release/config/system-headers
+--- mozilla-release.orig/config/system-headers
 mozilla-release/config/system-headers
+@@ -408,16 +408,29 @@ freetype/ftoutln.h
+ freetype/ttnameid.h
+ freetype/tttables.h
+ freetype/t1tables.h
+ freetype/ftlcdfil.h
+ freetype/ftsizes.h
+ freetype/ftadvanc.h
+ freetype/ftbitmap.h
+ freetype/ftxf86.h
++freetype.h
++ftcache.h
++ftglyph.h
++ftsynth.h
++ftoutln.h
++ttnameid.h
++tttables.h
++t1tables.h
++ftlcdfil.h
++ftsizes.h
++ftadvanc.h
++ftbitmap.h
++ftxf86.h
+ fribidi/fribidi.h
+ FSp_fopen.h
+ fstream
+ fstream.h
+ ft2build.h
+ fts.h
+ gconf/gconf-client.h
+ Gdiplus.h
+diff -Nur mozilla-rel

[arch-commits] Commit in xulrunner/repos (16 files)

2014-01-02 Thread Allan McRae
Date: Friday, January 3, 2014 @ 05:07:43
  Author: allan
Revision: 103314

archrelease: copy trunk to community-i686, community-x86_64

Added:
  xulrunner/repos/community-i686/PKGBUILD
(from rev 103313, xulrunner/trunk/PKGBUILD)
  xulrunner/repos/community-i686/mozconfig
(from rev 103313, xulrunner/trunk/mozconfig)
  xulrunner/repos/community-i686/mozilla-pkgconfig.patch
(from rev 103313, xulrunner/trunk/mozilla-pkgconfig.patch)
  xulrunner/repos/community-i686/shared-libs.patch
(from rev 103313, xulrunner/trunk/shared-libs.patch)
  xulrunner/repos/community-x86_64/PKGBUILD
(from rev 103313, xulrunner/trunk/PKGBUILD)
  xulrunner/repos/community-x86_64/mozconfig
(from rev 103313, xulrunner/trunk/mozconfig)
  xulrunner/repos/community-x86_64/mozilla-pkgconfig.patch
(from rev 103313, xulrunner/trunk/mozilla-pkgconfig.patch)
  xulrunner/repos/community-x86_64/shared-libs.patch
(from rev 103313, xulrunner/trunk/shared-libs.patch)
Deleted:
  xulrunner/repos/community-i686/PKGBUILD
  xulrunner/repos/community-i686/mozconfig
  xulrunner/repos/community-i686/mozilla-pkgconfig.patch
  xulrunner/repos/community-i686/shared-libs.patch
  xulrunner/repos/community-x86_64/PKGBUILD
  xulrunner/repos/community-x86_64/mozconfig
  xulrunner/repos/community-x86_64/mozilla-pkgconfig.patch
  xulrunner/repos/community-x86_64/shared-libs.patch

--+
 /PKGBUILD|  136 +
 /mozconfig   |   58 
 /mozilla-pkgconfig.patch |   80 +
 /shared-libs.patch   |   24 +
 community-i686/PKGBUILD  |   68 --
 community-i686/mozconfig |   29 --
 community-i686/mozilla-pkgconfig.patch   |   40 
 community-i686/shared-libs.patch |   12 --
 community-x86_64/PKGBUILD|   68 --
 community-x86_64/mozconfig   |   29 --
 community-x86_64/mozilla-pkgconfig.patch |   40 
 community-x86_64/shared-libs.patch   |   12 --
 12 files changed, 298 insertions(+), 298 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2014-01-03 04:06:01 UTC (rev 103313)
+++ community-i686/PKGBUILD 2014-01-03 04:07:43 UTC (rev 103314)
@@ -1,68 +0,0 @@
-# $Id$
-# Maintainer: Jan de Groot 
-# Contributor: Alexander Baldeck 
-
-pkgname=xulrunner
-pkgver=23.0.1
-pkgrel=1
-pkgdesc="Mozilla Runtime Environment"
-arch=('i686' 'x86_64')
-license=('MPL' 'GPL' 'LGPL')
-depends=('gtk2' 'mozilla-common' 'nss>=3.14.1' 'libxt' 'libxrender' 'hunspell' 
'startup-notification' 'mime-types' 'dbus-glib' 'alsa-lib' 'libevent' 
'sqlite>=3.7.4' 'libvpx' 'python2')
-makedepends=('zip' 'unzip' 'pkg-config' 'diffutils' 'yasm' 'mesa' 
'autoconf2.13')
-url="http://wiki.mozilla.org/XUL:Xul_Runner";
-source=(ftp://ftp.mozilla.org/pub/mozilla.org/xulrunner/releases/$pkgver/source/xulrunner-$pkgver.source.tar.bz2
-mozconfig
-mozilla-pkgconfig.patch
-shared-libs.patch)
-options=('!emptydirs')
-replaces=('xulrunner-oss')
-sha256sums=('50d70813cee1c966a6037957206626bb62dc047b011d2e4fab11c559008f9336'
-'3fba82b327f8825ebe93ceaeaea4968d57cf7d700f40bf4457b06d263bcc2e8f'
-'23485d937035648add27a7657f6934dc5b295e886cdb0506eebd02a43d07f269'
-'e2b4a00d14f4ba69c62b3f9ef9908263fbab179ba8004197cbc67edbd916fdf1')
-
-prepare() {
-  cd "$srcdir/mozilla-release"
-  cp "$srcdir/mozconfig" .mozconfig
-
-  #fix libdir/sdkdir - fedora
-  patch -Np1 -i ../mozilla-pkgconfig.patch
-  patch -Np1 -i ../shared-libs.patch
-
-  # WebRTC build tries to execute "python" and expects Python 2
-  # Workaround taken from chromium PKGBUILD
-  mkdir "$srcdir/python2-path"
-  ln -s /usr/bin/python2 "$srcdir/python2-path/python"
-
-  # configure script misdetects the preprocessor without an optimization level
-  # https://bugs.archlinux.org/task/34644
-  sed -i '/ac_cpp=/s/$CPPFLAGS/& -O2/' configure
-}
-
-build() {
-  cd "$srcdir/mozilla-release"
-
-  export PATH="$srcdir/python2-path:$PATH"
-  export LDFLAGS="$LDFLAGS -Wl,-rpath,/usr/lib/xulrunner-$pkgver"
-  export PYTHON="/usr/bin/python2"
-
-  make -j1 -f client.mk build MOZ_MAKE_FLAGS="$MAKEFLAGS"
-}
-
-package() {
-  cd "$srcdir/mozilla-release"
-  make -j1 -f client.mk DESTDIR="$pkgdir" install
-
-  rm -rf "$pkgdir"/usr/lib/xulrunner-$pkgver/{dictionaries,hyphenation}
-  ln -sf /usr/share/hunspell "$pkgdir/usr/lib/xulrunner-$pkgver/dictionaries"
-  ln -sf /usr/share/hyphen "$pkgdir/usr/lib/xulrunner-$pkgver/hyphenation"
-
-  # add xulrunner library path to ld.so.conf
-  install -d $pkgdir/etc/ld.so.conf.d
-  echo "/usr/lib/xulrunner-$pkgver" > $pkgdir/etc/ld.so.conf.d/xulrunner.conf
-
-  chmod +x "${pkgdir}/usr/lib/xulrunner-devel-$pkgver/sdk/bin/xpt.py"
-  sed -i 's|!/usr/bin/env python$|!/usr/b

[arch-commits] Commit in xulrunner/trunk (PKGBUILD)

2014-01-02 Thread Allan McRae
Date: Friday, January 3, 2014 @ 05:06:01
  Author: allan
Revision: 103313

static libraries have no shared counterpart

Modified:
  xulrunner/trunk/PKGBUILD

--+
 PKGBUILD |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

Modified: PKGBUILD
===
--- PKGBUILD2014-01-03 02:04:53 UTC (rev 103312)
+++ PKGBUILD2014-01-03 04:06:01 UTC (rev 103313)
@@ -15,7 +15,7 @@
 mozconfig
 mozilla-pkgconfig.patch
 shared-libs.patch)
-options=('!emptydirs')
+options=('!emptydirs' 'staticlibs')
 replaces=('xulrunner-oss')
 sha256sums=('50d70813cee1c966a6037957206626bb62dc047b011d2e4fab11c559008f9336'
 '3fba82b327f8825ebe93ceaeaea4968d57cf7d700f40bf4457b06d263bcc2e8f'



[arch-commits] Commit in xulrunner/repos (10 files)

2013-12-26 Thread Bartłomiej Piotrowski
Date: Thursday, December 26, 2013 @ 21:12:06
  Author: bpiotrowski
Revision: 103127

archrelease: copy trunk to community-i686, community-x86_64

Added:
  xulrunner/repos/community-i686/
  xulrunner/repos/community-i686/PKGBUILD
(from rev 103126, xulrunner/trunk/PKGBUILD)
  xulrunner/repos/community-i686/mozconfig
(from rev 103126, xulrunner/trunk/mozconfig)
  xulrunner/repos/community-i686/mozilla-pkgconfig.patch
(from rev 103126, xulrunner/trunk/mozilla-pkgconfig.patch)
  xulrunner/repos/community-i686/shared-libs.patch
(from rev 103126, xulrunner/trunk/shared-libs.patch)
  xulrunner/repos/community-x86_64/
  xulrunner/repos/community-x86_64/PKGBUILD
(from rev 103126, xulrunner/trunk/PKGBUILD)
  xulrunner/repos/community-x86_64/mozconfig
(from rev 103126, xulrunner/trunk/mozconfig)
  xulrunner/repos/community-x86_64/mozilla-pkgconfig.patch
(from rev 103126, xulrunner/trunk/mozilla-pkgconfig.patch)
  xulrunner/repos/community-x86_64/shared-libs.patch
(from rev 103126, xulrunner/trunk/shared-libs.patch)

--+
 community-i686/PKGBUILD  |   68 +
 community-i686/mozconfig |   29 
 community-i686/mozilla-pkgconfig.patch   |   40 +
 community-i686/shared-libs.patch |   12 +
 community-x86_64/PKGBUILD|   68 +
 community-x86_64/mozconfig   |   29 
 community-x86_64/mozilla-pkgconfig.patch |   40 +
 community-x86_64/shared-libs.patch   |   12 +
 8 files changed, 298 insertions(+)

Copied: xulrunner/repos/community-i686/PKGBUILD (from rev 103126, 
xulrunner/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2013-12-26 20:12:06 UTC (rev 103127)
@@ -0,0 +1,68 @@
+# $Id$
+# Maintainer: Jan de Groot 
+# Contributor: Alexander Baldeck 
+
+pkgname=xulrunner
+pkgver=23.0.1
+pkgrel=1
+pkgdesc="Mozilla Runtime Environment"
+arch=('i686' 'x86_64')
+license=('MPL' 'GPL' 'LGPL')
+depends=('gtk2' 'mozilla-common' 'nss>=3.14.1' 'libxt' 'libxrender' 'hunspell' 
'startup-notification' 'mime-types' 'dbus-glib' 'alsa-lib' 'libevent' 
'sqlite>=3.7.4' 'libvpx' 'python2')
+makedepends=('zip' 'unzip' 'pkg-config' 'diffutils' 'yasm' 'mesa' 
'autoconf2.13')
+url="http://wiki.mozilla.org/XUL:Xul_Runner";
+source=(ftp://ftp.mozilla.org/pub/mozilla.org/xulrunner/releases/$pkgver/source/xulrunner-$pkgver.source.tar.bz2
+mozconfig
+mozilla-pkgconfig.patch
+shared-libs.patch)
+options=('!emptydirs')
+replaces=('xulrunner-oss')
+sha256sums=('50d70813cee1c966a6037957206626bb62dc047b011d2e4fab11c559008f9336'
+'3fba82b327f8825ebe93ceaeaea4968d57cf7d700f40bf4457b06d263bcc2e8f'
+'23485d937035648add27a7657f6934dc5b295e886cdb0506eebd02a43d07f269'
+'e2b4a00d14f4ba69c62b3f9ef9908263fbab179ba8004197cbc67edbd916fdf1')
+
+prepare() {
+  cd "$srcdir/mozilla-release"
+  cp "$srcdir/mozconfig" .mozconfig
+
+  #fix libdir/sdkdir - fedora
+  patch -Np1 -i ../mozilla-pkgconfig.patch
+  patch -Np1 -i ../shared-libs.patch
+
+  # WebRTC build tries to execute "python" and expects Python 2
+  # Workaround taken from chromium PKGBUILD
+  mkdir "$srcdir/python2-path"
+  ln -s /usr/bin/python2 "$srcdir/python2-path/python"
+
+  # configure script misdetects the preprocessor without an optimization level
+  # https://bugs.archlinux.org/task/34644
+  sed -i '/ac_cpp=/s/$CPPFLAGS/& -O2/' configure
+}
+
+build() {
+  cd "$srcdir/mozilla-release"
+
+  export PATH="$srcdir/python2-path:$PATH"
+  export LDFLAGS="$LDFLAGS -Wl,-rpath,/usr/lib/xulrunner-$pkgver"
+  export PYTHON="/usr/bin/python2"
+
+  make -j1 -f client.mk build MOZ_MAKE_FLAGS="$MAKEFLAGS"
+}
+
+package() {
+  cd "$srcdir/mozilla-release"
+  make -j1 -f client.mk DESTDIR="$pkgdir" install
+
+  rm -rf "$pkgdir"/usr/lib/xulrunner-$pkgver/{dictionaries,hyphenation}
+  ln -sf /usr/share/hunspell "$pkgdir/usr/lib/xulrunner-$pkgver/dictionaries"
+  ln -sf /usr/share/hyphen "$pkgdir/usr/lib/xulrunner-$pkgver/hyphenation"
+
+  # add xulrunner library path to ld.so.conf
+  install -d $pkgdir/etc/ld.so.conf.d
+  echo "/usr/lib/xulrunner-$pkgver" > $pkgdir/etc/ld.so.conf.d/xulrunner.conf
+
+  chmod +x "${pkgdir}/usr/lib/xulrunner-devel-$pkgver/sdk/bin/xpt.py"
+  sed -i 's|!/usr/bin/env python$|!/usr/bin/env python2|' \
+
"$pkgdir"/usr/lib/xulrunner-devel-$pkgver/sdk/bin/{xpt,header,typelib,xpidl}.py
+}

Copied: xulrunner/repos/community-i686/mozconfig (from rev 103126, 
xulrunner/trunk/mozconfig)
===
--- community-i686/mozconfig(rev 0)
+++ community-i686/mozconfig2013-12-26 20:12:06 UTC (rev 103127)
@@ -0,0 +1,29 @@
+. $topsrcdir/xulrunner/config/mozconfig
+
+ac_add_options --p

[arch-commits] Commit in (xulrunner)

2013-12-26 Thread Bartłomiej Piotrowski
Date: Thursday, December 26, 2013 @ 21:12:33
  Author: bpiotrowski
Revision: 202763

extra2community: Moving xulrunner from extra to community

Deleted:
  xulrunner/



[arch-commits] Commit in xulrunner/repos (10 files)

2013-08-28 Thread Jan de Groot
Date: Wednesday, August 28, 2013 @ 12:42:51
  Author: jgc
Revision: 193701

archrelease: copy trunk to testing-i686, testing-x86_64

Added:
  xulrunner/repos/testing-i686/
  xulrunner/repos/testing-i686/PKGBUILD
(from rev 193700, xulrunner/trunk/PKGBUILD)
  xulrunner/repos/testing-i686/mozconfig
(from rev 193700, xulrunner/trunk/mozconfig)
  xulrunner/repos/testing-i686/mozilla-pkgconfig.patch
(from rev 193700, xulrunner/trunk/mozilla-pkgconfig.patch)
  xulrunner/repos/testing-i686/shared-libs.patch
(from rev 193700, xulrunner/trunk/shared-libs.patch)
  xulrunner/repos/testing-x86_64/
  xulrunner/repos/testing-x86_64/PKGBUILD
(from rev 193700, xulrunner/trunk/PKGBUILD)
  xulrunner/repos/testing-x86_64/mozconfig
(from rev 193700, xulrunner/trunk/mozconfig)
  xulrunner/repos/testing-x86_64/mozilla-pkgconfig.patch
(from rev 193700, xulrunner/trunk/mozilla-pkgconfig.patch)
  xulrunner/repos/testing-x86_64/shared-libs.patch
(from rev 193700, xulrunner/trunk/shared-libs.patch)

+
 testing-i686/PKGBUILD  |   68 +++
 testing-i686/mozconfig |   29 +
 testing-i686/mozilla-pkgconfig.patch   |   40 ++
 testing-i686/shared-libs.patch |   12 +
 testing-x86_64/PKGBUILD|   68 +++
 testing-x86_64/mozconfig   |   29 +
 testing-x86_64/mozilla-pkgconfig.patch |   40 ++
 testing-x86_64/shared-libs.patch   |   12 +
 8 files changed, 298 insertions(+)

Copied: xulrunner/repos/testing-i686/PKGBUILD (from rev 193700, 
xulrunner/trunk/PKGBUILD)
===
--- testing-i686/PKGBUILD   (rev 0)
+++ testing-i686/PKGBUILD   2013-08-28 10:42:51 UTC (rev 193701)
@@ -0,0 +1,68 @@
+# $Id$
+# Maintainer: Jan de Groot 
+# Contributor: Alexander Baldeck 
+
+pkgname=xulrunner
+pkgver=23.0.1
+pkgrel=1
+pkgdesc="Mozilla Runtime Environment"
+arch=('i686' 'x86_64')
+license=('MPL' 'GPL' 'LGPL')
+depends=('gtk2' 'mozilla-common' 'nss>=3.14.1' 'libxt' 'libxrender' 'hunspell' 
'startup-notification' 'mime-types' 'dbus-glib' 'alsa-lib' 'libevent' 
'sqlite>=3.7.4' 'libvpx' 'python2')
+makedepends=('zip' 'unzip' 'pkg-config' 'diffutils' 'yasm' 'mesa' 
'autoconf2.13')
+url="http://wiki.mozilla.org/XUL:Xul_Runner";
+source=(ftp://ftp.mozilla.org/pub/mozilla.org/xulrunner/releases/$pkgver/source/xulrunner-$pkgver.source.tar.bz2
+mozconfig
+mozilla-pkgconfig.patch
+shared-libs.patch)
+options=('!emptydirs')
+replaces=('xulrunner-oss')
+sha256sums=('50d70813cee1c966a6037957206626bb62dc047b011d2e4fab11c559008f9336'
+'3fba82b327f8825ebe93ceaeaea4968d57cf7d700f40bf4457b06d263bcc2e8f'
+'23485d937035648add27a7657f6934dc5b295e886cdb0506eebd02a43d07f269'
+'e2b4a00d14f4ba69c62b3f9ef9908263fbab179ba8004197cbc67edbd916fdf1')
+
+prepare() {
+  cd "$srcdir/mozilla-release"
+  cp "$srcdir/mozconfig" .mozconfig
+
+  #fix libdir/sdkdir - fedora
+  patch -Np1 -i ../mozilla-pkgconfig.patch
+  patch -Np1 -i ../shared-libs.patch
+
+  # WebRTC build tries to execute "python" and expects Python 2
+  # Workaround taken from chromium PKGBUILD
+  mkdir "$srcdir/python2-path"
+  ln -s /usr/bin/python2 "$srcdir/python2-path/python"
+
+  # configure script misdetects the preprocessor without an optimization level
+  # https://bugs.archlinux.org/task/34644
+  sed -i '/ac_cpp=/s/$CPPFLAGS/& -O2/' configure
+}
+
+build() {
+  cd "$srcdir/mozilla-release"
+
+  export PATH="$srcdir/python2-path:$PATH"
+  export LDFLAGS="$LDFLAGS -Wl,-rpath,/usr/lib/xulrunner-$pkgver"
+  export PYTHON="/usr/bin/python2"
+
+  make -j1 -f client.mk build MOZ_MAKE_FLAGS="$MAKEFLAGS"
+}
+
+package() {
+  cd "$srcdir/mozilla-release"
+  make -j1 -f client.mk DESTDIR="$pkgdir" install
+
+  rm -rf "$pkgdir"/usr/lib/xulrunner-$pkgver/{dictionaries,hyphenation}
+  ln -sf /usr/share/hunspell "$pkgdir/usr/lib/xulrunner-$pkgver/dictionaries"
+  ln -sf /usr/share/hyphen "$pkgdir/usr/lib/xulrunner-$pkgver/hyphenation"
+
+  # add xulrunner library path to ld.so.conf
+  install -d $pkgdir/etc/ld.so.conf.d
+  echo "/usr/lib/xulrunner-$pkgver" > $pkgdir/etc/ld.so.conf.d/xulrunner.conf
+
+  chmod +x "${pkgdir}/usr/lib/xulrunner-devel-$pkgver/sdk/bin/xpt.py"
+  sed -i 's|!/usr/bin/env python$|!/usr/bin/env python2|' \
+
"$pkgdir"/usr/lib/xulrunner-devel-$pkgver/sdk/bin/{xpt,header,typelib,xpidl}.py
+}

Copied: xulrunner/repos/testing-i686/mozconfig (from rev 193700, 
xulrunner/trunk/mozconfig)
===
--- testing-i686/mozconfig  (rev 0)
+++ testing-i686/mozconfig  2013-08-28 10:42:51 UTC (rev 193701)
@@ -0,0 +1,29 @@
+. $topsrcdir/xulrunner/config/mozconfig
+
+ac_add_options --prefix=/usr
+ac_add_options --libdir=/usr/lib
+

[arch-commits] Commit in xulrunner/trunk (PKGBUILD)

2013-08-28 Thread Jan de Groot
Date: Wednesday, August 28, 2013 @ 12:42:43
  Author: jgc
Revision: 193700

upgpkg: xulrunner 23.0.1-1

Modified:
  xulrunner/trunk/PKGBUILD

--+
 PKGBUILD |4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2013-08-28 09:22:56 UTC (rev 193699)
+++ PKGBUILD2013-08-28 10:42:43 UTC (rev 193700)
@@ -3,7 +3,7 @@
 # Contributor: Alexander Baldeck 
 
 pkgname=xulrunner
-pkgver=22.0
+pkgver=23.0.1
 pkgrel=1
 pkgdesc="Mozilla Runtime Environment"
 arch=('i686' 'x86_64')
@@ -17,7 +17,7 @@
 shared-libs.patch)
 options=('!emptydirs')
 replaces=('xulrunner-oss')
-sha256sums=('f806adf3f1c5b4c8d26322401ef876c73a549f93911be921044f508d698ac589'
+sha256sums=('50d70813cee1c966a6037957206626bb62dc047b011d2e4fab11c559008f9336'
 '3fba82b327f8825ebe93ceaeaea4968d57cf7d700f40bf4457b06d263bcc2e8f'
 '23485d937035648add27a7657f6934dc5b295e886cdb0506eebd02a43d07f269'
 'e2b4a00d14f4ba69c62b3f9ef9908263fbab179ba8004197cbc67edbd916fdf1')



[arch-commits] Commit in xulrunner/repos (16 files)

2013-06-26 Thread Evangelos Foutras
Date: Thursday, June 27, 2013 @ 03:33:26
  Author: foutrelis
Revision: 188951

archrelease: copy trunk to extra-i686, extra-x86_64

Added:
  xulrunner/repos/extra-i686/PKGBUILD
(from rev 188950, xulrunner/trunk/PKGBUILD)
  xulrunner/repos/extra-i686/mozconfig
(from rev 188950, xulrunner/trunk/mozconfig)
  xulrunner/repos/extra-i686/mozilla-pkgconfig.patch
(from rev 188950, xulrunner/trunk/mozilla-pkgconfig.patch)
  xulrunner/repos/extra-i686/shared-libs.patch
(from rev 188950, xulrunner/trunk/shared-libs.patch)
  xulrunner/repos/extra-x86_64/PKGBUILD
(from rev 188950, xulrunner/trunk/PKGBUILD)
  xulrunner/repos/extra-x86_64/mozconfig
(from rev 188950, xulrunner/trunk/mozconfig)
  xulrunner/repos/extra-x86_64/mozilla-pkgconfig.patch
(from rev 188950, xulrunner/trunk/mozilla-pkgconfig.patch)
  xulrunner/repos/extra-x86_64/shared-libs.patch
(from rev 188950, xulrunner/trunk/shared-libs.patch)
Deleted:
  xulrunner/repos/extra-i686/PKGBUILD
  xulrunner/repos/extra-i686/mozconfig
  xulrunner/repos/extra-i686/mozilla-pkgconfig.patch
  xulrunner/repos/extra-i686/shared-libs.patch
  xulrunner/repos/extra-x86_64/PKGBUILD
  xulrunner/repos/extra-x86_64/mozconfig
  xulrunner/repos/extra-x86_64/mozilla-pkgconfig.patch
  xulrunner/repos/extra-x86_64/shared-libs.patch

--+
 /PKGBUILD|  136 +
 /mozconfig   |   58 ++
 /mozilla-pkgconfig.patch |   80 +++
 /shared-libs.patch   |   24 +
 extra-i686/PKGBUILD  |   67 
 extra-i686/mozconfig |   29 ---
 extra-i686/mozilla-pkgconfig.patch   |   40 -
 extra-i686/shared-libs.patch |   12 --
 extra-x86_64/PKGBUILD|   67 
 extra-x86_64/mozconfig   |   29 ---
 extra-x86_64/mozilla-pkgconfig.patch |   40 -
 extra-x86_64/shared-libs.patch   |   12 --
 12 files changed, 298 insertions(+), 296 deletions(-)

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2013-06-27 01:33:05 UTC (rev 188950)
+++ extra-i686/PKGBUILD 2013-06-27 01:33:26 UTC (rev 188951)
@@ -1,67 +0,0 @@
-# $Id$
-# Maintainer: Jan de Groot 
-# Contributor: Alexander Baldeck 
-pkgname=xulrunner
-pkgver=21.0
-pkgrel=1
-pkgdesc="Mozilla Runtime Environment"
-arch=('i686' 'x86_64')
-license=('MPL' 'GPL' 'LGPL')
-depends=('gtk2' 'mozilla-common' 'nss>=3.14.1' 'libxt' 'libxrender' 'hunspell' 
'startup-notification' 'mime-types' 'dbus-glib' 'alsa-lib' 'libevent' 
'sqlite>=3.7.4' 'libvpx' 'python2')
-makedepends=('zip' 'unzip' 'pkg-config' 'diffutils' 'yasm' 'mesa' 
'autoconf2.13')
-url="http://wiki.mozilla.org/XUL:Xul_Runner";
-source=(ftp://ftp.mozilla.org/pub/mozilla.org/xulrunner/releases/$pkgver/source/xulrunner-$pkgver.source.tar.bz2
-mozconfig
-mozilla-pkgconfig.patch
-shared-libs.patch)
-options=('!emptydirs')
-replaces=('xulrunner-oss')
-sha256sums=('c3623bc243bd57c7267eacac658993f5f635f639235bea9ed8fce9b52e59be64'
-'3fba82b327f8825ebe93ceaeaea4968d57cf7d700f40bf4457b06d263bcc2e8f'
-'23485d937035648add27a7657f6934dc5b295e886cdb0506eebd02a43d07f269'
-'e2b4a00d14f4ba69c62b3f9ef9908263fbab179ba8004197cbc67edbd916fdf1')
-
-prepare() {
-  cd "$srcdir/mozilla-release"
-  cp "$srcdir/mozconfig" .mozconfig
-
-  #fix libdir/sdkdir - fedora
-  patch -Np1 -i ../mozilla-pkgconfig.patch
-  patch -Np1 -i ../shared-libs.patch
-
-  # WebRTC build tries to execute "python" and expects Python 2
-  # Workaround taken from chromium PKGBUILD
-  mkdir "$srcdir/python2-path"
-  ln -s /usr/bin/python2 "$srcdir/python2-path/python"
-
-  # configure script misdetects the preprocessor without an optimization level
-  # https://bugs.archlinux.org/task/34644
-  sed -i '/ac_cpp=/s/$CPPFLAGS/& -O2/' configure
-}
-
-build() {
-  cd "$srcdir/mozilla-release"
-
-  export PATH="$srcdir/python2-path:$PATH"
-  export LDFLAGS="$LDFLAGS -Wl,-rpath,/usr/lib/xulrunner-$pkgver"
-  export PYTHON="/usr/bin/python2"
-
-  make -j1 -f client.mk build MOZ_MAKE_FLAGS="$MAKEFLAGS"
-}
-
-package() {
-  cd "$srcdir/mozilla-release"
-  make -j1 -f client.mk DESTDIR="$pkgdir" install
-
-  rm -rf "$pkgdir"/usr/lib/xulrunner-$pkgver/{dictionaries,hyphenation}
-  ln -sf /usr/share/hunspell "$pkgdir/usr/lib/xulrunner-$pkgver/dictionaries"
-  ln -sf /usr/share/hyphen "$pkgdir/usr/lib/xulrunner-$pkgver/hyphenation"
-
-  # add xulrunner library path to ld.so.conf
-  install -d $pkgdir/etc/ld.so.conf.d
-  echo "/usr/lib/xulrunner-$pkgver" > $pkgdir/etc/ld.so.conf.d/xulrunner.conf
-
-  chmod +x "${pkgdir}/usr/lib/xulrunner-devel-$pkgver/sdk/bin/xpt.py"
-  sed -i 's|!/usr/bin/env python$|!/usr/bin/env python2|' \
-
"$pkgdir"/usr/lib/xulrunner-devel-$pkgver/sdk/bin/{xpt,header,typelib,xpidl}.py
-}

Copied: xulrunner/r

[arch-commits] Commit in xulrunner/trunk (PKGBUILD)

2013-06-26 Thread Evangelos Foutras
Date: Thursday, June 27, 2013 @ 03:33:05
  Author: foutrelis
Revision: 188950

upgpkg: xulrunner 22.0-1

New upstream release.

Modified:
  xulrunner/trunk/PKGBUILD

--+
 PKGBUILD |5 +++--
 1 file changed, 3 insertions(+), 2 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2013-06-26 18:42:37 UTC (rev 188949)
+++ PKGBUILD2013-06-27 01:33:05 UTC (rev 188950)
@@ -1,8 +1,9 @@
 # $Id$
 # Maintainer: Jan de Groot 
 # Contributor: Alexander Baldeck 
+
 pkgname=xulrunner
-pkgver=21.0
+pkgver=22.0
 pkgrel=1
 pkgdesc="Mozilla Runtime Environment"
 arch=('i686' 'x86_64')
@@ -16,7 +17,7 @@
 shared-libs.patch)
 options=('!emptydirs')
 replaces=('xulrunner-oss')
-sha256sums=('c3623bc243bd57c7267eacac658993f5f635f639235bea9ed8fce9b52e59be64'
+sha256sums=('f806adf3f1c5b4c8d26322401ef876c73a549f93911be921044f508d698ac589'
 '3fba82b327f8825ebe93ceaeaea4968d57cf7d700f40bf4457b06d263bcc2e8f'
 '23485d937035648add27a7657f6934dc5b295e886cdb0506eebd02a43d07f269'
 'e2b4a00d14f4ba69c62b3f9ef9908263fbab179ba8004197cbc67edbd916fdf1')



[arch-commits] Commit in xulrunner/repos (16 files)

2013-05-14 Thread Evangelos Foutras
Date: Tuesday, May 14, 2013 @ 21:12:24
  Author: foutrelis
Revision: 185530

archrelease: copy trunk to extra-i686, extra-x86_64

Added:
  xulrunner/repos/extra-i686/PKGBUILD
(from rev 185529, xulrunner/trunk/PKGBUILD)
  xulrunner/repos/extra-i686/mozconfig
(from rev 185529, xulrunner/trunk/mozconfig)
  xulrunner/repos/extra-i686/mozilla-pkgconfig.patch
(from rev 185529, xulrunner/trunk/mozilla-pkgconfig.patch)
  xulrunner/repos/extra-i686/shared-libs.patch
(from rev 185529, xulrunner/trunk/shared-libs.patch)
  xulrunner/repos/extra-x86_64/PKGBUILD
(from rev 185529, xulrunner/trunk/PKGBUILD)
  xulrunner/repos/extra-x86_64/mozconfig
(from rev 185529, xulrunner/trunk/mozconfig)
  xulrunner/repos/extra-x86_64/mozilla-pkgconfig.patch
(from rev 185529, xulrunner/trunk/mozilla-pkgconfig.patch)
  xulrunner/repos/extra-x86_64/shared-libs.patch
(from rev 185529, xulrunner/trunk/shared-libs.patch)
Deleted:
  xulrunner/repos/extra-i686/PKGBUILD
  xulrunner/repos/extra-i686/mozconfig
  xulrunner/repos/extra-i686/mozilla-pkgconfig.patch
  xulrunner/repos/extra-i686/shared-libs.patch
  xulrunner/repos/extra-x86_64/PKGBUILD
  xulrunner/repos/extra-x86_64/mozconfig
  xulrunner/repos/extra-x86_64/mozilla-pkgconfig.patch
  xulrunner/repos/extra-x86_64/shared-libs.patch

--+
 /PKGBUILD|  134 +
 /mozconfig   |   58 ++
 /mozilla-pkgconfig.patch |   80 +++
 /shared-libs.patch   |   24 +
 extra-i686/PKGBUILD  |   67 
 extra-i686/mozconfig |   29 ---
 extra-i686/mozilla-pkgconfig.patch   |   40 -
 extra-i686/shared-libs.patch |   12 --
 extra-x86_64/PKGBUILD|   67 
 extra-x86_64/mozconfig   |   29 ---
 extra-x86_64/mozilla-pkgconfig.patch |   40 -
 extra-x86_64/shared-libs.patch   |   12 --
 12 files changed, 296 insertions(+), 296 deletions(-)

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2013-05-14 19:12:02 UTC (rev 185529)
+++ extra-i686/PKGBUILD 2013-05-14 19:12:24 UTC (rev 185530)
@@ -1,67 +0,0 @@
-# $Id$
-# Maintainer: Jan de Groot 
-# Contributor: Alexander Baldeck 
-pkgname=xulrunner
-pkgver=20.0
-pkgrel=2
-pkgdesc="Mozilla Runtime Environment"
-arch=('i686' 'x86_64')
-license=('MPL' 'GPL' 'LGPL')
-depends=('gtk2' 'mozilla-common' 'nss>=3.14.1' 'libxt' 'libxrender' 'hunspell' 
'startup-notification' 'mime-types' 'dbus-glib' 'alsa-lib' 'libevent' 
'sqlite>=3.7.4' 'libvpx' 'python2')
-makedepends=('zip' 'unzip' 'pkg-config' 'diffutils' 'yasm' 'mesa' 
'autoconf2.13')
-url="http://wiki.mozilla.org/XUL:Xul_Runner";
-source=(ftp://ftp.mozilla.org/pub/mozilla.org/xulrunner/releases/$pkgver/source/xulrunner-$pkgver.source.tar.bz2
-mozconfig
-mozilla-pkgconfig.patch
-shared-libs.patch)
-options=('!emptydirs')
-replaces=('xulrunner-oss')
-md5sums=('1b8a1907919eb805f390a05216f2d8d0'
- 'f26710bcf3e65699a0646c47155cb147'
- '27271ce647a83906ef7a24605e840d61'
- '52e52f840a49eb1d14be1c0065b03a93')
-
-prepare() {
-  cd "$srcdir/mozilla-release"
-  cp "$srcdir/mozconfig" .mozconfig
-
-  #fix libdir/sdkdir - fedora
-  patch -Np1 -i ../mozilla-pkgconfig.patch
-  patch -Np1 -i ../shared-libs.patch
-
-  # WebRTC build tries to execute "python" and expects Python 2
-  # Workaround taken from chromium PKGBUILD
-  mkdir "$srcdir/python2-path"
-  ln -s /usr/bin/python2 "$srcdir/python2-path/python"
-
-  # configure script misdetects the preprocessor without an optimization level
-  # https://bugs.archlinux.org/task/34644
-  sed -i '/ac_cpp=/s/$CPPFLAGS/& -O2/' configure
-}
-
-build() {
-  cd "$srcdir/mozilla-release"
-
-  export PATH="$srcdir/python2-path:$PATH"
-  export LDFLAGS="$LDFLAGS -Wl,-rpath,/usr/lib/xulrunner-$pkgver"
-  export PYTHON="/usr/bin/python2"
-
-  make -j1 -f client.mk build MOZ_MAKE_FLAGS="$MAKEFLAGS"
-}
-
-package() {
-  cd "$srcdir/mozilla-release"
-  make -j1 -f client.mk DESTDIR="$pkgdir" install
-
-  rm -rf "$pkgdir"/usr/lib/xulrunner-$pkgver/{dictionaries,hyphenation}
-  ln -sf /usr/share/hunspell "$pkgdir/usr/lib/xulrunner-$pkgver/dictionaries"
-  ln -sf /usr/share/hyphen "$pkgdir/usr/lib/xulrunner-$pkgver/hyphenation"
-
-  # add xulrunner library path to ld.so.conf
-  install -d $pkgdir/etc/ld.so.conf.d
-  echo "/usr/lib/xulrunner-$pkgver" > $pkgdir/etc/ld.so.conf.d/xulrunner.conf
-
-  chmod +x "${pkgdir}/usr/lib/xulrunner-devel-$pkgver/sdk/bin/xpt.py"
-  sed -i 's|!/usr/bin/env python$|!/usr/bin/env python2|' \
-
"$pkgdir"/usr/lib/xulrunner-devel-$pkgver/sdk/bin/{xpt,header,typelib,xpidl}.py
-}

Copied: xulrunner/repos/extra-i686/PKGBUILD (from rev 185529, 
xulrunner/trunk/PKGBUILD)
===
--- 

[arch-commits] Commit in xulrunner/trunk (PKGBUILD)

2013-05-14 Thread Evangelos Foutras
Date: Tuesday, May 14, 2013 @ 21:12:02
  Author: foutrelis
Revision: 185529

upgpkg: xulrunner 21.0-1

New upstream release.

Modified:
  xulrunner/trunk/PKGBUILD

--+
 PKGBUILD |   12 ++--
 1 file changed, 6 insertions(+), 6 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2013-05-14 18:11:47 UTC (rev 185528)
+++ PKGBUILD2013-05-14 19:12:02 UTC (rev 185529)
@@ -2,8 +2,8 @@
 # Maintainer: Jan de Groot 
 # Contributor: Alexander Baldeck 
 pkgname=xulrunner
-pkgver=20.0
-pkgrel=2
+pkgver=21.0
+pkgrel=1
 pkgdesc="Mozilla Runtime Environment"
 arch=('i686' 'x86_64')
 license=('MPL' 'GPL' 'LGPL')
@@ -16,10 +16,10 @@
 shared-libs.patch)
 options=('!emptydirs')
 replaces=('xulrunner-oss')
-md5sums=('1b8a1907919eb805f390a05216f2d8d0'
- 'f26710bcf3e65699a0646c47155cb147'
- '27271ce647a83906ef7a24605e840d61'
- '52e52f840a49eb1d14be1c0065b03a93')
+sha256sums=('c3623bc243bd57c7267eacac658993f5f635f639235bea9ed8fce9b52e59be64'
+'3fba82b327f8825ebe93ceaeaea4968d57cf7d700f40bf4457b06d263bcc2e8f'
+'23485d937035648add27a7657f6934dc5b295e886cdb0506eebd02a43d07f269'
+'e2b4a00d14f4ba69c62b3f9ef9908263fbab179ba8004197cbc67edbd916fdf1')
 
 prepare() {
   cd "$srcdir/mozilla-release"



[arch-commits] Commit in xulrunner/repos (10 files)

2013-04-27 Thread Evangelos Foutras
Date: Sunday, April 28, 2013 @ 03:59:13
  Author: foutrelis
Revision: 183807

archrelease: copy trunk to staging-i686, staging-x86_64

Added:
  xulrunner/repos/staging-i686/
  xulrunner/repos/staging-i686/PKGBUILD
(from rev 183806, xulrunner/trunk/PKGBUILD)
  xulrunner/repos/staging-i686/mozconfig
(from rev 183806, xulrunner/trunk/mozconfig)
  xulrunner/repos/staging-i686/mozilla-pkgconfig.patch
(from rev 183806, xulrunner/trunk/mozilla-pkgconfig.patch)
  xulrunner/repos/staging-i686/shared-libs.patch
(from rev 183806, xulrunner/trunk/shared-libs.patch)
  xulrunner/repos/staging-x86_64/
  xulrunner/repos/staging-x86_64/PKGBUILD
(from rev 183806, xulrunner/trunk/PKGBUILD)
  xulrunner/repos/staging-x86_64/mozconfig
(from rev 183806, xulrunner/trunk/mozconfig)
  xulrunner/repos/staging-x86_64/mozilla-pkgconfig.patch
(from rev 183806, xulrunner/trunk/mozilla-pkgconfig.patch)
  xulrunner/repos/staging-x86_64/shared-libs.patch
(from rev 183806, xulrunner/trunk/shared-libs.patch)

+
 staging-i686/PKGBUILD  |   67 +++
 staging-i686/mozconfig |   29 +
 staging-i686/mozilla-pkgconfig.patch   |   40 ++
 staging-i686/shared-libs.patch |   12 +
 staging-x86_64/PKGBUILD|   67 +++
 staging-x86_64/mozconfig   |   29 +
 staging-x86_64/mozilla-pkgconfig.patch |   40 ++
 staging-x86_64/shared-libs.patch   |   12 +
 8 files changed, 296 insertions(+)

Copied: xulrunner/repos/staging-i686/PKGBUILD (from rev 183806, 
xulrunner/trunk/PKGBUILD)
===
--- staging-i686/PKGBUILD   (rev 0)
+++ staging-i686/PKGBUILD   2013-04-28 01:59:13 UTC (rev 183807)
@@ -0,0 +1,67 @@
+# $Id$
+# Maintainer: Jan de Groot 
+# Contributor: Alexander Baldeck 
+pkgname=xulrunner
+pkgver=20.0
+pkgrel=2
+pkgdesc="Mozilla Runtime Environment"
+arch=('i686' 'x86_64')
+license=('MPL' 'GPL' 'LGPL')
+depends=('gtk2' 'mozilla-common' 'nss>=3.14.1' 'libxt' 'libxrender' 'hunspell' 
'startup-notification' 'mime-types' 'dbus-glib' 'alsa-lib' 'libevent' 
'sqlite>=3.7.4' 'libvpx' 'python2')
+makedepends=('zip' 'unzip' 'pkg-config' 'diffutils' 'yasm' 'mesa' 
'autoconf2.13')
+url="http://wiki.mozilla.org/XUL:Xul_Runner";
+source=(ftp://ftp.mozilla.org/pub/mozilla.org/xulrunner/releases/$pkgver/source/xulrunner-$pkgver.source.tar.bz2
+mozconfig
+mozilla-pkgconfig.patch
+shared-libs.patch)
+options=('!emptydirs')
+replaces=('xulrunner-oss')
+md5sums=('1b8a1907919eb805f390a05216f2d8d0'
+ 'f26710bcf3e65699a0646c47155cb147'
+ '27271ce647a83906ef7a24605e840d61'
+ '52e52f840a49eb1d14be1c0065b03a93')
+
+prepare() {
+  cd "$srcdir/mozilla-release"
+  cp "$srcdir/mozconfig" .mozconfig
+
+  #fix libdir/sdkdir - fedora
+  patch -Np1 -i ../mozilla-pkgconfig.patch
+  patch -Np1 -i ../shared-libs.patch
+
+  # WebRTC build tries to execute "python" and expects Python 2
+  # Workaround taken from chromium PKGBUILD
+  mkdir "$srcdir/python2-path"
+  ln -s /usr/bin/python2 "$srcdir/python2-path/python"
+
+  # configure script misdetects the preprocessor without an optimization level
+  # https://bugs.archlinux.org/task/34644
+  sed -i '/ac_cpp=/s/$CPPFLAGS/& -O2/' configure
+}
+
+build() {
+  cd "$srcdir/mozilla-release"
+
+  export PATH="$srcdir/python2-path:$PATH"
+  export LDFLAGS="$LDFLAGS -Wl,-rpath,/usr/lib/xulrunner-$pkgver"
+  export PYTHON="/usr/bin/python2"
+
+  make -j1 -f client.mk build MOZ_MAKE_FLAGS="$MAKEFLAGS"
+}
+
+package() {
+  cd "$srcdir/mozilla-release"
+  make -j1 -f client.mk DESTDIR="$pkgdir" install
+
+  rm -rf "$pkgdir"/usr/lib/xulrunner-$pkgver/{dictionaries,hyphenation}
+  ln -sf /usr/share/hunspell "$pkgdir/usr/lib/xulrunner-$pkgver/dictionaries"
+  ln -sf /usr/share/hyphen "$pkgdir/usr/lib/xulrunner-$pkgver/hyphenation"
+
+  # add xulrunner library path to ld.so.conf
+  install -d $pkgdir/etc/ld.so.conf.d
+  echo "/usr/lib/xulrunner-$pkgver" > $pkgdir/etc/ld.so.conf.d/xulrunner.conf
+
+  chmod +x "${pkgdir}/usr/lib/xulrunner-devel-$pkgver/sdk/bin/xpt.py"
+  sed -i 's|!/usr/bin/env python$|!/usr/bin/env python2|' \
+
"$pkgdir"/usr/lib/xulrunner-devel-$pkgver/sdk/bin/{xpt,header,typelib,xpidl}.py
+}

Copied: xulrunner/repos/staging-i686/mozconfig (from rev 183806, 
xulrunner/trunk/mozconfig)
===
--- staging-i686/mozconfig  (rev 0)
+++ staging-i686/mozconfig  2013-04-28 01:59:13 UTC (rev 183807)
@@ -0,0 +1,29 @@
+. $topsrcdir/xulrunner/config/mozconfig
+
+ac_add_options --prefix=/usr
+ac_add_options --libdir=/usr/lib
+
+# System libraries
+ac_add_options --with-system-nspr
+ac_add_options --with-system-nss
+ac_add_options --with-system-jpeg
+ac_add_options --

[arch-commits] Commit in xulrunner/trunk (PKGBUILD)

2013-04-27 Thread Evangelos Foutras
Date: Sunday, April 28, 2013 @ 03:58:55
  Author: foutrelis
Revision: 183806

upgpkg: xulrunner 20.0-2

libpng 1.6 rebuild.

Modified:
  xulrunner/trunk/PKGBUILD

--+
 PKGBUILD |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

Modified: PKGBUILD
===
--- PKGBUILD2013-04-28 01:50:59 UTC (rev 183805)
+++ PKGBUILD2013-04-28 01:58:55 UTC (rev 183806)
@@ -3,7 +3,7 @@
 # Contributor: Alexander Baldeck 
 pkgname=xulrunner
 pkgver=20.0
-pkgrel=1
+pkgrel=2
 pkgdesc="Mozilla Runtime Environment"
 arch=('i686' 'x86_64')
 license=('MPL' 'GPL' 'LGPL')



[arch-commits] Commit in xulrunner/repos (16 files)

2013-04-10 Thread Evangelos Foutras
Date: Wednesday, April 10, 2013 @ 15:01:03
  Author: foutrelis
Revision: 182413

archrelease: copy trunk to extra-i686, extra-x86_64

Added:
  xulrunner/repos/extra-i686/PKGBUILD
(from rev 182412, xulrunner/trunk/PKGBUILD)
  xulrunner/repos/extra-i686/mozconfig
(from rev 182412, xulrunner/trunk/mozconfig)
  xulrunner/repos/extra-i686/mozilla-pkgconfig.patch
(from rev 182412, xulrunner/trunk/mozilla-pkgconfig.patch)
  xulrunner/repos/extra-i686/shared-libs.patch
(from rev 182412, xulrunner/trunk/shared-libs.patch)
  xulrunner/repos/extra-x86_64/PKGBUILD
(from rev 182412, xulrunner/trunk/PKGBUILD)
  xulrunner/repos/extra-x86_64/mozconfig
(from rev 182412, xulrunner/trunk/mozconfig)
  xulrunner/repos/extra-x86_64/mozilla-pkgconfig.patch
(from rev 182412, xulrunner/trunk/mozilla-pkgconfig.patch)
  xulrunner/repos/extra-x86_64/shared-libs.patch
(from rev 182412, xulrunner/trunk/shared-libs.patch)
Deleted:
  xulrunner/repos/extra-i686/PKGBUILD
  xulrunner/repos/extra-i686/mozconfig
  xulrunner/repos/extra-i686/mozilla-pkgconfig.patch
  xulrunner/repos/extra-i686/shared-libs.patch
  xulrunner/repos/extra-x86_64/PKGBUILD
  xulrunner/repos/extra-x86_64/mozconfig
  xulrunner/repos/extra-x86_64/mozilla-pkgconfig.patch
  xulrunner/repos/extra-x86_64/shared-libs.patch

--+
 /PKGBUILD|  134 +
 /mozconfig   |   58 ++
 /mozilla-pkgconfig.patch |   80 +++
 /shared-libs.patch   |   24 +
 extra-i686/PKGBUILD  |   59 --
 extra-i686/mozconfig |   29 ---
 extra-i686/mozilla-pkgconfig.patch   |   40 -
 extra-i686/shared-libs.patch |   12 --
 extra-x86_64/PKGBUILD|   59 --
 extra-x86_64/mozconfig   |   29 ---
 extra-x86_64/mozilla-pkgconfig.patch |   40 -
 extra-x86_64/shared-libs.patch   |   12 --
 12 files changed, 296 insertions(+), 280 deletions(-)

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2013-04-10 13:00:43 UTC (rev 182412)
+++ extra-i686/PKGBUILD 2013-04-10 13:01:03 UTC (rev 182413)
@@ -1,59 +0,0 @@
-# $Id$
-# Maintainer: Jan de Groot 
-# Contributor: Alexander Baldeck 
-pkgname=xulrunner
-pkgver=19.0.2
-pkgrel=1
-pkgdesc="Mozilla Runtime Environment"
-arch=('i686' 'x86_64')
-license=('MPL' 'GPL' 'LGPL')
-depends=('gtk2' 'mozilla-common' 'nss>=3.14.1' 'libxt' 'libxrender' 'hunspell' 
'startup-notification' 'mime-types' 'dbus-glib' 'alsa-lib' 'libevent' 
'sqlite>=3.7.4' 'libvpx' 'python2')
-makedepends=('zip' 'unzip' 'pkg-config' 'diffutils' 'yasm' 'mesa' 
'autoconf2.13')
-url="http://wiki.mozilla.org/XUL:Xul_Runner";
-source=(ftp://ftp.mozilla.org/pub/mozilla.org/xulrunner/releases/$pkgver/source/xulrunner-$pkgver.source.tar.bz2
-mozconfig
-mozilla-pkgconfig.patch
-shared-libs.patch)
-options=('!emptydirs')
-replaces=('xulrunner-oss')
-md5sums=('956f60b12577bf7a42d60ba8e1a73794'
- 'f26710bcf3e65699a0646c47155cb147'
- '27271ce647a83906ef7a24605e840d61'
- '52e52f840a49eb1d14be1c0065b03a93')
-
-build() {
-  cd "$srcdir/mozilla-release"
-  cp "$srcdir/mozconfig" .mozconfig
-
-  #fix libdir/sdkdir - fedora
-  patch -Np1 -i ../mozilla-pkgconfig.patch
-  patch -Np1 -i ../shared-libs.patch
-
-  # WebRTC build tries to execute "python" and expects Python 2
-  # Workaround taken from chromium PKGBUILD
-  mkdir "$srcdir/python2-path"
-  ln -s /usr/bin/python2 "$srcdir/python2-path/python"
-  export PATH="$srcdir/python2-path:$PATH"
-
-  export LDFLAGS="$LDFLAGS -Wl,-rpath,/usr/lib/xulrunner-$pkgver"
-  export PYTHON="/usr/bin/python2"
-
-  make -j1 -f client.mk build MOZ_MAKE_FLAGS="$MAKEFLAGS"
-}
-
-package() {
-  cd "$srcdir/mozilla-release"
-  make -j1 -f client.mk DESTDIR="$pkgdir" install
-
-  rm -rf "$pkgdir"/usr/lib/xulrunner-$pkgver/{dictionaries,hyphenation}
-  ln -sf /usr/share/hunspell "$pkgdir/usr/lib/xulrunner-$pkgver/dictionaries"
-  ln -sf /usr/share/hyphen "$pkgdir/usr/lib/xulrunner-$pkgver/hyphenation"
-
-  # add xulrunner library path to ld.so.conf
-  install -d $pkgdir/etc/ld.so.conf.d
-  echo "/usr/lib/xulrunner-$pkgver" > $pkgdir/etc/ld.so.conf.d/xulrunner.conf
-
-  chmod +x "${pkgdir}/usr/lib/xulrunner-devel-$pkgver/sdk/bin/xpt.py"
-  sed -i 's|!/usr/bin/env python$|!/usr/bin/env python2|' \
-
"$pkgdir"/usr/lib/xulrunner-devel-$pkgver/sdk/bin/{xpt,header,typelib,xpidl}.py
-}

Copied: xulrunner/repos/extra-i686/PKGBUILD (from rev 182412, 
xulrunner/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2013-04-10 13:01:03 UTC (rev 182413)
@@ -0,0 +1,67 @@
+# $Id$
+# Maintainer: Jan de Groot 
+# Contributor: Alexander Baldeck 
+pkgname=xulrunner
+p

[arch-commits] Commit in xulrunner/trunk (PKGBUILD)

2013-04-10 Thread Evangelos Foutras
Date: Wednesday, April 10, 2013 @ 15:00:43
  Author: foutrelis
Revision: 182412

upgpkg: xulrunner 20.0-1

New upstream release.

Modified:
  xulrunner/trunk/PKGBUILD

--+
 PKGBUILD |   16 
 1 file changed, 12 insertions(+), 4 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2013-04-10 11:05:19 UTC (rev 182411)
+++ PKGBUILD2013-04-10 13:00:43 UTC (rev 182412)
@@ -2,7 +2,7 @@
 # Maintainer: Jan de Groot 
 # Contributor: Alexander Baldeck 
 pkgname=xulrunner
-pkgver=19.0.2
+pkgver=20.0
 pkgrel=1
 pkgdesc="Mozilla Runtime Environment"
 arch=('i686' 'x86_64')
@@ -16,12 +16,12 @@
 shared-libs.patch)
 options=('!emptydirs')
 replaces=('xulrunner-oss')
-md5sums=('956f60b12577bf7a42d60ba8e1a73794'
+md5sums=('1b8a1907919eb805f390a05216f2d8d0'
  'f26710bcf3e65699a0646c47155cb147'
  '27271ce647a83906ef7a24605e840d61'
  '52e52f840a49eb1d14be1c0065b03a93')
 
-build() {
+prepare() {
   cd "$srcdir/mozilla-release"
   cp "$srcdir/mozconfig" .mozconfig
 
@@ -33,8 +33,16 @@
   # Workaround taken from chromium PKGBUILD
   mkdir "$srcdir/python2-path"
   ln -s /usr/bin/python2 "$srcdir/python2-path/python"
+
+  # configure script misdetects the preprocessor without an optimization level
+  # https://bugs.archlinux.org/task/34644
+  sed -i '/ac_cpp=/s/$CPPFLAGS/& -O2/' configure
+}
+
+build() {
+  cd "$srcdir/mozilla-release"
+
   export PATH="$srcdir/python2-path:$PATH"
-
   export LDFLAGS="$LDFLAGS -Wl,-rpath,/usr/lib/xulrunner-$pkgver"
   export PYTHON="/usr/bin/python2"
 



[arch-commits] Commit in xulrunner/repos (16 files)

2013-03-18 Thread Jan de Groot
Date: Monday, March 18, 2013 @ 14:29:43
  Author: jgc
Revision: 180164

archrelease: copy trunk to extra-i686, extra-x86_64

Added:
  xulrunner/repos/extra-i686/PKGBUILD
(from rev 180163, xulrunner/trunk/PKGBUILD)
  xulrunner/repos/extra-i686/mozconfig
(from rev 180163, xulrunner/trunk/mozconfig)
  xulrunner/repos/extra-i686/mozilla-pkgconfig.patch
(from rev 180163, xulrunner/trunk/mozilla-pkgconfig.patch)
  xulrunner/repos/extra-i686/shared-libs.patch
(from rev 180163, xulrunner/trunk/shared-libs.patch)
  xulrunner/repos/extra-x86_64/PKGBUILD
(from rev 180163, xulrunner/trunk/PKGBUILD)
  xulrunner/repos/extra-x86_64/mozconfig
(from rev 180163, xulrunner/trunk/mozconfig)
  xulrunner/repos/extra-x86_64/mozilla-pkgconfig.patch
(from rev 180163, xulrunner/trunk/mozilla-pkgconfig.patch)
  xulrunner/repos/extra-x86_64/shared-libs.patch
(from rev 180163, xulrunner/trunk/shared-libs.patch)
Deleted:
  xulrunner/repos/extra-i686/PKGBUILD
  xulrunner/repos/extra-i686/mozconfig
  xulrunner/repos/extra-i686/mozilla-pkgconfig.patch
  xulrunner/repos/extra-i686/shared-libs.patch
  xulrunner/repos/extra-x86_64/PKGBUILD
  xulrunner/repos/extra-x86_64/mozconfig
  xulrunner/repos/extra-x86_64/mozilla-pkgconfig.patch
  xulrunner/repos/extra-x86_64/shared-libs.patch

--+
 extra-i686/PKGBUILD  |  118 -
 extra-i686/mozconfig |   58 
 extra-i686/mozilla-pkgconfig.patch   |   80 +++---
 extra-i686/shared-libs.patch |   24 +++---
 extra-x86_64/PKGBUILD|  118 -
 extra-x86_64/mozconfig   |   58 
 extra-x86_64/mozilla-pkgconfig.patch |   80 +++---
 extra-x86_64/shared-libs.patch   |   24 +++---
 8 files changed, 280 insertions(+), 280 deletions(-)

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2013-03-18 13:29:32 UTC (rev 180163)
+++ extra-i686/PKGBUILD 2013-03-18 13:29:43 UTC (rev 180164)
@@ -1,59 +0,0 @@
-# $Id$
-# Maintainer: Jan de Groot 
-# Contributor: Alexander Baldeck 
-pkgname=xulrunner
-pkgver=19.0
-pkgrel=1
-pkgdesc="Mozilla Runtime Environment"
-arch=('i686' 'x86_64')
-license=('MPL' 'GPL' 'LGPL')
-depends=('gtk2' 'mozilla-common' 'nss>=3.14.1' 'libxt' 'libxrender' 'hunspell' 
'startup-notification' 'mime-types' 'dbus-glib' 'alsa-lib' 'libevent' 
'sqlite>=3.7.4' 'libvpx' 'python2')
-makedepends=('zip' 'unzip' 'pkg-config' 'diffutils' 'yasm' 'mesa' 
'autoconf2.13')
-url="http://wiki.mozilla.org/XUL:Xul_Runner";
-source=(ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases/$pkgver/source/firefox-$pkgver.source.tar.bz2
-mozconfig
-mozilla-pkgconfig.patch
-shared-libs.patch)
-options=('!emptydirs')
-replaces=('xulrunner-oss')
-md5sums=('3dc732b6ce177792b43324f4bc7164d8'
- 'f26710bcf3e65699a0646c47155cb147'
- '27271ce647a83906ef7a24605e840d61'
- '52e52f840a49eb1d14be1c0065b03a93')
-
-build() {
-  cd "$srcdir/mozilla-release"
-  cp "$srcdir/mozconfig" .mozconfig
-
-  #fix libdir/sdkdir - fedora
-  patch -Np1 -i ../mozilla-pkgconfig.patch
-  patch -Np1 -i ../shared-libs.patch
-
-  # WebRTC build tries to execute "python" and expects Python 2
-  # Workaround taken from chromium PKGBUILD
-  mkdir "$srcdir/python2-path"
-  ln -s /usr/bin/python2 "$srcdir/python2-path/python"
-  export PATH="$srcdir/python2-path:$PATH"
-
-  export LDFLAGS="$LDFLAGS -Wl,-rpath,/usr/lib/xulrunner-$pkgver"
-  export PYTHON="/usr/bin/python2"
-
-  make -j1 -f client.mk build MOZ_MAKE_FLAGS="$MAKEFLAGS"
-}
-
-package() {
-  cd "$srcdir/mozilla-release"
-  make -j1 -f client.mk DESTDIR="$pkgdir" install
-
-  rm -rf "$pkgdir"/usr/lib/xulrunner-$pkgver/{dictionaries,hyphenation}
-  ln -sf /usr/share/hunspell "$pkgdir/usr/lib/xulrunner-$pkgver/dictionaries"
-  ln -sf /usr/share/hyphen "$pkgdir/usr/lib/xulrunner-$pkgver/hyphenation"
-
-  # add xulrunner library path to ld.so.conf
-  install -d $pkgdir/etc/ld.so.conf.d
-  echo "/usr/lib/xulrunner-$pkgver" > $pkgdir/etc/ld.so.conf.d/xulrunner.conf
-
-  chmod +x "${pkgdir}/usr/lib/xulrunner-devel-$pkgver/sdk/bin/xpt.py"
-  sed -i 's|!/usr/bin/env python$|!/usr/bin/env python2|' \
-
"$pkgdir"/usr/lib/xulrunner-devel-$pkgver/sdk/bin/{xpt,header,typelib,xpidl}.py
-}

Copied: xulrunner/repos/extra-i686/PKGBUILD (from rev 180163, 
xulrunner/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2013-03-18 13:29:43 UTC (rev 180164)
@@ -0,0 +1,59 @@
+# $Id$
+# Maintainer: Jan de Groot 
+# Contributor: Alexander Baldeck 
+pkgname=xulrunner
+pkgver=19.0.2
+pkgrel=1
+pkgdesc="Mozilla Runtime Environment"
+arch=('i686' 'x86_64')
+license=('MPL' 'GPL' 'LGPL')
+depends=('gtk2' 'mozilla-common' 'nss>=3.14.1' 'libxt' 'libxrend

[arch-commits] Commit in xulrunner/trunk (PKGBUILD)

2013-03-18 Thread Jan de Groot
Date: Monday, March 18, 2013 @ 14:29:32
  Author: jgc
Revision: 180163

Update to 19.0.2 using xulrunner sources. Now Xulrunner gets regular releases, 
there is no reason to use firefox sources anymore
upgpkg: xulrunner 19.0.2-1

Modified:
  xulrunner/trunk/PKGBUILD

--+
 PKGBUILD |6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2013-03-18 13:28:34 UTC (rev 180162)
+++ PKGBUILD2013-03-18 13:29:32 UTC (rev 180163)
@@ -2,7 +2,7 @@
 # Maintainer: Jan de Groot 
 # Contributor: Alexander Baldeck 
 pkgname=xulrunner
-pkgver=19.0
+pkgver=19.0.2
 pkgrel=1
 pkgdesc="Mozilla Runtime Environment"
 arch=('i686' 'x86_64')
@@ -10,13 +10,13 @@
 depends=('gtk2' 'mozilla-common' 'nss>=3.14.1' 'libxt' 'libxrender' 'hunspell' 
'startup-notification' 'mime-types' 'dbus-glib' 'alsa-lib' 'libevent' 
'sqlite>=3.7.4' 'libvpx' 'python2')
 makedepends=('zip' 'unzip' 'pkg-config' 'diffutils' 'yasm' 'mesa' 
'autoconf2.13')
 url="http://wiki.mozilla.org/XUL:Xul_Runner";
-source=(ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases/$pkgver/source/firefox-$pkgver.source.tar.bz2
+source=(ftp://ftp.mozilla.org/pub/mozilla.org/xulrunner/releases/$pkgver/source/xulrunner-$pkgver.source.tar.bz2
 mozconfig
 mozilla-pkgconfig.patch
 shared-libs.patch)
 options=('!emptydirs')
 replaces=('xulrunner-oss')
-md5sums=('3dc732b6ce177792b43324f4bc7164d8'
+md5sums=('956f60b12577bf7a42d60ba8e1a73794'
  'f26710bcf3e65699a0646c47155cb147'
  '27271ce647a83906ef7a24605e840d61'
  '52e52f840a49eb1d14be1c0065b03a93')



[arch-commits] Commit in xulrunner/repos (16 files)

2013-02-20 Thread Ionuț Mircea Bîru
Date: Wednesday, February 20, 2013 @ 10:27:20
  Author: ioni
Revision: 178333

archrelease: copy trunk to extra-i686, extra-x86_64

Added:
  xulrunner/repos/extra-i686/PKGBUILD
(from rev 178331, xulrunner/trunk/PKGBUILD)
  xulrunner/repos/extra-i686/mozconfig
(from rev 178331, xulrunner/trunk/mozconfig)
  xulrunner/repos/extra-i686/mozilla-pkgconfig.patch
(from rev 178331, xulrunner/trunk/mozilla-pkgconfig.patch)
  xulrunner/repos/extra-i686/shared-libs.patch
(from rev 178331, xulrunner/trunk/shared-libs.patch)
  xulrunner/repos/extra-x86_64/PKGBUILD
(from rev 178332, xulrunner/trunk/PKGBUILD)
  xulrunner/repos/extra-x86_64/mozconfig
(from rev 178332, xulrunner/trunk/mozconfig)
  xulrunner/repos/extra-x86_64/mozilla-pkgconfig.patch
(from rev 178332, xulrunner/trunk/mozilla-pkgconfig.patch)
  xulrunner/repos/extra-x86_64/shared-libs.patch
(from rev 178332, xulrunner/trunk/shared-libs.patch)
Deleted:
  xulrunner/repos/extra-i686/PKGBUILD
  xulrunner/repos/extra-i686/mozconfig
  xulrunner/repos/extra-i686/mozilla-pkgconfig.patch
  xulrunner/repos/extra-i686/shared-libs.patch
  xulrunner/repos/extra-x86_64/PKGBUILD
  xulrunner/repos/extra-x86_64/mozconfig
  xulrunner/repos/extra-x86_64/mozilla-pkgconfig.patch
  xulrunner/repos/extra-x86_64/shared-libs.patch

--+
 extra-i686/PKGBUILD  |  118 -
 extra-i686/mozconfig |   58 
 extra-i686/mozilla-pkgconfig.patch   |   80 +++---
 extra-i686/shared-libs.patch |   24 +++---
 extra-x86_64/PKGBUILD|  118 -
 extra-x86_64/mozconfig   |   58 
 extra-x86_64/mozilla-pkgconfig.patch |   80 +++---
 extra-x86_64/shared-libs.patch   |   24 +++---
 8 files changed, 280 insertions(+), 280 deletions(-)

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2013-02-20 09:27:16 UTC (rev 178332)
+++ extra-i686/PKGBUILD 2013-02-20 09:27:20 UTC (rev 178333)
@@ -1,59 +0,0 @@
-# $Id$
-# Maintainer: Jan de Groot 
-# Contributor: Alexander Baldeck 
-pkgname=xulrunner
-pkgver=18.0
-pkgrel=1
-pkgdesc="Mozilla Runtime Environment"
-arch=('i686' 'x86_64')
-license=('MPL' 'GPL' 'LGPL')
-depends=('gtk2' 'mozilla-common' 'nss>=3.14.1' 'libxt' 'libxrender' 'hunspell' 
'startup-notification' 'mime-types' 'dbus-glib' 'alsa-lib' 'libevent' 
'sqlite>=3.7.4' 'libvpx' 'python2')
-makedepends=('zip' 'unzip' 'pkg-config' 'diffutils' 'yasm' 'mesa' 
'autoconf2.13')
-url="http://wiki.mozilla.org/XUL:Xul_Runner";
-source=(ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases/$pkgver/source/firefox-$pkgver.source.tar.bz2
-mozconfig
-mozilla-pkgconfig.patch
-shared-libs.patch)
-options=('!emptydirs')
-replaces=('xulrunner-oss')
-md5sums=('485d02563854c20a3788d89db07b0687'
- 'f26710bcf3e65699a0646c47155cb147'
- '27271ce647a83906ef7a24605e840d61'
- '52e52f840a49eb1d14be1c0065b03a93')
-
-build() {
-  cd "$srcdir/mozilla-release"
-  cp "$srcdir/mozconfig" .mozconfig
-
-  #fix libdir/sdkdir - fedora
-  patch -Np1 -i ../mozilla-pkgconfig.patch
-  patch -Np1 -i ../shared-libs.patch
-
-  # WebRTC build tries to execute "python" and expects Python 2
-  # Workaround taken from chromium PKGBUILD
-  mkdir "$srcdir/python2-path"
-  ln -s /usr/bin/python2 "$srcdir/python2-path/python"
-  export PATH="$srcdir/python2-path:$PATH"
-
-  export LDFLAGS="$LDFLAGS -Wl,-rpath,/usr/lib/xulrunner-$pkgver"
-  export PYTHON="/usr/bin/python2"
-
-  make -j1 -f client.mk build MOZ_MAKE_FLAGS="$MAKEFLAGS"
-}
-
-package() {
-  cd "$srcdir/mozilla-release"
-  make -j1 -f client.mk DESTDIR="$pkgdir" install
-
-  rm -rf "$pkgdir"/usr/lib/xulrunner-$pkgver/{dictionaries,hyphenation}
-  ln -sf /usr/share/hunspell "$pkgdir/usr/lib/xulrunner-$pkgver/dictionaries"
-  ln -sf /usr/share/hyphen "$pkgdir/usr/lib/xulrunner-$pkgver/hyphenation"
-
-  # add xulrunner library path to ld.so.conf
-  install -d $pkgdir/etc/ld.so.conf.d
-  echo "/usr/lib/xulrunner-$pkgver" > $pkgdir/etc/ld.so.conf.d/xulrunner.conf
-
-  chmod +x "${pkgdir}/usr/lib/xulrunner-devel-$pkgver/sdk/bin/xpt.py"
-  sed -i 's|!/usr/bin/env python$|!/usr/bin/env python2|' \
-
"$pkgdir"/usr/lib/xulrunner-devel-$pkgver/sdk/bin/{xpt,header,typelib,xpidl}.py
-}

Copied: xulrunner/repos/extra-i686/PKGBUILD (from rev 178331, 
xulrunner/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2013-02-20 09:27:20 UTC (rev 178333)
@@ -0,0 +1,59 @@
+# $Id$
+# Maintainer: Jan de Groot 
+# Contributor: Alexander Baldeck 
+pkgname=xulrunner
+pkgver=19.0
+pkgrel=1
+pkgdesc="Mozilla Runtime Environment"
+arch=('i686' 'x86_64')
+license=('MPL' 'GPL' 'LGPL')
+depends=('gtk2' 'mozilla-common' 'nss>=3.14.1' 'libxt' 'lib

[arch-commits] Commit in xulrunner/trunk (PKGBUILD)

2013-02-20 Thread Ionuț Mircea Bîru
Date: Wednesday, February 20, 2013 @ 10:26:20
  Author: ioni
Revision: 178331

update to 19.0

Modified:
  xulrunner/trunk/PKGBUILD

--+
 PKGBUILD |4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2013-02-20 09:25:57 UTC (rev 178330)
+++ PKGBUILD2013-02-20 09:26:20 UTC (rev 178331)
@@ -2,7 +2,7 @@
 # Maintainer: Jan de Groot 
 # Contributor: Alexander Baldeck 
 pkgname=xulrunner
-pkgver=18.0
+pkgver=19.0
 pkgrel=1
 pkgdesc="Mozilla Runtime Environment"
 arch=('i686' 'x86_64')
@@ -16,7 +16,7 @@
 shared-libs.patch)
 options=('!emptydirs')
 replaces=('xulrunner-oss')
-md5sums=('485d02563854c20a3788d89db07b0687'
+md5sums=('3dc732b6ce177792b43324f4bc7164d8'
  'f26710bcf3e65699a0646c47155cb147'
  '27271ce647a83906ef7a24605e840d61'
  '52e52f840a49eb1d14be1c0065b03a93')



  1   2   3   4   >