diff options
author | Marcus D. Hanwell <cryos@gentoo.org> | 2005-08-24 12:03:18 +0000 |
---|---|---|
committer | Marcus D. Hanwell <cryos@gentoo.org> | 2005-08-24 12:03:18 +0000 |
commit | 7a8ff724aaac0224eb993b94e2f75dd5a22bff81 (patch) | |
tree | cfe9a496cb1c20c26b0bc410de76e50baff2e9cc /sci-misc | |
parent | Removed old ebuilds. (diff) | |
download | historical-7a8ff724aaac0224eb993b94e2f75dd5a22bff81.tar.gz historical-7a8ff724aaac0224eb993b94e2f75dd5a22bff81.tar.bz2 historical-7a8ff724aaac0224eb993b94e2f75dd5a22bff81.zip |
Fixed the chown call to comply with bug 103563.
Package-Manager: portage-2.0.51.22-r2
Diffstat (limited to 'sci-misc')
-rw-r--r-- | sci-misc/qcad-parts/ChangeLog | 8 | ||||
-rw-r--r-- | sci-misc/qcad-parts/Manifest | 12 | ||||
-rw-r--r-- | sci-misc/qcad-parts/qcad-parts-2.0.1.2.ebuild | 6 |
3 files changed, 15 insertions, 11 deletions
diff --git a/sci-misc/qcad-parts/ChangeLog b/sci-misc/qcad-parts/ChangeLog index f7ab809c2d15..1375b6a89a82 100644 --- a/sci-misc/qcad-parts/ChangeLog +++ b/sci-misc/qcad-parts/ChangeLog @@ -1,6 +1,10 @@ # ChangeLog for sci-misc/qcad-parts -# Copyright 2000-2004 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/sci-misc/qcad-parts/ChangeLog,v 1.2 2004/12/28 03:45:25 swegener Exp $ +# Copyright 2000-2005 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/sci-misc/qcad-parts/ChangeLog,v 1.3 2005/08/24 12:03:18 cryos Exp $ + + 24 Aug 2005; Marcus D. Hanwell <marcus@gentoo.org> + qcad-parts-2.0.1.2.ebuild: + Fixed the chown call to comply with bug 103563. *qcad-parts-2.0.1.2 (27 Dec 2004) diff --git a/sci-misc/qcad-parts/Manifest b/sci-misc/qcad-parts/Manifest index e442860b9e6b..8d44d8ae8dbe 100644 --- a/sci-misc/qcad-parts/Manifest +++ b/sci-misc/qcad-parts/Manifest @@ -1,14 +1,14 @@ -----BEGIN PGP SIGNED MESSAGE----- Hash: SHA1 -MD5 d9e3e11f952a1c8bd30f275fdd8005bb qcad-parts-2.0.1.2.ebuild 1464 -MD5 cca52c73d3fdf4be5bfffaf7ad01bee4 ChangeLog 982 +MD5 571a2721f4dad5b92e7994a0edfec3e1 qcad-parts-2.0.1.2.ebuild 1458 +MD5 f6f494209e68ceaf2e40a35cdc44c9e8 ChangeLog 1112 MD5 8c623e53daafa025137077c6b65815bd metadata.xml 156 MD5 0c1db012ad805f07e316ba39b5fa0c22 files/digest-qcad-parts-2.0.1.2 72 -----BEGIN PGP SIGNATURE----- -Version: GnuPG v1.9.10 (GNU/Linux) +Version: GnuPG v1.4.1 (GNU/Linux) -iD8DBQFB0NbbI1lqEGTUzyQRAr6mAJ4hqrKN7vMT4MNg+5rs0W8GNHB0iwCgygq4 -QtlVj3TJl9Nn5T7s6BSQ7C0= -=+Ewm +iD8DBQFDDGIcntT9W3vfTuoRAsRbAJ0YEaD6rgnaXqJFpyt8R7SRgjo+hwCgnIwd +lJkcHOU5oudpLbbQlcSrXL0= +=pQPz -----END PGP SIGNATURE----- diff --git a/sci-misc/qcad-parts/qcad-parts-2.0.1.2.ebuild b/sci-misc/qcad-parts/qcad-parts-2.0.1.2.ebuild index 1920e09f3fc0..5ed6d73b23c7 100644 --- a/sci-misc/qcad-parts/qcad-parts-2.0.1.2.ebuild +++ b/sci-misc/qcad-parts/qcad-parts-2.0.1.2.ebuild @@ -1,6 +1,6 @@ -# Copyright 1999-2004 Gentoo Foundation +# Copyright 1999-2005 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/sci-misc/qcad-parts/qcad-parts-2.0.1.2.ebuild,v 1.1 2004/12/27 21:26:15 ribosome Exp $ +# $Header: /var/cvsroot/gentoo-x86/sci-misc/qcad-parts/qcad-parts-2.0.1.2.ebuild,v 1.2 2005/08/24 12:03:18 cryos Exp $ MY_PN="partlibrary" MY_PV="${PV}-1" @@ -33,7 +33,7 @@ src_install() { mv partli*/* . rmdir partlib* einfo "Adjusting permissions..." - chown -R root:root . + chown -R root:0 . find . -type d -not -perm -005 | while read dir; do echo "Fixing directory $dir"; chmod ugo+rx $dir; done find . -type f -not -perm -004 | while read file; do |