]> git.xonotic.org Git - xonotic/xonotic.git/blobdiff - misc/tools/all/config.subr
Fix macOS SDL2 framework permissions
[xonotic/xonotic.git] / misc / tools / all / config.subr
index 69d280db8d99f31102bad5d3cda0f21e6857e9a7..68f092a26fd0e6ada890b9db863fd79efad6d099 100644 (file)
 devsite_url="http://dev.xonotic.org/"
-pushsite_url="ssh://xonotic@push.git.xonotic.org/"
-httppushsite_url="http://push.git.xonotic.org/login/xonotic/"
-gitsite_url="git://git.xonotic.org/xonotic/"
-httpsite_url="http://git.xonotic.org/xonotic/"
+gitsite_url="http://gitlab.com/groups/xonotic/"
 
-repos_urls="
-.                             |                                                   | master         |
-data/xonotic-data.pk3dir      |                                                   | master         |
-data/xonotic-music.pk3dir     |                                                   | master         |
-data/xonotic-nexcompat.pk3dir |                                                   | master         | no
-darkplaces                    |                                                   | div0-stable    | svn
-netradiant                    |                                                   | master         |
-div0-gittools                 |                                                   | master         | no
-d0_blind_id                   |                                                   | master         |
-data/xonotic-maps.pk3dir      |                                                   | master         |
-mediasource                   |                                                   | master         | no
-fteqcc                        |                                                   | xonotic-stable | noautocrlf
-"
-# todo: in darkplaces, change repobranch to div0-stable
-
-repos=`$ECHO "$repos_urls" | grep . | cut -d '|' -f 1 | tr -d ' '`
-
-base=`git config remote.origin.url`
-case "$base" in
-       */xonotic.git)
-               base=${base%xonotic.git}
-               ;;
-       *)
-               $ECHO "The main repo is not xonotic.git, what have you done?"
-               exit 1
-               ;;
-esac
-pushbase=`git config remote.origin.pushurl || true`
-case "$pushbase" in
-       */xonotic.git)
-               pushbase=${pushbase%xonotic.git}
-               ;;
-       '')
-               ;;
-       *)
-               $ECHO "The main repo is not xonotic.git, what have you done?"
-               exit 1
-               ;;
-esac
-
-repourl()
+allrepos()
 {
-       repo_t=`$ECHO "$repos_urls" | grep "^$1 " | cut -d '|' -f 2 | tr -d ' '`
-       if [ -n "$repo_t" ]; then
-               case "$repo_t" in
-                       *://*)
-                               $ECHO "$repo_t"
-                               ;;
-                       *)
-                               $ECHO "$base$repo_t"
-                               ;;
-               esac
-       else
-               if [ x"$1" = x"." ]; then
-                       $ECHO "$base""xonotic.git"
-               else
-                       $ECHO "$base${1##*/}.git"
-               fi
-       fi
+       "$@" .                             xonotic.git                  master         ""
+       "$@" data/xonotic-data.pk3dir      xonotic-data.pk3dir.git      master         ""
+       "$@" data/xonotic-music.pk3dir     xonotic-music.pk3dir.git     master         ""
+       "$@" data/xonotic-nexcompat.pk3dir xonotic-nexcompat.pk3dir.git master         "no"
+       "$@" data/xonotic-xoncompat.pk3dir xonotic-xoncompat.pk3dir.git main           "no"
+       "$@" darkplaces                    darkplaces.git               master         ""
+       "$@" netradiant                    netradiant.git               master         ""
+       "$@" div0-gittools                 div0-gittools.git            master         "no"
+       "$@" d0_blind_id                   d0_blind_id.git              master         ""
+       "$@" data/xonotic-maps.pk3dir      xonotic-maps.pk3dir.git      master         ""
+       "$@" mediasource                   mediasource.git              master         "no"
+       "$@" gmqcc                         gmqcc.git                    main           ""
+       "$@" xonstat                       xonstat.git                  master         "no"
+       "$@" xonstatdb                     xonstatdb.git                master         "no"
+       "$@" xonotic.org                   xonotic.org.git              master         "no"
+       "$@" wiki                          xonotic.wiki.git             master         "no"
 }
 
