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

Ionut Biru ibiru at archlinux.org
Fri Jul 1 08:50:26 UTC 2011


    Date: Friday, July 1, 2011 @ 04:50:25
  Author: ibiru
Revision: 130015

update to 1.4.2

Modified:
  libwebkit/trunk/PKGBUILD
Deleted:
  libwebkit/trunk/replace-switch-with-given-when.patch

--------------------------------------+
 PKGBUILD                             |    6 ++--
 replace-switch-with-given-when.patch |   45 ---------------------------------
 2 files changed, 3 insertions(+), 48 deletions(-)

Modified: PKGBUILD
===================================================================
--- PKGBUILD	2011-06-30 20:49:38 UTC (rev 130014)
+++ PKGBUILD	2011-07-01 08:50:25 UTC (rev 130015)
@@ -3,7 +3,7 @@
 
 pkgbase=libwebkit
 pkgname=(libwebkit libwebkit3)
-pkgver=1.4.1
+pkgver=1.4.2
 pkgrel=1
 pkgdesc="An opensource web content engine"
 arch=('i686' 'x86_64')
@@ -15,12 +15,12 @@
 install=libwebkit.install
 source=(http://webkitgtk.org/webkit-${pkgver}.tar.gz
         replace-switch-with-given-when.patch)
-md5sums=('c1a4f732a77d6f8197437b50678d3dbc'
+md5sums=('361f8420e93d12101d650758fec09fa0'
          '3ba708a26b7af0e1e853867966fe14f7')
 
 build() {
   cd "${srcdir}/webkit-${pkgver}"
-  patch -Np1 -i "${srcdir}/replace-switch-with-given-when.patch"
+#  patch -Np1 -i "${srcdir}/replace-switch-with-given-when.patch"
   mkdir build-gtk{2,3}
 
   ( cd build-gtk2 && _build --with-gtk=2.0 )

Deleted: replace-switch-with-given-when.patch
===================================================================
--- replace-switch-with-given-when.patch	2011-06-30 20:49:38 UTC (rev 130014)
+++ replace-switch-with-given-when.patch	2011-07-01 08:50:25 UTC (rev 130015)
@@ -1,45 +0,0 @@
-diff -upr webkit-1.4.0.orig/Source/WebCore/make-hash-tools.pl webkit-1.4.0/Source/WebCore/make-hash-tools.pl
---- webkit-1.4.0.orig/Source/WebCore/make-hash-tools.pl	2011-04-25 22:27:15.000000000 +0300
-+++ webkit-1.4.0/Source/WebCore/make-hash-tools.pl	2011-06-02 00:41:26.000000000 +0300
-@@ -20,7 +20,7 @@
- #   Boston, MA 02110-1301, USA.
- 
- use strict;
--use Switch;
-+use feature 'switch';
- use File::Basename;
- 
- my $outdir = $ARGV[0];
-@@ -28,9 +28,9 @@ shift;
- my $option = basename($ARGV[0],".gperf");
- 
- 
--switch ($option) {
-+given ($option) {
- 
--case "DocTypeStrings" {
-+when ("DocTypeStrings") {
- 
-     my $docTypeStringsGenerated    = "$outdir/DocTypeStrings.cpp";
-     my $docTypeStringsGperf        = $ARGV[0];
-@@ -38,9 +38,9 @@ case "DocTypeStrings" {
- 
-     system("gperf --key-positions=\"*\" -s 2 $docTypeStringsGperf > $docTypeStringsGenerated") == 0 || die "calling gperf failed: $?";
- 
--} # case "DocTypeStrings"
-+} # when ("DocTypeStrings")
- 
--case "ColorData" {
-+when ("ColorData") {
- 
-     my $colorDataGenerated         = "$outdir/ColorData.cpp";
-     my $colorDataGperf             = $ARGV[0];
-@@ -48,6 +48,6 @@ case "ColorData" {
- 
-     system("gperf --key-positions=\"*\" -D -s 2 $colorDataGperf > $colorDataGenerated") == 0 || die "calling gperf failed: $?";
- 
--} # case "ColorData"
-+} # when ("ColorData")
- 
--} # switch ($option)
-+} # given ($option)




More information about the arch-commits mailing list