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 93788138220 for ; Tue, 1 Jan 2013 14:17:44 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 951C8E06FC; Tue, 1 Jan 2013 14:17:37 +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 19DD4E06FC for ; Tue, 1 Jan 2013 14:17:37 +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 2A1AE33D99D for ; Tue, 1 Jan 2013 14:17:36 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by hornbill.gentoo.org (Postfix) with ESMTP id 850C4E5439 for ; Tue, 1 Jan 2013 14:17:33 +0000 (UTC) From: "Agostino Sarubbo" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Agostino Sarubbo" Message-ID: <1357049821.8c309d46b620636b1f6798604bbe88776a438e12.ago@gentoo> Subject: [gentoo-commits] dev/ago:master commit in: script/ X-VCS-Repository: dev/ago X-VCS-Files: script/batch-pretend.py X-VCS-Directories: script/ X-VCS-Committer: ago X-VCS-Committer-Name: Agostino Sarubbo X-VCS-Revision: 8c309d46b620636b1f6798604bbe88776a438e12 X-VCS-Branch: master Date: Tue, 1 Jan 2013 14:17: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: e781cd65-24af-472d-9f24-b784480def5c X-Archives-Hash: da74fe02c3daaff849653eb953922512 commit: 8c309d46b620636b1f6798604bbe88776a438e12 Author: Agostino Sarubbo gentoo org> AuthorDate: Tue Jan 1 14:17:01 2013 +0000 Commit: Agostino Sarubbo gentoo org> CommitDate: Tue Jan 1 14:17:01 2013 +0000 URL: http://git.overlays.gentoo.org/gitweb/?p=dev/ago.git;a=commit;h=8c309d46 remove 'cvs up' part since it was recommented to run cvs up in gentoo-x86 --- script/batch-pretend.py | 11 ----------- 1 files changed, 0 insertions(+), 11 deletions(-) diff --git a/script/batch-pretend.py b/script/batch-pretend.py index cef8021..5e45453 100755 --- a/script/batch-pretend.py +++ b/script/batch-pretend.py @@ -130,17 +130,6 @@ if __name__ == "__main__": cvs_path = os.path.join(options.repo, pn) print_and_log('Working in %s...' % cvs_path, log_file) - # Remove whole directory to prevent problems with conflicts. - if os.path.exists(cvs_path): - try: - shutil.rmtree(cvs_path) - except OSError: - print '!!! rmtree %s failed' % cvs_path - sys.exit(1) - - if run_command(["cvs", "up", pn], options.repo, log_file)[0] != 0: - print '!!! cvs up failed' - sys.exit(1) if run_command(["ekeyword", options.arch, ebuild_name], cvs_path, log_file)[0] != 0: print '!!! ekeyword failed' sys.exit(1)