public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
From: "Jory Pratt" <anarchy@gentoo.org>
To: gentoo-commits@lists.gentoo.org
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-libs/jemalloc/
Date: Thu, 26 Nov 2015 21:58:45 +0000 (UTC)	[thread overview]
Message-ID: <1448575071.a33db0173c8be4e192c2c136950548c4e358e12c.anarchy@gentoo> (raw)

commit:     a33db0173c8be4e192c2c136950548c4e358e12c
Author:     Jory A. Pratt <anarchy <AT> gentoo <DOT> org>
AuthorDate: Thu Nov 26 21:57:51 2015 +0000
Commit:     Jory Pratt <anarchy <AT> gentoo <DOT> org>
CommitDate: Thu Nov 26 21:57:51 2015 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a33db017

dev-libs/jemalloc - version bump 4.0.4, makor bug fixes

 dev-libs/jemalloc/Manifest              |  1 +
 dev-libs/jemalloc/jemalloc-4.0.4.ebuild | 50 +++++++++++++++++++++++++++++++++
 2 files changed, 51 insertions(+)

diff --git a/dev-libs/jemalloc/Manifest b/dev-libs/jemalloc/Manifest
index 2c6c514..005eea5 100644
--- a/dev-libs/jemalloc/Manifest
+++ b/dev-libs/jemalloc/Manifest
@@ -1,3 +1,4 @@
 DIST jemalloc-2.2.5.tar.bz2 224118 SHA256 efcc9636757bd7f53a0fde084c2988bfe26f2868e435447f2d41ac42c0b3521e SHA512 56a29dc7dca66c41d2934731c4bc756de5b58bf707dc2ebcf8515be400ce25e372af6526035117cad5b1964b9ba040ab7178f4c28c1649e86dcb53c3ec884a9d WHIRLPOOL e88fc56ac9db024483196d62e870fe4981d1d02fbf5e3819da504568cc58c8f246df668bb3dfe70ad2d551671577c18d5e6432e60bb3107296e6faad7cd8595c
 DIST jemalloc-3.3.1.tar.bz2 252997 SHA256 35c433cc1df5cdf9eb58b7980338552fc1d7aa64f89fe5643a972ccedb7cf20a SHA512 32814e8678af4954e26c0c0a0e5d06aba8f3844205fe212c5e41929dfab6a94ff11127a9238b5c18d72749827c467ecb874b8f3a9bc161cf1afdf4ea84c58690 WHIRLPOOL 35e8948e18ea7111ae830a8245be995b35f44ed2c2f687f706ee6941c78350c2cfaabefba223c4433069de47a9f92d621feaf176ec0c728e513e5f076e5fc874
 DIST jemalloc-3.6.0.tar.bz2 338964 SHA256 e16c2159dd3c81ca2dc3b5c9ef0d43e1f2f45b04548f42db12e7c12d7bdf84fe SHA512 ebe7c64558a87a735b5906d5cb7527c241664eeae7328538675a12eabe7a1004be0f8766a3bd2a78e61334b196ca7ffc0ee8b8ff59167922a35f126cd1e76e43 WHIRLPOOL d5452005951b10d9d529349481779d79361ec8d8ac1f36f4b54408b5e0184f35d79fee8378188d98f1b8e41ae13557a2cf41ab849b68856ba69f33870fe6e980
+DIST jemalloc-4.0.4.tar.bz2 391483 SHA256 3fda8d8d7fcd041aa0bebbecd45c46b28873cf37bd36c56bf44961b36d0f42d0 SHA512 93be0551a80d5f5dc3a1044ef3d5f06c5ce65f3c1fd753743ee64340b841fc2d7902178774ab71eaa633f68abad44109870eb84159679fdc8ce6d93db3a53112 WHIRLPOOL c8bc1a81555b30ff519fda90bfbcfcdb6c9e370ba7478bca17058e58e08c36d20a1995ab12d5374d4edb9cdd2469748517a6f1795a24667c5f798c4c0c756a9c

