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 B048B138247 for ; Thu, 9 Jan 2014 21:54:58 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id EB2F3E0B1F; Thu, 9 Jan 2014 21:54:57 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 745C7E0B1F for ; Thu, 9 Jan 2014 21:54:57 +0000 (UTC) Received: from flycatcher.gentoo.org (flycatcher.gentoo.org [81.93.255.6]) (using TLSv1 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 9FD3233F685 for ; Thu, 9 Jan 2014 21:54:56 +0000 (UTC) Received: by flycatcher.gentoo.org (Postfix, from userid 2310) id 329222004C; Thu, 9 Jan 2014 21:54:55 +0000 (UTC) From: "Matt Thode (prometheanfire)" To: gentoo-commits@lists.gentoo.org Reply-To: gentoo-dev@lists.gentoo.org, prometheanfire@gentoo.org Subject: [gentoo-commits] gentoo-x86 commit in dev-python/flake8: flake8-2.1.0.ebuild ChangeLog X-VCS-Repository: gentoo-x86 X-VCS-Files: flake8-2.1.0.ebuild ChangeLog X-VCS-Directories: dev-python/flake8 X-VCS-Committer: prometheanfire X-VCS-Committer-Name: Matt Thode Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit Message-Id: <20140109215455.329222004C@flycatcher.gentoo.org> Date: Thu, 9 Jan 2014 21:54: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: 4a841d31-94b9-42a2-a319-19c872706f5a X-Archives-Hash: 8f7eea8e881d97882c793307d5f983e0 prometheanfire 14/01/09 21:54:55 Modified: ChangeLog Added: flake8-2.1.0.ebuild Log: bump of flake8 to 2.1.0 (Portage version: 2.2.7/cvs/Linux x86_64, signed Manifest commit with key 0x2471eb3e40ac5ac3) Revision Changes Path 1.7 dev-python/flake8/ChangeLog file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/flake8/ChangeLog?rev=1.7&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/flake8/ChangeLog?rev=1.7&content-type=text/plain diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/flake8/ChangeLog?r1=1.6&r2=1.7 Index: ChangeLog =================================================================== RCS file: /var/cvsroot/gentoo-x86/dev-python/flake8/ChangeLog,v retrieving revision 1.6 retrieving revision 1.7 diff -u -r1.6 -r1.7 --- ChangeLog 11 Dec 2013 19:30:09 -0000 1.6 +++ ChangeLog 9 Jan 2014 21:54:55 -0000 1.7 @@ -1,6 +1,11 @@ # ChangeLog for dev-python/flake8 -# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-python/flake8/ChangeLog,v 1.6 2013/12/11 19:30:09 floppym Exp $ +# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/dev-python/flake8/ChangeLog,v 1.7 2014/01/09 21:54:55 prometheanfire Exp $ + +*flake8-2.1.0 (09 Jan 2014) + + 09 Jan 2014; Matthew Thode +flake8-2.1.0.ebuild: + bump of flake8 to 2.1.0 11 Dec 2013; Mike Gilbert flake8-2.0.ebuild: Depend on dev-python/mccabe for tests, bug 493922 by Nikoli. 1.1 dev-python/flake8/flake8-2.1.0.ebuild file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/flake8/flake8-2.1.0.ebuild?rev=1.1&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/flake8/flake8-2.1.0.ebuild?rev=1.1&content-type=text/plain Index: flake8-2.1.0.ebuild =================================================================== # Copyright 1999-2014 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Header: /var/cvsroot/gentoo-x86/dev-python/flake8/flake8-2.1.0.ebuild,v 1.1 2014/01/09 21:54:55 prometheanfire Exp $ EAPI=5 PYTHON_COMPAT=( python{2_6,2_7,3_2,3_3} ) inherit distutils-r1 DESCRIPTION="A wrapper around PyFlakes, pep8 & mccabe" HOMEPAGE="http://bitbucket.org/tarek/flake8" SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz" KEYWORDS="~amd64 ~x86" IUSE="test" LICENSE="MIT" SLOT="0" # requires.txt inc. mccabe however that creates a circular dep RDEPEND=">=dev-python/pyflakes-0.7.3[${PYTHON_USEDEP}] >=dev-python/pep8-1.4.6[${PYTHON_USEDEP}]" PDEPEND=">=dev-python/mccabe-0.2.1[${PYTHON_USEDEP}]" DEPEND="${RDEPEND} dev-python/setuptools[${PYTHON_USEDEP}] test? ( ${PDEPEND} dev-python/nose[${PYTHON_USEDEP}] dev-python/mock[${PYTHON_USEDEP}] )" python_test() { esetup.py test || die "tests failed under ${EPYTHON_}" }