diff options
author | Arcady Genkin <agenkin@gentoo.org> | 2003-01-22 21:30:58 +0000 |
---|---|---|
committer | Arcady Genkin <agenkin@gentoo.org> | 2003-01-22 21:30:58 +0000 |
commit | aba174f1d3f5e19350636327521b44448d5cf84a (patch) | |
tree | 7e28219b8231d69235a03981c5045ee5d46cbf8b | |
parent | Docs for 2.2.2 (diff) | |
download | historical-aba174f1d3f5e19350636327521b44448d5cf84a.tar.gz historical-aba174f1d3f5e19350636327521b44448d5cf84a.tar.bz2 historical-aba174f1d3f5e19350636327521b44448d5cf84a.zip |
Removed the chmod statements, since they don't seem to be needed.
-rw-r--r-- | dev-python/python-docs/ChangeLog | 3 | ||||
-rw-r--r-- | dev-python/python-docs/python-docs-2.2.2.ebuild | 5 |
2 files changed, 3 insertions, 5 deletions
diff --git a/dev-python/python-docs/ChangeLog b/dev-python/python-docs/ChangeLog index 8d4e7d183753..7b4f007c814e 100644 --- a/dev-python/python-docs/ChangeLog +++ b/dev-python/python-docs/ChangeLog @@ -1,11 +1,12 @@ # ChangeLog for dev-python/python-docs # Copyright 2002 Gentoo Technologies, Inc.; Distributed under the GPL -# $Header: /var/cvsroot/gentoo-x86/dev-python/python-docs/ChangeLog,v 1.8 2003/01/22 21:23:50 agenkin Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-python/python-docs/ChangeLog,v 1.9 2003/01/22 21:30:58 agenkin Exp $ *python-docs-2.2.2 (22 Jan 2003) 22 Jan 2003; Arcady Genkin <agenkin@gentoo.org> : Updated to version 2.2.2. + Removed the chmod statements, as the portage takes care of the permissions. *python-docs-2.2.1-r1 (20 Dec 2002) diff --git a/dev-python/python-docs/python-docs-2.2.2.ebuild b/dev-python/python-docs/python-docs-2.2.2.ebuild index 7615e25cee33..0b779ce9c55b 100644 --- a/dev-python/python-docs/python-docs-2.2.2.ebuild +++ b/dev-python/python-docs/python-docs-2.2.2.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2002 Gentoo Technologies, Inc. # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/dev-python/python-docs/python-docs-2.2.2.ebuild,v 1.1 2003/01/22 21:23:50 agenkin Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-python/python-docs/python-docs-2.2.2.ebuild,v 1.2 2003/01/22 21:30:58 agenkin Exp $ S=${WORKDIR}/${P} DESCRIPTION="HTML documentation for Python" @@ -22,9 +22,6 @@ src_unpack() { src_install() { docinto html cp -R ${S}/* ${D}/usr/share/doc/${PF}/html - chown -R root.root ${D}/usr/share/doc/${PF}/html - find ${D}/usr/share/doc/${PF}/html -type d -exec chmod 0755 \{\} \; - find ${D}/usr/share/doc/${PF}/html -type f -exec chmod 0644 \{\} \; dodir /etc/env.d echo "PYTHONDOCS=/usr/share/doc/${PF}/html" > ${D}/etc/env.d/50python-docs } |