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 3ACA2198005 for ; Tue, 19 Mar 2013 17:42:58 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 34B7AE05BE; Tue, 19 Mar 2013 17:42:54 +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 B5DB5E05BE for ; Tue, 19 Mar 2013 17:42:53 +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 A268033DB88 for ; Tue, 19 Mar 2013 17:42:52 +0000 (UTC) Received: by flycatcher.gentoo.org (Postfix, from userid 2332) id 5A0212171D; Tue, 19 Mar 2013 17:42:51 +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/wehjit: wehjit-0.2.2-r1.ebuild ChangeLog X-VCS-Repository: gentoo-x86 X-VCS-Files: wehjit-0.2.2-r1.ebuild ChangeLog X-VCS-Directories: dev-python/wehjit X-VCS-Committer: idella4 X-VCS-Committer-Name: Ian Delaney Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit Message-Id: <20130319174251.5A0212171D@flycatcher.gentoo.org> Date: Tue, 19 Mar 2013 17:42:51 +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: d903c8ba-fb89-4566-9a80-38ef42ca9f5f X-Archives-Hash: 71ac616db370d54e64f569b8dfbfa257 idella4 13/03/19 17:42:51 Modified: ChangeLog Added: wehjit-0.2.2-r1.ebuild Log: migration revbump (Portage version: 2.1.11.40/cvs/Linux x86_64, signed Manifest commit with key 0xB8072B0D) Revision Changes Path 1.5 dev-python/wehjit/ChangeLog file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/wehjit/ChangeLog?rev=1.5&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/wehjit/ChangeLog?rev=1.5&content-type=text/plain diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/wehjit/ChangeLog?r1=1.4&r2=1.5 Index: ChangeLog =================================================================== RCS file: /var/cvsroot/gentoo-x86/dev-python/wehjit/ChangeLog,v retrieving revision 1.4 retrieving revision 1.5 diff -u -r1.4 -r1.5 --- ChangeLog 7 Nov 2012 16:25:18 -0000 1.4 +++ ChangeLog 19 Mar 2013 17:42:51 -0000 1.5 @@ -1,6 +1,11 @@ # ChangeLog for dev-python/wehjit -# Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-python/wehjit/ChangeLog,v 1.4 2012/11/07 16:25:18 idella4 Exp $ +# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/dev-python/wehjit/ChangeLog,v 1.5 2013/03/19 17:42:51 idella4 Exp $ + +*wehjit-0.2.2-r1 (19 Mar 2013) + + 19 Mar 2013; Ian Delaney +wehjit-0.2.2-r1.ebuild: + migration revbump 08 Nov 2012; Ian Delaney +files/wehjit-0.2.2-SkipTest.patch, wehjit-0.2.2.ebuild: 1.1 dev-python/wehjit/wehjit-0.2.2-r1.ebuild file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/wehjit/wehjit-0.2.2-r1.ebuild?rev=1.1&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/wehjit/wehjit-0.2.2-r1.ebuild?rev=1.1&content-type=text/plain Index: wehjit-0.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/wehjit/wehjit-0.2.2-r1.ebuild,v 1.1 2013/03/19 17:42:51 idella4 Exp $ EAPI=5 PYTHON_COMPAT=( python{2_6,2_7} ) inherit distutils-r1 DESCRIPTION="A Python web-widget library" HOMEPAGE="http://jderose.fedorapeople.org/wehjit" SRC_URI="http://jderose.fedorapeople.org/${PN}/${PV}/${P}.tar.gz" LICENSE="GPL-3" SLOT="0" KEYWORDS="~x86 ~amd64" IUSE="test" RDEPEND="dev-python/genshi dev-python/assets[${PYTHON_USEDEP}] dev-python/paste[${PYTHON_USEDEP}] dev-python/pygments[${PYTHON_USEDEP}] " DEPEND="${RDEPEND}" DOCS=( README NEWS ) PATCHES=( "${FILESDIR}"/${P}-SkipTest.patch ) python_test() { if [[ "${EPYTHON:6:3}" == '2.6' ]]; then nosetests -I test_app* -e=*getitem else nosetests fi }