diff --git a/dev-libs/jemalloc/jemalloc-4.0.4.ebuild b/dev-libs/jemalloc/jemalloc-4.0.4.ebuild
new file mode 100644
index 0000000..e287200
--- /dev/null
+++ b/dev-libs/jemalloc/jemalloc-4.0.4.ebuild
@@ -0,0 +1,50 @@
+# Copyright 1999-2014 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+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_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
+}
+
+multilib_src_install() {
+	# Copy man file which the Makefile looks for
+	cp "${S}/doc/jemalloc.3" "${BUILD_DIR}/doc" || die
+	emake DESTDIR="${D}" install
+}
+
+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	other threads:[~2015-11-26 21:58 UTC|newest]

Thread overview: 67+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2015-11-26 21:58 Jory Pratt [this message]
  -- strict thread matches above, loose matches on Subject: below --
2015-11-28 16:23 [gentoo-commits] repo/gentoo:master commit in: dev-libs/jemalloc/ Jory Pratt
2016-07-17  8:15 Jory Pratt
2016-12-14  0:40 Jory Pratt
2017-08-29 14:14 Guilherme Amadio
2017-12-03 17:50 Fabian Groffen
2018-04-09 14:23 Lars Wendler
2018-04-09 15:01 Lars Wendler
2018-05-28  6:56 Jory Pratt
2018-08-23  0:22 Thomas Deutschmann
2018-12-12 12:57 Mikle Kolyada
2019-08-07 20:26 Thomas Deutschmann
2019-08-07 20:26 Thomas Deutschmann
2019-11-12 17:47 Aaron Bauman
2019-11-13  7:39 Agostino Sarubbo
2019-11-13  7:48 Agostino Sarubbo
2019-11-13  8:16 Agostino Sarubbo
2019-11-13  8:43 Agostino Sarubbo
2019-11-13 16:07 Agostino Sarubbo
2019-11-14 11:55 Agostino Sarubbo
2019-11-21 17:17 Sergei Trofimovich
2019-12-08  4:50 Matt Turner
2020-09-01  9:50 Yixun Lan
2021-03-21 10:19 Sergei Trofimovich
2021-09-20 20:54 James Le Cuirot
2022-01-15 10:25 Jakov Smolić
2022-01-15 10:25 Jakov Smolić
2022-01-15 22:01 Sam James
2022-01-15 22:01 Sam James
2022-01-18 12:26 Sam James
2022-01-18 22:16 Sam James
2022-01-20 11:47 Sam James
2022-01-23  7:41 Joonas Niilola
2022-05-05  9:51 WANG Xuerui
2022-05-14  5:32 WANG Xuerui
2022-05-28 20:42 Jakov Smolić
2022-06-30  5:55 Joonas Niilola
2022-06-30  5:55 Joonas Niilola
2022-06-30 21:47 Sam James
2022-06-30 22:12 Yixun Lan
2022-07-01  5:18 Arthur Zamarin
2022-07-01  6:10 Arthur Zamarin
2022-07-01  6:10 Arthur Zamarin
2022-07-01  6:16 Arthur Zamarin
2022-07-02  7:02 Jakov Smolić
2022-07-03 17:09 James Le Cuirot
2022-07-30  7:05 Joonas Niilola
2022-07-30  7:05 Joonas Niilola
2022-07-30  9:51 Arthur Zamarin
2022-07-30  9:51 Arthur Zamarin
2022-07-30 12:35 Arthur Zamarin
2022-07-30 14:31 Arthur Zamarin
2022-07-31 11:08 Agostino Sarubbo
2022-08-30  7:17 Arthur Zamarin
2022-08-30 16:05 Arthur Zamarin
2022-09-19  6:42 Michał Górny
2022-09-26  7:31 Michał Górny
2022-10-21 12:02 Joonas Niilola
2022-10-21 12:02 Joonas Niilola
2022-10-21 14:52 Arthur Zamarin
2022-10-21 14:52 Arthur Zamarin
2022-10-21 14:52 Arthur Zamarin
2022-10-21 14:52 Arthur Zamarin
2022-10-21 14:52 Arthur Zamarin
2022-10-24  6:02 Joonas Niilola
2022-10-24  6:02 Joonas Niilola
2024-02-25  0:01 Joshua Kinard

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=1448575071.a33db0173c8be4e192c2c136950548c4e358e12c.anarchy@gentoo \
    --to=anarchy@gentoo.org \
    --cc=gentoo-commits@lists.gentoo.org \
    --cc=gentoo-dev@lists.gentoo.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox