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 CE69F138957 for ; Sun, 10 Feb 2013 02:52:33 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 7B31F21C007; Sun, 10 Feb 2013 02:52:32 +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 03AC221C007 for ; Sun, 10 Feb 2013 02:52:31 +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 E764C33E3E0 for ; Sun, 10 Feb 2013 02:52:30 +0000 (UTC) Received: by flycatcher.gentoo.org (Postfix, from userid 2304) id E5A512171E; Sun, 10 Feb 2013 02:52:28 +0000 (UTC) From: "Mike Gilbert (floppym)" To: gentoo-commits@lists.gentoo.org Reply-To: gentoo-dev@lists.gentoo.org, floppym@gentoo.org Subject: [gentoo-commits] gentoo-x86 commit in dev-python/cherrypy: cherrypy-3.2.2-r1.ebuild ChangeLog X-VCS-Repository: gentoo-x86 X-VCS-Files: cherrypy-3.2.2-r1.ebuild ChangeLog X-VCS-Directories: dev-python/cherrypy X-VCS-Committer: floppym X-VCS-Committer-Name: Mike Gilbert Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit Message-Id: <20130210025228.E5A512171E@flycatcher.gentoo.org> Date: Sun, 10 Feb 2013 02:52:28 +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: 9bcd8228-6e86-4505-ab7a-75e0eae8f3e1 X-Archives-Hash: 634107ed96aa155e8a6acc69569a1a03 floppym 13/02/10 02:52:28 Modified: ChangeLog Added: cherrypy-3.2.2-r1.ebuild Log: Convert to distutils-r1. (Portage version: 2.2.0_alpha161/cvs/Linux x86_64, signed Manifest commit with key 0BBEEA1FEA4843A4) Revision Changes Path 1.49 dev-python/cherrypy/ChangeLog file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/cherrypy/ChangeLog?rev=1.49&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/cherrypy/ChangeLog?rev=1.49&content-type=text/plain diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/cherrypy/ChangeLog?r1=1.48&r2=1.49 Index: ChangeLog =================================================================== RCS file: /var/cvsroot/gentoo-x86/dev-python/cherrypy/ChangeLog,v retrieving revision 1.48 retrieving revision 1.49 diff -u -r1.48 -r1.49 --- ChangeLog 17 Jul 2012 02:07:57 -0000 1.48 +++ ChangeLog 10 Feb 2013 02:52:28 -0000 1.49 @@ -1,6 +1,11 @@ # ChangeLog for dev-python/cherrypy -# Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-python/cherrypy/ChangeLog,v 1.48 2012/07/17 02:07:57 vapier Exp $ +# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/dev-python/cherrypy/ChangeLog,v 1.49 2013/02/10 02:52:28 floppym Exp $ + +*cherrypy-3.2.2-r1 (10 Feb 2013) + + 10 Feb 2013; Mike Gilbert +cherrypy-3.2.2-r1.ebuild: + Convert to distutils-r1. 17 Jul 2012; Mike Frysinger cherrypy-3.2.2.ebuild: Add arm love. 1.1 dev-python/cherrypy/cherrypy-3.2.2-r1.ebuild file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/cherrypy/cherrypy-3.2.2-r1.ebuild?rev=1.1&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/cherrypy/cherrypy-3.2.2-r1.ebuild?rev=1.1&content-type=text/plain Index: cherrypy-3.2.2-r1.ebuild =================================================================== # Copyright 1999-2013 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Header: /var/cvsroot/gentoo-x86/dev-python/cherrypy/cherrypy-3.2.2-r1.ebuild,v 1.1 2013/02/10 02:52:28 floppym Exp $ EAPI=5 PYTHON_COMPAT=( python{2_5,2_6,2_7,3_1,3_2,3_3} pypy{1_9,2_0} ) inherit distutils-r1 MY_P="CherryPy-${PV}" DESCRIPTION="CherryPy is a pythonic, object-oriented HTTP framework" HOMEPAGE="http://www.cherrypy.org/ http://pypi.python.org/pypi/CherryPy" SRC_URI="http://download.cherrypy.org/${PN}/${PV}/${MY_P}.tar.gz" LICENSE="BSD" SLOT="0" KEYWORDS="~amd64 ~arm ~ia64 ~ppc ~x86 ~amd64-linux ~x86-linux ~x86-macos" IUSE="test" DEPEND="dev-python/setuptools[${PYTHON_USEDEP}] test? ( dev-python/nose[${PYTHON_USEDEP}] )" RDEPEND="" S="${WORKDIR}/${MY_P}" python_test() { nosetests < /dev/tty || die "Testing failed with ${EPYTHON}" }