-repopushurl()
+allmirrors()
 {
-       [ -n "$pushbase" ] || return 0
-       repo_t=`$ECHO "$repos_urls" | grep "^$1 " | cut -d '|' -f 2 | tr -d ' '`
-       if [ -n "$repo_t" ]; then
-               case "$repo_t" in
-                       *://*)
-                               ;;
-                       *)
-                               $ECHO "$pushbase$repo_t"
-                               ;;
-               esac
-       else
-               if [ x"$1" = x"." ]; then
-                       $ECHO "$pushbase""xonotic.git"
-               else
-                       $ECHO "$pushbase${1##*/}.git"
-               fi
-       fi
+       # Legacy git URLs.
+       "$@" git  ''   git://git.xonotic.org/xonotic/      ''
+       "$@" http ''   http://git.xonotic.org/xonotic/     ''
+       "$@" ssh  ''   ssh://xonotic@git.xonotic.org/      ''
+       "$@" git  ''   git://nl.git.xonotic.org/xonotic/   ''
+       "$@" http ''   http://nl.git.xonotic.org/xonotic/  ''
+       "$@" git  ''   git://us.git.xonotic.org/xonotic/   ''
+       "$@" http ''   http://us.git.xonotic.org/xonotic/  ''
+
+       # Gitlab host (divVerent).
+       "$@" http gitlab   https://gitlab.com/xonotic/     ''
+
+       # German host - disabled (divVerent).
+       "$@" git  ''   git://de.git.xonotic.org/xonotic/   ''
+       "$@" http ''   http://de.git.xonotic.org/xonotic/  ''
+
+       # Pushing destination (authoritative server; merlijn).
+       "$@" ssh  push ssh://git@gitlab.com/xonotic/       ''
 }
 
-repobranch()
+have_time=true
+measure_time()
 {
-       repo_t=`$ECHO "$repos_urls" | grep "^$1 " | cut -d '|' -f 3 | tr -d ' '`
-       if [ -n "$repo_t" ]; then
-               $ECHO "$repo_t"
+       if $have_time; then
+               time -p "$@"
        else
-               $ECHO "master"
+               "$@"
        fi
 }
-
-repoflags()
-{
-       $ECHO "$repos_urls" | grep "^$1 " | cut -d '|' -f 4 | tr -d ' '
-}
-
-listrepos()
-{
-       for d in $repos; do
-               p="${d%dir}"
-               f="`repoflags "$d"`"
-               # if we have .no file, skip
-               if [ -f "$d.no" ]; then
-                       msg "Repository $d disabled by a .no file, delete $d.no to enable"
-                       continue
-               fi
-               # if .yes file exists, always keep it
-               if [ -f "$d.yes" ]; then
-                       msg "Repository $d enabled by a .yes file"
-                       $ECHO "$d"
-                       continue
-               fi
-               # remove broken clones so they don't mess up stuff
-               if [ x"$d" != x"." ] && [ -d "$d" ] && ! [ -d "$d/.git" ]; then
-                       msg "$d exists but has no .git subdir. Probably a broken clone. Deleting."
-                       verbose rm -rf "$d"
-                       continue
-               fi
-               # if we have the dir, always keep it
-               if [ -d "$d" ]; then
-                       msg "Repository $d enabled because it already exists"
-                       $ECHO "$d"
-                       continue
-               fi
-               # if we have matching pk3, skip
-               if [ x"$p" != x"$d" ] && [ -f "$p" ]; then
-                       msg "Repository $d disabled by matching .pk3 file, delete $p or create $d.yes to enable"
-                       continue
-               fi
-               # if "no" flag is set, skip
-               case ",$f," in
-                       *,no,*)
-                               msg "Repository $d disabled by default, create $d.yes to enable"
-                               continue
-                               ;;
-               esac
-               # default: enable
-               msg "Repository $d enabled by default"
-               $ECHO "$d"
-       done
-}
-
-repos=`listrepos`
+if { measure_time sh -c 'true'; } 2>&1 >/dev/null | grep '^user ' >/dev/null; then
+       msg "Timing via the time utility works."
+else
+       have_time=false
+       msg "Timing not supported."
+fi