From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) by finch.gentoo.org (Postfix) with ESMTP id E15AE1381F3 for ; Sat, 17 Aug 2013 19:13:36 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 75EC5E0ABB; Sat, 17 Aug 2013 19:13:36 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 0FC59E0ABB for ; Sat, 17 Aug 2013 19:13:35 +0000 (UTC) Received: from hornbill.gentoo.org (hornbill.gentoo.org [94.100.119.163]) (using TLSv1 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 21D2633E77E for ; Sat, 17 Aug 2013 19:13:35 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by hornbill.gentoo.org (Postfix) with ESMTP id A27D1E468F for ; Sat, 17 Aug 2013 19:13:33 +0000 (UTC) From: "Raúl Porcel" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Raúl Porcel" Message-ID: <1376766802.b7a016e9ca3f91441f76774a4ecebfb346f954b1.armin76@gentoo> Subject: [gentoo-commits] proj/releng:master commit in: scripts/ X-VCS-Repository: proj/releng X-VCS-Files: scripts/copy_buildsync.sh X-VCS-Directories: scripts/ X-VCS-Committer: armin76 X-VCS-Committer-Name: Raúl Porcel X-VCS-Revision: b7a016e9ca3f91441f76774a4ecebfb346f954b1 X-VCS-Branch: master Date: Sat, 17 Aug 2013 19:13:33 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Archives-Salt: a21e75a9-4e0d-4591-8a24-909a4e4567fd X-Archives-Hash: a11413dd94f839a0543be3ed0c92e6b2 commit: b7a016e9ca3f91441f76774a4ecebfb346f954b1 Author: Raúl Porcel gentoo org> AuthorDate: Sat Aug 17 19:13:22 2013 +0000 Commit: Raúl Porcel gentoo org> CommitDate: Sat Aug 17 19:13:22 2013 +0000 URL: http://git.overlays.gentoo.org/gitweb/?p=proj/releng.git;a=commit;h=b7a016e9 Do not use current-stage3 symlink on arm/hppa/s390/sh since releases are pushed with different datestamp and therefore current-stage3 only links to the latest that was pushed --- scripts/copy_buildsync.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/scripts/copy_buildsync.sh b/scripts/copy_buildsync.sh index 5c4ac37..39f7e19 100755 --- a/scripts/copy_buildsync.sh +++ b/scripts/copy_buildsync.sh @@ -78,9 +78,9 @@ for ARCH in $ARCHES; do # In the new variant preserve code there is a better way to do this #echo -e "${stage3_list}" |awk '{print $3}' |grep "$latest_stage3_date" >>${OUT_STAGE3} rm -f current-stage3 - # The "latest stage3" concept doesn't apply to the arm variants + # The "latest stage3" concept doesn't apply to the arm/hppa/s390/sh variants # that are pushed on different days of the week. - if [[ ! $(echo ${outdir} | grep arm) ]]; then + if [[ ! $(echo ${outdir} | egrep 'arm|hppa|ppc|s390|sh') ]]; then ln -sf "$latest_stage3_date" current-stage3 fi fi