summaryrefslogtreecommitdiff
path: root/new-infra/create-tlp.pl
diff options
context:
space:
mode:
Diffstat (limited to 'new-infra/create-tlp.pl')
-rw-r--r--new-infra/create-tlp.pl23
1 files changed, 0 insertions, 23 deletions
diff --git a/new-infra/create-tlp.pl b/new-infra/create-tlp.pl
deleted file mode 100644
index 673fba5f568..00000000000
--- a/new-infra/create-tlp.pl
+++ /dev/null
@@ -1,23 +0,0 @@
-#!/usr/bin/env perl -w
-
-use strict;
-
-use TLSRC;
-use TLP;
-use TLTREE;
-use Data::Dumper;
-
-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);
-}
-
-