[subversion-commit] SVN tetex-base commit + diffs: r1145 - in tetex-base/trunk/debian: . tpm

Frank Küster frank at costa.debian.org
Thu Mar 30 13:37:32 UTC 2006


Author: frank
Date: 2006-03-30 13:37:31 +0000 (Thu, 30 Mar 2006)
New Revision: 1145

Added:
   tetex-base/trunk/debian/tpm/eepic.tpm
Modified:
   tetex-base/trunk/debian/copyright.header
   tetex-base/trunk/debian/tpm2licenses-new.pl
Log:
- tpm2licenses script can be used with tpm files (full path!) as argument, and processes only them
- add eepic (no-license documentation...)

Modified: tetex-base/trunk/debian/copyright.header
===================================================================
--- tetex-base/trunk/debian/copyright.header	2006-03-30 12:45:27 UTC (rev 1144)
+++ tetex-base/trunk/debian/copyright.header	2006-03-30 13:37:31 UTC (rev 1145)
@@ -196,6 +196,9 @@
 
 - dinbrief: lppl 1.1+, but with additional restrictions which may be non-free 
 
+- eepic: The style files are public domain, but all the documentation
+  has no license at all.
+
 3.3 Text of the licenses
 
 

Copied: tetex-base/trunk/debian/tpm/eepic.tpm (from rev 1144, texlive/trunk/LocalTPM/texmf-dist/tpm/eepic.tpm)
===================================================================
--- texlive/trunk/LocalTPM/texmf-dist/tpm/eepic.tpm	2006-03-30 12:45:27 UTC (rev 1144)
+++ tetex-base/trunk/debian/tpm/eepic.tpm	2006-03-30 13:37:31 UTC (rev 1145)
@@ -0,0 +1,61 @@
+<!DOCTYPE rdf:RDF SYSTEM "../../Tools/tpm.dtd">
+<rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:TPM="http://texlive.dante.de/">
+  <rdf:Description about="http://texlive.dante.de/texlive/Package/eepic.zip">
+    <TPM:Name>eepic</TPM:Name>
+    <TPM:Type>Package</TPM:Type>
+    <TPM:Date>2000/04/06 08:37:33</TPM:Date>
+    <TPM:Version></TPM:Version>
+    <TPM:Creator>rahtz</TPM:Creator>
+    <TPM:Title>
+Extensions to epic and the LaTeX drawing tools.
+    </TPM:Title>
+    <TPM:Description>
+Extensions to epic 
+and the LaTeX
+picture drawing environment, including the drawing of lines
+at any slope, the drawing of circles in any radii, and the
+drawing of dotted and dashed lines much faster with much less
+TeX memory, and providing several new commands for drawing
+ellipses, arcs, splines, and filled circles and ellipses.
+    </TPM:Description>
+    <TPM:Author>Conrad Kwok</TPM:Author>
+    <TPM:Size>145070</TPM:Size>
+    <TPM:License>dfsg</TPM:License>
+    <TPM:Build/>
+    <TPM:RunFiles size="48001">
+texmf-dist/tex/latex/eepic/eepic.sty
+texmf-dist/tex/latex/eepic/eepicemu.sty
+texmf-dist/tex/latex/eepic/epic.sty
+texmf-dist/tpm/eepic.tpm
+    </TPM:RunFiles>
+    <TPM:DocFiles size="68434">
+texmf-dist/doc/latex/eepic/eepic.dvi
+texmf-dist/doc/latex/eepic/epic-eg3.tex
+texmf-dist/doc/latex/eepic/epic-eg4.tex
+texmf-dist/doc/latex/eepic/epic-eg3.fig
+texmf-dist/doc/latex/eepic/epic-eg4.fig
+texmf-dist/doc/latex/eepic/readme
+    </TPM:DocFiles>
+    <TPM:SourceFiles size="28635">
+texmf-dist/source/latex/eepic/00Contents
+texmf-dist/source/latex/eepic/eepicemu.sty
+texmf-dist/source/latex/eepic/eepic.sty
+texmf-dist/source/latex/eepic/eepic.sty-dist
+texmf-dist/source/latex/eepic/eepic.tex
+texmf-dist/source/latex/eepic/epic-eg3.fig
+texmf-dist/source/latex/eepic/epic-eg3.tex
+texmf-dist/source/latex/eepic/epic-eg4.fig
+texmf-dist/source/latex/eepic/epic-eg4.tex
+texmf-dist/source/latex/eepic/epic.sty
+texmf-dist/source/latex/eepic/readme
+texmf-dist/source/latex/eepic/grafig.shar
+texmf-dist/source/latex/eepic/fig2eepic/epic-eg3.fig
+texmf-dist/source/latex/eepic/fig2eepic/epic-eg4.fig
+texmf-dist/source/latex/eepic/fig2eepic/fig2epic.1
+texmf-dist/source/latex/eepic/fig2eepic/makefile
+texmf-dist/source/latex/eepic/fig2eepic/readme
+    </TPM:SourceFiles>
+    <TPM:Provides>Package/eepic</TPM:Provides>
+  </rdf:Description>
+</rdf:RDF>
+

Modified: tetex-base/trunk/debian/tpm2licenses-new.pl
===================================================================
--- tetex-base/trunk/debian/tpm2licenses-new.pl	2006-03-30 12:45:27 UTC (rev 1144)
+++ tetex-base/trunk/debian/tpm2licenses-new.pl	2006-03-30 13:37:31 UTC (rev 1145)
@@ -6,10 +6,14 @@
 # Lists for every filename.tpm the license as specified in the catalogue
 #
 # usage:
-# perl tpm2licenses.pl <options>
+# perl tpm2licenses.pl <options> [tpm file]
 # where <options> =
-# 	--debug		Put out a lot of debug
+# 	--catalogue
+#       --nocheckcatalogue
+#       --tpmdir
+#       --package
 # 	--master=Path	path to the Master
+# optional tpm file: check only that one
 #
 
 BEGIN {   # get our other local perl modules.
@@ -151,8 +155,15 @@
 File::Basename::fileparse_set_fstype('unix');
 
 my @TpmList;
-create_tpmlist();
 
+if (@ARGV) {
+  # we have a (list of) packages on the command line
+  @TpmList = @ARGV;
+}
+else {
+  create_tpmlist();
+};
+
 list_licenses();
 
 1;




More information about the Pkg-tetex-commits mailing list