-
Notifications
You must be signed in to change notification settings - Fork 128
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
v2.0; added compatibility package minted1; moved all \changes to chan…
…gelog
- Loading branch information
Showing
9 changed files
with
667 additions
and
53 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,38 @@ | ||
TEXFLAGS = -e '$$pdflatex=q/pdflatex %O -shell-escape %S/' -pdf | ||
LATEXMK = latexmk | ||
|
||
PACKAGE = minted.dtx \ | ||
minted.ins \ | ||
minted.pdf \ | ||
README \ | ||
Makefile | ||
|
||
.PHONY: minted all doc dist clean cleanall | ||
|
||
minted: minted.sty | ||
|
||
doc: minted.pdf | ||
|
||
all: minted doc | ||
|
||
minted.sty: minted.ins minted.dtx | ||
tex minted.ins | ||
|
||
minted.pdf: minted.sty minted.gls minted.dtx | ||
$(LATEXMK) $(TEXFLAGS) minted.dtx | ||
|
||
minted.gls: minted.glo | ||
makeindex -s gglo.ist -o minted.gls minted.glo | ||
|
||
minted.glo: minted.dtx minted.sty | ||
$(LATEXMK) $(TEXFLAGS) minted.dtx | ||
|
||
dist: $(PACKAGE) | ||
@$(RM) minted.zip | ||
@zip minted-$(shell grep '^\\ProvidesPackage' < minted.sty | grep -o '\<v[[:digit:]]*\.[[:digit:]]*\>').zip $(PACKAGE) | ||
|
||
clean: | ||
@$(RM) *.aux *.log *.out *.toc *.fdb_latexmk *.ilg *.glo *.gls *.lol | ||
|
||
cleanall: clean | ||
@$(RM) minted.sty minted.zip |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
8353b80
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
My sincerest congratulations for getting version 2.0 done. You’ve taken a mediocre package in an absolutely messy state from me, and created an almost complete rewrite, with tons of improvements and bug fixes. I have been following the progress of this repository over the years and the sheer amount of work you’ve put in, both in programming and in dealing with user feedback, amazes me. This is Open Source at its best.
Well done! 👍
8353b80
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@klmr Thanks! It's good to get feedback from someone who understands the work that goes into these things.