texlive[66862] trunk: pdfcrop (16apr23)

commits+karl at tug.org commits+karl at tug.org
Sun Apr 16 22:23:04 CEST 2023


Revision: 66862
          http://tug.org/svn/texlive?view=revision&revision=66862
Author:   karl
Date:     2023-04-16 22:23:04 +0200 (Sun, 16 Apr 2023)
Log Message:
-----------
pdfcrop (16apr23)

Modified Paths:
--------------
    trunk/Build/source/texk/texlive/linked_scripts/pdfcrop/pdfcrop.pl
    trunk/Master/texmf-dist/doc/support/pdfcrop/README.md
    trunk/Master/texmf-dist/scripts/pdfcrop/pdfcrop.pl

Modified: trunk/Build/source/texk/texlive/linked_scripts/pdfcrop/pdfcrop.pl
===================================================================
--- trunk/Build/source/texk/texlive/linked_scripts/pdfcrop/pdfcrop.pl	2023-04-16 20:22:47 UTC (rev 66861)
+++ trunk/Build/source/texk/texlive/linked_scripts/pdfcrop/pdfcrop.pl	2023-04-16 20:23:04 UTC (rev 66862)
@@ -18,8 +18,8 @@
 my $prj         = 'pdfcrop';
 my $file        = "$prj.pl";
 my $program     = uc($&) if $file =~ /^\w+/;
-my $version     = "1.41";
-my $date        = "2023/04/13";
+my $version     = "1.42";
+my $date        = "2023/04/15";
 my $author      = "Heiko Oberdiek, Oberdiek Package Support Group";
 my $copyright   = "Copyright (c) 2002-2023 by $author.";
 #
@@ -111,6 +111,7 @@
 #                     add -q option, issue 7;
 #                     don't print whole help msg for unknown options, issue 7.
 #                     do not create two pages with xetex, issue 3 
+# 2023/04/15 v1.42: * update help text issue 18
 
 ### program identification
 my $title = "$program $version, $date - $copyright\n";
@@ -381,8 +382,9 @@
   --help              print usage
   --version           print version number
   --(no)verbose       verbose printing                         ($bool[$::opt_verbose])
-  --(no)debug         debug informations                       ($bool[$::opt_debug])
-  --gscmd <name>      call of ghostscript                      ($::opt_gscmd)
+  --(no)quiet         silence normal output                    ($bool[$::opt_quiet])
+  --(no)debug         debug information                        ($bool[$::opt_debug])
+  --gscmd <name>      call of Ghostscript                      ($::opt_gscmd)
   --pdftex | --xetex | --luatex
                       use pdfTeX | use XeTeX | use LuaTeX      ($::opt_tex)
   --pdftexcmd <name>  call of pdfTeX                           ($::opt_pdftexcmd)
@@ -390,11 +392,11 @@
   --luatexcmd <name>  call of LuaTeX                           ($::opt_luatexcmd)
   --margins "<left> <top> <right> <bottom>"                    ($::opt_margins)
                       add extra margins, unit is bp. If only one number is
-                      given, then it is used for all margins, in the case
-                      of two numbers they are also used for right and bottom.
+                      given, then it is used for all margins; in the case
+                      of two numbers, they are also used for right and bottom.
   --(no)clip          clipping support, if margins are set     ($bool[$::opt_clip])
                       (not available for --xetex)
-  --(no)hires         using `%%HiResBoundingBox'               ($bool[$::opt_hires])
+  --(no)hires         use `%%HiResBoundingBox'                 ($bool[$::opt_hires])
                       instead of `%%BoundingBox'
   --(no)ini           use iniTeX variant of the TeX compiler   ($bool[$::opt_initex])
 Expert options:
@@ -402,22 +404,21 @@
   --papersize <foo>   parameter for gs's -sPAPERSIZE=<foo>,
                       use only with older gs versions <7.32    ($::opt_papersize)
   --resolution <xres>x<yres>                                   ($::opt_resolution)
-  --resolution <res>  pass argument to ghostscript's option -r
+  --resolution <res>  pass argument to Ghostscript's option -r
                       Example: --resolution 72
   --bbox "<left> <bottom> <right> <top>"                       ($::opt_bbox)
-                      override bounding box found by ghostscript
+                      override bounding box found by Ghostscript
                       with origin at the lower left corner
   --bbox-odd          Same as --bbox, but for odd pages only   ($::opt_bbox_odd)
   --bbox-even         Same as --bbox, but for even pages only  ($::opt_bbox_even)
   --pdfversion <x.y> | auto | none
-                      Set the PDF version to x.y, x= 1 or 2, y=0-9.
+                      Set the PDF version to x.y, x= 1 or 2, y= 0-9.
                       If `auto' is given as value, then the
                       PDF version is taken from the header
                       of the input PDF file.
                       An empty value or `none' uses the
                       default of the TeX engine.               ($::opt_pdfversion)
-  --uncompress        creates an uncompressed pdf, 
-                      useful for debugging                     ($bool[$::opt_uncompress])                     
+  --uncompress        create uncompressed pdf, for debugging   ($bool[$::opt_uncompress])                     
 
 Input file: If the name is `-', then the standard input is used and
   the output file name must be explicitly given.

