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 4192F1381F3 for ; Thu, 29 Nov 2012 06:32:05 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id D7300E0602; Thu, 29 Nov 2012 06:31:54 +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 3FB44E0602 for ; Thu, 29 Nov 2012 06:31:54 +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 2F7F533DA91 for ; Thu, 29 Nov 2012 06:31:53 +0000 (UTC) Received: by flycatcher.gentoo.org (Postfix, from userid 807) id E837320C65; Thu, 29 Nov 2012 06:31:51 +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/pyinotify: pyinotify-0.9.4.ebuild ChangeLog X-VCS-Repository: gentoo-x86 X-VCS-Files: pyinotify-0.9.4.ebuild ChangeLog X-VCS-Directories: dev-python/pyinotify X-VCS-Committer: patrick X-VCS-Committer-Name: Patrick Lauer Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit Message-Id: <20121129063151.E837320C65@flycatcher.gentoo.org> Date: Thu, 29 Nov 2012 06:31:51 +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: 706c6568-0631-4012-9a71-a60bdf7e15c5 X-Archives-Hash: d8213ac93a34438a1715d54e4a7518b2 patrick 12/11/29 06:31:51 Modified: ChangeLog Added: pyinotify-0.9.4.ebuild Log: Bump (Portage version: 2.2.0_alpha142/cvs/Linux x86_64, unsigned Manifest commit) Revision Changes Path 1.48 dev-python/pyinotify/ChangeLog file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/pyinotify/ChangeLog?rev=1.48&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/pyinotify/ChangeLog?rev=1.48&content-type=text/plain diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/pyinotify/ChangeLog?r1=1.47&r2=1.48 Index: ChangeLog =================================================================== RCS file: /var/cvsroot/gentoo-x86/dev-python/pyinotify/ChangeLog,v retrieving revision 1.47 retrieving revision 1.48 diff -u -r1.47 -r1.48 --- ChangeLog 7 Feb 2012 23:09:38 -0000 1.47 +++ ChangeLog 29 Nov 2012 06:31:51 -0000 1.48 @@ -1,6 +1,11 @@ # ChangeLog for dev-python/pyinotify # Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-python/pyinotify/ChangeLog,v 1.47 2012/02/07 23:09:38 floppym Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-python/pyinotify/ChangeLog,v 1.48 2012/11/29 06:31:51 patrick Exp $ + +*pyinotify-0.9.4 (29 Nov 2012) + + 29 Nov 2012; Patrick Lauer +pyinotify-0.9.4.ebuild: + Bump 07 Feb 2012; Mike Gilbert pyinotify-0.9.2.ebuild, pyinotify-0.9.3.ebuild: @@ -175,4 +180,3 @@ +pyinotify-0.6.3.ebuild: Initial import, bug 125960. Slightly updated ebuild from Panard - 1.1 dev-python/pyinotify/pyinotify-0.9.4.ebuild file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/pyinotify/pyinotify-0.9.4.ebuild?rev=1.1&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/pyinotify/pyinotify-0.9.4.ebuild?rev=1.1&content-type=text/plain Index: pyinotify-0.9.4.ebuild =================================================================== # Copyright 1999-2012 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Header: /var/cvsroot/gentoo-x86/dev-python/pyinotify/pyinotify-0.9.4.ebuild,v 1.1 2012/11/29 06:31:51 patrick Exp $ EAPI="3" PYTHON_DEPEND="*:2.5" SUPPORT_PYTHON_ABIS="1" RESTRICT_PYTHON_ABIS="2.4 *-jython" inherit distutils DESCRIPTION="Python module used for monitoring filesystems events" HOMEPAGE="http://trac.dbzteam.org/pyinotify http://pypi.python.org/pypi/pyinotify" SRC_URI="http://seb.dbzteam.org/pub/pyinotify/releases/${P}.tar.gz" LICENSE="MIT" SLOT="0" KEYWORDS="~amd64 ~ppc ~x86 ~amd64-linux ~x86-linux" IUSE="examples" DEPEND="dev-python/setuptools" RDEPEND="" PYTHON_MODNAME="pyinotify.py" src_install() { distutils_src_install if use examples; then insinto /usr/share/doc/${PF}/examples doins python2/examples/* || die "Installation of examples failed" fi }