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 19DAF138454 for ; Sun, 13 Jan 2013 12:52:26 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 9CC5EE05CF; Sun, 13 Jan 2013 12:52:25 +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 359C6E05CF for ; Sun, 13 Jan 2013 12:52:25 +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 3158033D969 for ; Sun, 13 Jan 2013 12:52:24 +0000 (UTC) Received: by flycatcher.gentoo.org (Postfix, from userid 2146) id EED4F2171D; Sun, 13 Jan 2013 12:52:22 +0000 (UTC) From: "Christian Faulhammer (fauli)" To: gentoo-commits@lists.gentoo.org Reply-To: gentoo-dev@lists.gentoo.org, fauli@gentoo.org Subject: [gentoo-commits] gentoo-x86 commit in dev-python/subunit: subunit-0.0.9.ebuild ChangeLog X-VCS-Repository: gentoo-x86 X-VCS-Files: subunit-0.0.9.ebuild ChangeLog X-VCS-Directories: dev-python/subunit X-VCS-Committer: fauli X-VCS-Committer-Name: Christian Faulhammer Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit Message-Id: <20130113125222.EED4F2171D@flycatcher.gentoo.org> Date: Sun, 13 Jan 2013 12:52:22 +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: 4b0bc031-d33b-464d-818f-9a007d34d349 X-Archives-Hash: ff59ca912eb2f2740b855395a1a1b8f2 fauli 13/01/13 12:52:22 Modified: ChangeLog Added: subunit-0.0.9.ebuild Log: version bump (Portage version: 2.1.11.31/cvs/Linux i686, signed Manifest commit with key 2B859DE3) Revision Changes Path 1.20 dev-python/subunit/ChangeLog file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/subunit/ChangeLog?rev=1.20&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/subunit/ChangeLog?rev=1.20&content-type=text/plain diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/subunit/ChangeLog?r1=1.19&r2=1.20 Index: ChangeLog =================================================================== RCS file: /var/cvsroot/gentoo-x86/dev-python/subunit/ChangeLog,v retrieving revision 1.19 retrieving revision 1.20 diff -u -r1.19 -r1.20 --- ChangeLog 28 Jul 2012 13:07:59 -0000 1.19 +++ ChangeLog 13 Jan 2013 12:52:22 -0000 1.20 @@ -1,6 +1,11 @@ # ChangeLog for dev-python/subunit -# Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-python/subunit/ChangeLog,v 1.19 2012/07/28 13:07:59 blueness Exp $ +# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/dev-python/subunit/ChangeLog,v 1.20 2013/01/13 12:52:22 fauli Exp $ + +*subunit-0.0.9 (13 Jan 2013) + + 13 Jan 2013; Christian Faulhammer +subunit-0.0.9.ebuild: + version bump 28 Jul 2012; Anthony G. Basile subunit-0.0.8.ebuild: Keyword ~mips, bug #428356 1.1 dev-python/subunit/subunit-0.0.9.ebuild file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/subunit/subunit-0.0.9.ebuild?rev=1.1&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/subunit/subunit-0.0.9.ebuild?rev=1.1&content-type=text/plain Index: subunit-0.0.9.ebuild =================================================================== # Copyright 1999-2013 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Header: /var/cvsroot/gentoo-x86/dev-python/subunit/subunit-0.0.9.ebuild,v 1.1 2013/01/13 12:52:22 fauli Exp $ EAPI="3" SUPPORT_PYTHON_ABIS="1" PYTHON_EXPORT_PHASE_FUNCTIONS="1" # Automake build does not genereate the correct value for site-packages # with pypy. RESTRICT_PYTHON_ABIS="*-pypy-*" inherit python DESCRIPTION="A streaming protocol for test results" HOMEPAGE="https://launchpad.net/subunit http://pypi.python.org/pypi/python-subunit" SRC_URI="http://launchpad.net/${PN}/trunk/${PV}/+download/${P}.tar.gz" LICENSE="Apache-2.0 BSD" SLOT="0" KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~amd64-fbsd ~x86-fbsd" IUSE="" RDEPEND=">=dev-python/testtools-0.9.23" DEPEND="${RDEPEND} dev-lang/perl dev-libs/check dev-util/cppunit virtual/pkgconfig" src_prepare() { python_clean_py-compile_files python_src_prepare } src_test() { testing() { python_convert_shebangs ${PYTHON_ABI} runtests.py || return emake check } python_execute_function -s testing } pkg_postinst() { python_mod_optimize subunit } pkg_postrm() { python_mod_cleanup subunit }