mirror of
https://github.com/python/cpython.git
synced 2025-08-02 08:02:56 +00:00
Use the mksourcepgk script instead of mktarball.sh.
This commit is contained in:
parent
9ff3a6a6e7
commit
83c0983bf6
1 changed files with 7 additions and 6 deletions
13
Doc/Makefile
13
Doc/Makefile
|
@ -213,13 +213,13 @@ info-$(RELEASE).tar.bz2: info
|
||||||
| bzip2 -9 >$@
|
| bzip2 -9 >$@
|
||||||
|
|
||||||
latex-$(RELEASE).tgz:
|
latex-$(RELEASE).tgz:
|
||||||
$(TOOLSDIR)/mktarball.sh $(RELEASE)
|
$(TOOLSDIR)/mksourcepkg --gzip $(RELEASE)
|
||||||
|
|
||||||
latex-$(RELEASE).tar.bz2:
|
latex-$(RELEASE).tar.bz2:
|
||||||
$(TOOLSDIR)/mktarball.sh --bzip2 $(RELEASE)
|
$(TOOLSDIR)/mksourcepkg --bzip2 $(RELEASE)
|
||||||
|
|
||||||
latex-$(RELEASE).zip:
|
latex-$(RELEASE).zip:
|
||||||
$(TOOLSDIR)/mktarball.sh --zip $(RELEASE)
|
$(TOOLSDIR)/mksourcepkg --zip $(RELEASE)
|
||||||
|
|
||||||
pdf-$(PAPER)-$(RELEASE).tgz: pdf
|
pdf-$(PAPER)-$(RELEASE).tgz: pdf
|
||||||
(cd paper-$(PAPER); tar cf - *.pdf) | gzip -9 >$@
|
(cd paper-$(PAPER); tar cf - *.pdf) | gzip -9 >$@
|
||||||
|
@ -261,14 +261,14 @@ tarps: postscript-$(PAPER)-$(RELEASE).tgz
|
||||||
tarpdf: pdf-$(PAPER)-$(RELEASE).tgz
|
tarpdf: pdf-$(PAPER)-$(RELEASE).tgz
|
||||||
tarlatex: latex-$(RELEASE).tgz
|
tarlatex: latex-$(RELEASE).tgz
|
||||||
|
|
||||||
tarballs: tarpdf tarps tarhtml tarlatex
|
tarballs: tarpdf tarps tarhtml
|
||||||
|
|
||||||
ziphtml: html-$(RELEASE).zip
|
ziphtml: html-$(RELEASE).zip
|
||||||
zipps: postscript-$(PAPER)-$(RELEASE).zip
|
zipps: postscript-$(PAPER)-$(RELEASE).zip
|
||||||
zippdf: pdf-$(PAPER)-$(RELEASE).zip
|
zippdf: pdf-$(PAPER)-$(RELEASE).zip
|
||||||
ziplatex: latex-$(RELEASE).zip
|
ziplatex: latex-$(RELEASE).zip
|
||||||
|
|
||||||
zips: zippdf zipps ziphtml ziplatex
|
zips: zippdf zipps ziphtml
|
||||||
|
|
||||||
bziphtml: html-$(RELEASE).tar.bz2
|
bziphtml: html-$(RELEASE).tar.bz2
|
||||||
bzipinfo: info-$(RELEASE).tar.bz2
|
bzipinfo: info-$(RELEASE).tar.bz2
|
||||||
|
@ -276,9 +276,10 @@ bzipps: postscript-$(PAPER)-$(RELEASE).tar.bz2
|
||||||
bzippdf: pdf-$(PAPER)-$(RELEASE).tar.bz2
|
bzippdf: pdf-$(PAPER)-$(RELEASE).tar.bz2
|
||||||
bziplatex: latex-$(RELEASE).tar.bz2
|
bziplatex: latex-$(RELEASE).tar.bz2
|
||||||
|
|
||||||
bzips: bzippdf bzipps bziphtml bziplatex
|
bzips: bzippdf bzipps bziphtml
|
||||||
|
|
||||||
distfiles: tarballs zips bzips
|
distfiles: tarballs zips bzips
|
||||||
|
$(TOOLSDIR)/mksourcepkg --all $(RELEASE)
|
||||||
|
|
||||||
|
|
||||||
# Housekeeping targets
|
# Housekeeping targets
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue