summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTomas Chvatal <scarabeus@gentoo.org>2009-05-06 14:02:29 +0200
committerTomas Chvatal <scarabeus@gentoo.org>2009-05-06 14:08:12 +0200
commit9fcc0845e8c91f7475d32ac059c67408fb2fcba7 (patch)
treebdeabf5ed6bb6b403a4a7cf5c9e23751d77ee811
parent7257a2e3d53e0a48f72465ada9306fe9b27e6f7c (diff)
downloadkde-9fcc0845e8c91f7475d32ac059c67408fb2fcba7.tar.gz
kde-9fcc0845e8c91f7475d32ac059c67408fb2fcba7.tar.bz2
kde-9fcc0845e8c91f7475d32ac059c67408fb2fcba7.zip
Start working on git->cvs
-rwxr-xr-xDocumentation/maintainers/bump_new_revision.sh13
1 files changed, 13 insertions, 0 deletions
diff --git a/Documentation/maintainers/bump_new_revision.sh b/Documentation/maintainers/bump_new_revision.sh
index 5e2b5992fe8..32e1323ee31 100755
--- a/Documentation/maintainers/bump_new_revision.sh
+++ b/Documentation/maintainers/bump_new_revision.sh
@@ -145,6 +145,10 @@ help() {
echo "When diffing two versions for cmakelists"
echo "-v OLDVERSION -b NEWVERSION -p DIRECTORY_WHERE_ARE_TBZS -o OUTPUT_DIR"
echo "$0 -a diff -v 4.1.0 -b 4.1.1 -p \"/usr/portage/distfiles\" -o /tmp"
+ echo
+ echo "When moving kde from overlay to the main tree"
+ echo "-v VERSION"
+ echo "$0 -a cvsmove -v 4.2.4"
exit 0
}
###############################################################################
@@ -189,6 +193,9 @@ case ${OPERATION} in
[[ -z "${VERSION}" || -z "${BUMP_VERSION}" || -z "${DIR}" || -z "${OUTPUT_DIR}" ]] && \
help
;;
+ cvsmove)
+ [[ -z "${VERSION}" ]] && help
+ ;;
*)
help
;;
@@ -283,6 +290,12 @@ case ${OPERATION} in
;;
slot) add_new_sloted_version ;;
diff) check_cmakelists ;;
+ cvsmove)
+ # course of action we are doing here
+ # cvs up whole tree, then kde-base
+ # then start going per each dir
+ # cvs up, move the ebuild, its patches if needed, run echangelog, run keywords check, manifest, commit
+ ;;
*) help ;;
esac
###############################################################################