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 15676138B38 for ; Wed, 20 Feb 2013 10:44:10 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id BF236E05A4; Wed, 20 Feb 2013 10:44:08 +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 36A77E05A4 for ; Wed, 20 Feb 2013 10:44: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 1980033DF49 for ; Wed, 20 Feb 2013 10:44:07 +0000 (UTC) Received: by flycatcher.gentoo.org (Postfix, from userid 2264) id 91F082171D; Wed, 20 Feb 2013 10:44:05 +0000 (UTC) From: "Justin Lecher (jlec)" To: gentoo-commits@lists.gentoo.org Reply-To: gentoo-dev@lists.gentoo.org, jlec@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: jlec X-VCS-Committer-Name: Justin Lecher Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit Message-Id: <20130220104405.91F082171D@flycatcher.gentoo.org> Date: Wed, 20 Feb 2013 10:44:05 +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: d7249824-44f6-4610-a612-9fb374e00edf X-Archives-Hash: 813f2b9448083c12c0eb2a51e40de662 jlec 13/02/20 10:44:05 Modified: ChangeLog Added: notify-python-0.1.1-r3.ebuild Log: dev-python/notify-python: Move to new python eclasses (Portage version: 2.2.0_alpha163/cvs/Linux x86_64, signed Manifest commit with key 70EB7916) Revision Changes Path 1.39 dev-python/notify-python/ChangeLog file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/notify-python/ChangeLog?rev=1.39&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/notify-python/ChangeLog?rev=1.39&content-type=text/plain diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/notify-python/ChangeLog?r1=1.38&r2=1.39 Index: ChangeLog =================================================================== RCS file: /var/cvsroot/gentoo-x86/dev-python/notify-python/ChangeLog,v retrieving revision 1.38 retrieving revision 1.39 diff -u -r1.38 -r1.39 --- ChangeLog 13 Aug 2012 06:50:04 -0000 1.38 +++ ChangeLog 20 Feb 2013 10:44:05 -0000 1.39 @@ -1,6 +1,11 @@ # ChangeLog for dev-python/notify-python -# Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-python/notify-python/ChangeLog,v 1.38 2012/08/13 06:50:04 patrick Exp $ +# 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 $ + +*notify-python-0.1.1-r3 (20 Feb 2013) + + 20 Feb 2013; Justin Lecher +notify-python-0.1.1-r3.ebuild: + Move to new python eclasses 13 Aug 2012; Patrick Lauer notify-python-0.1.1-r2.ebuild: Restricting jython 1.1 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.1&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/notify-python/notify-python-0.1.1-r3.ebuild?rev=1.1&content-type=text/plain Index: notify-python-0.1.1-r3.ebuild =================================================================== # 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 $ EAPI=5 PYTHON_COMPAT=( python{2_6,2_7} ) inherit autotools-utils eutils python-r1 DESCRIPTION="Python bindings for libnotify" HOMEPAGE="http://www.galago-project.org/" SRC_URI="http://www.galago-project.org/files/releases/source/${PN}/${P}.tar.bz2" LICENSE="LGPL-2.1" SLOT="0" KEYWORDS="~alpha ~amd64 ~arm ~ia64 ~ppc ~ppc64 ~sh ~sparc ~x86 ~x86-fbsd" IUSE="examples" RDEPEND=" >=dev-python/pygtk-2.24:2[${PYTHON_USEDEP}] >=x11-libs/libnotify-0.7" DEPEND="${RDEPEND} virtual/pkgconfig" 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 } src_configure() { python_foreach_impl autotools-utils_src_configure } src_compile() { python_foreach_impl autotools-utils_src_compile } src_install() { installation() { autotools-utils_src_install python_optimize "${D}"$(python_get_sitedir) prune_libtool_files --all } python_foreach_impl installation # Requested from bug 351879. if use examples; then insinto /usr/share/doc/${PF}/examples doins tests/*.{png,py} fi }