svn commit: r302383 - head/Tools/scripts

Chris Rees crees at FreeBSD.org
Fri Aug 10 10:49:36 UTC 2012


Author: crees
Date: Fri Aug 10 10:49:36 2012
New Revision: 302383
URL: http://svn.freebsd.org/changeset/ports/302383

Log:
  Don't replace - with _ in category variable.
  
  This was required with CVS, since the category was checked out as a module, but
  the directory name is used with svn.
  
  For example:
  
  pcvs co ports_ports_mgmt
  
  svn co $ports/head/ports-mgmt
  
  Submitted by:	swills

Modified:
  head/Tools/scripts/addport

Modified: head/Tools/scripts/addport
==============================================================================
--- head/Tools/scripts/addport	Fri Aug 10 10:34:59 2012	(r302382)
+++ head/Tools/scripts/addport	Fri Aug 10 10:49:36 2012	(r302383)
@@ -245,8 +245,7 @@ foreach my $thisdir (@dirs) {
 			} while (prompt("Is the new category $category OK? "));
 		}
 	}
-	chomp(my $svn_category = $category);
-	$svn_category =~ s/-/_/g;
+	chomp $category;
 
 	# Do commitfile checking but only if the user did not request automatic filling.
 	if (!$autofill) {
@@ -321,7 +320,7 @@ foreach my $thisdir (@dirs) {
 
 	# let's get our hands dirty.
 	if (! -d $category) {
-		system("svn co --depth files $repo/$svn_category $category") && errx(1, "can't get temporary category directory, aborting.");
+		system("svn co --depth files $repo/$category $category") && errx(1, "can't get temporary category directory, aborting.");
 	}
 	chdir $category or err(1,"$category");
 	system("$cp -PRp $thisdir .");



More information about the svn-ports-head mailing list