anarchy     14/05/19 14:09:08

  Modified:             ChangeLog
  Added:                jemalloc-3.6.0.ebuild
  Removed:              jemalloc-3.4.0.ebuild jemalloc-3.5.1-r1.ebuild
                        jemalloc-3.5.1.ebuild
  Log:
  Major regression fix
  
  (Portage version: 2.2.10/cvs/Linux x86_64, signed Manifest commit with key 
0xB4D088B4)

Revision  Changes    Path
1.38                 dev-libs/jemalloc/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/jemalloc/ChangeLog?rev=1.38&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/jemalloc/ChangeLog?rev=1.38&content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/jemalloc/ChangeLog?r1=1.37&r2=1.38

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-libs/jemalloc/ChangeLog,v
retrieving revision 1.37
retrieving revision 1.38
diff -u -r1.37 -r1.38
--- ChangeLog   10 Mar 2014 16:30:06 -0000      1.37
+++ ChangeLog   19 May 2014 14:09:08 -0000      1.38
@@ -1,6 +1,12 @@
 # ChangeLog for dev-libs/jemalloc
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-libs/jemalloc/ChangeLog,v 1.37 
2014/03/10 16:30:06 axs Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-libs/jemalloc/ChangeLog,v 1.38 
2014/05/19 14:09:08 anarchy Exp $
+
+*jemalloc-3.6.0 (19 May 2014)
+
+  19 May 2014;  <anar...@gentoo.org> +jemalloc-3.6.0.ebuild,
+  -jemalloc-3.4.0.ebuild, -jemalloc-3.5.1-r1.ebuild, -jemalloc-3.5.1.ebuild:
+  Major regression fix
 
 *jemalloc-3.5.1-r1 (10 Mar 2014)
 



1.1                  dev-libs/jemalloc/jemalloc-3.6.0.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/jemalloc/jemalloc-3.6.0.ebuild?rev=1.1&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/jemalloc/jemalloc-3.6.0.ebuild?rev=1.1&content-type=text/plain

Index: jemalloc-3.6.0.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.6.0.ebuild,v 
1.1 2014/05/19 14:09:08 anarchy Exp $

EAPI=5

inherit autotools-multilib 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"
HTML_DOCS=( doc/jemalloc.html )
PATCHES=( "${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"
)
MULTILIB_WRAPPED_HEADERS=( /usr/include/jemalloc/jemalloc.h )
# autotools-utils.eclass auto-adds configure options when static-libs is in IUSE
# but jemalloc doesn't implement them in its configure; need this here to
# supress the warnings until automagic is removed from the eclass
QA_CONFIGURE_OPTIONS="--enable-static --disable-static --enable-shared 
--disable-shared"
src_configure() {
        myeconfargs=(
                $(use_enable debug)
                $(use_enable stats)
        )
        autotools-multilib_src_configure
}

src_install() {
        autotools-multilib_src_install

        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
}




Reply via email to