cmocka/cmocka.spec

166 lines
5.5 KiB
RPMSpec
Raw Normal View History

2013-01-22 14:35:09 +00:00
BuildRequires: cmake
BuildRequires: doxygen
BuildRequires: glibc-devel
Name: cmocka
2014-05-26 08:16:23 +00:00
Version: 0.4.1
Release: 2%{?dist}
2013-01-22 14:35:09 +00:00
License: ASL 2.0
Group: Development/Tools
Summary: Lightweight library to simplify and generalize unit tests for C
2013-11-06 07:17:51 +00:00
Url: http://cmocka.org
2013-01-22 14:35:09 +00:00
2013-11-06 07:17:51 +00:00
Source0: https://open.cryptomilk.org/attachments/download/32/%{name}-%{version}.tar.xz
2013-01-22 14:35:09 +00:00
BuildRoot: %(mktemp -ud %{_tmppath}/%{name}-%{version}-%{release}-XXXXXX)
%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
requires the use of old compilers which makes it difficult to use some unit
testing frameworks. In addition many unit testing frameworks assume the code
being tested is an application or module that is targeted to the same platform
that will ultimately execute the test. Because of this assumption many
frameworks require the inclusion of standard C library headers in the code
module being tested which may collide with the custom or incomplete
implementation of the C library utilized by the code under test.
Cmocka only requires a test application is linked with the standard C library
which minimizes conflicts with standard C library headers. Also, CMocka tries
to avoid the use of some of the newer features of C compilers.
This results in CMocka being a relatively small library that can be used to
test a variety of exotic code. If a developer wishes to simply test an
application with the latest compiler then other unit testing frameworks may be
preferable.
This is the successor of Google's Cmockery.
%package -n libcmocka
Group: Development/Libraries
Summary: Lightweight library to simplify and generalize unit tests for C
%description -n libcmocka
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
requires the use of old compilers which makes it difficult to use some unit
testing frameworks. In addition many unit testing frameworks assume the code
being tested is an application or module that is targeted to the same platform
that will ultimately execute the test. Because of this assumption many
frameworks require the inclusion of standard C library headers in the code
module being tested which may collide with the custom or incomplete
implementation of the C library utilized by the code under test.
CMocka only requires a test application is linked with the standard C library
which minimizes conflicts with standard C library headers. Also, CMocka tries
to avoid the use of some of the newer features of C compilers.
This results in CMocka being a relatively small library that can be used to
test a variety of exotic code. If a developer wishes to simply test an
application with the latest compiler then other unit testing frameworks may be
preferable.
This is the successor of Google's Cmockery.
%package -n libcmocka-static
Group: Development/Libraries
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
Group: Development/Libraries
Summary: Development headers for the cmocka library
Requires: libcmocka = %{version}-%{release}
%description -n libcmocka-devel
Development headers for the cmocka unit testing library.
%prep
%setup -q
%build
2013-11-06 07:17:51 +00:00
if test ! -e "obj"; then
mkdir obj
2013-01-22 14:35:09 +00:00
fi
2013-11-06 07:17:51 +00:00
pushd obj
2013-01-22 14:35:09 +00:00
%cmake \
-DWITH_STATIC_LIB=ON \
-DUNIT_TESTING=ON \
%{_builddir}/%{name}-%{version}
make %{?_smp_mflags} VERBOSE=1
2013-11-06 07:17:51 +00:00
make doc
popd
2013-01-22 14:35:09 +00:00
%install
2013-11-06 07:17:51 +00:00
pushd obj
2013-01-22 14:35:09 +00:00
make DESTDIR=%{buildroot} install
popd
%post -n libcmocka -p /sbin/ldconfig
%postun -n libcmocka -p /sbin/ldconfig
%clean
%{__rm} -rf %{buildroot}
%check
2013-11-06 07:17:51 +00:00
pushd obj
2013-01-22 14:35:09 +00:00
make test
popd
%files -n libcmocka
%doc AUTHORS README ChangeLog COPYING
%{_libdir}/libcmocka.so.*
%files -n libcmocka-static
%{_libdir}/libcmocka.a
%files -n libcmocka-devel
2013-11-06 07:17:51 +00:00
%doc obj/doc/html
2013-01-22 14:35:09 +00:00
%{_includedir}/cmocka.h
%{_libdir}/libcmocka.so
2013-06-05 06:35:09 +00:00
%{_libdir}/pkgconfig/cmocka.pc
2014-05-26 08:16:23 +00:00
%{_libdir}/cmake/cmocka/cmocka-config-version.cmake
%{_libdir}/cmake/cmocka/cmocka-config.cmake
2013-01-22 14:35:09 +00:00
%changelog
* Sat Jun 07 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.4.1-2
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild
2014-05-26 08:16:23 +00:00
* Mon May 26 2014 - Andreas Schneider <asn@redhat.com> - 0.4.1-1
- Update to version 0.4.1.
2014-04-11 14:20:47 +00:00
* Fri Apr 11 2014 - Andreas Schneider <asn@redhat.com> - 0.4.0-1
- Update to version 0.4.0.
2013-11-06 07:17:51 +00:00
* Wed Nov 06 2013 - Andreas Schneider <asn@redhat.com> - 0.3.2-1
- Update to version 0.3.2.
- Include API documentation.
* Sat Aug 03 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.3.1-2
- Rebuilt for https://fedoraproject.org/wiki/Fedora_20_Mass_Rebuild
* Wed Jul 10 2013 - Andreas Schneider <asn@redhat.com> - 0.3.0-2
- Update to version 0.3.1.
- Fixed cmocka issues on big endian.
- resolves: #975044
2013-06-05 06:35:09 +00:00
* Wed Jun 05 2013 - Andreas Schneider <asn@redhat.com> - 0.3.0-1
- Update to version 0.3.0.
* Wed Feb 13 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.2.0-4
- Rebuilt for https://fedoraproject.org/wiki/Fedora_19_Mass_Rebuild
2013-01-22 14:35:09 +00:00
* Fri Jan 18 2013 - Andreas Schneider <asn@redhat.com> - 0.2.0-3
- Fixed typo in Source URL.
* Thu Jan 17 2013 - Andreas Schneider <asn@redhat.com> - 0.2.0-2
- Fixed Source URL.
- Fixed package groups.
* Tue Jan 15 2013 - Andreas Schneider <asn@redhat.com> - 0.2.0-1
- Initial version 0.2.0