Anyway, here is the patch for release.sh. Please review and commit if it is ok.
Thanks, Sergey
From fc695f3288e8a329e70f4498ed5ee3bd86c817a8 Mon Sep 17 00:00:00 2001 From: Sergey V. Udaltsov <[email protected]> Date: Sun, 20 Jun 2010 21:14:15 +0100 Subject: [PATCH] release.sh: added xkeyboard-config xkeyoard-config uses separate maillist and stored into its own release subdirectory Signed-off-by: Sergey V. Udaltsov <[email protected]> --- release.sh | 10 +++++++++- 1 files changed, 9 insertions(+), 1 deletions(-) diff --git a/release.sh b/release.sh index 9570d0e..1cdddd1 100755 --- a/release.sh +++ b/release.sh @@ -5,6 +5,8 @@ set -e announce_list="[email protected]" xorg_list="[email protected]" dri_list="[email protected]" +xkb_list="[email protected]" + host_people=annarchy.freedesktop.org host_xorg=xorg.freedesktop.org host_dri=dri.freedesktop.org @@ -48,9 +50,12 @@ esac MD5SUM=`which md5sum || which gmd5sum` SHA1SUM=`which sha1sum || which gsha1sum` -if [ $section = libdrm ]; then +if [ "$section" = "libdrm" ]; then host=$host_dri list=$dri_list +elif [ "$section" = "xkeyboard-config" ]; then + host=$host_xorg + list=$xkb_list else host=$host_xorg list=$xorg_list @@ -196,6 +201,9 @@ fi if [ "$section" = "libdrm" ]; then section_path="libdrm" srv_path="/srv/$host_dri/www/$section_path" +elif [ "$section" = "xkeyboard-config" ]; then + section_path="archive/individual/data/$section" + srv_path="/srv/$host_xorg/$section_path" else section_path="archive/individual/$section" srv_path="/srv/$host_xorg/$section_path" -- 1.7.0.4
_______________________________________________ [email protected]: X.Org development Archives: http://lists.x.org/archives/xorg-devel Info: http://lists.x.org/mailman/listinfo/xorg-devel
