Revision: 1492
          http://mrbs.svn.sourceforge.net/mrbs/?rev=1492&view=rev
Author:   jberanek
Date:     2010-10-08 09:34:20 +0000 (Fri, 08 Oct 2010)

Log Message:
-----------
* Added small release tagging script.

Added Paths:
-----------
    tools/trunk/tagrelease.pl

Added: tools/trunk/tagrelease.pl
===================================================================
--- tools/trunk/tagrelease.pl                           (rev 0)
+++ tools/trunk/tagrelease.pl   2010-10-08 09:34:20 UTC (rev 1492)
@@ -0,0 +1,19 @@
+#!/usr/bin/perl
+
+use warnings;
+use strict;
+
+my $rel_ver = shift;
+my $user = shift || 'jberanek';
+
+my $tag = $rel_ver;
+
+$tag =~ s/\./_/g;
+
+$tag = 'mrbs-'.$tag;
+
+(system('svn',
+        'copy',
+        'https://mrbs.svn.sourceforge.net/svnroot/mrbs/mrbs/trunk',
+        'https://mrbs.svn.sourceforge.net/svnroot/mrbs/mrbs/tags/'.$tag) == 0) 
or
+    die "Failed to create tag in SVN\n";


Property changes on: tools/trunk/tagrelease.pl
___________________________________________________________________
Added: svn:executable
   + *
Added: svn:eol-style
   + native


This was sent by the SourceForge.net collaborative development platform, the 
world's largest Open Source development site.

------------------------------------------------------------------------------
Beautiful is writing same markup. Internet Explorer 9 supports
standards for HTML5, CSS3, SVG 1.1,  ECMAScript5, and DOM L2 & L3.
Spend less time writing and  rewriting code and more time creating great
experiences on the web. Be a part of the beta today.
http://p.sf.net/sfu/beautyoftheweb
_______________________________________________
Mrbs-commits mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/mrbs-commits

Reply via email to