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 E24F21392EF for ; Wed, 16 Jul 2014 08:06:04 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id BC4A3E0A98; Wed, 16 Jul 2014 08:06:03 +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 47FEAE0A98 for ; Wed, 16 Jul 2014 08:06:03 +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 0A75C33FC3B for ; Wed, 16 Jul 2014 08:06:02 +0000 (UTC) Received: by flycatcher.gentoo.org (Postfix, from userid 2332) id BEF942004E; Wed, 16 Jul 2014 08:06:00 +0000 (UTC) From: "Ian Delaney (idella4)" To: gentoo-commits@lists.gentoo.org Reply-To: gentoo-dev@lists.gentoo.org, idella4@gentoo.org Subject: [gentoo-commits] gentoo-x86 commit in dev-python/astor: astor-0.4.ebuild ChangeLog X-VCS-Repository: gentoo-x86 X-VCS-Files: astor-0.4.ebuild ChangeLog X-VCS-Directories: dev-python/astor X-VCS-Committer: idella4 X-VCS-Committer-Name: Ian Delaney Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit Message-Id: <20140716080600.BEF942004E@flycatcher.gentoo.org> Date: Wed, 16 Jul 2014 08:06:00 +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: a1b3ba3e-a498-45ca-bd98-fde22eef4e5c X-Archives-Hash: 010534d5e7e713017d03232fffceef7f idella4 14/07/16 08:06:00 Modified: ChangeLog Added: astor-0.4.ebuild Log: bump; add test phase and fix to avoid file collisions (Portage version: 2.2.10/cvs/Linux x86_64, signed Manifest commit with key 0xB8072B0D) Revision Changes Path 1.3 dev-python/astor/ChangeLog file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/astor/ChangeLog?rev=1.3&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/astor/ChangeLog?rev=1.3&content-type=text/plain diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/astor/ChangeLog?r1=1.2&r2=1.3 Index: ChangeLog =================================================================== RCS file: /var/cvsroot/gentoo-x86/dev-python/astor/ChangeLog,v retrieving revision 1.2 retrieving revision 1.3 diff -u -r1.2 -r1.3 --- ChangeLog 29 Jun 2014 03:40:21 -0000 1.2 +++ ChangeLog 16 Jul 2014 08:06:00 -0000 1.3 @@ -1,6 +1,11 @@ # ChangeLog for dev-python/astor # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-python/astor/ChangeLog,v 1.2 2014/06/29 03:40:21 idella4 Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-python/astor/ChangeLog,v 1.3 2014/07/16 08:06:00 idella4 Exp $ + +*astor-0.4 (16 Jul 2014) + + 16 Jul 2014; Ian Delaney +astor-0.4.ebuild: + bump; add test phase and fix to avoid file collisions 29 Jun 2014; Ian Delaney astor-0.3.ebuild: add py3.4 pypy, add missing dep, tidy, fixes bug #513900 by Patrick 1.1 dev-python/astor/astor-0.4.ebuild file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/astor/astor-0.4.ebuild?rev=1.1&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/astor/astor-0.4.ebuild?rev=1.1&content-type=text/plain Index: astor-0.4.ebuild =================================================================== # Copyright 1999-2014 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Header: /var/cvsroot/gentoo-x86/dev-python/astor/astor-0.4.ebuild,v 1.1 2014/07/16 08:06:00 idella4 Exp $ EAPI="5" PYTHON_COMPAT=( python{2_7,3_3,3_4} pypy ) inherit distutils-r1 DESCRIPTION="Read/rewrite/write Python ASTs" SRC_URI="mirror://pypi/${P:0:1}/${PN}/${P}.tar.gz" HOMEPAGE="http://pypi.python.org/pypi/astor" LICENSE="BSD" SLOT="0" KEYWORDS="~amd64 ~x86" IUSE="" DEPEND="dev-python/setuptools[${PYTHON_USEDEP}]" python_prepare_all() { avoid file collisions picked up by the eclass sed -e s":find_packages():find_packages(exclude=['tests']):" -i setup.py || die distutils-r1_python_prepare_all } python_test() { "${PYTHON}" -m unittest discover || die "tests failed under ${EPYTHON}" }