From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from pigeon.gentoo.org ([208.92.234.80] helo=lists.gentoo.org) by finch.gentoo.org with esmtp (Exim 4.60) (envelope-from ) id 1Mx08P-0008KA-UZ for garchives@archives.gentoo.org; Sun, 11 Oct 2009 15:14:58 +0000 Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 4195EE078A; Sun, 11 Oct 2009 15:14:56 +0000 (UTC) Received: from smtprelay10.ispgateway.de (smtprelay10.ispgateway.de [80.67.29.24]) by pigeon.gentoo.org (Postfix) with ESMTP id F3967E078A for ; Sun, 11 Oct 2009 15:14:55 +0000 (UTC) Received: from [93.210.36.227] (helo=arkane.local) by smtprelay10.ispgateway.de with esmtpsa (TLSv1:AES256-SHA:256) (Exim 4.68) (envelope-from ) id 1Mx06K-0000OX-45 for gentoo-dev@lists.gentoo.org; Sun, 11 Oct 2009 17:12:48 +0200 Received: by arkane.local (Postfix, from userid 1000) id 327F996DD; Sun, 11 Oct 2009 17:14:29 +0200 (CEST) Date: Sun, 11 Oct 2009 17:14:29 +0200 From: Torsten Veller To: gentoo-dev@lists.gentoo.org Subject: [gentoo-dev] Re: gentoo-x86 commit in net-mail/getmail: ChangeLog getmail-4.9.2.ebuild Message-ID: <20091011171120.TA51e64.tv@veller.net> Mail-Followup-To: gentoo-dev@lists.gentoo.org References: Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-dev@lists.gentoo.org Reply-to: gentoo-dev@lists.gentoo.org MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: X-Face: ===_______=8)_=8)_______A_very_very_nice_face_______=8)_=8)_______=== Jabber-ID: tove@jabber.ccc.de X-PGP-Fingerprint: 0416 3C11 8D79 65B9 AAD0 2065 BBC7 14D1 9C67 CD96 User-Agent: Mutt/1.5.20 (2009-08-27) X-Df-Sender: 1067115 X-Archives-Salt: db89b472-992a-4aea-be78-e9be606a5682 X-Archives-Hash: 758286f029ef14926653400673917e3b * "Fabian Groffen (grobian)" : > grobian 09/10/11 15:04:33 > > Modified: ChangeLog getmail-4.9.2.ebuild > Log: > Use ED for Prefix compatability, marked ~ppc-macos and ~x64-solaris > (Portage version: 2.2.00.14552-prefix/cvs/Darwin powerpc, RepoMan options: --force) > > > file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-mail/getmail/getmail-4.9.2.ebuild?rev=1.2&view=markup > plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-mail/getmail/getmail-4.9.2.ebuild?rev=1.2&content-type=text/plain > diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-mail/getmail/getmail-4.9.2.ebuild?r1=1.1&r2=1.2 > > Index: getmail-4.9.2.ebuild > =================================================================== > RCS file: /var/cvsroot/gentoo-x86/net-mail/getmail/getmail-4.9.2.ebuild,v > retrieving revision 1.1 > retrieving revision 1.2 > diff -u -r1.1 -r1.2 > --- getmail-4.9.2.ebuild 23 Jul 2009 19:27:29 -0000 1.1 > +++ getmail-4.9.2.ebuild 11 Oct 2009 15:04:33 -0000 1.2 > @@ -1,6 +1,6 @@ > # Copyright 1999-2009 Gentoo Foundation > # Distributed under the terms of the GNU General Public License v2 > -# $Header: /var/cvsroot/gentoo-x86/net-mail/getmail/getmail-4.9.2.ebuild,v 1.1 2009/07/23 19:27:29 tove Exp $ > +# $Header: /var/cvsroot/gentoo-x86/net-mail/getmail/getmail-4.9.2.ebuild,v 1.2 2009/10/11 15:04:33 grobian Exp $ > > inherit distutils > > @@ -10,7 +10,7 @@ > > LICENSE="GPL-2" > SLOT="4" > -KEYWORDS="~alpha ~amd64 ~ppc ~sparc ~x86" > +KEYWORDS="~alpha ~amd64 ~ppc ~sparc ~x86 ~ppc-macos ~x64-solaris" > IUSE="" > > DEPEND=">=dev-lang/python-2.3.3" > @@ -19,14 +19,15 @@ > PYTHON_MODNAME=getmailcore > > src_install() { > + [[ -z ${ED} ]] && local ED=${D} > distutils_src_install > > # handle docs the gentoo way > - rm "${D}"/usr/share/doc/${P}/COPYING || die > + rm "${ED}"/usr/share/doc/${P}/COPYING || die > if [[ ${P} != ${PF} ]] ; then > - mv "${D}"/usr/share/doc/${P} "${D}"/usr/share/doc/${PF} || die > + mv "${ED}"/usr/share/doc/${P} "${ED}"/usr/share/doc/${PF} || die > fi > > dodir /usr/share/doc/${PF}/html > - mv "${D}"/usr/share/doc/${PF}/*.{html,css} "${D}"/usr/share/doc/${PF}/html || die > + mv "${ED}"/usr/share/doc/${PF}/*.{html,css} "${ED}"/usr/share/doc/${PF}/html || die > } Can you please explain these changes? What is ED? Why does it need changes in the ebuild at all? Where is the documentation?