Gentoo Archives: gentoo-commits

From: "Jory Pratt (anarchy)" <anarchy@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in dev-libs/jemalloc: jemalloc-2.2.5-r1.ebuild ChangeLog jemalloc-2.2.3.ebuild
Date: Sun, 26 Feb 2012 04:05:42
Message-Id: 20120226040532.3BB4F2004B@flycatcher.gentoo.org
1 anarchy 12/02/26 04:05:32
2
3 Modified: ChangeLog
4 Added: jemalloc-2.2.5-r1.ebuild
5 Removed: jemalloc-2.2.3.ebuild
6 Log:
7 Fix bug #403945 and #398675
8
9 (Portage version: 2.1.10.49/cvs/Linux x86_64)
10
11 Revision Changes Path
12 1.10 dev-libs/jemalloc/ChangeLog
13
14 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/jemalloc/ChangeLog?rev=1.10&view=markup
15 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/jemalloc/ChangeLog?rev=1.10&content-type=text/plain
16 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/jemalloc/ChangeLog?r1=1.9&r2=1.10
17
18 Index: ChangeLog
19 ===================================================================
20 RCS file: /var/cvsroot/gentoo-x86/dev-libs/jemalloc/ChangeLog,v
21 retrieving revision 1.9
22 retrieving revision 1.10
23 diff -u -r1.9 -r1.10
24 --- ChangeLog 16 Jan 2012 11:56:23 -0000 1.9
25 +++ ChangeLog 26 Feb 2012 04:05:32 -0000 1.10
26 @@ -1,6 +1,12 @@
27 # ChangeLog for dev-libs/jemalloc
28 # Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
29 -# $Header: /var/cvsroot/gentoo-x86/dev-libs/jemalloc/ChangeLog,v 1.9 2012/01/16 11:56:23 ago Exp $
30 +# $Header: /var/cvsroot/gentoo-x86/dev-libs/jemalloc/ChangeLog,v 1.10 2012/02/26 04:05:32 anarchy Exp $
31 +
32 +*jemalloc-2.2.5-r1 (26 Feb 2012)
33 +
34 + 26 Feb 2012; Jory A. Pratt <anarchy@g.o> -jemalloc-2.2.3.ebuild,
35 + +jemalloc-2.2.5-r1.ebuild, +files/jemalloc-2.2.5_fix_html_install.patch:
36 + Fix bug #403945 and #398675
37
38 16 Jan 2012; Agostino Sarubbo <ago@g.o> jemalloc-2.2.5.ebuild:
39 Stable for amd64, wrt bug #398521
40
41
42
43 1.1 dev-libs/jemalloc/jemalloc-2.2.5-r1.ebuild
44
45 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/jemalloc/jemalloc-2.2.5-r1.ebuild?rev=1.1&view=markup
46 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/jemalloc/jemalloc-2.2.5-r1.ebuild?rev=1.1&content-type=text/plain
47
48 Index: jemalloc-2.2.5-r1.ebuild
49 ===================================================================
50 # Copyright 1999-2012 Gentoo Foundation
51 # Distributed under the terms of the GNU General Public License v2
52 # $Header: /var/cvsroot/gentoo-x86/dev-libs/jemalloc/jemalloc-2.2.5-r1.ebuild,v 1.1 2012/02/26 04:05:32 anarchy Exp $
53
54 EAPI=4
55
56 inherit autotools
57
58 DESCRIPTION="Jemalloc is a general-purpose scalable concurrent allocator"
59 HOMEPAGE="http://www.canonware.com/jemalloc/"
60 SRC_URI="http://www.canonware.com/download/${PN}/${P}.tar.bz2"
61
62 LICENSE="BSD"
63 SLOT="0"
64 KEYWORDS="~amd64 ~ppc ~ppc64 ~x86"
65
66 IUSE="debug static-libs stats"
67
68 DEPEND=""
69 RDEPEND=""
70
71 src_prepare() {
72 epatch \
73 "${FILESDIR}/${PN}-strip-optimization.patch" \
74 "${FILESDIR}/${PN}-2.2.1-no-pprof.patch" \
75 "${FILESDIR}/${PN}-2.2.5_fix_html_install.patch" \
76
77 eautoreconf
78 }
79
80 src_configure() {
81 econf \
82 --with-jemalloc-prefix=j \
83 $(use_enable debug) \
84 $(use_enable stats)
85 }
86
87 src_install() {
88 emake DESTDIR="${ED}" install || die
89 dodoc ChangeLog README
90 dohtml doc/jemalloc.html
91
92 use static-libs || find "${ED}" -name '*.a' -exec rm -f {} +
93 }