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 577DA1381FA for ; Sat, 3 May 2014 08:18:24 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id DD5DAE0A40; Sat, 3 May 2014 08:18:23 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 79068E0A40 for ; Sat, 3 May 2014 08:18:23 +0000 (UTC) Received: from flycatcher.gentoo.org (flycatcher.gentoo.org [81.93.255.6]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id A8DD6340345 for ; Sat, 3 May 2014 08:18:22 +0000 (UTC) Received: by flycatcher.gentoo.org (Postfix, from userid 807) id 63A462004C; Sat, 3 May 2014 08:18:21 +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/isodate: isodate-0.5.0.ebuild ChangeLog X-VCS-Repository: gentoo-x86 X-VCS-Files: isodate-0.5.0.ebuild ChangeLog X-VCS-Directories: dev-python/isodate X-VCS-Committer: patrick X-VCS-Committer-Name: Patrick Lauer Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit Message-Id: <20140503081821.63A462004C@flycatcher.gentoo.org> Date: Sat, 3 May 2014 08:18:21 +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: ca01c837-6a62-407d-908c-33c664845bd3 X-Archives-Hash: c704dcb10c89f3c3631abc56cbb5f098 patrick 14/05/03 08:18:21 Modified: ChangeLog Added: isodate-0.5.0.ebuild Log: Bump (Portage version: 2.2.10/cvs/Linux x86_64, unsigned Manifest commit) Revision Changes Path 1.25 dev-python/isodate/ChangeLog file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/isodate/ChangeLog?rev=1.25&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/isodate/ChangeLog?rev=1.25&content-type=text/plain diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/isodate/ChangeLog?r1=1.24&r2=1.25 Index: ChangeLog =================================================================== RCS file: /var/cvsroot/gentoo-x86/dev-python/isodate/ChangeLog,v retrieving revision 1.24 retrieving revision 1.25 diff -u -r1.24 -r1.25 --- ChangeLog 31 Mar 2014 21:22:10 -0000 1.24 +++ ChangeLog 3 May 2014 08:18:21 -0000 1.25 @@ -1,6 +1,11 @@ # ChangeLog for dev-python/isodate # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-python/isodate/ChangeLog,v 1.24 2014/03/31 21:22:10 mgorny Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-python/isodate/ChangeLog,v 1.25 2014/05/03 08:18:21 patrick Exp $ + +*isodate-0.5.0 (03 May 2014) + + 03 May 2014; Patrick Lauer +isodate-0.5.0.ebuild: + Bump 31 Mar 2014; Michał Górny isodate-0.4.9-r1.ebuild: Add support for the new PyPy slotting. 1.1 dev-python/isodate/isodate-0.5.0.ebuild file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/isodate/isodate-0.5.0.ebuild?rev=1.1&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/isodate/isodate-0.5.0.ebuild?rev=1.1&content-type=text/plain Index: isodate-0.5.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/isodate/isodate-0.5.0.ebuild,v 1.1 2014/05/03 08:18:21 patrick Exp $ EAPI=5 PYTHON_COMPAT=( python{2_6,2_7,3_2,3_3} pypy pypy2_0 ) inherit distutils-r1 DESCRIPTION="ISO 8601 date/time/duration parser and formater" HOMEPAGE="http://pypi.python.org/pypi/isodate" SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz" LICENSE="BSD" SLOT="0" KEYWORDS="~alpha ~amd64 ~arm ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~amd64-linux ~x86-linux" IUSE="" DEPEND="dev-python/setuptools[${PYTHON_USEDEP}]" DOCS=( CHANGES.txt README.rst TODO.txt ) python_test() { local test pushd "${BUILD_DIR}"/lib/ for test in ${PN}/tests/test_*.py do if ! "${PYTHON}" $test; then die "Test $test failed under ${EPYTHON}" fi done # Give some order to the output salad einfo "Testsuite passed under ${EPYTHON}";einfo "" }