texlive[55424] Master/texmf-dist: crop (5jun20)

commits+karl at tug.org commits+karl at tug.org
Fri Jun 5 23:48:15 CEST 2020


Revision: 55424
          http://tug.org/svn/texlive?view=revision&revision=55424
Author:   karl
Date:     2020-06-05 23:48:15 +0200 (Fri, 05 Jun 2020)
Log Message:
-----------
crop (5jun20)

Modified Paths:
--------------
    trunk/Master/texmf-dist/source/latex/crop/Makefile
    trunk/Master/texmf-dist/source/latex/crop/crop.dtx

Added Paths:
-----------
    trunk/Master/texmf-dist/doc/latex/crop/README
    trunk/Master/texmf-dist/doc/latex/crop/crop.pdf

Removed Paths:
-------------
    trunk/Master/texmf-dist/doc/latex/crop/crop.txt

Added: trunk/Master/texmf-dist/doc/latex/crop/README
===================================================================
--- trunk/Master/texmf-dist/doc/latex/crop/README	                        (rev 0)
+++ trunk/Master/texmf-dist/doc/latex/crop/README	2020-06-05 21:48:15 UTC (rev 55424)
@@ -0,0 +1,23 @@
+crop
+====
+
+This package provides different forms of cropmarks for trimming paper
+stacks, for camera alignment and for visualizing the page dimensions. There
+are options for centering the page with respect to some physical paper size,
+for marking the vertical and horizontal middle axis, for mounting pages on a
+physical sheet, for reflecting and inverting the whole document or printing
+it upside-down, and for suppressing either text or graphics output.
+
+
+COPYRIGHT NOTICE
+================
+This package is free software that can be redistributed and/or modified
+under the terms of the LaTeX Project Public License as specified
+in the file macros/latex/base/lppl.txt on any CTAN archive server.
+
+
+Extracting the package & processing the documentation
+=====================================================
+
+Run "make" to get the style file and the documentation, then install
+crop.sty and crop.pdf in appropriate directories.


Property changes on: trunk/Master/texmf-dist/doc/latex/crop/README
___________________________________________________________________
Added: svn:eol-style
## -0,0 +1 ##
+native
\ No newline at end of property
Added: trunk/Master/texmf-dist/doc/latex/crop/crop.pdf
===================================================================
(Binary files differ)

Index: trunk/Master/texmf-dist/doc/latex/crop/crop.pdf
===================================================================
--- trunk/Master/texmf-dist/doc/latex/crop/crop.pdf	2020-06-05 21:47:56 UTC (rev 55423)
+++ trunk/Master/texmf-dist/doc/latex/crop/crop.pdf	2020-06-05 21:48:15 UTC (rev 55424)

