X-Git-Url: https://git.tld-linux.org/?a=blobdiff_plain;f=client%2Fmake-request.sh;h=d83e7aca6c8a784652e00c2c8387c81380c5cfd2;hb=c4d0706eae2dd9530000a8ad8b62188c417c2caa;hp=e3fa52de698e842e3ce4d8d630a1a31dbe7215ea;hpb=c960542e97b68c03a825532c77de56ee7070efd4;p=tld-builder.git diff --git a/client/make-request.sh b/client/make-request.sh index e3fa52d..d83e7ac 100755 --- a/client/make-request.sh +++ b/client/make-request.sh @@ -17,7 +17,7 @@ dist= url= no_depend=no verbose=no -autotag=no +pkgrevision=no requester_override= relup=no @@ -45,7 +45,7 @@ url="$url" mailer="/usr/lib/sendmail -t" gpg_opts="" dist=ti -url="https://kraz.tld-linux.org:1241/" +url="https://src.tld-linux.org:1241/" # defaults: f_upgrade=yes @@ -118,7 +118,7 @@ try: req = urllib2.Request(url, data) f = urllib2.urlopen(req) f.close() -except Exception, e: +except Exception as e: print >> sys.stderr, "Problem while sending request via HTTP: %s: %s" % (url, e) sys.exit(1) print >> sys.stdout, "Request queued via HTTP." @@ -130,7 +130,7 @@ print >> sys.stdout, "Request queued via HTTP." # htmlspecialchars: escape <, > and & hsc() { local input=$1 - echo -E "$input" | sed -e 's,&,\&,g;s,<,\<,g;s,>,\>,g' + printf "%s\n" "$input" | sed -e 's,&,\&,g;s,<,\<,g;s,>,\>,g' } # simple df_fetcher, based on packages/fetchsrc_request @@ -177,26 +177,9 @@ df_fetch() { done } -# autotag from rpm-build-macros -# displays latest used tag for a specfile -autotag() { - local out s - for s in "$@"; do - # strip branches - s=${s%:*} - # ensure package ends with .spec - s=${s%.spec}.spec - git fetch --tags - out=$(git for-each-ref --count=1 --sort=-authordate refs/tags/auto/$dist \ - --format='%(refname:short)') - echo "$s:$out" - done -} - -# get autotag for specs -# WARNING: This may checkout some files from VCS -get_autotag() { - local pkg spec rpmdir +# get package revision for specs +get_pkgrevision() { + local pkgrev pkg spec rpmdir rpmdir=$(rpm -E %_topdir) for pkg in "$@"; do @@ -205,16 +188,13 @@ get_autotag() { pkg=${pkg%:*} # strip .spec extension pkg=${pkg%.spec} - # checkout only if missing - if [ ! -e $pkg/$pkg.spec ]; then - $rpmdir/builder -g $pkg -ns -r HEAD 1>&2 - fi - if [ ! -e $pkg/$pkg.spec ]; then - # just print it out, to fallback to base pkg name - echo "$pkg" + wget http://pkgrevs.tld-linux.org/list/$pkg -O /tmp/$pkg.tags 1>/dev/null 2>&1 + pkgrev=$(head -n 1 /tmp/$pkg.tags) + rm -f /tmp/$pkg.tags + if [ "x$pkgrev" = "x" ]; then + echo "$pkg.spec" else - cd $pkg - autotag $pkg.spec + echo "$pkg.spec:$pkgrev" fi done } @@ -348,7 +328,7 @@ while [ $# -gt 0 ]; do ;; -a) - autotag=yes + pkgrevision=yes ;; -m) @@ -541,16 +521,16 @@ done case "$dist" in ti) - builder_email="builderti@kraz.tld-linux.org" + builder_email="builderti@src.tld-linux.org" default_builders="ti-*" - url="https://kraz.tld-linux.org:1241/" - control_url="http://kraz.tld-linux.org/~builderti" + url="https://src.tld-linux.org:1241/" + control_url="http://src.tld-linux.org/~builderti" ;; ti-dev) - builder_email="buildertidev@kraz.tld-linux.org" + builder_email="buildertidev@src.tld-linux.org" default_builders="ti-dev-*" - url="https://kraz.tld-linux.org:1242/" - control_url="http://kraz.tld-linux.org/~buildertidev" + url="https://src.tld-linux.org:1242/" + control_url="http://src.tld-linux.org/~buildertidev" ;; *) die "dist \`$dist' not known" @@ -639,9 +619,9 @@ if [ "$relup" = "yes" ]; then relup ${message:+-m "$message"} $specs fi -if [ "$autotag" = "yes" ]; then - msg "Auto autotag build enabled" - specs=$(get_autotag $specs) +if [ "$pkgrevision" = "yes" ]; then + msg "Package revision build enabled" + specs=$(get_pkgrevision $specs) fi if [ "$df_fetch" = "yes" ]; then @@ -740,7 +720,7 @@ gen_req() { if [ "$command" ]; then bid=$(uuidgen) - echo -E >&2 "* Command: $command" + printf "%s\n" "* Command: $command" >&2 echo " " echo " " hsc "$command" @@ -807,7 +787,7 @@ gen_req() { if [ "$no_depend" = yes ]; then depend= fi - echo -E >&2 "* Post-Command: $post_command" + printf "%s\n" "* Post-Command: $post_command" >&2 echo " " echo " " hsc "$post_command"