[svn:parrot] r45334 - in trunk: lib/Parrot t/distro tools/dev

bubaflub at svn.parrot.org bubaflub at svn.parrot.org
Wed Mar 31 04:51:17 UTC 2010


Author: bubaflub
Date: Wed Mar 31 04:51:16 2010
New Revision: 45334
URL: https://trac.parrot.org/parrot/changeset/45334

Log:
[TT #1534] remove svk developer support

Modified:
   trunk/lib/Parrot/Manifest.pm
   trunk/t/distro/file_metadata.t
   trunk/tools/dev/mk_manifest_and_skip.pl

Modified: trunk/lib/Parrot/Manifest.pm
==============================================================================
--- trunk/lib/Parrot/Manifest.pm	Wed Mar 31 03:45:47 2010	(r45333)
+++ trunk/lib/Parrot/Manifest.pm	Wed Mar 31 04:51:16 2010	(r45334)
@@ -68,7 +68,7 @@
     my %data = (
         id         => '$' . 'Id$',
         time       => scalar gmtime,
-        cmd        => -d '.svn' ? 'svn' : 'svk',
+        cmd        => 'svn',
         script     => $argsref->{script},
         file       => $argsref->{file}      ? $argsref->{file}      : q{MANIFEST},
         skip       => $argsref->{skip}      ? $argsref->{skip}      : q{MANIFEST.SKIP},

Modified: trunk/t/distro/file_metadata.t
==============================================================================
--- trunk/t/distro/file_metadata.t	Wed Mar 31 03:45:47 2010	(r45333)
+++ trunk/t/distro/file_metadata.t	Wed Mar 31 04:51:16 2010	(r45334)
@@ -40,7 +40,7 @@
 }
 
 
-my $cmd = -d '.svn' ? 'svn' : 'svk';
+my $cmd = 'svn';
 my @git_svn_metadata;    # set in BEGIN block
 
 # how many files to check at a time. May have to lower this when we run
@@ -245,7 +245,7 @@
             plan skip_all => q{git svn file metadata not retained};
         }
     }
-    elsif ( !( (-d '.svn' && `svn info .`) or `svk info .` ) ) {
+    elsif ( ! (-d '.svn' && `svn info .`) ) {
         plan skip_all => 'not a working copy';
     }
     else { plan tests => 5 }
@@ -253,7 +253,7 @@
 
 #
 # Given a list, a count, and a sub, process that list count elements
-# at a time. (do this to speed up execution for the svn/svk commands)
+# at a time. (do this to speed up execution for the svn commands)
 #
 
 sub at_a_time {

Modified: trunk/tools/dev/mk_manifest_and_skip.pl
==============================================================================
--- trunk/tools/dev/mk_manifest_and_skip.pl	Wed Mar 31 03:45:47 2010	(r45333)
+++ trunk/tools/dev/mk_manifest_and_skip.pl	Wed Mar 31 04:51:16 2010	(r45334)
@@ -40,8 +40,7 @@
 
 Recreates MANIFEST and MANIFEST.SKIP from the subversion properties
 and the output of C<svn status>. .
-So far tested with svn 1.2.0 and svn 1.4.2.  This also worked with svk 1.08,
-but to keep our tasks manageable, we only guarantee support for Subversion.
+So far tested with svn 1.2.0 and svn 1.4.2. 
 
 This won't work for git-svn.
 


More information about the parrot-commits mailing list