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 | 2773374d35049c4e859a0fdc64ed018a2fa65149 (patch) | |
tree | a0945a918fc14eedb70d60876f6767c4e3a8d531 /dev-python/python-docs | |
parent | Docs for 2.2.2 (diff) | |
download | gentoo-2-2773374d35049c4e859a0fdc64ed018a2fa65149.tar.gz gentoo-2-2773374d35049c4e859a0fdc64ed018a2fa65149.tar.bz2 gentoo-2-2773374d35049c4e859a0fdc64ed018a2fa65149.zip |
Removed the chmod statements, since they don't seem to be needed.
Diffstat (limited to 'dev-python/python-docs')
-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 } |