Modified: trunk/Master/texmf-dist/doc/support/pdfcrop/README.md
===================================================================
--- trunk/Master/texmf-dist/doc/support/pdfcrop/README.md	2023-04-16 20:22:47 UTC (rev 66861)
+++ trunk/Master/texmf-dist/doc/support/pdfcrop/README.md	2023-04-16 20:23:04 UTC (rev 66862)
@@ -1,6 +1,6 @@
 # pdfcrop
 
-Version: 2023/04/13 v1.41
+Version: 2023/04/15 v1.42
 
 
 ## TABLE OF CONTENTS
@@ -255,8 +255,8 @@
 |--               | \* add -q option, issue 7 |
 |--               | \* don't print whole help msg for unknown options, issue 7.|
 |--               | \* do not create two pages with xetex, issue 3|
+|2023/04/15 v1.42:| \* update help text issue 18|
 
-
 ## 13. TODO
 
 * Description of user interface.

Modified: trunk/Master/texmf-dist/scripts/pdfcrop/pdfcrop.pl
===================================================================
--- trunk/Master/texmf-dist/scripts/pdfcrop/pdfcrop.pl	2023-04-16 20:22:47 UTC (rev 66861)
+++ trunk/Master/texmf-dist/scripts/pdfcrop/pdfcrop.pl	2023-04-16 20:23:04 UTC (rev 66862)
@@ -18,8 +18,8 @@
 my $prj         = 'pdfcrop';
 my $file        = "$prj.pl";
 my $program     = uc($&) if $file =~ /^\w+/;
-my $version     = "1.41";
-my $date        = "2023/04/13";
+my $version     = "1.42";
+my $date        = "2023/04/15";
 my $author      = "Heiko Oberdiek, Oberdiek Package Support Group";
 my $copyright   = "Copyright (c) 2002-2023 by $author.";
 #
@@ -111,6 +111,7 @@
 #                     add -q option, issue 7;
 #                     don't print whole help msg for unknown options, issue 7.
 #                     do not create two pages with xetex, issue 3 
+# 2023/04/15 v1.42: * update help text issue 18
 
 ### program identification
 my $title = "$program $version, $date - $copyright\n";
@@ -381,8 +382,9 @@
   --help              print usage
   --version           print version number
   --(no)verbose       verbose printing                         ($bool[$::opt_verbose])
-  --(no)debug         debug informations                       ($bool[$::opt_debug])
-  --gscmd <name>      call of ghostscript                      ($::opt_gscmd)
+  --(no)quiet         silence normal output                    ($bool[$::opt_quiet])
+  --(no)debug         debug information                        ($bool[$::opt_debug])
+  --gscmd <name>      call of Ghostscript                      ($::opt_gscmd)
   --pdftex | --xetex | --luatex
                       use pdfTeX | use XeTeX | use LuaTeX      ($::opt_tex)
   --pdftexcmd <name>  call of pdfTeX                           ($::opt_pdftexcmd)
@@ -390,11 +392,11 @@
   --luatexcmd <name>  call of LuaTeX                           ($::opt_luatexcmd)
   --margins "<left> <top> <right> <bottom>"                    ($::opt_margins)
                       add extra margins, unit is bp. If only one number is
-                      given, then it is used for all margins, in the case
-                      of two numbers they are also used for right and bottom.
+                      given, then it is used for all margins; in the case
+                      of two numbers, they are also used for right and bottom.
   --(no)clip          clipping support, if margins are set     ($bool[$::opt_clip])
                       (not available for --xetex)
-  --(no)hires         using `%%HiResBoundingBox'               ($bool[$::opt_hires])
+  --(no)hires         use `%%HiResBoundingBox'                 ($bool[$::opt_hires])
                       instead of `%%BoundingBox'
   --(no)ini           use iniTeX variant of the TeX compiler   ($bool[$::opt_initex])
 Expert options:
@@ -402,22 +404,21 @@
   --papersize <foo>   parameter for gs's -sPAPERSIZE=<foo>,
                       use only with older gs versions <7.32    ($::opt_papersize)
   --resolution <xres>x<yres>                                   ($::opt_resolution)
-  --resolution <res>  pass argument to ghostscript's option -r
+  --resolution <res>  pass argument to Ghostscript's option -r
                       Example: --resolution 72
   --bbox "<left> <bottom> <right> <top>"                       ($::opt_bbox)
-                      override bounding box found by ghostscript
+                      override bounding box found by Ghostscript
                       with origin at the lower left corner
   --bbox-odd          Same as --bbox, but for odd pages only   ($::opt_bbox_odd)
   --bbox-even         Same as --bbox, but for even pages only  ($::opt_bbox_even)
   --pdfversion <x.y> | auto | none
-                      Set the PDF version to x.y, x= 1 or 2, y=0-9.
+                      Set the PDF version to x.y, x= 1 or 2, y= 0-9.
                       If `auto' is given as value, then the
                       PDF version is taken from the header
                       of the input PDF file.
                       An empty value or `none' uses the
                       default of the TeX engine.               ($::opt_pdfversion)
-  --uncompress        creates an uncompressed pdf, 
-                      useful for debugging                     ($bool[$::opt_uncompress])                     
+  --uncompress        create uncompressed pdf, for debugging   ($bool[$::opt_uncompress])                     
 
 Input file: If the name is `-', then the standard input is used and
   the output file name must be explicitly given.



More information about the tex-live-commits mailing list.