[SCM] Samba Shared Repository - branch master updated - release-4-0-0alpha8-1380-gab6e829

Simo Sorce idra at samba.org
Fri Sep 4 16:22:57 MDT 2009


The branch, master has been updated
       via  ab6e82910af87ca4c4572d973fb657c4004b443b (commit)
      from  5e59c17e5c547b7a2cea8c40738bd7a3ca94dfad (commit)

http://gitweb.samba.org/?p=samba.git;a=shortlog;h=master


- Log -----------------------------------------------------------------
commit ab6e82910af87ca4c4572d973fb657c4004b443b
Author: Simo Sorce <idra at samba.org>
Date:   Fri Sep 4 18:20:29 2009 -0400

    Add release script for tevent

-----------------------------------------------------------------------

Summary of changes:
 lib/{talloc => tevent}/release-script.sh |   24 ++++++++++++------------
 1 files changed, 12 insertions(+), 12 deletions(-)
 copy lib/{talloc => tevent}/release-script.sh (53%)


Changeset truncated at 500 lines:

diff --git a/lib/talloc/release-script.sh b/lib/tevent/release-script.sh
similarity index 53%
copy from lib/talloc/release-script.sh
copy to lib/tevent/release-script.sh
index 6b6c0e7..077f562 100755
--- a/lib/talloc/release-script.sh
+++ b/lib/tevent/release-script.sh
@@ -5,12 +5,12 @@ if [ "$1" = "" ]; then
     exit 1
 fi
 
-if [ ! -d "lib/talloc" ]; then
+if [ ! -d "lib/tevent" ]; then
     echo "Run this script from the samba base directory."
     exit 1
 fi
 
-git clean -f -x -d lib/talloc
+git clean -f -x -d lib/tevent
 git clean -f -x -d lib/replace
 
 curbranch=`git-branch |grep "^*" | tr -d "* "`
@@ -19,30 +19,30 @@ version=$1
 strver=`echo ${version} | tr "." "-"`
 
 # Checkout the release tag
-git branch -f talloc-release-script-${strver} talloc-${strver}
+git branch -f tevent-release-script-${strver} tevent-${strver}
 if [ ! "$?" = "0" ];  then
-    echo "Unable to checkout talloc-${strver} release"
+    echo "Unable to checkout tevent-${strver} release"
     exit 1
 fi
 
-git checkout talloc-release-script-${strver}
+git checkout tevent-release-script-${strver}
 
 # Test configure agrees with us
-confver=`grep "^AC_INIT" lib/talloc/configure.ac | tr -d "AC_INIT(talloc, " | tr -d ")"`
+confver=`grep "^AC_INIT" lib/tevent/configure.ac | tr -d "AC_INIT(tevent, " | tr -d ")"`
 if [ ! "$confver" = "$version" ]; then
     echo "Wrong version, requested release for ${version}, found ${confver}"
     exit 1
 fi
 
 # Now build tarball
-cp -a lib/talloc talloc-${version}
-cp -a lib/replace talloc-${version}/libreplace
-pushd talloc-${version}
+cp -a lib/tevent tevent-${version}
+cp -a lib/replace tevent-${version}/libreplace
+pushd tevent-${version}
 ./autogen.sh
 popd
-tar cvzf talloc-${version}.tar.gz talloc-${version}
-rm -fr talloc-${version}
+tar cvzf tevent-${version}.tar.gz tevent-${version}
+rm -fr tevent-${version}
 
 #Clean up
 git checkout $curbranch
-git branch -d talloc-release-script-${strver}
+git branch -d tevent-release-script-${strver}


-- 
Samba Shared Repository


More information about the samba-cvs mailing list