public inbox for gentoo-portage-dev@lists.gentoo.org
 help / color / mirror / Atom feed
From: Jason Stubbs <jstubbs@gentoo.org>
To: gentoo-portage-dev@lists.gentoo.org
Subject: [gentoo-portage-dev] Stable Commits
Date: Thu, 1 Sep 2005 23:40:37 +0900	[thread overview]
Message-ID: <200509012340.40159.jstubbs@gentoo.org> (raw)


[-- 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 --]

                 reply	other threads:[~2005-09-01 14:40 UTC|newest]

Thread overview: [no followups] expand[flat|nested]  mbox.gz  Atom feed

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=200509012340.40159.jstubbs@gentoo.org \
    --to=jstubbs@gentoo.org \
    --cc=gentoo-portage-dev@lists.gentoo.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox