From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from pigeon.gentoo.org ([208.92.234.80] helo=lists.gentoo.org) by finch.gentoo.org with esmtp (Exim 4.60) (envelope-from ) id 1PnpTD-0001YW-6D for garchives@archives.gentoo.org; Fri, 11 Feb 2011 09:39:20 +0000 Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id ACED9E094F; Fri, 11 Feb 2011 09:39:11 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) by pigeon.gentoo.org (Postfix) with ESMTP id 7CF73E094F for ; Fri, 11 Feb 2011 09:39:11 +0000 (UTC) Received: from pelican.gentoo.org (unknown [66.219.59.40]) (using TLSv1 with cipher ADH-CAMELLIA256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id E3D0B1B4041 for ; Fri, 11 Feb 2011 09:39:10 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by pelican.gentoo.org (Postfix) with ESMTP id 577F58006A for ; Fri, 11 Feb 2011 09:39:10 +0000 (UTC) From: "Dennis Schridde" To: gentoo-commits@lists.gentoo.org Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Dennis Schridde" Message-ID: Subject: [gentoo-commits] proj/kde:master commit in: Documentation/ X-VCS-Repository: proj/kde X-VCS-Files: Documentation/metadata-mirror-update.sh X-VCS-Directories: Documentation/ X-VCS-Committer: devurandom X-VCS-Committer-Name: Dennis Schridde X-VCS-Revision: c5f6b96ea5009b70419a2d98ded204a353790b80 Date: Fri, 11 Feb 2011 09:39:10 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: quoted-printable X-Archives-Salt: X-Archives-Hash: 8826097069dae96c4d6831c14c3997fd commit: c5f6b96ea5009b70419a2d98ded204a353790b80 Author: Dennis Schridde gmx net> AuthorDate: Fri Feb 11 09:38:41 2011 +0000 Commit: Dennis Schridde gmx net> CommitDate: Fri Feb 11 09:38:41 2011 +0000 URL: http://git.overlays.gentoo.org/gitweb/?p=3Dproj/kde.git;a=3Dc= ommit;h=3Dc5f6b96e [Documentation/metadata-mirror-update.sh] Exchange config-file-editing ha= ck against pure commandline variant --- Documentation/metadata-mirror-update.sh | 6 +----- 1 files changed, 1 insertions(+), 5 deletions(-) diff --git a/Documentation/metadata-mirror-update.sh b/Documentation/meta= data-mirror-update.sh index 74f83e3..fc2b7b7 100755 --- a/Documentation/metadata-mirror-update.sh +++ b/Documentation/metadata-mirror-update.sh @@ -38,11 +38,7 @@ cd $METADATA_MIRROR_DIR/$overlay/repo || cd "failed to= cd to $METADATA_MIRROR_DI =20 case "$type" in svn) - if ! grep "^use-commit-times =3D yes" $HOME/.subversion/config ; then - mkdir -p $HOME/.subversion - echo -e "[miscellany]\nuse-commit-times =3D yes" >> $HOME/.subversion= /config || die 'enabling file time preservation failed' - fi - svn cleanup && svn update --force || die 'svn update failed' + svn cleanup && svn update --force --config-option=3Dconfig:miscellany:= use-commit-times=3Dyes || die 'svn update failed' ;; git) git pull || die 'git update failed'