Compare commits

...

No commits in common. "c8s" and "c10s" have entirely different histories.
c8s ... c10s

6 changed files with 112 additions and 52 deletions

20
.gitignore vendored
View File

@ -1,4 +1,18 @@
SOURCES/cmocka-1.1.5.tar.xz
SOURCES/cmocka.keyring
/cmocka-0.2.0.tar.gz
/cmocka-0.3.0.tar.gz
/cmocka-0.3.1.tar.gz
/cmocka-0.3.2.tar.xz
/cmocka-0.4.0.tar.xz
/cmocka-0.4.1.tar.xz
/cmocka-1.0.0.tar.xz
/cmocka-1.0.1.tar.xz
/cmocka-1.1.0.tar.xz
/cmocka-1.1.1.tar.xz
/cmocka-1.1.2.tar.xz
/cmocka-1.1.2.tar.xz.asc
/cmocka-1.1.3.tar.xz
/cmocka-1.1.3.tar.xz.asc
/cmocka-1.1.5.tar.xz
/cmocka.keyring
/cmocka-1.1.5.tar.xz.asc
/cmocka-1.1.7.tar.xz
/cmocka-1.1.7.tar.xz.asc

View File

@ -1,16 +0,0 @@
-----BEGIN PGP SIGNATURE-----
iQIzBAABCAAdFiEEjf9T4Y8qvI2PPJIjfuD8TcwBTj0FAlycwqUACgkQfuD8TcwB
Tj3XJA/+PO2eS4q2+HzjspRipT6V+CWx6SzRV+sy7NTysbvSqQqjY1kG3aYmmbXG
YqxaAoinyRwAhc8DhZkiz3huTjeg203ab6rr9sjKvMXKVbgb9U1Fepx17GWMLIuw
fgMDlAmyLxyS/pYCqVLG0DYXewZIY9FGWCL9l8jMx0IHdhvIFOTSn9IO5M/+nVwl
LLiIWBYgHX5SpW47a2HtFmuwDq/O4DFcN4eKQwxmBTrQrcEVmZOY8XBqj+3PqtdN
TOZbs2jUrNeTv+JC/EMaTDCG1PctH/QHqEsVQKZmoGfNiYHKIu7kYdVODu1O9PRl
vXc8Zk2DyHwMltaEQgo/foRz/swqQ9Tx18MsVyDEUJqEGN1GNMx+H1fYtaV/drYy
8DMAUkvYkejr3aHNA7rHwvEuPOo8MdHHpTgFLtD5Ei4rRudAGCHJ9zkxoVyoB46j
6bOeUyqEfIUa6Dko5Mv4s4C0K9msUL6hjZdrLHI+m8HCLPaSElXcYWrE877zpdIz
wKjyBFWPr1UzsE5FgJ9JF92Clsk9ap3iX8CP6ye3ZSYWpFwwbWosMx0C3cYVtElt
gVmfhRnp2Yst2BRc7wTmxdxTgsfS2FM+5+rCt4uLU74UFADgMf+afXcyCp9/vxL2
M2pGgWRHcmCHiKXpTft7crA80DWiYuauxjyRc9lc+gKelbqBaXc=
=C+Zt
-----END PGP SIGNATURE-----

BIN
cmocka.keyring Normal file

Binary file not shown.

View File

