summaryrefslogtreecommitdiff
path: root/Documentation
diff options
context:
space:
mode:
Diffstat (limited to 'Documentation')
-rw-r--r--Documentation/CODE2
-rw-r--r--Documentation/README2
-rwxr-xr-xDocumentation/maintainers/cvs_sent.sh18
3 files changed, 2 insertions, 20 deletions
diff --git a/Documentation/CODE b/Documentation/CODE
index 09e962a0c82..dce53a181a4 100644
--- a/Documentation/CODE
+++ b/Documentation/CODE
@@ -1,7 +1,7 @@
WHAT RULES I SHOULD FOLLOW WHEN I WANT TO WORK ON SOMETHING FOR KDE TEAM?
If you asked this question you are reading the right file.
-KDE4 (kde-testing) policies:
+KDE4 policies:
- NEVER EVER COMMIT NEW REVBUMPS NOR MAJOR CHANGES TO TREE DIRECTLY - ALWAYS USE overlay
first so that more pairs of eyes can spot issues. Especially anything in kde-base.
diff --git a/Documentation/README b/Documentation/README
index d4f18390d3f..7b226ee113a 100644
--- a/Documentation/README
+++ b/Documentation/README
@@ -15,7 +15,7 @@ ATTENTION perhaps your overlay path may vary
1. execute metadata-sync in the Documentation directory
2. edit /etc/eixrc:
-OVERRIDE_CACHE_METHOD="/usr/local/portage/layman/kde-testing metadata-assign"
+OVERRIDE_CACHE_METHOD="/usr/local/portage/layman/kde metadata-assign"
everytime you sync the overlay, you have to sync the metadata manually again, i dont have a proper solution for that atm
diff --git a/Documentation/maintainers/cvs_sent.sh b/Documentation/maintainers/cvs_sent.sh
deleted file mode 100755
index 76edd63a015..00000000000
--- a/Documentation/maintainers/cvs_sent.sh
+++ /dev/null
@@ -1,18 +0,0 @@
-#!/usr/bin/env bash
-PORTDIR="/home/scarab/gentoo/gentoo-x86/kde-base/"
-find ./ -name \*-4.2.1\*.ebuild |sed -e "s:./::" |grep -v printer |grep -v konsole | sort | while read package; do
- dir=${package/\/*}
- ebuild=${package/*\/}
- targetdir="${PORTDIR}${dir}"
- # update before copying
- pushd $targetdir > /dev/null
- cvs up
- popd > /dev/null
- cp ${package} ${targetdir}
- pushd $targetdir > /dev/null
- # todo check for patches
- cvs add ${ebuild}
- echangelog "Automatic-merge: merge updates for 4.2.1 from kde-testing."
- repoman commit -m "Automatic-merge: merge updates for 4.2.1 from kde-testing."
- popd > /dev/null
-done