Gentoo Archives: gentoo-commits

From: Markos Chandras <hwoarang@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] proj/qt:qt-move commit in: Documentation/maintainers/
Date: Tue, 26 Feb 2013 20:38:05
Message-Id: 1361911057.259e7ee127284b60ee56ea2337c48b3a54f0c8ea.hwoarang@gentoo
1 commit: 259e7ee127284b60ee56ea2337c48b3a54f0c8ea
2 Author: Markos Chandras <hwoarang <AT> gentoo <DOT> org>
3 AuthorDate: Tue Feb 26 20:37:37 2013 +0000
4 Commit: Markos Chandras <hwoarang <AT> gentoo <DOT> org>
5 CommitDate: Tue Feb 26 20:37:37 2013 +0000
6 URL: http://git.overlays.gentoo.org/gitweb/?p=proj/qt.git;a=commit;h=259e7ee1
7
8 move-qt-cat.sh: Add missing modules
9
10 ---
11 Documentation/maintainers/move-qt-cat.sh | 15 +++++++++++++--
12 1 files changed, 13 insertions(+), 2 deletions(-)
13
14 diff --git a/Documentation/maintainers/move-qt-cat.sh b/Documentation/maintainers/move-qt-cat.sh
15 index 2f2daed..e7fbfb3 100644
16 --- a/Documentation/maintainers/move-qt-cat.sh
17 +++ b/Documentation/maintainers/move-qt-cat.sh
18 @@ -33,13 +33,24 @@ fix_deps() {
19 [[ -n ${DEBUG_QT_MOVE} ]] && { echo "Checking package ${subcat} ..."; }
20 cvs up
21 for pkg in $(find . -maxdepth 1 -type f -name "*.ebuild"); do
22 - if grep -q "x11-libs/qt-assistant" "${pkg}" | cat; then
23 + if grep -q "x11-libs/qt-assistant" "${pkg}"; then
24 [[ -n ${DEBUG_QT_MOVE} ]] && echo "Fixing ${pkg}"
25 sed -i -e "s:x11-libs/qt-assistant:dev-qt/qthelp:" "${pkg}"
26 - elif grep -q "x11-libs/qt-qt3support" "${pkg}" | cat; then
27 + elif grep -q "x11-libs/qt-qt3support" "${pkg}"; then
28 [[ -n ${DEBUG_QT_MOVE} ]] && echo "Fixing ${pkg}"
29 sed -i -e "s:x11-libs/qt-qt3support:dev-qt/qt3support:" \
30 "${pkg}"
31 + elif grep -q "x11-libs/qt-meta" "${pkg}"; then
32 + [[ -n ${DEBUG_QT_MOVE} ]] && echo "Fixing ${pkg}"
33 + sed -i -e "s:x11-libs/qt-meta:dev-qt/qt-meta:" \
34 + "${pkg}"
35 + elif grep -q "x11-libs/qt-mobility" "${pkg}"; then
36 + [[ -n ${DEBUG_QT_MOVE} ]] && echo "Fixing ${pkg}"
37 + sed -i -e "s:x11-libs/qt-mobility:dev-qt/qt-mobility:" \
38 + "${pkg}"
39 + elif grep -e "dev-util/qt-creator" "${pkg}"; then
40 + [[ -n ${DEBUG_QT_MOVE} ]] && echo "Fixing ${pkg}"
41 + sed -i -e "s:dev-util/qt-creator:dev-qt/qt-creator;" "${pkg}"
42 elif grep -q "x11-libs/qt-" "${pkg}" | cat; then
43 [[ -n ${DEBUG_QT_MOVE} ]] && echo "Fixing ${pkg}"
44 sed -i -e "s:x11-libs/qt-:dev-qt/qt:" "${pkg}"