diff options
author | Markos Chandras <hwoarang@gentoo.org> | 2012-03-24 11:01:33 +0000 |
---|---|---|
committer | Markos Chandras <hwoarang@gentoo.org> | 2012-03-24 11:01:33 +0000 |
commit | d6420c32a50b33d2185937bec7eff8666b304681 (patch) | |
tree | 10df5fdd6574f2f6f67ee908178aa0832546fe61 /Documentation | |
parent | [dev-libs/qjson] Remove ayoy from metadata. (diff) | |
download | qt-d6420c32a50b33d2185937bec7eff8666b304681.tar.gz qt-d6420c32a50b33d2185937bec7eff8666b304681.tar.bz2 qt-d6420c32a50b33d2185937bec7eff8666b304681.zip |
PyQt4/sip: Automatic version bump, remove old
Diffstat (limited to 'Documentation')
-rwxr-xr-x | 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 7c426302..f0528fe1 100755 --- a/Documentation/maintainers/bump-python-revisions +++ b/Documentation/maintainers/bump-python-revisions @@ -87,12 +87,12 @@ getrevisions(){ pushd ${OVERLAY}/dev-python/PyQt4/ >> /dev/null pyqt4_tomove=$(find '.' -type f -name "PyQt4-*_pre*.ebuild"|tail -1) pyqt4_revision=$(grep ^REVISION ${pyqt4_tomove}|sed "s:^REVISION=::") - PVER=$(echo ${pyqt4_tomove}|sed "s:PyQt4-\(.*\)_pre.*:\1:") + PVER=$(echo ${pyqt4_tomove/\.\//}|sed "s:PyQt4-\(.*\)_pre.*:\1:") popd >> /dev/null pushd ${OVERLAY}/dev-python/sip/ >> /dev/null sip_tomove=$(find '.' -type f -name "sip-*_pre*.ebuild"|tail -1) sip_revision=$(grep ^HG_REVISION ${sip_tomove}|sed "s:^HG_REVISION=::") - SVER=$(echo ${sip_tomove}|sed "s:sip-\(.*\)_pre.*:\1:") + SVER=$(echo ${sip_tomove/\.\//}|sed "s:sip-\(.*\)_pre.*:\1:") popd >> /dev/null einfo "Old Revisions: PyQt4: ${pyqt4_revision}, SIP: ${sip_revision}" |