summaryrefslogtreecommitdiff
path: root/Master/texmf-dist/doc/latex/listings
diff options
context:
space:
mode:
authorKarl Berry <karl@freefriends.org>2019-02-28 22:37:22 +0000
committerKarl Berry <karl@freefriends.org>2019-02-28 22:37:22 +0000
commit97eed0e5d61bdb3aa50b351f2cdae80c39e6bad7 (patch)
tree2a7bdec96bce1add39588436597a6caf8cd715a7 /Master/texmf-dist/doc/latex/listings
parentb37375f523e3b3b381dae4bbda2befbfd776e863 (diff)
listings (28feb19)
git-svn-id: svn://tug.org/texlive/trunk@50175 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Master/texmf-dist/doc/latex/listings')
-rw-r--r--Master/texmf-dist/doc/latex/listings/Makefile225
-rw-r--r--Master/texmf-dist/doc/latex/listings/README6
-rw-r--r--Master/texmf-dist/doc/latex/listings/listings-devel.pdfbin1130454 -> 1140171 bytes
-rw-r--r--Master/texmf-dist/doc/latex/listings/listings.pdfbin730982 -> 742942 bytes
-rw-r--r--Master/texmf-dist/doc/latex/listings/lstdrvrs.pdfbin566075 -> 571118 bytes
5 files changed, 2 insertions, 229 deletions
diff --git a/Master/texmf-dist/doc/latex/listings/Makefile b/Master/texmf-dist/doc/latex/listings/Makefile
deleted file mode 100644
index 58f10b23946..00000000000
--- a/Master/texmf-dist/doc/latex/listings/Makefile
+++ /dev/null
@@ -1,225 +0,0 @@
-### Makefile ---
-#
-# This file generates files required to use the listings package.
-#
-# $Id$
-#
-# (c) 2007 Brooks Moses
-# (c) 2013-2018 Jobst Hoffmann
-#
-# This file is distributed under the terms of the LaTeX Project Public
-# License from CTAN archives in directory macros/latex/base/lppl.txt.
-# Either version 1.3 or, at your option, any later version.
-
-# remember:
-# $<: first element of list of dependees
-# $^: list of (all) dependees
-# $@: target
-
-# formatting tools
-LATEX = pdflatex
-MAKEINDEX = makeindex
-TEX = tex
-# tarring options
-ifneq "$(wildcard listings.version)" ""
-include listings.version # version and date of the package
-endif
-TAR_SRC = $(PACKAGE)-$(VERSION)_source.tgz
-EXsvn = --exclude .svn --exclude auto --exclude contrib --exclude requests \
- --exclude support --exclude testing \
- --exclude *.tgz --exclude *.txt
-
-DISTRIBUTION_FILES = ../$(PACKAGE)/$(PACKAGE).pdf \
- ../$(PACKAGE)/$(PACKAGE)-devel.pdf \
- ../$(PACKAGE)/$(PACKAGE).dtx \
- ../$(PACKAGE)/$(PACKAGE).ins \
- ../$(PACKAGE)/README \
- ../$(PACKAGE)/Makefile \
- ../$(PACKAGE)/lstdrvrs.dtx \
- ../$(PACKAGE)/lstdrvrs.ins \
- ../$(PACKAGE)/lstdrvrs.pdf
-PACKAGE_FILES = $(subst ../$(PACKAGE)/,,$(DISTRIBUTION_FILES))
-
-.SUFFIXES: # Delete the default suffixes
-.SUFFIXES: .dtx .ins .pdf .sty # Define our own suffix list
-
-.PHONY: listings pdf pdf-devel tests all
-
-listings: listings.sty
-
-pdf: listings.pdf lstdrvrs.pdf
-
-pdf-devel: listings-devel.pdf
-
-all: listings pdf pdf-devel
-
-
-listings.sty: listings.ins listings.dtx lstdrvrs.dtx
- $(TEX) $<
-
-listings.pdf: listings.sty
- rm -f ltxdoc.cfg
- $(LATEX) ${<:.sty=.dtx}
- $(MAKEINDEX) -s gind.ist ${@:.pdf=}
- $(LATEX) ${<:.sty=.dtx}
- $(LATEX) ${<:.sty=.dtx}
-
-listings-devel.pdf: listings.sty
- rm -rf ltxdoc.cfg
- echo "\AtBeginDocument{\AlsoImplementation}" > ltxdoc.cfg
- $(LATEX) -jobname=${@:.pdf=} ${<:.sty=.dtx}
- $(MAKEINDEX) -s gind.ist ${@:.pdf=}
- $(LATEX) -jobname=${@:.pdf=} ${<:.sty=.dtx}
- $(LATEX) -jobname=${@:.pdf=} ${<:.sty=.dtx}
- rm -rf ltxdoc.cfg
-
-lstdrvrs.pdf: lstdrvrs.dtx
- rm -f ltxdoc.cfg
- $(LATEX) ${<:.sty=.dtx}
- $(MAKEINDEX) -s gind.ist lstdrvrs
- $(LATEX) ${<:.sty=.dtx}
- $(LATEX) ${<:.sty=.dtx}
-
-## Testing targets
-acm-tests:
- cd testing; make acm
-
-algol-tests:
- cd testing; make algol
-
-bash-tests:
- cd testing; make bash
-
-c++11-tests:
- cd testing; make c++11
-
-cobol-tests:
- cd testing; make cobol
-
-fortran-tests:
- cd testing; make fortran
-
-elisp-tests:
- cd testing; make elisp
-
-gap-tests:
- cd testing; make gap
-
-go-tests:
- cd testing; make go
-
-hansl-tests:
- cd testing; make hansl
-
-llvm-tests:
- cd testing; make llvm
-
-lua-tests:
- cd testing; make lua
-
-mathematica-tests:
- cd testing; make mathematica
-
-python-tests:
- cd testing; make python
-
-scala-tests:
- cd testing; make scala
-
-swift-tests:
- cd testing; make swift
-
-vbscript-tests:
- cd testing; make vbscript
-
-xml-tests:
- cd testing; make xml
-
-tests:
- cd testing; make all
-
-## Clean targets
-clean:
- -rm -f *~ *.aux *.lof *.log *.lot *.tmp *.toc
- -rm -f *.idx *.ind *.glg *.glo *.gls *.ilg *.out
- -rm -f *.bbl *.blg *.brf
-
-clean-results:
- -rm -f *.cfg *.pdf *.prf *.sty
-
-realclean: clean clean-results
-
-### create packed files
-tar-src:
- @$(MAKE) realclean; \
- sed -i -e "s+fileversion{[a-z0-9\.\-]*}+fileversion{$(VERSION)}+g" \
- -e "s+filedate{[0-9/]*}+filedate{$(DATE)}+g" \
- -e "s+date{[0-9/]*\\\\enspace+date{$(DATE)\\\\enspace+g" \
- -e "s+Version [a-z0-9\.\-]*\\\\+Version $(VERSION)\\\\+g" \
- listings.dtx; \
- sed -i -e "s+date{[0-9/]*\\\\enspace+date{$(DATE)\\\\enspace+g" \
- -e "s+Version [a-z0-9\.\-]*\\\\+Version $(VERSION)\\\\+g" \
- -e "s+\[[0-9/]* [a-z0-9\.\-]* listings+[$(DATE) $(VERSION) listings+g" \
- lstdrvrs.dtx; \
- cd ..; tar $(EXsvn) -czvf $(PACKAGE)/$(TAR_SRC) $(PACKAGE)
-
-tar-dist: $(PACKAGE_FILES)
- @$(MAKE) realclean; \
- sed -i -e "s+fileversion{[a-z0-9\.\-]*}+fileversion{$(VERSION)}+g" \
- -e "s+filedate{[0-9/]*}+filedate{$(DATE)}+g" \
- -e "s+date{[0-9/]*\\\\enspace+date{$(DATE)\\\\enspace+g" \
- -e "s+Version [a-z0-9\.\-]*\\\\+Version $(VERSION)\\\\+g" \
- listings.dtx; \
- sed -i -e "s+date{[0-9/]*\\\\enspace+date{$(DATE)\\\\enspace+g" \
- -e "s+Version [a-z0-9\.\-]*\\\\+Version $(VERSION)\\\\+g" \
- -e "s+\[[0-9/]* [a-z0-9\.\-]* listings+[$(DATE) $(VERSION) listings+g" \
- lstdrvrs.dtx; \
- $(MAKE) listings.pdf; \
- $(MAKE) listings-devel.pdf; \
- $(MAKE) lstdrvrs.pdf; \
- tar cfvz $(PACKAGE)-$(VERSION).tgz $(DISTRIBUTION_FILES);
-
-tagged-release:
- sed -n -e "/Version $(VERSION)/,$$$$w announcement_text.log" \
- announcement_text.txt
- svn copy --file ./announcement_text.log \
- svn+ssh://j_hoffmann@svn.gnu.org.ua/listings/trunk \
- svn+ssh://j_hoffmann@svn.gnu.org.ua/listings/tags/$(VERSION)
- rm announcement_text.log
-
-
-## Documentation target
-help::
- $(info Usage:)
- $(info )
- $(info make [all] generates listings.sty and [all] the .pdf versions)
- $(info $(empty) (user/developer) of the documentation)
- $(info )
- $(info make <file name>)
- $(info $(empty) creates the corresponding file denoted by <file name>)
- $(info )
- $(info make help shows this help)
- $(info )
- $(info make tests performs a little test suite)
- $(info )
- $(info make clean removes all intermediate files created by a LaTeX run)
- $(info )
- $(info make clean-results)
- $(info $(empty) removes .cfg, .sty, and .pdf files)
- $(info )
- $(info make realclean)
- $(info $(empty) performs clean and clean-results)
- $(info )
- $(info make tar-src)
- $(info $(empty) generates a tarred version of the current directory)
- $(info )
- $(info make tar-dist)
- $(info $(empty) generates a distributable version of the listings)
- $(info $(empty) package)
- $(info )
- $(info make tagged-release)
- $(info $(empty) creates a new tagged version of the package based on)
- $(info $(empty) the contents of listings.version and announcement_text.txt)
- @echo "" # prevents message "nothing to do ..."
-
-### Makefile ends here ---
diff --git a/Master/texmf-dist/doc/latex/listings/README b/Master/texmf-dist/doc/latex/listings/README
index 07fc43e5067..a6f0849c166 100644
--- a/Master/texmf-dist/doc/latex/listings/README
+++ b/Master/texmf-dist/doc/latex/listings/README
@@ -3,11 +3,9 @@ Listings package
Copyright 1996--2004 Carsten Heinz (the package)
Copyright 1996--2007 individual authors (language drivers)
Copyright 2006--2007 Brooks Moses (continued maintenance)
-Copyright 2013-- Jobst Hoffmann (continued maintenance)
+Copyright 2013--2019 Jobst Hoffmann (continued maintenance)
-$Id$
-
-Released under the LaTeX Project Public License 1.3 or later
+Released under the LaTeX Project Public License 1.3c or later
The `listings' package is a source code printer for LaTeX.
You can typeset stand alone files as well as listings with
diff --git a/Master/texmf-dist/doc/latex/listings/listings-devel.pdf b/Master/texmf-dist/doc/latex/listings/listings-devel.pdf
index 19365d7a7a6..06c8147ab63 100644
--- a/Master/texmf-dist/doc/latex/listings/listings-devel.pdf
+++ b/Master/texmf-dist/doc/latex/listings/listings-devel.pdf
Binary files differ
diff --git a/Master/texmf-dist/doc/latex/listings/listings.pdf b/Master/texmf-dist/doc/latex/listings/listings.pdf
index ddb30b4c829..5831599b09a 100644
--- a/Master/texmf-dist/doc/latex/listings/listings.pdf
+++ b/Master/texmf-dist/doc/latex/listings/listings.pdf
Binary files differ
diff --git a/Master/texmf-dist/doc/latex/listings/lstdrvrs.pdf b/Master/texmf-dist/doc/latex/listings/lstdrvrs.pdf
index 3db2dde57d4..823831c95d2 100644
--- a/Master/texmf-dist/doc/latex/listings/lstdrvrs.pdf
+++ b/Master/texmf-dist/doc/latex/listings/lstdrvrs.pdf
Binary files differ