Disable new cast-function-type-mismatch while a proper fix is provided by upstream. OBS-URL: https://build.opensuse.org/package/show/multimedia:apps/libdispatch?expand=0&rev=18
125 lines
3.7 KiB
RPMSpec
125 lines
3.7 KiB
RPMSpec
#
|
|
# spec file for package libdispatch
|
|
#
|
|
# Copyright (c) 2025 SUSE LLC
|
|
#
|
|
# All modifications and additions to the file contributed by third parties
|
|
# remain the property of their copyright owners, unless otherwise agreed
|
|
# upon. The license for this file, and modifications and additions to the
|
|
# file, is the same license as for the pristine package itself (unless the
|
|
# license for the pristine package is not an Open Source License, in which
|
|
# case the license is the MIT License). An "Open Source License" is a
|
|
# license that conforms to the Open Source Definition (Version 1.9)
|
|
# published by the Open Source Initiative.
|
|
|
|
# Please submit bugfixes or comments via https://bugs.opensuse.org/
|
|
#
|
|
|
|
|
|
%define reltag 5.6.3-RELEASE
|
|
Name: libdispatch
|
|
Version: 5.6.3
|
|
Release: 0
|
|
Summary: Apple's Grand Central Dispatch library
|
|
License: Apache-2.0
|
|
Group: Development/Languages/C and C++
|
|
URL: https://github.com/apple/swift-corelibs-libdispatch
|
|
Source0: https://github.com/apple/swift-corelibs-libdispatch/archive/swift-%{reltag}.tar.gz#/corelibs-libdispatch.tar.gz
|
|
Source1: libdispatch-rpmlintrc
|
|
Patch0: prevent_unused.patch
|
|
# set library versions
|
|
Patch2: soversion.patch
|
|
# UPSTREAM-PATCH https://github.com/swiftlang/swift-corelibs-libdispatch/pull/840
|
|
Patch3: disable-cast-function-type-mismatch.patch
|
|
BuildRequires: chrpath
|
|
BuildRequires: clang
|
|
BuildRequires: cmake
|
|
BuildRequires: libbsd-devel
|
|
BuildRequires: libstdc++-devel
|
|
BuildRequires: llvm-gold
|
|
BuildRequires: ninja
|
|
# Disable i586 build for now
|
|
%ifarch i586
|
|
ExclusiveArch: do_not_build
|
|
%endif
|
|
|
|
%description
|
|
Grand Central Dispatch (GCD or libdispatch) provides support for
|
|
concurrent code execution on multicore hardware.
|
|
|
|
%package -n libdispatch1_3
|
|
Summary: Apple's Grand Central Dispatch library
|
|
Group: System/Libraries
|
|
Obsoletes: libdispatch < %{version}-%{release}
|
|
Provides: libdispatch = %{version}-%{release}
|
|
|
|
%description -n libdispatch1_3
|
|
Grand Central Dispatch (GCD or libdispatch) provides support for
|
|
concurrent code execution on multicore hardware.
|
|
|
|
%package devel
|
|
Summary: Development files for %{name}
|
|
Group: Development/Languages/C and C++
|
|
Requires: libdispatch1_3 = %{version}-%{release}
|
|
# Wrong location for manpages in older version
|
|
Conflicts: libdispatch < %{version}-%{release}
|
|
BuildArch: noarch
|
|
|
|
%description devel
|
|
The %{name}-devel package contains libraries and header files for
|
|
developing applications that use %{name}.
|
|
|
|
%prep
|
|
%autosetup -p1 -n swift-corelibs-libdispatch-swift-%{reltag}
|
|
|
|
%build
|
|
export CC=clang
|
|
export CXX=clang++
|
|
# clang doesn't have 'auto'
|
|
# aarch64 specific flag
|
|
%ifarch aarch64 riscv64
|
|
export CFLAGS="%{optflags} -Wno-unused-command-line-argument"
|
|
%else
|
|
export CFLAGS="%{optflags}"
|
|
%endif
|
|
CFLAGS=${CFLAGS/-flto=auto/-flto}
|
|
|
|
%ifarch aarch64 riscv64
|
|
export CXXFLAGS="%{optflags} -Wno-unused-command-line-argument"
|
|
%else
|
|
export CXXFLAGS="%{optflags}"
|
|
%endif
|
|
CXXFLAGS=${CXXFLAGS/-flto=auto/-flto}
|
|
export LDFLAGS="-flto -Wl,--as-needed -Wl,--no-undefined -Wl,-z,now"
|
|
|
|
%define __builder ninja
|
|
%cmake \
|
|
-DCMAKE_Fortran_FLAGS="$CXXFLAGS" \
|
|
-DCMAKE_EXE_LINKER_FLAGS="$LDFLAGS" \
|
|
-DCMAKE_MODULE_LINKER_FLAGS="-flto -Wl, --as-needed" \
|
|
-DCMAKE_SHARED_LINKER_FLAGS="$LDFLAGS" \
|
|
-DINSTALL_BLOCK_HEADERS_DIR:PATH=include/block .
|
|
ninja
|
|
|
|
%install
|
|
%cmake_install
|
|
chrpath --delete %{buildroot}%{_libdir}/libdispatch.so.1.3
|
|
|
|
%post -n libdispatch1_3 -p /sbin/ldconfig
|
|
%postun -n libdispatch1_3 -p /sbin/ldconfig
|
|
|
|
%files -n libdispatch1_3
|
|
%license LICENSE
|
|
%{_libdir}/*.so*
|
|
|
|
%files devel
|
|
%dir %{_includedir}/block
|
|
%{_includedir}/block/*
|
|
%dir %{_includedir}/dispatch
|
|
%{_includedir}/dispatch/*
|
|
%dir %{_includedir}/os
|
|
%{_includedir}/os/*
|
|
%{_mandir}/man3/*
|
|
|
|
%changelog
|