Compare commits
No commits in common. "c8s" and "c9-beta" have entirely different histories.
2
.cmocka.metadata
Normal file
2
.cmocka.metadata
Normal file
@ -0,0 +1,2 @@
|
||||
eb708adc176e0c60c43e437f9a5f58a8fea79d5a SOURCES/cmocka-1.1.5.tar.xz
|
||||
3f2ab0bca02893402ba0ad172a6bd44456a65f86 SOURCES/cmocka.keyring
|
2
.gitignore
vendored
2
.gitignore
vendored
@ -1,4 +1,2 @@
|
||||
SOURCES/cmocka-1.1.5.tar.xz
|
||||
SOURCES/cmocka.keyring
|
||||
/cmocka-1.1.5.tar.xz
|
||||
/cmocka.keyring
|
||||
|
@ -1,6 +1,6 @@
|
||||
Name: cmocka
|
||||
Version: 1.1.5
|
||||
Release: 1%{?dist}
|
||||
Release: 11%{?dist}
|
||||
|
||||
License: ASL 2.0
|
||||
Summary: An elegant unit testing framework for C with support for mock objects
|
||||
@ -80,36 +80,39 @@ Conflicts: cmockery2-devel
|
||||
%description -n libcmocka-devel
|
||||
Development headers for the cmocka unit testing library.
|
||||
|
||||
%package -n cmocka-doc
|
||||
Summary: API documentation for the cmocka unit testing framework
|
||||
BuildArch: noarch
|
||||
|
||||
%description -n cmocka-doc
|
||||
This package provides the API documentation for the cmocka unit testing
|
||||
framework.
|
||||
|
||||
%prep
|
||||
%autosetup -p1
|
||||
|
||||
%build
|
||||
if test ! -e "obj"; then
|
||||
mkdir obj
|
||||
fi
|
||||
pushd obj
|
||||
# This package uses -Wl,-wrap to wrap calls at link time. This is incompatible
|
||||
# with LTO.
|
||||
# Disable LTO
|
||||
%define _lto_cflags %{nil}
|
||||
|
||||
%cmake \
|
||||
-DWITH_STATIC_LIB=ON \
|
||||
-DWITH_CMOCKERY_SUPPORT=ON \
|
||||
-DUNIT_TESTING=ON \
|
||||
%{_builddir}/%{name}-%{version}
|
||||
-DUNIT_TESTING=ON
|
||||
|
||||
make %{?_smp_mflags} VERBOSE=1
|
||||
make docs
|
||||
popd
|
||||
%cmake_build
|
||||
%__cmake --build %{__cmake_builddir} --target docs
|
||||
|
||||
%install
|
||||
pushd obj
|
||||
make DESTDIR=%{buildroot} install
|
||||
popd
|
||||
%cmake_install
|
||||
ln -s libcmocka.so %{buildroot}%{_libdir}/libcmockery.so
|
||||
|
||||
%ldconfig_scriptlets -n libcmocka
|
||||
|
||||
%check
|
||||
pushd obj
|
||||
ctest --output-on-failure
|
||||
popd
|
||||
%ctest
|
||||
|
||||
%files -n libcmocka
|
||||
%doc AUTHORS README.md ChangeLog
|
||||
@ -120,7 +123,6 @@ popd
|
||||
%{_libdir}/libcmocka-static.a
|
||||
|
||||
%files -n libcmocka-devel
|
||||
%doc obj/doc/html
|
||||
%{_includedir}/cmocka.h
|
||||
%{_includedir}/cmocka_pbc.h
|
||||
%{_includedir}/cmockery/cmockery.h
|
||||
@ -131,7 +133,42 @@ popd
|
||||
%{_libdir}/cmake/cmocka/cmocka-config-version.cmake
|
||||
%{_libdir}/cmake/cmocka/cmocka-config.cmake
|
||||
|
||||
%files -n cmocka-doc
|
||||
%doc %{__cmake_builddir}/doc/html
|
||||
|
||||
%changelog
|
||||
* Mon Aug 09 2021 Mohan Boddu <mboddu@redhat.com> - 1.1.5-11
|
||||
- Rebuilt for IMA sigs, glibc 2.34, aarch64 flags
|
||||
Related: rhbz#1991688
|
||||
|
||||
* Thu Jun 24 2021 Andreas Schneider <asn@redhat.com> - 1.1.5-10
|
||||
- resolves: rhbz#1915369 - Split out a cmocka-doc package
|
||||
|
||||
* Thu Apr 15 2021 Mohan Boddu <mboddu@redhat.com> - 1.1.5-9
|
||||
- Rebuilt for RHEL 9 BETA on Apr 15th 2021. Related: rhbz#1947937
|
||||
|
||||
* Tue Jan 26 2021 Fedora Release Engineering <releng@fedoraproject.org> - 1.1.5-8
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_34_Mass_Rebuild
|
||||
|
||||
* Wed Aug 05 2020 Andreas Schneider <asn@redhat.com> - 1.1.5-7
|
||||
- Correctly build with new cmake macros
|
||||
|
||||
* Sat Aug 01 2020 Fedora Release Engineering <releng@fedoraproject.org> - 1.1.5-6
|
||||
- Second attempt - Rebuilt for
|
||||
https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild
|
||||
|
||||
* Mon Jul 27 2020 Fedora Release Engineering <releng@fedoraproject.org> - 1.1.5-5
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild
|
||||
|
||||
* Wed Jul 1 2020 Jeff Law <law@redhat.com> - 1.1.5-4
|
||||
- Disable LTO
|
||||
|
||||
* Tue Jan 28 2020 Fedora Release Engineering <releng@fedoraproject.org> - 1.1.5-3
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_32_Mass_Rebuild
|
||||
|
||||
* Wed Jul 24 2019 Fedora Release Engineering <releng@fedoraproject.org> - 1.1.5-2
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_31_Mass_Rebuild
|
||||
|
||||
* Thu Mar 28 2019 Andreas Schneider <asn@redhat.com> - 1.1.5-1
|
||||
- Update to version 1.1.5
|
||||
|
@ -1,6 +0,0 @@
|
||||
--- !Policy
|
||||
product_versions:
|
||||
- rhel-8
|
||||
decision_context: osci_compose_gate
|
||||
rules:
|
||||
- !PassingTestCaseRule {test_case_name: baseos-ci.brew-build.tier1.functional}
|
2
sources
2
sources
@ -1,2 +0,0 @@
|
||||
SHA512 (cmocka-1.1.5.tar.xz) = cad7f04757183d004f6eaad39036fc0e24c5e0e987f80e85bc43bc66dba22389cb02b08e25531cc28a541d0a24a86b29be134a2d6fc339128e87d66952f502bd
|
||||
SHA512 (cmocka.keyring) = 94e0b3873184c3c5bfed321a8cd70696c0d6a0f357ba3dd7ba0e68e3f2ee270c62fa3138b3dc5a869c15e9f6e0e4e14e9d4a060863b1c846a49082c05b68fc71
|
Loading…
Reference in New Issue
Block a user