@ -1,8 +1,8 @@
Name: cmocka
Version: 1.1.5
Release: 1%{?dist}
Version: 1.1.7
Release: 6%{?dist}
License: ASL 2.0
License: Apache-2.0
Summary: An elegant unit testing framework for C with support for mock objects
URL: https://cmocka.org
@ -16,6 +16,8 @@ BuildRequires: doxygen
BuildRequires: glibc-devel
BuildRequires: gnupg2
Obsoletes: libcmocka-static < %{version}
%description
There are a variety of C unit testing frameworks available however many of them
are fairly complex and require the latest compiler technology. Some development
@ -65,12 +67,6 @@ preferable.
This is the successor of Google's Cmockery.
%package -n libcmocka-static
Summary: Lightweight library to simplify and generalize unit tests for C
%description -n libcmocka-static
Static version of the cmocka library.
%package -n libcmocka-devel
Summary: Development headers for the cmocka library
Requires: libcmocka = %{version}-%{release}
@ -80,47 +76,46 @@ 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
%license COPYING
%{_libdir}/libcmocka.so.*
%files -n libcmocka-static
%{_libdir}/libcmocka-static.a
%files -n libcmocka-devel
%doc obj/doc/html
%{_includedir}/cmocka.h
%{_includedir}/cmocka_pbc.h
%{_includedir}/cmockery/cmockery.h
@ -128,10 +123,77 @@ popd
%{_libdir}/libcmocka.so
%{_libdir}/libcmockery.so
%{_libdir}/pkgconfig/cmocka.pc
%{_libdir}/cmake/cmocka/cmocka-config-version.cmake
%{_libdir}/cmake/cmocka/cmocka-config.cmake
%{_libdir}/cmake/cmocka/cmocka-config*.cmake
%files -n cmocka-doc
%doc %{__cmake_builddir}/doc/html
%changelog
* Tue Oct 29 2024 Troy Dawson <tdawson@redhat.com> - 1.1.7-6
- Bump release for October 2024 mass rebuild:
Resolves: RHEL-64018
* Mon Jun 24 2024 Troy Dawson <tdawson@redhat.com> - 1.1.7-5
- Bump release for June 2024 mass rebuild
* Wed Jan 24 2024 Fedora Release Engineering <releng@fedoraproject.org> - 1.1.7-4
- Rebuilt for https://fedoraproject.org/wiki/Fedora_40_Mass_Rebuild
* Fri Jan 19 2024 Fedora Release Engineering <releng@fedoraproject.org> - 1.1.7-3
- Rebuilt for https://fedoraproject.org/wiki/Fedora_40_Mass_Rebuild
* Wed Jul 19 2023 Fedora Release Engineering <releng@fedoraproject.org> - 1.1.7-2
- Rebuilt for https://fedoraproject.org/wiki/Fedora_39_Mass_Rebuild
* Tue Feb 28 2023 Andreas Schneider <asn@redhat.com> - 1.1.7-1
- Update to version 1.1.7
* Update ignore list for source tarball generation
* Added new assert macros to compare 2 double given an epsilon
* Added meson build system
* Added header with version to TAP13 output
* Fixed issues with MSVC
* Fixed TAP output for skipped tests
* Fixed issue with fail_msg
* CMake generated configs for find_package(cmocka)
* Documentation improvements
* Thu Jan 19 2023 Fedora Release Engineering <releng@fedoraproject.org> - 1.1.5-13
- Rebuilt for https://fedoraproject.org/wiki/Fedora_38_Mass_Rebuild
* Wed Jul 20 2022 Fedora Release Engineering <releng@fedoraproject.org> - 1.1.5-12
- Rebuilt for https://fedoraproject.org/wiki/Fedora_37_Mass_Rebuild
* Wed Jan 19 2022 Fedora Release Engineering <releng@fedoraproject.org> - 1.1.5-11
- Rebuilt for https://fedoraproject.org/wiki/Fedora_36_Mass_Rebuild
* Wed Jul 21 2021 Fedora Release Engineering <releng@fedoraproject.org> - 1.1.5-10
- Rebuilt for https://fedoraproject.org/wiki/Fedora_35_Mass_Rebuild
* Mon Apr 19 2021 Andreas Schneider <asn@redhat.com> - 1.1.5-9
- Split out a cmocka-doc package
* 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

View File

@ -1,6 +1,6 @@
--- !Policy
product_versions:
- rhel-8
- rhel-10
decision_context: osci_compose_gate
rules:
- !PassingTestCaseRule {test_case_name: baseos-ci.brew-build.tier1.functional}

View File

@ -1,2 +1,2 @@
SHA512 (cmocka-1.1.5.tar.xz) = cad7f04757183d004f6eaad39036fc0e24c5e0e987f80e85bc43bc66dba22389cb02b08e25531cc28a541d0a24a86b29be134a2d6fc339128e87d66952f502bd
SHA512 (cmocka.keyring) = 94e0b3873184c3c5bfed321a8cd70696c0d6a0f357ba3dd7ba0e68e3f2ee270c62fa3138b3dc5a869c15e9f6e0e4e14e9d4a060863b1c846a49082c05b68fc71
SHA512 (cmocka-1.1.7.tar.xz) = fe451893474dce1270e12af707a9a8fe1f0217e1782b4e1a67d25dadf56ff4a5e7dbc9ba4431f774aedffa46a40a28a6a0488df24feefb2f93e90fd2369c2c88
SHA512 (cmocka-1.1.7.tar.xz.asc) = 4912bead4853f4b3f4a868c724ba7b6e0299d8173b66b8f047546cd564a8fe919e8f749ac330148d443fc465e32a27dbb765db432e023b743a458e13c2dbf133