summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPeter Hutterer <peter.hutterer@who-t.net>2013-07-22 09:34:22 +1000
committerPeter Hutterer <peter.hutterer@who-t.net>2013-07-25 09:13:47 +1000
commit7c731f4d318bfd34bb88f4728ba56c5c5f3130ac (patch)
tree1219bd55615c443f335825a37026cfee480f5112
parent88feb98fee19a5f2a847d040affcc92f209967cb (diff)
release.sh: add libevdev special hooks
Signed-off-by: Peter Hutterer <peter.hutterer@who-t.net> Reviewed-by: Alan Coopersmith <alan.coopersmith@oracle.com>
-rwxr-xr-xrelease.sh11
1 files changed, 10 insertions, 1 deletions
diff --git a/release.sh b/release.sh
index 51f2c9e..8c0006c 100755
--- a/release.sh
+++ b/release.sh
@@ -373,6 +373,7 @@ process_module() {
hostname="annarchy.freedesktop.org"
# Some hostnames are also used as /srv subdirs
+ host_fdo="www.freedesktop.org"
host_xorg="xorg.freedesktop.org"
host_dri="dri.freedesktop.org"
@@ -401,7 +402,7 @@ process_module() {
module_url=`echo $module_url | cut -d'/' -f3,4`
else
# The look for mesa, xcb, etc...
- module_url=`echo "$full_module_url" | $GREP -o -e "/mesa/.*" -e "/xcb/.*" -e "/xkeyboard-config" -e "/nouveau/xf86-video-nouveau"`
+ module_url=`echo "$full_module_url" | $GREP -o -e "/mesa/.*" -e "/xcb/.*" -e "/xkeyboard-config" -e "/nouveau/xf86-video-nouveau" -e "/libevdev"`
if [ $? -eq 0 ]; then
module_url=`echo $module_url | cut -d'/' -f2,3`
else
@@ -464,6 +465,14 @@ process_module() {
list_cc=$list_xkb
fi
+ if [ x"$section" = xlibevdev ]; then
+ host_current=$host_fdo
+ section_path="software/$section"
+ srv_path="/srv/$host_current/www/$section_path"
+ list_to=input-tools@lists.freedesktop.org
+ unset list_cc
+ fi
+
# Use personal web space on the host for unit testing (leave commented out)
# srv_path="~/public_html$srv_path"