|
@@ -0,0 +1,257 @@
|
|
|
+Name: jemalloc
|
|
|
+Version: 4.1.1
|
|
|
+
|
|
|
+Release: 1%{?_dist_release}
|
|
|
+Summary: General-purpose scalable concurrent malloc implementation
|
|
|
+Summary(ja): 汎用・スケーラブル・並行 malloc 実装
|
|
|
+
|
|
|
+Group: System Environment/Libraries
|
|
|
+License: BSD
|
|
|
+URL: http://www.canonware.com/jemalloc/
|
|
|
+Source0: https://github.com/jemalloc/%{name}/releases/download/%{version}/%{name}-%{version}.tar.bz2
|
|
|
+BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
|
|
|
+
|
|
|
+# ARMv5tel has no atomic operations
|
|
|
+Patch2: jemalloc-armv5-force-atomic.patch
|
|
|
+# RHEL5/POWER has no atomic operations
|
|
|
+Patch3: jemalloc-3.0.0.atomic_h_ppc_32bit_operations.patch
|
|
|
+Patch4: jemalloc-3.6.0.no_explicit_altivec.patch
|
|
|
+
|
|
|
+BuildRequires: /usr/bin/xsltproc
|
|
|
+%ifnarch s390
|
|
|
+BuildRequires: valgrind-devel
|
|
|
+%endif
|
|
|
+
|
|
|
+%description
|
|
|
+General-purpose scalable concurrent malloc(3) implementation.
|
|
|
+This distribution is the stand-alone "portable" implementation of %{name}.
|
|
|
+
|
|
|
+%package devel
|
|
|
+Summary: Development files for %{name}
|
|
|
+Requires: %{name} = %{version}-%{release}
|
|
|
+Group: Development/Libraries
|
|
|
+
|
|
|
+%description devel
|
|
|
+The %{name}-devel package contains libraries and header files for
|
|
|
+developing applications that use %{name}.
|
|
|
+
|
|
|
+%prep
|
|
|
+%setup -q
|
|
|
+
|
|
|
+#% patch2 -p1 -b .armv5tel
|
|
|
+%ifarch ppc ppc64
|
|
|
+%if 0%{?rhel} == 5
|
|
|
+%patch3 -b .ppc
|
|
|
+%patch4 -b .ppc
|
|
|
+%endif
|
|
|
+%endif
|
|
|
+
|
|
|
+%build
|
|
|
+%ifarch i686
|
|
|
+%if 0%{?fedora} >= 21
|
|
|
+CFLAGS="%{optflags} -msse2"
|
|
|
+%endif
|
|
|
+%endif
|
|
|
+
|
|
|
+%if 0%{?rhel} && 0%{?rhel} < 7
|
|
|
+export LDFLAGS="%{?__global_ldflags} -lrt"
|
|
|
+%endif
|
|
|
+
|
|
|
+%configure
|
|
|
+make %{?_smp_mflags}
|
|
|
+%check
|
|
|
+make check
|
|
|
+
|
|
|
+
|
|
|
+%install
|
|
|
+rm -rf %{buildroot}
|
|
|
+make install DESTDIR=%{buildroot}
|
|
|
+# Install this with doc macro instead
|
|
|
+rm %{buildroot}%{_datadir}/doc/%{name}/jemalloc.html
|
|
|
+
|
|
|
+# None of these in fedora
|
|
|
+find %{buildroot}%{_libdir}/ -name '*.a' -exec rm -vf {} ';'
|
|
|
+
|
|
|
+
|
|
|
+%clean
|
|
|
+rm -rf %{buildroot}
|
|
|
+
|
|
|
+
|
|
|
+%files
|
|
|
+%defattr(-,root,root,-)
|
|
|
+%{_libdir}/libjemalloc.so.*
|
|
|
+%{_bindir}/jemalloc.sh
|
|
|
+%{_bindir}/jemalloc-config
|
|
|
+%{_bindir}/jeprof
|
|
|
+%{_libdir}/pkgconfig/jemalloc.pc
|
|
|
+%doc COPYING README VERSION
|
|
|
+%doc doc/jemalloc.html
|
|
|
+%ifarch ppc ppc64
|
|
|
+%if 0%{?rhel} == 5
|
|
|
+%doc COPYING.epel5-ppc
|
|
|
+%endif
|
|
|
+%endif
|
|
|
+
|
|
|
+%files devel
|
|
|
+%defattr(-,root,root,-)
|
|
|
+%{_includedir}/jemalloc
|
|
|
+%{_libdir}/libjemalloc.so
|
|
|
+%{_mandir}/man3/jemalloc.3*
|
|
|
+
|
|
|
+%post -p /sbin/ldconfig
|
|
|
+
|
|
|
+%postun -p /sbin/ldconfig
|
|
|
+
|
|
|
+%changelog
|
|
|
+* Wed May 11 2016 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> - 4.1.1-1
|
|
|
+- new upstream release.
|
|
|
+
|
|
|
+* Fri Oct 30 2015 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> - 4.0.4-2
|
|
|
+- initial build for Vine Linux.
|
|
|
+
|
|
|
+* Sat Oct 24 2015 Ingvar Hagelund <ingvar@redpill-linpro.com> - 4.0.4-1
|
|
|
+- New upstream release
|
|
|
+
|
|
|
+* Fri Sep 25 2015 Ingvar Hagelund <ingvar@redpill-linpro.com> - 4.0.3-1
|
|
|
+- New upstream release
|
|
|
+- Removed oom test patch, it has been fixed upstream
|
|
|
+
|
|
|
+* Thu Sep 24 2015 Ingvar Hagelund <ingvar@redpill-linpro.com> - 4.0.2-2
|
|
|
+- oom test also fails on 32bit ppc, so patch it out there as well
|
|
|
+
|
|
|
+* Tue Sep 22 2015 Ingvar Hagelund <ingvar@redpill-linpro.com> - 4.0.2-1
|
|
|
+- New upstream release
|
|
|
+- Added a patch removing a non-critical test that fails on i386
|
|
|
+- Removed now included negative bitshift patch.
|
|
|
+
|
|
|
+* Wed Aug 19 2015 Ingvar Hagelund <ingvar@redpill-linpro.com> - 4.0.0-1
|
|
|
+- New upstream release
|
|
|
+- Removed the no-pprof patch, as jemalloc now comes with its own prof variant
|
|
|
+- Removed atomic.h patch for armv5tel. jemalloc now provides a specific
|
|
|
+ variant for armv5tel
|
|
|
+- Added a patch from upstream for errnous bitshift by negative amounts on pagesize >8KiB
|
|
|
+- Added -lrt to LDFLAGS for rhel<7
|
|
|
+
|
|
|
+* Wed Jun 17 2015 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 3.6.0-9
|
|
|
+- Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild
|
|
|
+
|
|
|
+* Mon Aug 18 2014 Ingvar Hagelund <ingvar@redpill-linpro.com> - 3.6.0-8
|
|
|
+- valgrind-devel is not available on s390, closes #1131014
|
|
|
+
|
|
|
+* Sat Aug 16 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 3.6.0-7
|
|
|
+- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_22_Mass_Rebuild
|
|
|
+
|
|
|
+* Fri Aug 15 2014 Ingvar Hagelund <ingvar@redpill-linpro.com> - 3.6.0-6
|
|
|
+- bz #1106933 fix only for fedora 21 and above
|
|
|
+
|
|
|
+* Fri Aug 15 2014 Ingvar Hagelund <ingvar@redpill-linpro.com> - 3.6.0-5
|
|
|
+- Added valgrind-devel to BuildRequires, fixing bz #974270
|
|
|
+
|
|
|
+* Fri Aug 15 2014 Ingvar Hagelund <ingvar@redpill-linpro.com> - 3.6.0-4
|
|
|
+- Added an i686 build fixing bz #1106933
|
|
|
+
|
|
|
+* Sun Jun 08 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 3.6.0-3
|
|
|
+- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild
|
|
|
+
|
|
|
+* Tue Apr 01 2014 Ingvar Hagelund <ingvar@redpill-linpro.com> - 3.6.0-2
|
|
|
+- Patch that removes explicit altivec on el5/ppc
|
|
|
+
|
|
|
+* Mon Mar 31 2014 Ingvar Hagelund <ingvar@redpill-linpro.com> - 3.6.0-1
|
|
|
+- New upstream release. This release fixes a critical regression
|
|
|
+
|
|
|
+* Fri Mar 28 2014 Ingvar Hagelund <ingvar@redpill-linpro.com> - 3.5.1-1
|
|
|
+- New upstream release
|
|
|
+- Updated nopprof patch to match new release
|
|
|
+- Fixed a few bogus changelog entries
|
|
|
+
|
|
|
+* Sat Aug 03 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 3.4.0-2
|
|
|
+- Rebuilt for https://fedoraproject.org/wiki/Fedora_20_Mass_Rebuild
|
|
|
+
|
|
|
+* Fri Jun 07 2013 Ingvar Hagelund <ingvar@redpill-linpro.com> - 3.4.0-1
|
|
|
+- New upstream release
|
|
|
+
|
|
|
+* Mon Mar 11 2013 Ingvar Hagelund <ingvar@redpill-linpro.com> - 3.3.1-1
|
|
|
+- New upstream release
|
|
|
+- Dropped s390 patch, it's in upstream now.
|
|
|
+
|
|
|
+* Fri Jan 25 2013 Ingvar Hagelund <ingvar@redpill-linpro.com> - 3.3.0-1
|
|
|
+- New upstream release
|
|
|
+
|
|
|
+* Mon Nov 19 2012 Ingvar Hagelund <ingvar@redpill-linpro.com> - 3.2.0-1
|
|
|
+- New upstream release
|
|
|
+
|
|
|
+* Tue Oct 23 2012 Ingvar Hagelund <ingvar@redpill-linpro.com> - 3.1.0-1
|
|
|
+- New upstream release
|
|
|
+- Removed ptmalloc_lock_all patch, it is merged upstream
|
|
|
+
|
|
|
+* Thu Jul 19 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 3.0.0-3
|
|
|
+- Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild
|
|
|
+
|
|
|
+* Thu May 24 2012 Ingvar Hagelund <ingvar@redpill-linpro.com> - 3.0.0-2
|
|
|
+- Added a patch from upstream, fixing a crash in ptmalloc_lock_all,
|
|
|
+ closing #824646
|
|
|
+
|
|
|
+* Mon May 14 2012 Ingvar Hagelund <ingvar@redpill-linpro.com> - 3.0.0-1
|
|
|
+- New upstream release
|
|
|
+- Updated no_pprof patch to match new release
|
|
|
+- Updated s390 patch to match new relase
|
|
|
+- Added make check
|
|
|
+- Added new script jemalloc.sh
|
|
|
+- Added a patch for atomic operations on epel5/ppc
|
|
|
+
|
|
|
+* Sat Apr 21 2012 Peter Robinson <pbrobinson@fedoraproject.org> - 2.2.5-5
|
|
|
+- Improve ARM patch
|
|
|
+
|
|
|
+* Fri Apr 20 2012 Dennis Gilmore <dennis@ausil.us> - 2.2.5-4
|
|
|
+- no attomics on armv5tel
|
|
|
+
|
|
|
+* Wed Feb 08 2012 Dan Horák <dan[at]danny.cz> - 2.2.5-3
|
|
|
+- substitute version information in the header (#788517)
|
|
|
+
|
|
|
+* Fri Jan 13 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.2.5-2
|
|
|
+- Rebuilt for https://fedoraproject.org/wiki/Fedora_17_Mass_Rebuild
|
|
|
+
|
|
|
+* Sun Nov 06 2011 Ingvar Hagelund <ingvar@redpill-linpro.com> - 2.2.5-1
|
|
|
+- New upstream release, closes #75618
|
|
|
+
|
|
|
+* Sun Nov 06 2011 Ingvar Hagelund <ingvar@redpill-linpro.com> - 2.2.4-1
|
|
|
+- New upstream release
|
|
|
+
|
|
|
+* Thu Oct 13 2011 Ingvar Hagelund <ingvar@redpill-linpro.com> - 2.2.3-1
|
|
|
+- New upstream release, closes #735057
|
|
|
+
|
|
|
+* Mon Aug 01 2011 Ingvar Hagelund <ingvar@redpill-linpro.com> - 2.2.2-1
|
|
|
+- New upstream release, closes #727103
|
|
|
+- Updated no_pprof patch for 2.2.2
|
|
|
+
|
|
|
+* Thu Mar 31 2011 Ingvar Hagelund <ingvar@redpill-linpro.com> - 2.2.1-1
|
|
|
+- New upstream release
|
|
|
+
|
|
|
+* Sun Mar 27 2011 Ingvar Hagelund <ingvar@redpill-linpro.com> - 2.2.0-1
|
|
|
+- New upstream release
|
|
|
+- Updated no_pprof patch for 2.2.0
|
|
|
+
|
|
|
+* Tue Mar 15 2011 Ingvar Hagelund <ingvar@redpill-linpro.com> - 2.1.3-2
|
|
|
+- New upstream release
|
|
|
+
|
|
|
+* Wed Feb 09 2011 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.1.1-2
|
|
|
+- Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild
|
|
|
+
|
|
|
+* Tue Feb 01 2011 Ingvar Hagelund <ingvar@redpill-linpro.com> - 2.1.1-1
|
|
|
+- New upstream release
|
|
|
+
|
|
|
+* Wed Jan 05 2011 Ingvar Hagelund <ingvar@redpill-linpro.com> - 2.1.0-1
|
|
|
+- New upstream release
|
|
|
+- Updated patch to remove pprof
|
|
|
+- Added html doc and xsltproc as a requirement to build it
|
|
|
+
|
|
|
+* Sat Dec 11 2010 Dan Horák <dan[at]danny.cz> - 2.0.1-3
|
|
|
+- fix build on s390
|
|
|
+
|
|
|
+* Thu Nov 18 2010 Ingvar Hagelund <ingvar@redpill-linpro.com> - 2.0.1-2
|
|
|
+- Added a patch that removes pprof, as it already exists in the
|
|
|
+ google-perftools package
|
|
|
+- Cosmetic fixes as requested in the package review (rhbz#653682)
|
|
|
+
|
|
|
+* Mon Nov 15 2010 Ingvar Hagelund <ingvar@redpill-linpro.com> - 2.0.1-1
|
|
|
+- First cut of an rpm distribution of jemalloc
|