Date: Tuesday, February 1, 2022 @ 04:03:36
  Author: svenstaro
Revision: 1121593

Prepare libdispatch move from AUR for telegram-desktop

Added:
  libdispatch/
  libdispatch/repos/
  libdispatch/trunk/
  libdispatch/trunk/PKGBUILD
  libdispatch/trunk/avoid-libkqueue.patch
  libdispatch/trunk/remove-werror.patch

-----------------------+
 PKGBUILD              |   41 +++++++++++++++++++++++++++++++++++++++++
 avoid-libkqueue.patch |   11 +++++++++++
 remove-werror.patch   |   10 ++++++++++
 3 files changed, 62 insertions(+)

Added: libdispatch/trunk/PKGBUILD
===================================================================
--- libdispatch/trunk/PKGBUILD                          (rev 0)
+++ libdispatch/trunk/PKGBUILD  2022-02-01 04:03:36 UTC (rev 1121593)
@@ -0,0 +1,41 @@
+# Maintainer: Sven-Hendrik Haase <[email protected]>
+# Contributor: Adrian Perez de Castro <[email protected]>
+pkgname=libdispatch
+pkgver=5.5.0
+pkgrel=1
+pkgdesc='Comprehensive support for concurrent code execution on multicore 
hardware'
+arch=('x86_64')
+url=https://apple.github.io/swift-corelibs-libdispatch
+license=('Apache')
+depends=('glibc')
+makedepends=('git' 'clang' 'cmake')
+provides=('libblocksruntime')
+source=("${pkgname}::git+https://github.com/apple/swift-corelibs-libdispatch.git#tag=swift-${pkgver%.0}-RELEASE";
+        remove-werror.patch
+        avoid-libkqueue.patch)
+sha512sums=('SKIP'
+            
'd7d05ff6fa2ece40fea51e97f1af04e25ae9c2b55246fa2d753c446cff380262e611f9abb5112b7c7c94730362f0d06e0ccd867477c9470d1154e9c65e540529'
+            
'9f954538eee6ca63170c9fcf28cbcc090392360157c03bb33783789182102854ab344b432ff9f5603b873cb2540ffecf83458be559757eb094286cb41d9ba9ea')
+
+prepare () {
+       cd "${pkgname}"
+       patch -p0 < "${srcdir}/remove-werror.patch"
+       patch -p0 < "${srcdir}/avoid-libkqueue.patch"
+}
+
+build () {
+       CC=clang CXX=clang++ cmake -S"${pkgname}" -Bbuild \
+               -DCMAKE_BUILD_TYPE=RelWithDebInfo \
+               -DCMAKE_INSTALL_PREFIX=/usr \
+               -DBlocksRuntime_INCLUDE_DIR=/usr/include \
+               -DBlocksRuntime_LIBRARIES=/usr/lib/libBlocksRuntime.so
+       cmake --build build
+}
+
+check () {
+       cmake --build build -j 1 --target test
+}
+
+package () {
+       DESTDIR="${pkgdir}" cmake --install build
+}

Added: libdispatch/trunk/avoid-libkqueue.patch
===================================================================
--- libdispatch/trunk/avoid-libkqueue.patch                             (rev 0)
+++ libdispatch/trunk/avoid-libkqueue.patch     2022-02-01 04:03:36 UTC (rev 
1121593)
@@ -0,0 +1,11 @@
+--- tests/dispatch_test.c.orig
++++ tests/dispatch_test.c
+@@ -30,7 +30,7 @@
+ #include <stdio.h>
+ #if defined(__unix__) || (defined(__APPLE__) && defined(__MACH__))
+ #include <unistd.h>
+-#if __has_include(<sys/event.h>)
++#if __has_include(<sys/event.h>) && !defined(__linux__)
+ #define HAS_SYS_EVENT_H 1
+ #include <sys/event.h>
+ #else

Added: libdispatch/trunk/remove-werror.patch
===================================================================
--- libdispatch/trunk/remove-werror.patch                               (rev 0)
+++ libdispatch/trunk/remove-werror.patch       2022-02-01 04:03:36 UTC (rev 
1121593)
@@ -0,0 +1,10 @@
+--- cmake/modules/DispatchCompilerWarnings.cmake.orig  2020-05-12 
13:13:59.619689872 +0300
++++ cmake/modules/DispatchCompilerWarnings.cmake       2020-05-12 
13:13:35.216171428 +0300
+@@ -2,7 +2,6 @@
+ if("${CMAKE_C_SIMULATE_ID}" STREQUAL "MSVC")
+   # TODO: someone needs to provide the msvc equivalent warning flags
+ else()
+-  
add_compile_options($<$<OR:$<COMPILE_LANGUAGE:C>,$<COMPILE_LANGUAGE:CXX>>:-Werror>)
+   
add_compile_options($<$<OR:$<COMPILE_LANGUAGE:C>,$<COMPILE_LANGUAGE:CXX>>:-Wall>)
+   
add_compile_options($<$<OR:$<COMPILE_LANGUAGE:C>,$<COMPILE_LANGUAGE:CXX>>:-Wextra>)
+ 

Reply via email to