From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 80816139085 for ; Thu, 2 Feb 2017 15:18:47 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id BB7A5E0DC4; Thu, 2 Feb 2017 15:18:46 +0000 (UTC) Received: from smtp.gentoo.org (mail.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 8E142E0DC4 for ; Thu, 2 Feb 2017 15:18:46 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id C3B4733FECD for ; Thu, 2 Feb 2017 15:18:45 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 016BA3B9E for ; Thu, 2 Feb 2017 15:18:44 +0000 (UTC) From: "Jeroen Roovers" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Jeroen Roovers" Message-ID: <1486048722.9562bcbde92483f01acbc86bddffa2861302a010.jer@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-libs/libevent/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-libs/libevent/libevent-2.1.8.ebuild dev-libs/libevent/metadata.xml X-VCS-Directories: dev-libs/libevent/ X-VCS-Committer: jer X-VCS-Committer-Name: Jeroen Roovers X-VCS-Revision: 9562bcbde92483f01acbc86bddffa2861302a010 X-VCS-Branch: master Date: Thu, 2 Feb 2017 15:18:44 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Archives-Salt: 9c217cce-5305-4937-8551-f34c0efed0a7 X-Archives-Hash: acc3e8040008b68ec3a7fecb30fe728d commit: 9562bcbde92483f01acbc86bddffa2861302a010 Author: Jeroen Roovers gentoo org> AuthorDate: Thu Feb 2 15:18:26 2017 +0000 Commit: Jeroen Roovers gentoo org> CommitDate: Thu Feb 2 15:18:42 2017 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9562bcbd dev-libs/libevent: Add USE=malloc-replacement (bug #545358). Package-Manager: Portage-2.3.3, Repoman-2.3.1 dev-libs/libevent/libevent-2.1.8.ebuild | 7 ++++--- dev-libs/libevent/metadata.xml | 24 +++++++++++++----------- 2 files changed, 17 insertions(+), 14 deletions(-) diff --git a/dev-libs/libevent/libevent-2.1.8.ebuild b/dev-libs/libevent/libevent-2.1.8.ebuild index ca87a24..b5b65d9 100644 --- a/dev-libs/libevent/libevent-2.1.8.ebuild +++ b/dev-libs/libevent/libevent-2.1.8.ebuild @@ -13,7 +13,7 @@ LICENSE="BSD" # libevent-2.1.so.6 SLOT="0/2.1-6" KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~amd64-fbsd ~sparc-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~x64-solaris ~x86-solaris" -IUSE="debug libressl +ssl static-libs test +threads" +IUSE="debug libressl +malloc-replacement +ssl static-libs test +threads" DEPEND=" ssl? ( @@ -43,13 +43,14 @@ multilib_src_configure() { ECONF_SOURCE="${S}" \ econf \ - --disable-samples \ $(use_enable debug debug-mode) \ $(use_enable debug malloc-replacement) \ + $(use_enable malloc-replacement) \ $(use_enable ssl openssl) \ $(use_enable static-libs static) \ $(use_enable test libevent-regress) \ - $(use_enable threads thread-support) + $(use_enable threads thread-support) \ + --disable-samples } src_test() { diff --git a/dev-libs/libevent/metadata.xml b/dev-libs/libevent/metadata.xml index 1d56f5b..bb8ef50 100644 --- a/dev-libs/libevent/metadata.xml +++ b/dev-libs/libevent/metadata.xml @@ -1,15 +1,17 @@ - - jer@gentoo.org - Jeroen Roovers - - - cpe:/a:niels_provos:libevent - levent - - - Support runtime debug mode and malloc hooks (for programmers) - + + jer@gentoo.org + Jeroen Roovers + + + cpe:/a:niels_provos:libevent + libevent/libevent + levent + + + Support runtime debug mode and malloc hooks (for programmers) + Enable support for replacing the memory management functions +