[arch-commits] Commit in waylandpp/repos/community-x86_64 (3 files)

Ike Devolder idevolder at archlinux.org
Fri Jun 5 07:59:29 UTC 2020


    Date: Friday, June 5, 2020 @ 07:59:29
  Author: idevolder
Revision: 639075

archrelease: copy trunk to community-x86_64

Added:
  waylandpp/repos/community-x86_64/695c0881101435a57d24c84d04cbcb79eec49903.patch
    (from rev 639074, waylandpp/trunk/695c0881101435a57d24c84d04cbcb79eec49903.patch)
  waylandpp/repos/community-x86_64/PKGBUILD
    (from rev 639074, waylandpp/trunk/PKGBUILD)
Deleted:
  waylandpp/repos/community-x86_64/PKGBUILD

------------------------------------------------+
 695c0881101435a57d24c84d04cbcb79eec49903.patch |   25 ++++++++
 PKGBUILD                                       |   67 ++++++++++++-----------
 2 files changed, 61 insertions(+), 31 deletions(-)

Copied: waylandpp/repos/community-x86_64/695c0881101435a57d24c84d04cbcb79eec49903.patch (from rev 639074, waylandpp/trunk/695c0881101435a57d24c84d04cbcb79eec49903.patch)
===================================================================
--- 695c0881101435a57d24c84d04cbcb79eec49903.patch	                        (rev 0)
+++ 695c0881101435a57d24c84d04cbcb79eec49903.patch	2020-06-05 07:59:29 UTC (rev 639075)
@@ -0,0 +1,25 @@
+From 695c0881101435a57d24c84d04cbcb79eec49903 Mon Sep 17 00:00:00 2001
+From: Rechi <Rechi at users.noreply.github.com>
+Date: Sat, 18 Jan 2020 23:37:46 +0100
+Subject: [PATCH] [fix] add missing stdexcept include after 2d834a6
+MIME-Version: 1.0
+Content-Type: text/plain; charset=UTF-8
+Content-Transfer-Encoding: 8bit
+
+fixes error: ‘runtime_error’ is not a member of ‘std’
+---
+ include/wayland-util.hpp | 1 +
+ 1 file changed, 1 insertion(+)
+
+diff --git a/include/wayland-util.hpp b/include/wayland-util.hpp
+index 9cf5d04..1609651 100644
+--- a/include/wayland-util.hpp
++++ b/include/wayland-util.hpp
+@@ -28,6 +28,7 @@
+ 
+ #include <algorithm>
+ #include <memory>
++#include <stdexcept>
+ #include <string>
+ #include <typeinfo>
+ #include <utility>

Deleted: PKGBUILD
===================================================================
--- PKGBUILD	2020-06-05 07:59:21 UTC (rev 639074)
+++ PKGBUILD	2020-06-05 07:59:29 UTC (rev 639075)
@@ -1,31 +0,0 @@
-# Maintainer: BlackIkeEagle <ike DOT devolder AT gmail DOT com>
-# Contributor: Nils Christopher Brause <nilschrbrause at googlemail.com>
-pkgname=waylandpp
-pkgver=0.2.7
-pkgrel=1
-pkgdesc='Wayland C++ bindings'
-arch=('x86_64')
-url='https://github.com/NilsBrause/waylandpp'
-license=('MIT' 'GPL3')
-depends=(wayland 'pugixml')
-conflicts=(waylandpp-git)
-makedepends=(cmake egl-wayland)
-source=("https://github.com/NilsBrause/waylandpp/archive/$pkgver.zip")
-sha512sums=('35ff3fd23af7b156fa2d7dcbf571661e5196c92e52d800ee1901ce75ea4eb2b83a5f51a6c6ec67eea886c7016f13a28035b3bb4ccc2c6323cc0126aa8ac59ab2')
-
-build()
-{
-    cd $pkgname-$pkgver
-    [[ -d build ]] && rm -rf build
-    mkdir build
-    cd build
-    # lib64 is a symlink to lib on archlinux.
-    cmake -DCMAKE_INSTALL_PREFIX="/usr" -DCMAKE_INSTALL_LIBDIR="lib" .. 
-    make
-}
-
-package()
-{
-    cd $pkgname-$pkgver/build
-    DESTDIR="$pkgdir" make install
-}

Copied: waylandpp/repos/community-x86_64/PKGBUILD (from rev 639074, waylandpp/trunk/PKGBUILD)
===================================================================
--- PKGBUILD	                        (rev 0)
+++ PKGBUILD	2020-06-05 07:59:29 UTC (rev 639075)
@@ -0,0 +1,36 @@
+# Maintainer: BlackIkeEagle <ike DOT devolder AT gmail DOT com>
+# Contributor: Nils Christopher Brause <nilschrbrause at googlemail.com>
+pkgname=waylandpp
+pkgver=0.2.7
+pkgrel=2
+pkgdesc='Wayland C++ bindings'
+arch=('x86_64')
+url='https://github.com/NilsBrause/waylandpp'
+license=('MIT' 'GPL3')
+depends=(wayland 'pugixml')
+conflicts=(waylandpp-git)
+makedepends=(cmake egl-wayland)
+source=(
+    "https://github.com/NilsBrause/waylandpp/archive/$pkgver.zip"
+    '695c0881101435a57d24c84d04cbcb79eec49903.patch'
+)
+sha512sums=('35ff3fd23af7b156fa2d7dcbf571661e5196c92e52d800ee1901ce75ea4eb2b83a5f51a6c6ec67eea886c7016f13a28035b3bb4ccc2c6323cc0126aa8ac59ab2'
+            '485272837f4d32b251678cd15a581b8f174ea01a58fd91aa78219b22470426734ce610ca397ff86ff1828d0757e0a66417e18f60b5380324afee14338d26df3e')
+
+build()
+{
+    cd $pkgname-$pkgver
+    patch -p1 -i "$srcdir/695c0881101435a57d24c84d04cbcb79eec49903.patch"
+    [[ -d build ]] && rm -rf build
+    mkdir build
+    cd build
+    # lib64 is a symlink to lib on archlinux.
+    cmake -DCMAKE_INSTALL_PREFIX="/usr" -DCMAKE_INSTALL_LIBDIR="lib" .. 
+    make
+}
+
+package()
+{
+    cd $pkgname-$pkgver/build
+    DESTDIR="$pkgdir" make install
+}



More information about the arch-commits mailing list