From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (unknown [208.92.234.80]) by finch.gentoo.org (Postfix) with ESMTP id 2AE521381FA for ; Wed, 14 May 2014 22:59:16 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id B7C02E0998; Wed, 14 May 2014 22:59:15 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 414A6E0998 for ; Wed, 14 May 2014 22:59:15 +0000 (UTC) Received: from flycatcher.gentoo.org (unknown [81.93.255.6]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 407CB335DE5 for ; Wed, 14 May 2014 22:59:14 +0000 (UTC) Received: by flycatcher.gentoo.org (Postfix, from userid 2279) id EEDCD20036; Wed, 14 May 2014 22:59:12 +0000 (UTC) From: "Michal Gorny (mgorny)" To: gentoo-commits@lists.gentoo.org Reply-To: gentoo-dev@lists.gentoo.org, mgorny@gentoo.org Subject: [gentoo-commits] gentoo-x86 commit in sys-libs/tevent: tevent-0.9.21-r1.ebuild ChangeLog X-VCS-Repository: gentoo-x86 X-VCS-Files: tevent-0.9.21-r1.ebuild ChangeLog X-VCS-Directories: sys-libs/tevent X-VCS-Committer: mgorny X-VCS-Committer-Name: Michal Gorny Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit Message-Id: <20140514225912.EEDCD20036@flycatcher.gentoo.org> Date: Wed, 14 May 2014 22:59:12 +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: a564842c-4bc6-4356-bc58-5ab83cd9616b X-Archives-Hash: 0a2c13a07bc069b63e8337777e2b17bf mgorny 14/05/14 22:59:12 Modified: ChangeLog Added: tevent-0.9.21-r1.ebuild Log: Enable multilib support, bug #505012. Make Python optional & clean up its handling, bug #489114. (Portage version: 2.2.10/cvs/Linux x86_64, signed Manifest commit with key EFB4464E!) Revision Changes Path 1.58 sys-libs/tevent/ChangeLog file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-libs/tevent/ChangeLog?rev=1.58&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-libs/tevent/ChangeLog?rev=1.58&content-type=text/plain diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-libs/tevent/ChangeLog?r1=1.57&r2=1.58 Index: ChangeLog =================================================================== RCS file: /var/cvsroot/gentoo-x86/sys-libs/tevent/ChangeLog,v retrieving revision 1.57 retrieving revision 1.58 diff -u -r1.57 -r1.58 --- ChangeLog 18 Jan 2014 23:19:27 -0000 1.57 +++ ChangeLog 14 May 2014 22:59:12 -0000 1.58 @@ -1,6 +1,12 @@ # ChangeLog for sys-libs/tevent # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/sys-libs/tevent/ChangeLog,v 1.57 2014/01/18 23:19:27 polynomial-c Exp $ +# $Header: /var/cvsroot/gentoo-x86/sys-libs/tevent/ChangeLog,v 1.58 2014/05/14 22:59:12 mgorny Exp $ + +*tevent-0.9.21-r1 (14 May 2014) + + 14 May 2014; Michał Górny +tevent-0.9.21-r1.ebuild: + Enable multilib support, bug #505012. Make Python optional & clean up its + handling, bug #489114. *tevent-0.9.21 (18 Jan 2014) 1.1 sys-libs/tevent/tevent-0.9.21-r1.ebuild file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-libs/tevent/tevent-0.9.21-r1.ebuild?rev=1.1&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-libs/tevent/tevent-0.9.21-r1.ebuild?rev=1.1&content-type=text/plain Index: tevent-0.9.21-r1.ebuild =================================================================== # Copyright 1999-2014 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Header: /var/cvsroot/gentoo-x86/sys-libs/tevent/tevent-0.9.21-r1.ebuild,v 1.1 2014/05/14 22:59:12 mgorny Exp $ EAPI=5 PYTHON_COMPAT=( python2_{6,7} ) inherit waf-utils multilib-minimal python-single-r1 DESCRIPTION="Samba tevent library" HOMEPAGE="http://tevent.samba.org/" SRC_URI="http://samba.org/ftp/tevent/${P}.tar.gz" LICENSE="GPL-3" SLOT="0" KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~amd64-fbsd ~x86-fbsd ~arm-linux ~x86-linux" IUSE="python" RDEPEND=">=sys-libs/talloc-2.1.0[python?,${MULTILIB_USEDEP}] python? ( ${PYTHON_DEPS} )" DEPEND="${RDEPEND} virtual/pkgconfig[${MULTILIB_USEDEP}] ${PYTHON_DEPS} " # build system does not work with python3 REQUIRED_USE="${PYTHON_REQUIRED_USE}" WAF_BINARY="${S}/buildtools/bin/waf" pkg_setup() { python-single-r1_pkg_setup } src_prepare() { multilib_copy_sources } multilib_src_configure() { waf-utils_src_configure \ $(multilib_native_usex python '' '--disable-python') } multilib_src_compile() { waf-utils_src_compile } multilib_src_install() { waf-utils_src_install multilib_is_native_abi && use python && python_domodule tevent.py }