mirror of
git://git.code.sf.net/p/zsh/code
synced 2025-08-01 23:51:05 +02:00
unposted (cf 43373): Add two caveats: no local modifications, and need to build in-tree.
This commit is contained in:
parent
380da60118
commit
55f1afcec8
2 changed files with 12 additions and 0 deletions
|
@ -1,3 +1,8 @@
|
||||||
|
2018-09-05 Daniel Shahaf <d.s@daniel.shahaf.name>
|
||||||
|
|
||||||
|
* unposted (cf 43373): Etc/creating-a-release.txt: Add two
|
||||||
|
caveats: no local modifications, and need to build in-tree.
|
||||||
|
|
||||||
2018-09-03 Daniel Shahaf <d.s@daniel.shahaf.name>
|
2018-09-03 Daniel Shahaf <d.s@daniel.shahaf.name>
|
||||||
|
|
||||||
* 43370: Etc/creating-a-release.txt: New maintainer-facing
|
* 43370: Etc/creating-a-release.txt: New maintainer-facing
|
||||||
|
|
|
@ -33,12 +33,19 @@ To create a zsh release:
|
||||||
- Create tarball:
|
- Create tarball:
|
||||||
|
|
||||||
git checkout zsh-5.5.1-test-1
|
git checkout zsh-5.5.1-test-1
|
||||||
|
git diff HEAD # ensure no local mods
|
||||||
|
Util/preconfig && ./configure ...
|
||||||
|
make
|
||||||
make -C Etc
|
make -C Etc
|
||||||
make -C Doc everything
|
make -C Doc everything
|
||||||
make tarxz-doc tarxz-src
|
make tarxz-doc tarxz-src
|
||||||
for i in zsh*.tar.?z ; do gpg -ab -- $i ; done
|
for i in zsh*.tar.?z ; do gpg -ab -- $i ; done
|
||||||
|
|
||||||
# The tarxz-* targets create both *.tar.gz and *.tar.xz.
|
# The tarxz-* targets create both *.tar.gz and *.tar.xz.
|
||||||
|
#
|
||||||
|
# They must be run in an in-tree build (where the generated 'configure'
|
||||||
|
# and the generated 'Makefile' are in the same directory), for now, since
|
||||||
|
# Doc/help/* need to be included in the src tarball. See workers/43373.
|
||||||
|
|
||||||
- [one time step] Add your key to http://zsh.sf.net/Arc/source.html; see README in the 'web' repository for how to do this. Its URL is:
|
- [one time step] Add your key to http://zsh.sf.net/Arc/source.html; see README in the 'web' repository for how to do this. Its URL is:
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue