feed through sanitizers
OBS-URL: https://build.opensuse.org/package/show/devel:libraries:c_c++/jemalloc?expand=0&rev=36
This commit is contained in:
parent
967975affd
commit
eb4b9666c4
@ -26,15 +26,15 @@ Group: Development/Libraries/C and C++
|
|||||||
Url: http://canonware.com/jemalloc/
|
Url: http://canonware.com/jemalloc/
|
||||||
|
|
||||||
#Git-Clone: git://canonware.com/jemalloc
|
#Git-Clone: git://canonware.com/jemalloc
|
||||||
Source: http://www.canonware.com/download/jemalloc/jemalloc-%{version}.tar.bz2
|
Source: http://www.canonware.com/download/jemalloc/jemalloc-%version.tar.bz2
|
||||||
Patch0: disable_oom_test.patch
|
Patch1: disable_oom_test.patch
|
||||||
BuildRequires: docbook-xsl-stylesheets
|
BuildRequires: docbook-xsl-stylesheets
|
||||||
BuildRequires: libxslt
|
BuildRequires: libxslt
|
||||||
|
BuildRequires: pkg-config
|
||||||
%if 0%{?suse_version} == 1110
|
%if 0%{?suse_version} == 1110
|
||||||
BuildRequires: gcc48
|
BuildRequires: gcc48
|
||||||
%endif
|
%endif
|
||||||
BuildRequires: pkgconfig
|
Requires: %lname = %version
|
||||||
Requires: %lname = %{version}
|
|
||||||
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
||||||
|
|
||||||
%description
|
%description
|
||||||
@ -52,7 +52,7 @@ This distribution is the stand-alone "portable" version of jemalloc.
|
|||||||
%package devel
|
%package devel
|
||||||
Summary: Development files for jemalloc
|
Summary: Development files for jemalloc
|
||||||
Group: Development/Libraries/C and C++
|
Group: Development/Libraries/C and C++
|
||||||
Requires: %lname = %{version}
|
Requires: %lname = %version
|
||||||
|
|
||||||
%description devel
|
%description devel
|
||||||
Headers for jemalloc, general-purpose scalable concurrent malloc(3)
|
Headers for jemalloc, general-purpose scalable concurrent malloc(3)
|
||||||
@ -61,7 +61,7 @@ implementation.
|
|||||||
%package devel-static
|
%package devel-static
|
||||||
Summary: Static libraries for jemalloc
|
Summary: Static libraries for jemalloc
|
||||||
Group: Development/Libraries/C and C++
|
Group: Development/Libraries/C and C++
|
||||||
Requires: %{name}-devel = %{version}
|
Requires: %name-devel = %version
|
||||||
|
|
||||||
%description devel-static
|
%description devel-static
|
||||||
Static libraries of jemalloc, general-purpose scalable concurrent
|
Static libraries of jemalloc, general-purpose scalable concurrent
|
||||||
@ -69,18 +69,18 @@ malloc(3) implementation.
|
|||||||
|
|
||||||
%prep
|
%prep
|
||||||
%setup -q
|
%setup -q
|
||||||
%patch0 -p1
|
%patch -P 1 -p1
|
||||||
|
|
||||||
%build
|
%build
|
||||||
export EXTRA_CFLAGS="%{optflags} -std=gnu99"
|
export EXTRA_CFLAGS="%optflags -std=gnu99"
|
||||||
%if 0%{?suse_version} == 1110
|
%if 0%{?suse_version} == 1110
|
||||||
if [ -f /usr/bin/gcc-4.6 ]; then
|
if [ -f "%_bindir/gcc-4.6" ]; then
|
||||||
export CC=gcc-4.6
|
export CC=gcc-4.6
|
||||||
fi
|
fi
|
||||||
if [ -f /usr/bin/gcc-4.7 ]; then
|
if [ -f "%_bindir/gcc-4.7" ]; then
|
||||||
export CC=gcc-4.7
|
export CC=gcc-4.7
|
||||||
fi
|
fi
|
||||||
if [ -f /usr/bin/gcc-4.8 ]; then
|
if [ -f "%_bindir/gcc-4.8" ]; then
|
||||||
export CC=gcc-4.8
|
export CC=gcc-4.8
|
||||||
fi
|
fi
|
||||||
%endif
|
%endif
|
||||||
@ -89,46 +89,43 @@ fi
|
|||||||
make %{?_smp_mflags}
|
make %{?_smp_mflags}
|
||||||
|
|
||||||
%install
|
%install
|
||||||
b=%{buildroot};
|
b="%buildroot"
|
||||||
make install DESTDIR="$b"
|
make install DESTDIR="$b"
|
||||||
|
chmod -x "%buildroot/%_libdir"/*.a
|
||||||
chmod -x "%{buildroot}/%{_libdir}"/*.a
|
if [ "%_docdir" != "%_datadir/doc" ]; then
|
||||||
|
|
||||||
if [ "%_docdir" != "%{_datadir}/doc" ]; then
|
|
||||||
# stupid Makefile does not allow to set it
|
# stupid Makefile does not allow to set it
|
||||||
mkdir -p "$b/%_docdir";
|
mkdir -p "$b/%_docdir"
|
||||||
mv "$b/%{_datadir}/doc/jemalloc" "$b/%_docdir/%{name}";
|
mv "$b/%_datadir/doc/jemalloc" "$b/%_docdir/%name"
|
||||||
fi;
|
fi
|
||||||
|
|
||||||
%check
|
%check
|
||||||
export LD_LIBRARY_PATH=$PWD/lib:$LD_LIBRARY_PATH
|
export LD_LIBRARY_PATH="$PWD/lib:$LD_LIBRARY_PATH"
|
||||||
make check
|
make check
|
||||||
|
|
||||||
|
%post -n %lname -p /sbin/ldconfig
|
||||||
|
%postun -n %lname -p /sbin/ldconfig
|
||||||
|
|
||||||
%files
|
%files
|
||||||
%defattr(-,root,root)
|
%defattr(-,root,root)
|
||||||
%{_bindir}/jemalloc.sh
|
%_bindir/jemalloc.sh
|
||||||
%{_bindir}/jemalloc-config
|
%_bindir/jemalloc-config
|
||||||
%{_bindir}/jeprof
|
%_bindir/jeprof
|
||||||
%{_mandir}/man*/*
|
%_mandir/man*/*
|
||||||
%_docdir/%{name}
|
%_docdir/%name
|
||||||
|
|
||||||
%files -n %{lname}
|
%files -n %lname
|
||||||
%defattr(-,root,root)
|
%defattr(-,root,root)
|
||||||
%doc ChangeLog COPYING README
|
%doc ChangeLog COPYING README
|
||||||
%{_libdir}/libjemalloc.so.2*
|
%_libdir/libjemalloc.so.2*
|
||||||
|
|
||||||
%files devel
|
%files devel
|
||||||
%defattr(-,root,root,-)
|
%defattr(-,root,root,-)
|
||||||
%{_includedir}/jemalloc
|
%_includedir/jemalloc
|
||||||
%{_libdir}/libjemalloc.so
|
%_libdir/libjemalloc.so
|
||||||
%{_libdir}/pkgconfig/jemalloc.pc
|
%_libdir/pkgconfig/jemalloc.pc
|
||||||
|
|
||||||
%files devel-static
|
%files devel-static
|
||||||
%defattr(-,root,root,-)
|
%defattr(-,root,root,-)
|
||||||
%{_libdir}/libjemalloc*.a
|
%_libdir/libjemalloc*.a
|
||||||
|
|
||||||
%post -n %lname -p /sbin/ldconfig
|
|
||||||
|
|
||||||
%postun -n %lname -p /sbin/ldconfig
|
|
||||||
|
|
||||||
%changelog
|
%changelog
|
||||||
|
Loading…
Reference in New Issue
Block a user