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 AA8EF138200 for ; Tue, 16 Oct 2012 18:31:06 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 504FBE00B5; Tue, 16 Oct 2012 18:30:59 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) by pigeon.gentoo.org (Postfix) with ESMTP id BFF3EE00B5 for ; Tue, 16 Oct 2012 18:30:58 +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 3029B33D86F for ; Tue, 16 Oct 2012 18:30:58 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by hornbill.gentoo.org (Postfix) with ESMTP id D3B72E5441 for ; Tue, 16 Oct 2012 18:30:56 +0000 (UTC) From: "Markos Chandras" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Markos Chandras" Message-ID: <1350412001.9b505a00d48c50e0160f326c6d54527c8faf3735.hwoarang@gentoo> Subject: [gentoo-commits] proj/qt:master commit in: Documentation/maintainers/ X-VCS-Repository: proj/qt X-VCS-Files: Documentation/maintainers/bump-python-revisions X-VCS-Directories: Documentation/maintainers/ X-VCS-Committer: hwoarang X-VCS-Committer-Name: Markos Chandras X-VCS-Revision: 9b505a00d48c50e0160f326c6d54527c8faf3735 X-VCS-Branch: master Date: Tue, 16 Oct 2012 18:30:56 +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: a4d03efe-0593-4beb-95f1-b9871e59a938 X-Archives-Hash: 05eeb5ccfb716952c939a7cf97d7f2c5 commit: 9b505a00d48c50e0160f326c6d54527c8faf3735 Author: Markos Chandras gentoo org> AuthorDate: Tue Oct 16 18:26:41 2012 +0000 Commit: Markos Chandras gentoo org> CommitDate: Tue Oct 16 18:26:41 2012 +0000 URL: http://git.overlays.gentoo.org/gitweb/?p=proj/qt.git;a=commit;h=9b505a00 bump-python-revisions: Use integer for exit code --- Documentation/maintainers/bump-python-revisions | 4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Documentation/maintainers/bump-python-revisions b/Documentation/maintainers/bump-python-revisions index 298b065..6d20199 100755 --- a/Documentation/maintainers/bump-python-revisions +++ b/Documentation/maintainers/bump-python-revisions @@ -35,7 +35,7 @@ dosip() { pushd ${OVERLAY}/dev-python/sip/ tomove=$(find '.' -type f -name "sip-*_pre*.ebuild"|tail -1) einfo "Previous ebuild: ${tomove#./}" - mv ${tomove#./} sip-${new_sip_ver}_pre${DATE}.ebuild || exit "Failed to bump sip" + mv ${tomove#./} sip-${new_sip_ver}_pre${DATE}.ebuild || exit 1 git rm ${tomove} ebegin "Changing revision number to: ${new_sip_rev}" sed -i -e "/HG_REVISION=/s:=.*:=${new_sip_rev}:" sip-${new_sip_ver}_pre${DATE}.ebuild @@ -56,7 +56,7 @@ dopyqt4() { pushd ${OVERLAY}/dev-python/PyQt4/ tomove=$(find '.' -type f -name "PyQt4-*_pre*.ebuild"|tail -1) einfo "Previous ebuild: ${tomove#./}" - mv ${tomove#./} PyQt4-${new_pyqt4_ver}_pre${DATE}.ebuild || exit "Failed to bump PyQt4" + mv ${tomove#./} PyQt4-${new_pyqt4_ver}_pre${DATE}.ebuild || exit 1 git rm ${tomove} ebegin "Changing revision number to: ${new_pyqt4_rev}" sed -i "/^REVISION/s:=.*:=${new_pyqt4_rev}:" PyQt4-${new_pyqt4_ver}_pre${DATE}.ebuild