saveVersion.sh
上传用户:quxuerui
上传日期:2018-01-08
资源大小:41811k
文件大小:2k
源码类别:

网格计算

开发平台:

Java

  1. #!/bin/sh
  2. # Licensed to the Apache Software Foundation (ASF) under one or more
  3. # contributor license agreements.  See the NOTICE file distributed with
  4. # this work for additional information regarding copyright ownership.
  5. # The ASF licenses this file to You under the Apache License, Version 2.0
  6. # (the "License"); you may not use this file except in compliance with
  7. # the License.  You may obtain a copy of the License at
  8. #
  9. #     http://www.apache.org/licenses/LICENSE-2.0
  10. #
  11. # Unless required by applicable law or agreed to in writing, software
  12. # distributed under the License is distributed on an "AS IS" BASIS,
  13. # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  14. # See the License for the specific language governing permissions and
  15. # limitations under the License.
  16. # This file is used to generate the BuildStamp.java class that
  17. # records the user, url, revision and timestamp.
  18. unset LANG
  19. unset LC_CTYPE
  20. version=$1
  21. user=`whoami`
  22. date=`date`
  23. if [ -d .git ]; then
  24.   revision=`git log -1 --pretty=format:"%H"`
  25.   hostname=`hostname`
  26.   branch=`git branch | sed -n -e 's/^* //p'`
  27.   url="git://$hostname/$cwd on branch $branch"
  28. else
  29.   revision=`svn info | sed -n -e 's/Last Changed Rev: (.*)/1/p'`
  30.   url=`svn info | sed -n -e 's/URL: (.*)/1/p'`
  31. fi
  32. mkdir -p build/src/org/apache/hadoop
  33. cat << EOF | 
  34.   sed -e "s/VERSION/$version/" -e "s/USER/$user/" -e "s/DATE/$date/" 
  35.       -e "s|URL|$url|" -e "s/REV/$revision/" 
  36.       > build/src/org/apache/hadoop/package-info.java
  37. /*
  38.  * Generated by src/saveVersion.sh
  39.  */
  40. @HadoopVersionAnnotation(version="VERSION", revision="REV", 
  41.                          user="USER", date="DATE", url="URL")
  42. package org.apache.hadoop;
  43. EOF