diff options
author | Ali Polatel <hawking@gentoo.org> | 2008-08-19 09:25:27 +0000 |
---|---|---|
committer | Ali Polatel <hawking@gentoo.org> | 2008-08-19 09:25:27 +0000 |
commit | 8317e9c07bc474c5569cc72de182d19b111afca5 (patch) | |
tree | 83ffced016e725a2be0f83393ab1acc0c4f166f3 /dev-python | |
parent | Version bump, bug #216458, thank Tim Harder and Nico Schlömer for report. (diff) | |
download | gentoo-2-8317e9c07bc474c5569cc72de182d19b111afca5.tar.gz gentoo-2-8317e9c07bc474c5569cc72de182d19b111afca5.tar.bz2 gentoo-2-8317e9c07bc474c5569cc72de182d19b111afca5.zip |
Use cp -pPR instead of cp -a, #235057, thanks to Michael A. Smith.
(Portage version: -svn.wrabbit)
Diffstat (limited to 'dev-python')
-rw-r--r-- | dev-python/django/ChangeLog | 5 | ||||
-rw-r--r-- | dev-python/django/django-0.96.2.ebuild | 10 |
2 files changed, 9 insertions, 6 deletions
diff --git a/dev-python/django/ChangeLog b/dev-python/django/ChangeLog index 523efb92405a..6752746007fa 100644 --- a/dev-python/django/ChangeLog +++ b/dev-python/django/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for dev-python/django # Copyright 1999-2008 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-python/django/ChangeLog,v 1.23 2008/06/07 12:51:16 dev-zero Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-python/django/ChangeLog,v 1.24 2008/08/19 09:25:27 hawking Exp $ + + 19 Aug 2008; Ali Polatel <hawking@gentoo.org> django-0.96.2.ebuild: + Use cp -pPR instead of cp -a, #235057, thanks to Michael A. Smith. *django-9999 (07 Jun 2008) diff --git a/dev-python/django/django-0.96.2.ebuild b/dev-python/django/django-0.96.2.ebuild index 2c650593f78c..06f762f13e55 100644 --- a/dev-python/django/django-0.96.2.ebuild +++ b/dev-python/django/django-0.96.2.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2008 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/dev-python/django/django-0.96.2.ebuild,v 1.1 2008/05/26 18:15:28 nelchael Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-python/django/django-0.96.2.ebuild,v 1.2 2008/08/19 09:25:27 hawking Exp $ inherit bash-completion distutils eutils versionator @@ -41,10 +41,10 @@ src_unpack() { # Those directories are missing from 0.96.2, so we copy them over from # Django-${EXTRAS_VERSION}: - cp -a "${WORKDIR}/Django-${EXTRAS_VERSION}/examples" "${S}/" || die - cp -a "${WORKDIR}/Django-${EXTRAS_VERSION}/extras" "${S}/" || die - cp -a "${WORKDIR}/Django-${EXTRAS_VERSION}/tests" "${S}/" || die - cp -a "${WORKDIR}/Django-${EXTRAS_VERSION}/django/contrib/formtools/templates" \ + cp -pPR "${WORKDIR}/Django-${EXTRAS_VERSION}/examples" "${S}/" || die + cp -pPR "${WORKDIR}/Django-${EXTRAS_VERSION}/extras" "${S}/" || die + cp -pPR "${WORKDIR}/Django-${EXTRAS_VERSION}/tests" "${S}/" || die + cp -pPR "${WORKDIR}/Django-${EXTRAS_VERSION}/django/contrib/formtools/templates" \ "${S}/django/contrib/formtools/" || die } |