|
|
@ -1,94 +1,87 @@
|
|
|
|
Summary: Google C++ testing framework
|
|
|
|
Summary: Google C++ testing framework
|
|
|
|
Name: gtest
|
|
|
|
Name: gtest
|
|
|
|
Version: 1.4.0
|
|
|
|
Version: 1.5.0
|
|
|
|
Release: 2%{?dist}
|
|
|
|
Release: 1%{?dist}
|
|
|
|
License: BSD
|
|
|
|
License: BSD
|
|
|
|
Group: Development/Tools
|
|
|
|
Group: Development/Tools
|
|
|
|
URL: http://code.google.com/p/googletest/
|
|
|
|
URL: http://code.google.com/p/googletest/
|
|
|
|
Source0: http://googletest.googlecode.com/files/%{name}-%{version}.tar.bz2
|
|
|
|
Source0: http://googletest.googlecode.com/files/gtest-%{version}.tar.bz2
|
|
|
|
|
|
|
|
|
|
|
|
BuildRoot: %(mktemp -ud %{_tmppath}/%{name}-%{version}-%{release}-XXXXXX)
|
|
|
|
BuildRoot: %(mktemp -ud %{_tmppath}/%{name}-%{version}-%{release}-XXXXXX)
|
|
|
|
|
|
|
|
|
|
|
|
BuildRequires: chrpath
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
%description
|
|
|
|
%description
|
|
|
|
Google's framework for writing C++ tests on a variety of platforms (GNU/Linux,
|
|
|
|
Google's framework for writing C++ tests on a variety of platforms
|
|
|
|
Mac OS X, Windows, Windows CE, and Symbian). Based on the xUnit architecture.
|
|
|
|
(GNU/Linux, Mac OS X, Windows, Windows CE, and Symbian). Based on the
|
|
|
|
Supports automatic test discovery, a rich set of assertions, user-defined
|
|
|
|
xUnit architecture. Supports automatic test discovery, a rich set of
|
|
|
|
assertions, death tests, fatal and non-fatal failures, various options for
|
|
|
|
assertions, user-defined assertions, death tests, fatal and non-fatal
|
|
|
|
running the tests, and XML test report generation.
|
|
|
|
failures, various options for running the tests, and XML test report
|
|
|
|
|
|
|
|
generation.
|
|
|
|
%package devel
|
|
|
|
|
|
|
|
|
|
|
|
%package devel
|
|
|
|
Summary: Development files for %{name}
|
|
|
|
Summary: Development files for %{name}
|
|
|
|
Group: Development/Libraries
|
|
|
|
Group: Development/Libraries
|
|
|
|
|
|
|
|
|
|
|
|
Requires: automake
|
|
|
|
Requires: automake
|
|
|
|
Requires: %{name} = %{version}-%{release}
|
|
|
|
Requires: %{name} = %{version}-%{release}
|
|
|
|
|
|
|
|
|
|
|
|
%description devel
|
|
|
|
%description devel
|
|
|
|
This package contains development files for %{name}.
|
|
|
|
This package contains development files for %{name}.
|
|
|
|
|
|
|
|
|
|
|
|
%prep
|
|
|
|
%prep
|
|
|
|
%setup -q
|
|
|
|
%setup -q
|
|
|
|
|
|
|
|
|
|
|
|
# Keep a clean copy of samples.
|
|
|
|
# keep a clean copy of samples.
|
|
|
|
cp -pr ./samples ./samples.orig
|
|
|
|
cp -pr ./samples ./samples.orig
|
|
|
|
|
|
|
|
|
|
|
|
%build
|
|
|
|
%build
|
|
|
|
%configure --disable-static
|
|
|
|
%configure --disable-static
|
|
|
|
|
|
|
|
# omit unused direct shared library dependencies.
|
|
|
|
# Omit unused direct shared library dependencies.
|
|
|
|
sed -i -e's| -shared | -Wl,--as-needed\0|g' libtool
|
|
|
|
sed --in-place --expression 's! -shared ! -Wl,--as-needed\0!g' libtool
|
|
|
|
# remove rpath
|
|
|
|
|
|
|
|
sed -i -e 's|^hardcode_libdir_flag_spec=.*|hardcode_libdir_flag_spec=""|g' libtool
|
|
|
|
|
|
|
|
sed -i -e 's|^runpath_var=LD_RUN_PATH|runpath_var=DIE_RPATH_DIE|g' libtool
|
|
|
|
make %{?_smp_mflags}
|
|
|
|
make %{?_smp_mflags}
|
|
|
|
|
|
|
|
|
|
|
|
%check
|
|
|
|
%check
|
|
|
|
# Two tests fail here, unclear as to why.
|
|
|
|
# Two tests fail here, unclear as to why.
|
|
|
|
make check AM_LDFLAGS=-Wl,--add-needed
|
|
|
|
make check AM_LDFLAGS='-Wl,--add-needed' ||:
|
|
|
|
|
|
|
|
|
|
|
|
# Restore the clean copy of samples.
|
|
|
|
# Restore the clean copy of samples.
|
|
|
|
# To be later listed against %doc.
|
|
|
|
# To be later listed against doc.
|
|
|
|
rm -rf ./samples
|
|
|
|
rm -rf ./samples
|
|
|
|
mv ./samples.orig ./samples
|
|
|
|
mv ./samples.orig ./samples
|
|
|
|
|
|
|
|
|
|
|
|
%install
|
|
|
|
%install
|
|
|
|
rm -rf $RPM_BUILD_ROOT
|
|
|
|
rm -rf %{buildroot}
|
|
|
|
|
|
|
|
make install INSTALL="%{__install} -p" DESTDIR=%{buildroot}
|
|
|
|
make install INSTALL="%{__install} -p" DESTDIR=$RPM_BUILD_ROOT
|
|
|
|
find %{buildroot} -type f -name "*.la" -delete
|
|
|
|
find $RPM_BUILD_ROOT -type f -name "*.la" -delete
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
# Remove rpaths.
|
|
|
|
|
|
|
|
chrpath --delete $RPM_BUILD_ROOT%{_libdir}/libgtest_main.so.0.0.0
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
%clean
|
|
|
|
%clean
|
|
|
|
rm -rf $RPM_BUILD_ROOT
|
|
|
|
rm -rf %{buildroot}
|
|
|
|
|
|
|
|
|
|
|
|
%post -p /sbin/ldconfig
|
|
|
|
%post -p /sbin/ldconfig
|
|
|
|
|
|
|
|
|
|
|
|
%postun -p /sbin/ldconfig
|
|
|
|
%postun -p /sbin/ldconfig
|
|
|
|
|
|
|
|
|
|
|
|
%files
|
|
|
|
%files
|
|
|
|
%defattr(-,root,root,-)
|
|
|
|
%defattr(-, root, root, -)
|
|
|
|
%doc CHANGES
|
|
|
|
%doc CHANGES CONTRIBUTORS COPYING README
|
|
|
|
%doc CONTRIBUTORS
|
|
|
|
|
|
|
|
%doc COPYING
|
|
|
|
|
|
|
|
%doc README
|
|
|
|
|
|
|
|
%{_libdir}/libgtest.so.*
|
|
|
|
%{_libdir}/libgtest.so.*
|
|
|
|
%{_libdir}/libgtest_main.so.*
|
|
|
|
%{_libdir}/libgtest_main.so.*
|
|
|
|
|
|
|
|
|
|
|
|
%files devel
|
|
|
|
%files devel
|
|
|
|
%defattr(-,root,root,-)
|
|
|
|
%defattr(-, root, root, -)
|
|
|
|
%doc samples
|
|
|
|
%doc samples
|
|
|
|
%{_bindir}/%{name}-config
|
|
|
|
%{_bindir}/gtest-config
|
|
|
|
%{_datadir}/aclocal/%{name}.m4
|
|
|
|
%{_datadir}/aclocal/gtest.m4
|
|
|
|
%{_libdir}/libgtest.so
|
|
|
|
%{_libdir}/libgtest.so
|
|
|
|
%{_libdir}/libgtest_main.so
|
|
|
|
%{_libdir}/libgtest_main.so
|
|
|
|
|
|
|
|
%{_includedir}/gtest
|
|
|
|
%dir %{_includedir}/%{name}
|
|
|
|
|
|
|
|
%{_includedir}/%{name}/*.h
|
|
|
|
|
|
|
|
%{_includedir}/%{name}/internal
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
%changelog
|
|
|
|
%changelog
|
|
|
|
|
|
|
|
* Wed Jan 12 2011 Terje Rosten <terje.rosten@ntnu.no> - 1.5.0-1
|
|
|
|
|
|
|
|
- 1.5.0
|
|
|
|
|
|
|
|
- some cleanup
|
|
|
|
|
|
|
|
|
|
|
|
* Sat Aug 26 2010 Dan Horák <dan[at]danny.cz> - 1.4.0-2
|
|
|
|
* Sat Aug 26 2010 Dan Horák <dan[at]danny.cz> - 1.4.0-2
|
|
|
|
- added workaround for linking the tests on Fedora >= 13 (#564953, #599865)
|
|
|
|
- added workaround for linking the tests on Fedora >= 13 (#564953, #599865)
|
|
|
|
|
|
|
|
|
|
|
|