[arch-commits] Commit in wpewebkit/repos (3 files)

Evangelos Foutras foutrelis at archlinux.org
Thu Apr 15 18:14:03 UTC 2021


    Date: Thursday, April 15, 2021 @ 18:14:03
  Author: foutrelis
Revision: 412603

archrelease: copy trunk to staging-x86_64

Added:
  wpewebkit/repos/staging-x86_64/
  wpewebkit/repos/staging-x86_64/PKGBUILD
    (from rev 412602, wpewebkit/trunk/PKGBUILD)
  wpewebkit/repos/staging-x86_64/unhide-deprecated-api.patch
    (from rev 412602, wpewebkit/trunk/unhide-deprecated-api.patch)

-----------------------------+
 PKGBUILD                    |   65 ++++++++++++++++++++++++++++++++++++++++++
 unhide-deprecated-api.patch |   12 +++++++
 2 files changed, 77 insertions(+)

Copied: wpewebkit/repos/staging-x86_64/PKGBUILD (from rev 412602, wpewebkit/trunk/PKGBUILD)
===================================================================
--- staging-x86_64/PKGBUILD	                        (rev 0)
+++ staging-x86_64/PKGBUILD	2021-04-15 18:14:03 UTC (rev 412603)
@@ -0,0 +1,65 @@
+# Maintainer: Jan Alexander Steffens (heftig) <heftig at archlinux.org>
+
+pkgname=wpewebkit
+pkgver=2.32.0
+pkgrel=2
+pkgdesc="Web content engine for embedded devices"
+url="https://wpewebkit.org"
+arch=(x86_64)
+license=(custom)
+depends=(cairo fontconfig freetype2 glib2 harfbuzz harfbuzz-icu icu libjpeg
+         libepoxy libgcrypt libsoup libxml2 zlib libpng sqlite libwebp libwpe
+         atk at-spi2-atk openjpeg2 woff2 libtasn1 libxslt libsystemd bubblewrap
+         libseccomp xdg-dbus-proxy gstreamer gst-plugins-base-libs libxkbcommon
+         wayland wpebackend-fdo)
+makedepends=(cmake ninja gtk-doc python ruby systemd gst-plugins-bad gperf
+             wayland-protocols)
+optdepends=('geoclue: Geolocation support'
+            'gst-plugins-good: media decoding'
+            'gst-plugins-bad: media decoding'
+            'gst-libav: nonfree media decoding')
+source=($url/releases/$pkgname-$pkgver.tar.xz{,.asc}
+        unhide-deprecated-api.patch)
+sha256sums=('6cfb18af9a180eeffffcaf34fea68d867ee59f633d811ced92bbead2d184b6ea'
+            'SKIP'
+            '48ee7bee0b50776c8153c20b96854bd5086e0a7d04e621fd57ea7fc6c690c3a2')
+validpgpkeys=('D7FCF61CF9A2DEAB31D81BD3F3D322D0EC4582C3'  # Carlos Garcia Campos <cgarcia at igalia.com>
+              '5AA3BC334FD7E3369E7C77B291C559DBE4C9123B') # Adrián Pérez de Castro <aperez at igalia.com>
+
+prepare() {
+  cd $pkgname-$pkgver
+
+  # Use deprecated API for ubrk_safeClone until ICU 69 is officially supported
+  patch -Np1 -i ../unhide-deprecated-api.patch
+}
+
+build() {
+  cmake -S $pkgname-$pkgver -B build -G Ninja \
+    -DPORT=WPE \
+    -DCMAKE_BUILD_TYPE=Release \
+    -DCMAKE_INSTALL_PREFIX=/usr \
+    -DCMAKE_INSTALL_LIBDIR=lib \
+    -DCMAKE_INSTALL_LIBEXECDIR=lib \
+    -DCMAKE_SKIP_RPATH=ON \
+    -DENABLE_GTKDOC=ON \
+    -DENABLE_MINIBROWSER=ON
+  cmake --build build
+}
+
+package() {
+  depends+=(libwpe-1.0.so libWPEBackend-fdo-1.0.so)
+  provides+=(libWPEWebKit-1.0.so)
+
+  DESTDIR="$pkgdir" cmake --install build
+
+  cd $pkgname-$pkgver
+  find Source -name 'COPYING*' -or -name 'LICENSE*' -print0 | sort -z |
+    while IFS= read -d $'\0' -r _f; do
+      echo "### $_f ###"
+      cat "$_f"
+      echo
+    done |
+    install -Dm644 /dev/stdin "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
+}
+
+# vim:set sw=2 et:

Copied: wpewebkit/repos/staging-x86_64/unhide-deprecated-api.patch (from rev 412602, wpewebkit/trunk/unhide-deprecated-api.patch)
===================================================================
--- staging-x86_64/unhide-deprecated-api.patch	                        (rev 0)
+++ staging-x86_64/unhide-deprecated-api.patch	2021-04-15 18:14:03 UTC (rev 412603)
@@ -0,0 +1,12 @@
+diff --git a/Source/WTF/wtf/Platform.h b/Source/WTF/wtf/Platform.h
+index 6fa104c82992..8c8640c3dee7 100644
+--- a/Source/WTF/wtf/Platform.h
++++ b/Source/WTF/wtf/Platform.h
+@@ -113,7 +113,6 @@
+ 
+ /* FIXME: This does not belong in Platform.h and should instead be included in another mechanism (compiler option, prefix header, config.h, etc) */
+ /* ICU configuration. Some of these match ICU defaults on some platforms, but we would like them consistently set everywhere we build WebKit. */
+-#define U_HIDE_DEPRECATED_API 1
+ #define U_SHOW_CPLUSPLUS_API 0
+ #ifdef __cplusplus
+ #define UCHAR_TYPE char16_t



More information about the arch-commits mailing list