diff options
author | D.M.D. Ljungmark <spider@gentoo.org> | 2003-12-14 22:38:13 +0000 |
---|---|---|
committer | D.M.D. Ljungmark <spider@gentoo.org> | 2003-12-14 22:38:13 +0000 |
commit | 8dfcdd234f479468703806ed95e566ccdc562a9f (patch) | |
tree | 60fcca6b92b397ab69340c7e327417d5fe3dcdaa /app-misc | |
parent | make stable on ppc (diff) | |
download | gentoo-2-8dfcdd234f479468703806ed95e566ccdc562a9f.tar.gz gentoo-2-8dfcdd234f479468703806ed95e566ccdc562a9f.tar.bz2 gentoo-2-8dfcdd234f479468703806ed95e566ccdc562a9f.zip |
QA: fixing chown user.group to user:group, bug #35127
Diffstat (limited to 'app-misc')
-rw-r--r-- | app-misc/gallery/ChangeLog | 5 | ||||
-rw-r--r-- | app-misc/gallery/Manifest | 6 | ||||
-rw-r--r-- | app-misc/gallery/gallery-1.4.1.ebuild | 6 |
3 files changed, 10 insertions, 7 deletions
diff --git a/app-misc/gallery/ChangeLog b/app-misc/gallery/ChangeLog index 944e6bb911f9..e1b0daf10fc4 100644 --- a/app-misc/gallery/ChangeLog +++ b/app-misc/gallery/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for app-misc/gallery # Copyright 2002-2003 Gentoo Technologies, Inc.; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/app-misc/gallery/ChangeLog,v 1.18 2003/12/14 03:46:23 gmsoft Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-misc/gallery/ChangeLog,v 1.19 2003/12/14 22:34:47 spider Exp $ + + 14 Dec 2003; <spider@gentoo.org> gallery-1.4.1.ebuild: + QA: fixing chown user.group user:group, bug #35127 14 Dec 2003; Guy Martin <gmsoft@gentoo.org> gallery-1.4.1.ebuild: Marked stable on hppa. diff --git a/app-misc/gallery/Manifest b/app-misc/gallery/Manifest index 2e06d130b2b8..97ba09afc1ad 100644 --- a/app-misc/gallery/Manifest +++ b/app-misc/gallery/Manifest @@ -1,6 +1,6 @@ -MD5 f7643abf7d74fd9d5736d6f294daf879 ChangeLog 1982 -MD5 0bbfc73d4d29b984daeaebc4c5e89536 gallery-1.4.1.ebuild 1757 +MD5 d3c65c5f2dee2f3319869afa570fca1d ChangeLog 2093 MD5 7ade084ecabde894f7f88fb29e0eea08 gallery-1.4_p2.ebuild 2431 MD5 c339473e0ff43da76eb2f2607c441921 metadata.xml 280 -MD5 44ef29bfa9165ad28d6de638d9c64cb5 files/digest-gallery-1.4.1 65 +MD5 521a8e1e0fe82ab54e4d9cfc6423624f gallery-1.4.1.ebuild 1757 MD5 a9b8e52b9d14c6b3a74d3b71cb0dc038 files/digest-gallery-1.4_p2 68 +MD5 44ef29bfa9165ad28d6de638d9c64cb5 files/digest-gallery-1.4.1 65 diff --git a/app-misc/gallery/gallery-1.4.1.ebuild b/app-misc/gallery/gallery-1.4.1.ebuild index efa52ca43edb..8decff81b9f1 100644 --- a/app-misc/gallery/gallery-1.4.1.ebuild +++ b/app-misc/gallery/gallery-1.4.1.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2003 Gentoo Technologies, Inc. # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/app-misc/gallery/gallery-1.4.1.ebuild,v 1.4 2003/12/14 00:54:46 gmsoft Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-misc/gallery/gallery-1.4.1.ebuild,v 1.5 2003/12/14 22:34:47 spider Exp $ inherit webapp-apache @@ -47,8 +47,8 @@ src_install() { pkg_postinst() { local DocumentRoot=${HTTPD_ROOT} local destdir=${DocumentRoot}/${PN} -# chown -R apache.apache ${DST_PATH} - chown root.root ${destdir}/secure.sh ${destdir}/configure.sh +# chown -R apache:apache ${DST_PATH} + chown root:root ${destdir}/secure.sh ${destdir}/configure.sh chmod 700 ${destdir}/secure.sh ${destdir}/configure.sh einfo |