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 A3DBB1381F3 for ; Sat, 10 Aug 2013 09:48:09 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 3F66AE0AE8; Sat, 10 Aug 2013 09:48:09 +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 CCDBFE0AE8 for ; Sat, 10 Aug 2013 09:48:08 +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 D182333EBBA for ; Sat, 10 Aug 2013 09:48:07 +0000 (UTC) Received: by flycatcher.gentoo.org (Postfix, from userid 807) id 801962171C; Sat, 10 Aug 2013 09:48:06 +0000 (UTC) From: "Patrick Lauer (patrick)" To: gentoo-commits@lists.gentoo.org Reply-To: gentoo-dev@lists.gentoo.org, patrick@gentoo.org Subject: [gentoo-commits] gentoo-x86 commit in dev-python/pycountry: pycountry-0.18.ebuild ChangeLog X-VCS-Repository: gentoo-x86 X-VCS-Files: pycountry-0.18.ebuild ChangeLog X-VCS-Directories: dev-python/pycountry X-VCS-Committer: patrick X-VCS-Committer-Name: Patrick Lauer Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit Message-Id: <20130810094806.801962171C@flycatcher.gentoo.org> Date: Sat, 10 Aug 2013 09:48:06 +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: 10690e65-2583-4ff0-83b1-3848b9b70ff1 X-Archives-Hash: 0900acf1f5e0ec2977c2a7022098916c patrick 13/08/10 09:48:06 Modified: ChangeLog Added: pycountry-0.18.ebuild Log: Bump (Portage version: 2.2.0_alpha196/cvs/Linux x86_64, unsigned Manifest commit) Revision Changes Path 1.17 dev-python/pycountry/ChangeLog file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/pycountry/ChangeLog?rev=1.17&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/pycountry/ChangeLog?rev=1.17&content-type=text/plain diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/pycountry/ChangeLog?r1=1.16&r2=1.17 Index: ChangeLog =================================================================== RCS file: /var/cvsroot/gentoo-x86/dev-python/pycountry/ChangeLog,v retrieving revision 1.16 retrieving revision 1.17 diff -u -r1.16 -r1.17 --- ChangeLog 21 Jul 2013 09:13:10 -0000 1.16 +++ ChangeLog 10 Aug 2013 09:48:06 -0000 1.17 @@ -1,6 +1,11 @@ # ChangeLog for dev-python/pycountry # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-python/pycountry/ChangeLog,v 1.16 2013/07/21 09:13:10 radhermit Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-python/pycountry/ChangeLog,v 1.17 2013/08/10 09:48:06 patrick Exp $ + +*pycountry-0.18 (10 Aug 2013) + + 10 Aug 2013; Patrick Lauer +pycountry-0.18.ebuild: + Bump *pycountry-0.17 (21 Jul 2013) 1.1 dev-python/pycountry/pycountry-0.18.ebuild file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/pycountry/pycountry-0.18.ebuild?rev=1.1&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/pycountry/pycountry-0.18.ebuild?rev=1.1&content-type=text/plain Index: pycountry-0.18.ebuild =================================================================== # Copyright 1999-2013 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Header: /var/cvsroot/gentoo-x86/dev-python/pycountry/pycountry-0.18.ebuild,v 1.1 2013/08/10 09:48:06 patrick Exp $ EAPI=5 # pypy pennding actioning of bug filed upstream PYTHON_COMPAT=( python{2_6,2_7,3_3} ) inherit distutils-r1 DESCRIPTION="ISO country, subdivision, language, currency and script definitions and their translations" HOMEPAGE="http://pypi.python.org/pypi/pycountry" SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.zip" LICENSE="GPL-2" SLOT="0" KEYWORDS="~amd64 ~x86" IUSE="test" DEPEND="app-arch/unzip dev-python/setuptools[${PYTHON_USEDEP}] test? ( dev-python/pytest[${PYTHON_USEDEP}] )" DOCS=( HISTORY.txt README TODO.txt ) python_test() { # https://bitbucket.org/techtonik/pycountry/issue/8/test_locales-pycountry-015-pypy pushd "${BUILD_DIR}"/lib > /dev/null py.test ${PN}/tests/test_general.py || die }