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 476D6138247 for ; Thu, 14 Nov 2013 23:39:00 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 686D9E0B67; Thu, 14 Nov 2013 23:38:39 +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 113E1E0B67 for ; Thu, 14 Nov 2013 23:38:38 +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 227F833F23D for ; Thu, 14 Nov 2013 23:38:38 +0000 (UTC) Received: by flycatcher.gentoo.org (Postfix, from userid 2092) id 8F55E2004B; Thu, 14 Nov 2013 23:38:36 +0000 (UTC) From: "Patrick McLean (chutzpah)" To: gentoo-commits@lists.gentoo.org Reply-To: gentoo-dev@lists.gentoo.org, chutzpah@gentoo.org Subject: [gentoo-commits] gentoo-x86 commit in dev-python/jsonschema: jsonschema-2.3.0.ebuild ChangeLog X-VCS-Repository: gentoo-x86 X-VCS-Files: jsonschema-2.3.0.ebuild ChangeLog X-VCS-Directories: dev-python/jsonschema X-VCS-Committer: chutzpah X-VCS-Committer-Name: Patrick McLean Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit Message-Id: <20131114233836.8F55E2004B@flycatcher.gentoo.org> Date: Thu, 14 Nov 2013 23:38:36 +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: 66a183bf-ebb3-483e-882c-cf31b51e647d X-Archives-Hash: 081b91b16d9652319a04b49adcffffe6 chutzpah 13/11/14 23:38:36 Modified: ChangeLog Added: jsonschema-2.3.0.ebuild Log: jsonschema-2.3.0.ebuild (Portage version: 2.2.7/cvs/Linux x86_64, signed Manifest commit with key 0xE3F69979BB4B8928DA78E3D17CBF44EF) Revision Changes Path 1.8 dev-python/jsonschema/ChangeLog file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/jsonschema/ChangeLog?rev=1.8&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/jsonschema/ChangeLog?rev=1.8&content-type=text/plain diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/jsonschema/ChangeLog?r1=1.7&r2=1.8 Index: ChangeLog =================================================================== RCS file: /var/cvsroot/gentoo-x86/dev-python/jsonschema/ChangeLog,v retrieving revision 1.7 retrieving revision 1.8 diff -u -r1.7 -r1.8 --- ChangeLog 5 Sep 2013 18:46:51 -0000 1.7 +++ ChangeLog 14 Nov 2013 23:38:36 -0000 1.8 @@ -1,6 +1,11 @@ # ChangeLog for dev-python/jsonschema # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-python/jsonschema/ChangeLog,v 1.7 2013/09/05 18:46:51 mgorny Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-python/jsonschema/ChangeLog,v 1.8 2013/11/14 23:38:36 chutzpah Exp $ + +*jsonschema-2.3.0 (14 Nov 2013) + + 14 Nov 2013; Patrick McLean +jsonschema-2.3.0.ebuild: + Version bump. 05 Sep 2013; Michał Górny jsonschema-2.0.0.ebuild: Clean up PYTHON_COMPAT from old implementations. 1.1 dev-python/jsonschema/jsonschema-2.3.0.ebuild file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/jsonschema/jsonschema-2.3.0.ebuild?rev=1.1&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/jsonschema/jsonschema-2.3.0.ebuild?rev=1.1&content-type=text/plain Index: jsonschema-2.3.0.ebuild =================================================================== # Copyright 1999-2013 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Header: /var/cvsroot/gentoo-x86/dev-python/jsonschema/jsonschema-2.3.0.ebuild,v 1.1 2013/11/14 23:38:36 chutzpah Exp $ EAPI=5 PYTHON_COMPAT=( python{2_6,2_7,3_2,3_3} pypy2_0 ) inherit distutils-r1 DESCRIPTION="An implementation of JSON-Schema validation for Python" HOMEPAGE="http://pypi.python.org/pypi/jsonschema" SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz" LICENSE="MIT" SLOT="0" KEYWORDS="~amd64 ~x86" IUSE="test" DEPEND="test? ( virtual/python-unittest2[${PYTHON_USEDEP}] )" RDEPEND="" python_test() { local runner=( "${PYTHON}" -m unittest ) if [[ ${EPYTHON} == python2.6 || ${EPYTHON} == python3.1 ]]; then unset PYTHONPATH runner=( unit2.py ) fi "${runner[@]}" discover || die "Testing failed with ${EPYTHON}" }