jemalloc/jemalloc.spec
Ismail Dönmez 62642784c1 - Update to version 3.4.1
* Fix a race in the "arenas.extend" mallctl that could cause memory
    corruption of internal data structures and subsequent crashes.
  * Fix Valgrind integration flaws that caused Valgrind warnings about
    reads of uninitialized memory in:
    + arena chunk headers
    + internal zero-initialized data structures
  * Preserve errno during the first allocation.  A readlink(2) call
    during initialization fails unless /etc/malloc.conf exists,
    so errno was typically set during the first allocation prior to this fix.
  * Fix compilation warnings reported by gcc 4.8.1
- Rename pprof to pprof-jemalloc to prevent conflict with gperftools

OBS-URL: https://build.opensuse.org/package/show/devel:libraries:c_c++/jemalloc?expand=0&rev=15
2013-10-22 09:31:54 +00:00

114 lines
3.1 KiB
RPMSpec

#
# spec file for package jemalloc
#
# Copyright (c) 2013 SUSE LINUX Products GmbH, Nuernberg, Germany.
#
# All modifications and additions to the file contributed by third parties
# remain the property of their copyright owners, unless otherwise agreed
# upon. The license for this file, and modifications and additions to the
# file, is the same license as for the pristine package itself (unless the
# license for the pristine package is not an Open Source License, in which
# case the license is the MIT License). An "Open Source License" is a
# license that conforms to the Open Source Definition (Version 1.9)
# published by the Open Source Initiative.
# Please submit bugfixes or comments via http://bugs.opensuse.org/
#
Name: jemalloc
Version: 3.4.1
Release: 0
%define lname libjemalloc1
Summary: General-purpose scalable concurrent malloc implementation
License: BSD-2-Clause
Group: Development/Libraries/C and C++
Url: http://canonware.com/jemalloc/
#Git-Clone: git://canonware.com/jemalloc
Source: http://www.canonware.com/download/jemalloc/jemalloc-%{version}.tar.bz2
BuildRequires: docbook-xsl-stylesheets
BuildRequires: libxslt
Requires: %lname = %{version}
BuildRoot: %{_tmppath}/%{name}-%{version}-build
%description
jemalloc is a general-purpose scalable concurrent malloc(3) implementation.
This package provides a shell wrapper script to run programs using jemalloc.
%package -n %lname
Summary: General-purpose scalable concurrent malloc implementation
Group: System/Libraries
%description -n %lname
General-purpose scalable concurrent malloc(3) implementation.
This distribution is the stand-alone "portable" version of jemalloc.
%package devel
Summary: Development files for jemalloc
Group: Development/Libraries/C and C++
Requires: %lname = %{version}
%description devel
Headers for jemalloc, general-purpose scalable concurrent malloc(3)
implementation.
%package devel-static
Summary: Static libraries for jemalloc
Group: Development/Libraries/C and C++
Requires: %{name}-devel = %{version}
%description devel-static
Static libraries of jemalloc, general-purpose scalable concurrent
malloc(3) implementation.
%prep
%setup -q
%build
export CFLAGS="%{optflags} -g2";
%configure
make %{?_smp_mflags};
%install
b=%{buildroot};
make install DESTDIR="$b";
chmod -x "%{buildroot}/%{_libdir}"/*.a;
if [ "%_docdir" != "%{_datadir}/doc" ]; then
# stupid Makefile does not allow to set it
mkdir -p "$b/%_docdir";
mv "$b/%{_datadir}/doc/jemalloc" "$b/%_docdir/%{name}";
fi;
mv %{buildroot}/%{_bindir}/pprof %{buildroot}/%{_bindir}/pprof-jemalloc
%check
make check
%files
%defattr(-,root,root)
%{_bindir}/jemalloc.sh
%{_bindir}/pprof-jemalloc
%{_mandir}/man*/*
%_docdir/%{name}
%files -n %lname
%defattr(-,root,root)
%{_libdir}/libjemalloc.so.1*
%files devel
%defattr(-,root,root,-)
%{_includedir}/jemalloc
%{_libdir}/libjemalloc.so
%files devel-static
%defattr(-,root,root,-)
%{_libdir}/libjemalloc*.a
%post -n %lname -p /sbin/ldconfig
%postun -n %lname -p /sbin/ldconfig
%changelog