Re: svn commit: samba r21026 - in branches/SAMBA_4_0/source/script: .

2007-02-07 Thread Jelmer Vernooij
On Fri, 2007-01-26 at 04:37 +, [EMAIL PROTECTED] wrote:
 Log:
 Add a helpful script to do the things we need to do to make a release
 tarball.

 Added: branches/SAMBA_4_0/source/script/mkrelease.sh
 ===
 --- branches/SAMBA_4_0/source/script/mkrelease.sh 2007-01-26 02:17:11 UTC 
 (rev 21025)
 +++ branches/SAMBA_4_0/source/script/mkrelease.sh 2007-01-26 04:37:06 UTC 
 (rev 21026)
 @@ -0,0 +1,13 @@
 +#!/bin/sh
 +
 +FROM=$1
 +VERSION=$2
 +
 +svn export $FROM samba-$VERSION
 +
 +( cd samba-$VERSION || exit 1
 +  (cd source  ./autogen.sh ) || exit 1
 +  rm -rf webapps/qooxdoo-*-sdk/frontend/framework/.cache || exit 1
 +) || exit 1
 +
 +tar -zcf samba-$VERSION.tar.gz samba-$VERSION
Similar things are done by 'make dist'. I think the rm -rf should rather
be there, same thing for autogen.sh

Cheers,

Jelmer



signature.asc
Description: This is a digitally signed message part


svn commit: samba r21026 - in branches/SAMBA_4_0/source/script: .

2007-01-25 Thread abartlet
Author: abartlet
Date: 2007-01-26 04:37:06 + (Fri, 26 Jan 2007)
New Revision: 21026

WebSVN: 
http://websvn.samba.org/cgi-bin/viewcvs.cgi?view=revroot=sambarev=21026

Log:
Add a helpful script to do the things we need to do to make a release
tarball.

Andrew Bartlett

Added:
   branches/SAMBA_4_0/source/script/mkrelease.sh


Changeset:
Added: branches/SAMBA_4_0/source/script/mkrelease.sh
===
--- branches/SAMBA_4_0/source/script/mkrelease.sh   2007-01-26 02:17:11 UTC 
(rev 21025)
+++ branches/SAMBA_4_0/source/script/mkrelease.sh   2007-01-26 04:37:06 UTC 
(rev 21026)
@@ -0,0 +1,13 @@
+#!/bin/sh
+
+FROM=$1
+VERSION=$2
+
+svn export $FROM samba-$VERSION
+
+( cd samba-$VERSION || exit 1
+  (cd source  ./autogen.sh ) || exit 1
+  rm -rf webapps/qooxdoo-*-sdk/frontend/framework/.cache || exit 1
+) || exit 1
+
+tar -zcf samba-$VERSION.tar.gz samba-$VERSION


Property changes on: branches/SAMBA_4_0/source/script/mkrelease.sh
___
Name: svn:executable
   + *