Property changes on: trunk/Master/texmf-dist/doc/latex/crop/crop.pdf
___________________________________________________________________
Added: svn:mime-type
## -0,0 +1 ##
+application/pdf
\ No newline at end of property
Deleted: trunk/Master/texmf-dist/doc/latex/crop/crop.txt
===================================================================
--- trunk/Master/texmf-dist/doc/latex/crop/crop.txt	2020-06-05 21:47:56 UTC (rev 55423)
+++ trunk/Master/texmf-dist/doc/latex/crop/crop.txt	2020-06-05 21:48:15 UTC (rev 55424)
@@ -1,50 +0,0 @@
-crop.sty
-========
-
-provides different forms of cropmarks for
-trimming paper stacks, for camera alignment and
-for visualizing the page dimensions.
-There are options for centering the page with
-respect to some physical paper size, for marking
-the vertical and horizontal middle axis, for
-mounting pages on a physical sheet, for
-reflecting and inverting the whole document or
-printing it upside-down, and for suppressing
-either text or graphics output.
-
-
-author          = "Melchior FRANZ"
-maintainer      = "Reuben Thomas"
-version         = "1.10"
-date            = "19 Nov 2017"
-URL             = "https://github.org/rrthomas/crop/"
-email           = "rrt at sc3d.org"
-codetable       = "ISO/ASCII"
-keywords        = "cropmarks, frame, mirror, rotate, invert"
-supported       = "yes"
-
-
-
-COPYRIGHT NOTICE
-================
-This package is free software that can be redistributed and/or modified
-under the terms of the LaTeX Project Public License as specified
-in the file macros/latex/base/lppl.txt on any CTAN archive server.
-
-
-
-Extracting the package & processing the documentation
-=====================================================
-
-on Unix/Linux just run "make" to get the style file and the documentation;
-else generate the driver crop.ins (if you don't already have it):
-
-    $ latex crop.dtx
-
-Now generate the style file:
-
-    $ tex crop.ins
-
-And finally to produce the documentation run LaTeX three times:
-
-    $ latex crop.dtx

Modified: trunk/Master/texmf-dist/source/latex/crop/Makefile
===================================================================
--- trunk/Master/texmf-dist/source/latex/crop/Makefile	2020-06-05 21:47:56 UTC (rev 55423)
+++ trunk/Master/texmf-dist/source/latex/crop/Makefile	2020-06-05 21:48:15 UTC (rev 55424)
@@ -1,16 +1,20 @@
 NAME=crop
-ARCHIVE_NAME=$(NAME).tar.gz
-ARCHIVE_CONTENTS=$(NAME).dtx Makefile $(NAME).txt $(NAME).ins
+VERSION=`cat VERSION`
+ARCHIVE_NAME=$(NAME).zip
+ARCHIVE_CONTENTS=$(NAME).dtx $(NAME).pdf Makefile README $(NAME).ins
 
-all: $(NAME).sty $(NAME).pdf
+all: $(NAME).sty $(NAME).pdf VERSION
 
-archive: $(NAME).ins
-	@ tar -czf $(ARCHIVE_NAME) $(ARCHIVE_CONTENTS)
-	@ echo $(ARCHIVE_NAME):
-	@ echo ====================
-	@ tar -tzf $(ARCHIVE_NAME)
+archive: $(ARCHIVE_CONTENTS)
+	rm -rf $(NAME)/
+	mkdir $(NAME)/
+	cp $(ARCHIVE_CONTENTS) $(NAME)/
+	zip -r $(ARCHIVE_NAME) $(NAME)
 
-$(NAME).pdf:
+$(NAME).dtx: $(NAME).dtx.in
+	nancy $(NAME).dtx.in . > $(NAME).dtx
+
+$(NAME).pdf: $(NAME.dtx)
 	latexmk $(NAME).dtx
 
 $(NAME).sty: $(NAME).ins
@@ -18,3 +22,8 @@
 
 $(NAME).ins:
 	pdflatex $(NAME).dtx
+
+release: archive
+	git diff --exit-code && \
+	git tag -a -m "Release tag" "v$(VERSION)" && \
+	git push && git push --tags

Modified: trunk/Master/texmf-dist/source/latex/crop/crop.dtx
===================================================================
--- trunk/Master/texmf-dist/source/latex/crop/crop.dtx	2020-06-05 21:47:56 UTC (rev 55423)
+++ trunk/Master/texmf-dist/source/latex/crop/crop.dtx	2020-06-05 21:48:15 UTC (rev 55424)
@@ -27,15 +27,15 @@
 %% ====================================================================
 %%  @LaTeX-package-file{
 %%     author          = "Melchior FRANZ",
-%%     version         = "1.10",
-%%     date            = "19 Nov 2017",
+%%     version         = "1.10.2",
+%%     date            = "05 Jun 2020",
 %%     filename        = "crop.dtx",
 %%     address         = "Melchior FRANZ
 %%                        Rieder Hauptstrasse 52
 %%                        A-5212 SCHNEEGATTERN
 %%                        AUSTRIA",
-%%     URL             = "https://github.com/drehscheibe/crop/",
-%%     email           = "mfranz at aon.at",
+%%     URL             = "https://github.com/rrthomas/crop/",
+%%     email           = "rrt at sc3d.org",
 %%     codetable       = "ISO/ASCII",
 %%     keywords        = "cropmarks, frame, mirror, rotate, invert",
 %%     supported       = "yes",
@@ -74,8 +74,8 @@
 %
 %
 %<*driver>
-\def\fileversion{1.10}
-\def\filedate{2017/11/19}
+\def\fileversion{1.10.2}
+\def\filedate{2020/06/05}
 \documentclass{ltxdoc}
 \usepackage{hyperref}
 \hypersetup{
@@ -2234,4 +2234,4 @@
 %
 % ^^A \PrintChanges
 % ^^A vim:ts=4:sw=4:et:cindent
-% \Finale                                               ^^A.E.I.O.U.^^
+% \Finale                                               ^^A.E.I.O.U.^^
\ No newline at end of file



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