summaryrefslogtreecommitdiff
path: root/Master
diff options
context:
space:
mode:
authorKarl Berry <karl@freefriends.org>2012-04-19 16:17:34 +0000
committerKarl Berry <karl@freefriends.org>2012-04-19 16:17:34 +0000
commitd71ff2e95fba8d79c320e101691b90c6a70e6053 (patch)
treef18599524c0e18243231dfd8998a07cb0048f2ef /Master
parent13e947928dfaa40c262d16481860115560d4d750 (diff)
vpe 0.2 (18apr12)
git-svn-id: svn://tug.org/texlive/trunk@26039 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Master')
-rw-r--r--Master/texmf-dist/doc/latex/vpe/README (renamed from Master/texmf-dist/doc/latex/vpe/vpe.txt)20
-rwxr-xr-xMaster/texmf-dist/scripts/vpe/vpe.pl23
-rw-r--r--Master/texmf-dist/tex/latex/vpe/vpe.sty7
3 files changed, 32 insertions, 18 deletions
diff --git a/Master/texmf-dist/doc/latex/vpe/vpe.txt b/Master/texmf-dist/doc/latex/vpe/README
index 729c80a84b0..9ac6edf8fd8 100644
--- a/Master/texmf-dist/doc/latex/vpe/vpe.txt
+++ b/Master/texmf-dist/doc/latex/vpe/README
@@ -1,4 +1,4 @@
-readme.txt (2005/11/28) for project vpe 2000/09/15 v0.1
+README for project vpe 2012/04/18 v0.2
TABLE OF CONTENTS
=================
@@ -53,7 +53,7 @@ The project supports three routes to pdf files:
B. COPYRIGHT, DISCLAIMER, LIZENZ
================================
-Copyright (C) 1999, 2000 Heiko Oberdiek.
+Copyright (C) 1999, 2000, 2012 Heiko Oberdiek.
This program may be distributed and/or modified under the
conditions of the LaTeX Project Public License, either version 1.2
@@ -70,7 +70,7 @@ The project `vpe' consists of three files:
vpe(.pl): Perl script, used by all routes. The extension `.pl'
may be omitted for installation purposes.
vpe.sty: LaTeX2e package for pdftex and dvips routes.
-vpe.txt: Documentation, the file you are reading.
+README: Documentation, the file you are reading.
Help and temporary files, generated by use:
myfile.tex.vpe: Symbol link from source file `myfile.tex'
@@ -128,8 +128,8 @@ E. INSTALLATION
#!perl.exe (versions below 4)
hbperl.exe (version 4)
http://www.perl.com/CPAN/authors/id/JDALLMAN/hbp_403.zip
- Move thumbpdf.pl in a PERLLIB directory and copy the
- exe program to `thumbpdf.exe'. Then the program looks
+ Move vpe.pl in a PERLLIB directory and copy the
+ exe program to `vpe.exe'. Then the program looks
for the perl interpreter, the script and calls them.
Advantage: I/O redirection works.
c) Windows NT 4.0 users can use associated file types:
@@ -424,7 +424,7 @@ Examples (spaces only for clarifying):
I. AUTHOR
=========
Heiko Oberdiek
-Email: oberdiek@uni-freiburg.de
+Email: heiko.oberdiek at googlemail.com
J. QUESTIONS, BUG REPORTS
=========================
@@ -459,7 +459,7 @@ Regarding bug reports I have some wishes:
* Many programs know options like:
--version, -v, -help, -h, -?
-My environment for developing and testing:
+My environment for developing and testing (2000):
* linux, debian 2.0
* perl 5.004_04
* VTeX/Linux: 7.06
@@ -470,5 +470,9 @@ My environment for developing and testing:
K. HISTORY
==========
-2000/09/15 v0.1 first release
+2000/09/15 v0.1: First release
2005/11/28 (X)emacs section from Uwe Brauer
+2012/04/18 v0.2:
+ * Option --version added.
+ * `vpe.txt' renamed to `README'.
+ * Email address updated.
diff --git a/Master/texmf-dist/scripts/vpe/vpe.pl b/Master/texmf-dist/scripts/vpe/vpe.pl
index 9eb52b69e3c..ba93d8c4d75 100755
--- a/Master/texmf-dist/scripts/vpe/vpe.pl
+++ b/Master/texmf-dist/scripts/vpe/vpe.pl
@@ -4,7 +4,7 @@ use strict;
#
# vpe.pl
#
-# Copyright (C) 2000 Heiko Oberdiek.
+# Copyright (C) 2000, 2012 Heiko Oberdiek.
#
# This program may be distributed and/or modified under the
# conditions of the LaTeX Project Public License, either version 1.2
@@ -19,15 +19,17 @@ use strict;
# This file "vpe.pl" may be renamed to "vpe"
# for installation purposes.
#
-my $file = "vpe.pl";
+my $prj = 'vpe';
+my $file = "$prj.pl";
my $program = uc($&) if $file =~ /^\w+/;
-my $version = "0.1";
-my $date = "2000/09/15";
+my $version = "0.2";
+my $date = "2012/04/18";
my $author = "Heiko Oberdiek";
-my $copyright = "Copyright (c) 2000 by $author.";
+my $copyright = "Copyright (c) 2000, 2012 by $author.";
#
# History:
# 2000/09/15 v0.1: First release.
+# 2012/04/18 v0.2: Option --version added.
#
### program identification
@@ -68,8 +70,9 @@ Depending on the name of the script `vpe' works in four modes:
this file at that line number.
Options:
- --help: print usage.
- --verbose: print additional informations during running.
+ --help: print usage
+ --version print version number
+ --verbose: print additional informations during running
--force: force symbol links
--delete: delete symbol links
--sty: internal for `vpe.sty' (get absolute file name and lines)
@@ -80,6 +83,7 @@ END_OF_USAGE
### options
$::opt_verbose = 0;
$::opt_help = 0;
+$::opt_version = 0;
$::opt_force = 0;
$::opt_delete = 0;
$::opt_sty = 0;
@@ -88,6 +92,7 @@ $::opt_progname = "latex";
use Getopt::Long;
GetOptions(
"help!",
+ "version!",
"verbose!",
"force!",
"delete!",
@@ -98,6 +103,10 @@ GetOptions(
if ($::opt_help) {
die $usage;
}
+if ($::opt_version) {
+ print "$prj $date v$version\n";
+ exit(0);
+}
if ($::opt_sty and $::opt_system) {
die "$usage" .
diff --git a/Master/texmf-dist/tex/latex/vpe/vpe.sty b/Master/texmf-dist/tex/latex/vpe/vpe.sty
index 0271ce64df6..78022b22c9f 100644
--- a/Master/texmf-dist/tex/latex/vpe/vpe.sty
+++ b/Master/texmf-dist/tex/latex/vpe/vpe.sty
@@ -1,11 +1,11 @@
% File: vpe.sty
% Project: vpe
-% Version: 2000/09/15 v0.1
+% Version: 2012/04/18 v0.2
% Author: Heiko Oberdiek
%
% Function: Source specials for pdf files.
%
-% Copyright: Copyright (C) 2000 Heiko Oberdiek.
+% Copyright: Copyright (C) 2000, 2012 Heiko Oberdiek.
%
% This program may be distributed and/or modified under
% the conditions of the LaTeX Project Public License,
@@ -27,12 +27,13 @@
% See file `vpe.txt' for further documentation.
%
% History: 2000/09/15 v0.1: first public release
+% 2012/04/18 v0.2
%
% \vpe@ is the prefix for internal command names.
%
\NeedsTeXFormat{LaTeX2e}
\ProvidesPackage{vpe}%
-[2000/09/15 v0.1 Source specials for pdf files (HO)]
+[2012/04/18 v0.2 Source specials for pdf files (HO)]
\RequirePackage{keyval}