public inbox for gentoo-portage-dev@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-portage-dev] Stable Commits
@ 2005-09-01 14:40 Jason Stubbs
  0 siblings, 0 replies; only message in thread
From: Jason Stubbs @ 2005-09-01 14:40 UTC (permalink / raw
  To: gentoo-portage-dev


[-- Attachment #1.1: Type: text/plain, Size: 842 bytes --]

Better late than never...

COMMITS
-------
68928-spawn-command-isabs-zmedico.patch
98727_sleep_locale_cleanup.patch
98827_lchown_normal_files.patch
98827_darwin_noop_lchown.patch
99101_ccache_perms_adjust.patch
99120_uid_gid_mixup.patch
99418_merge_retcode_ignored.patch
100382_incomplete_world.patch
broken-stat-perms.patch (attached: new, but very necessary)

DROPPED
-------
99527_skip_config_logging.patch

DEFERRED
--------
83379-copy-optimization-zmedico.patch
99616_overridable_lchown_lchgrp.patch


Looking over the Zac's copy-optimization patch, I think it'd be right to go 
in at the same time as the EAPI compatibility stuff. The EAPI stuff will 
need a bit of ~arch time...

With the lchown/lchgrp bit, the only issue was to define the default as per 
the GNU userland, correct?

-- 
Jason Stubbs

[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #1.2: broken-stat-perms.patch --]
[-- Type: text/x-diff; charset="us-ascii"; name="broken-stat-perms.patch", Size: 1321 bytes --]

Index: ebuild.sh
===================================================================
--- ebuild.sh	(リビジョン 1959)
+++ ebuild.sh	(作業コピー)
@@ -1129,10 +1129,12 @@
 	local count=0
 	find "${D}/" -user  portage | while read file; do
 		count=$(( $count + 1 ))
-		[[ ! -L "${file}" ]] && s=$(stat_perms "$file")
-		if [ -z "${s}" ]; then
-			ewarn "failed stat_perm'ing $file.  User intervention during install isn't wise..."
-			continue
+		if [ ! -L "${file}" ]; then
+			s=$(stat_perms "$file")
+			if [ -z "${s}" ]; then
+				ewarn "failed stat_perm'ing $file.  User intervention during install isn't wise..."
+				continue
+			fi
 		fi
 		chown root "$file"
 		[[ ! -L "${file}" ]] && chmod "$s" "$file"
@@ -1144,10 +1146,12 @@
 	count=0
 	find "${D}/" -group portage | while read file; do
 		count=$(( $count + 1 ))
-		[[ ! -L "${file}" ]] && s=$(stat_perms "$file")
-		if [ -z "${s}" ]; then
-			echo "failed stat_perm'ing '$file' . User intervention during install isn't wise..."
-			continue
+		if [ ! -L "${file}" ]; then
+			s=$(stat_perms "$file")
+			if [ -z "${s}" ]; then
+				echo "failed stat_perm'ing '$file' . User intervention during install isn't wise..."
+				continue
+			fi
 		fi
 		chgrp 0 "${file}"
 		[[ ! -L "${file}" ]] && chmod "$s" "$file"

[-- Attachment #2: Type: application/pgp-signature, Size: 189 bytes --]

^ permalink raw reply	[flat|nested] only message in thread

only message in thread, other threads:[~2005-09-01 14:40 UTC | newest]

Thread overview: (only message) (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2005-09-01 14:40 [gentoo-portage-dev] Stable Commits Jason Stubbs

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox