summaryrefslogtreecommitdiff
path: root/new-infra/test-tlp2.pl
diff options
context:
space:
mode:
Diffstat (limited to 'new-infra/test-tlp2.pl')
-rw-r--r--new-infra/test-tlp2.pl26
1 files changed, 0 insertions, 26 deletions
diff --git a/new-infra/test-tlp2.pl b/new-infra/test-tlp2.pl
deleted file mode 100644
index 7b58b792fc7..00000000000
--- a/new-infra/test-tlp2.pl
+++ /dev/null
@@ -1,26 +0,0 @@
-#!/usr/bin/env perl -w
-
-use strict;
-
-use TLSRC;
-use TLP;
-use TLTREE;
-use Data::Dumper;
-
-#our $opt_debug = 1;
-
-my $tltree = TLTREE->new( 'svnroot' => "/src/TeX/texlive-svn/new-infra" );
-$tltree->init_from_svn;
-
-foreach my $f (@ARGV) {
- my $tlsrc = new TLSRC;
- $tlsrc->from_file($f);
- my $tlp = $tlsrc->make_tlp($tltree);
- my $name = $tlp->name;
- open(FOO,">tlp/$name.tlp");
- $tlp->writeout(\*FOO);
- close(FOO);
- $tlp->make_zip($tltree,"./zip"); # name absent, use the name of the tlp
-}
-
-