From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) by finch.gentoo.org (Postfix) with ESMTP id 3EAFC1393EA for ; Sat, 19 Apr 2014 18:03:01 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 4FD8EE0B48; Sat, 19 Apr 2014 18:02:58 +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 A0249E0B48 for ; Sat, 19 Apr 2014 18:02:57 +0000 (UTC) Received: from flycatcher.gentoo.org (flycatcher.gentoo.org [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 CB518340015 for ; Sat, 19 Apr 2014 18:02:56 +0000 (UTC) Received: by flycatcher.gentoo.org (Postfix, from userid 2279) id 8CB902004C; Sat, 19 Apr 2014 18:02:55 +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 virtual/python-pathlib: python-pathlib-1.0.ebuild ChangeLog X-VCS-Repository: gentoo-x86 X-VCS-Files: python-pathlib-1.0.ebuild ChangeLog X-VCS-Directories: virtual/python-pathlib X-VCS-Committer: mgorny X-VCS-Committer-Name: Michal Gorny Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit Message-Id: <20140419180255.8CB902004C@flycatcher.gentoo.org> Date: Sat, 19 Apr 2014 18:02:55 +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: 7780387e-1570-43db-906e-942e6163c118 X-Archives-Hash: a0d9f86aa0f103a540769a14f99925ad mgorny 14/04/19 18:02:55 Modified: python-pathlib-1.0.ebuild ChangeLog Log: Use ${PYTHON_USEDEP} substitution support added to python_gen_cond_dep(). (Portage version: 2.2.10/cvs/Linux x86_64, signed Manifest commit with key EFB4464E!) Revision Changes Path 1.2 virtual/python-pathlib/python-pathlib-1.0.ebuild file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/virtual/python-pathlib/python-pathlib-1.0.ebuild?rev=1.2&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/virtual/python-pathlib/python-pathlib-1.0.ebuild?rev=1.2&content-type=text/plain diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/virtual/python-pathlib/python-pathlib-1.0.ebuild?r1=1.1&r2=1.2 Index: python-pathlib-1.0.ebuild =================================================================== RCS file: /var/cvsroot/gentoo-x86/virtual/python-pathlib/python-pathlib-1.0.ebuild,v retrieving revision 1.1 retrieving revision 1.2 diff -u -r1.1 -r1.2 --- python-pathlib-1.0.ebuild 30 Mar 2014 21:24:21 -0000 1.1 +++ python-pathlib-1.0.ebuild 19 Apr 2014 18:02:55 -0000 1.2 @@ -1,6 +1,6 @@ # Copyright 1999-2014 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/virtual/python-pathlib/python-pathlib-1.0.ebuild,v 1.1 2014/03/30 21:24:21 hasufell Exp $ +# $Header: /var/cvsroot/gentoo-x86/virtual/python-pathlib/python-pathlib-1.0.ebuild,v 1.2 2014/04/19 18:02:55 mgorny Exp $ EAPI=5 PYTHON_COMPAT=( python{2_7,3_2,3_3,3_4} ) @@ -18,6 +18,5 @@ REQUIRED_USE="${PYTHON_REQUIRED_USE}" RDEPEND="${PYTHON_DEPS} - $(python_gen_cond_dep \ - "dev-python/pathlib[$(python_gen_usedep python{2_7,3_2,3_3})]" \ + $(python_gen_cond_dep 'dev-python/pathlib[${PYTHON_USEDEP}]' \ python{2_7,3_2,3_3})" 1.2 virtual/python-pathlib/ChangeLog file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/virtual/python-pathlib/ChangeLog?rev=1.2&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/virtual/python-pathlib/ChangeLog?rev=1.2&content-type=text/plain diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/virtual/python-pathlib/ChangeLog?r1=1.1&r2=1.2 Index: ChangeLog =================================================================== RCS file: /var/cvsroot/gentoo-x86/virtual/python-pathlib/ChangeLog,v retrieving revision 1.1 retrieving revision 1.2 diff -u -r1.1 -r1.2 --- ChangeLog 30 Mar 2014 21:24:21 -0000 1.1 +++ ChangeLog 19 Apr 2014 18:02:55 -0000 1.2 @@ -1,10 +1,12 @@ # ChangeLog for virtual/python-pathlib # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/virtual/python-pathlib/ChangeLog,v 1.1 2014/03/30 21:24:21 hasufell Exp $ +# $Header: /var/cvsroot/gentoo-x86/virtual/python-pathlib/ChangeLog,v 1.2 2014/04/19 18:02:55 mgorny Exp $ + + 19 Apr 2014; Michał Górny python-pathlib-1.0.ebuild: + Use ${PYTHON_USEDEP} substitution support added to python_gen_cond_dep(). *python-pathlib-1.0 (30 Mar 2014) 30 Mar 2014; Julian Ospald +python-pathlib-1.0.ebuild, +metadata.xml: initial import -