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 DFF71198005 for ; Thu, 28 Feb 2013 16:42:32 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 6431BE0521; Thu, 28 Feb 2013 16:42:31 +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 E709CE0521 for ; Thu, 28 Feb 2013 16:42:30 +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 D319633DC00 for ; Thu, 28 Feb 2013 16:42:29 +0000 (UTC) Received: by flycatcher.gentoo.org (Postfix, from userid 2279) id 4A7702171D; Thu, 28 Feb 2013 16:42:27 +0000 (UTC) From: "Michal Gorny (mgorny)" To: gentoo-commits@lists.gentoo.org Reply-To: gentoo-dev@lists.gentoo.org, mgorny@gentoo.org Subject: [gentoo-commits] gentoo-x86 commit in dev-python/notify-python: notify-python-0.1.1-r3.ebuild ChangeLog X-VCS-Repository: gentoo-x86 X-VCS-Files: notify-python-0.1.1-r3.ebuild ChangeLog X-VCS-Directories: dev-python/notify-python X-VCS-Committer: mgorny X-VCS-Committer-Name: Michal Gorny Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit Message-Id: <20130228164227.4A7702171D@flycatcher.gentoo.org> Date: Thu, 28 Feb 2013 16:42:27 +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: bec2a46e-563b-4dbe-9a43-8ae1fd094fe3 X-Archives-Hash: d654c6568644d5222a4506d764d528f7 mgorny 13/02/28 16:42:27 Modified: notify-python-0.1.1-r3.ebuild ChangeLog Log: Let autotools compile the bytecode. Fix compressing examples. Enable tests. (Portage version: 2.2.0_alpha163/cvs/Linux x86_64, signed Manifest commit with key 9627F456F9DA7643!) Revision Changes Path 1.2 dev-python/notify-python/notify-python-0.1.1-r3.ebuild file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/notify-python/notify-python-0.1.1-r3.ebuild?rev=1.2&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/notify-python/notify-python-0.1.1-r3.ebuild?rev=1.2&content-type=text/plain diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/notify-python/notify-python-0.1.1-r3.ebuild?r1=1.1&r2=1.2 Index: notify-python-0.1.1-r3.ebuild =================================================================== RCS file: /var/cvsroot/gentoo-x86/dev-python/notify-python/notify-python-0.1.1-r3.ebuild,v retrieving revision 1.1 retrieving revision 1.2 diff -u -r1.1 -r1.2 --- notify-python-0.1.1-r3.ebuild 20 Feb 2013 10:44:05 -0000 1.1 +++ notify-python-0.1.1-r3.ebuild 28 Feb 2013 16:42:27 -0000 1.2 @@ -1,6 +1,6 @@ # Copyright 1999-2013 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/dev-python/notify-python/notify-python-0.1.1-r3.ebuild,v 1.1 2013/02/20 10:44:05 jlec Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-python/notify-python/notify-python-0.1.1-r3.ebuild,v 1.2 2013/02/28 16:42:27 mgorny Exp $ EAPI=5 @@ -26,10 +26,6 @@ PATCHES=( "${FILESDIR}"/${P}-libnotify-0.7.patch ) src_prepare() { - # Disable byte-compilation. - rm -f py-compile || die - ln -s $(type -P true) py-compile || die - # Remove the old pynotify.c to ensure it's properly regenerated #212128. rm -f src/pynotify.c || die autotools-utils_src_prepare @@ -43,17 +39,18 @@ python_foreach_impl autotools-utils_src_compile } +src_test() { + python_foreach_impl autotools-utils_src_test +} + src_install() { - installation() { - autotools-utils_src_install - python_optimize "${D}"$(python_get_sitedir) - prune_libtool_files --all - } - python_foreach_impl installation + python_foreach_impl autotools-utils_src_install + prune_libtool_files --all # Requested from bug 351879. if use examples; then - insinto /usr/share/doc/${PF}/examples - doins tests/*.{png,py} + docinto examples + dodoc tests/*.{png,py} + docompress -x /usr/share/doc/${PF}/examples fi } 1.40 dev-python/notify-python/ChangeLog file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/notify-python/ChangeLog?rev=1.40&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/notify-python/ChangeLog?rev=1.40&content-type=text/plain diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/notify-python/ChangeLog?r1=1.39&r2=1.40 Index: ChangeLog =================================================================== RCS file: /var/cvsroot/gentoo-x86/dev-python/notify-python/ChangeLog,v retrieving revision 1.39 retrieving revision 1.40 diff -u -r1.39 -r1.40 --- ChangeLog 20 Feb 2013 10:44:05 -0000 1.39 +++ ChangeLog 28 Feb 2013 16:42:27 -0000 1.40 @@ -1,6 +1,9 @@ # ChangeLog for dev-python/notify-python # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-python/notify-python/ChangeLog,v 1.39 2013/02/20 10:44:05 jlec Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-python/notify-python/ChangeLog,v 1.40 2013/02/28 16:42:27 mgorny Exp $ + + 28 Feb 2013; Michał Górny notify-python-0.1.1-r3.ebuild: + Let autotools compile the bytecode. Fix compressing examples. Enable tests. *notify-python-0.1.1-r3 (20 Feb 2013)