anarchy 14/03/10 14:39:41 Modified: ChangeLog Added: jemalloc-3.5.1.ebuild Log: refactoring and automated testing, includes heap profiling optimizations (Portage version: 2.2.8-r1/cvs/Linux x86_64, signed Manifest commit with key 0xB4D088B4)
Revision Changes Path 1.36 dev-libs/jemalloc/ChangeLog file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/jemalloc/ChangeLog?rev=1.36&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/jemalloc/ChangeLog?rev=1.36&content-type=text/plain diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/jemalloc/ChangeLog?r1=1.35&r2=1.36 Index: ChangeLog =================================================================== RCS file: /var/cvsroot/gentoo-x86/dev-libs/jemalloc/ChangeLog,v retrieving revision 1.35 retrieving revision 1.36 diff -u -r1.35 -r1.36 --- ChangeLog 24 Sep 2013 22:52:47 -0000 1.35 +++ ChangeLog 10 Mar 2014 14:39:41 -0000 1.36 @@ -1,6 +1,13 @@ # ChangeLog for dev-libs/jemalloc -# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-libs/jemalloc/ChangeLog,v 1.35 2013/09/24 22:52:47 anarchy Exp $ +# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/dev-libs/jemalloc/ChangeLog,v 1.36 2014/03/10 14:39:41 anarchy Exp $ + +*jemalloc-3.5.1 (10 Mar 2014) + + 10 Mar 2014; <[email protected]> +files/jemalloc-3.5.1-no-pprof.patch, + +files/jemalloc-3.5.1-strip-optimization.patch, + +files/jemalloc-3.5.1_fix_html_install.patch, +jemalloc-3.5.1.ebuild: + refactoring and automated testing, includes heap profiling optimizations 24 Sep 2013; Jory A. Pratt <[email protected]> +files/jemalloc-fix-ar-call.patch: 1.1 dev-libs/jemalloc/jemalloc-3.5.1.ebuild file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/jemalloc/jemalloc-3.5.1.ebuild?rev=1.1&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/jemalloc/jemalloc-3.5.1.ebuild?rev=1.1&content-type=text/plain Index: jemalloc-3.5.1.ebuild =================================================================== # Copyright 1999-2014 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Header: /var/cvsroot/gentoo-x86/dev-libs/jemalloc/jemalloc-3.5.1.ebuild,v 1.1 2014/03/10 14:39:41 anarchy Exp $ EAPI=4 inherit autotools eutils DESCRIPTION="Jemalloc is a general-purpose scalable concurrent allocator" HOMEPAGE="http://www.canonware.com/jemalloc/" SRC_URI="http://www.canonware.com/download/${PN}/${P}.tar.bz2" LICENSE="BSD" SLOT="0" KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~s390 ~x86 ~x64-macos" IUSE="debug static-libs stats" src_prepare() { epatch \ "${FILESDIR}/${PN}-3.5.1-strip-optimization.patch" \ "${FILESDIR}/${PN}-3.5.1-no-pprof.patch" \ "${FILESDIR}/${PN}-3.5.1_fix_html_install.patch" eautoreconf } src_configure() { econf \ $(use_enable debug) \ $(use_enable stats) } src_install() { default dohtml doc/jemalloc.html if [[ ${CHOST} == *-darwin* ]] ; then # fixup install_name, #437362 install_name_tool \ -id "${EPREFIX}"/usr/$(get_libdir)/libjemalloc.1.dylib \ "${ED}"/usr/$(get_libdir)/libjemalloc.1.dylib || die fi use static-libs || find "${ED}" -name '*.a' -delete }
