Change tarball making procedure
authorRichard Levitte <levitte@openssl.org>
Thu, 22 Nov 2018 20:17:47 +0000 (21:17 +0100)
committerRichard Levitte <levitte@openssl.org>
Fri, 23 Nov 2018 11:42:47 +0000 (12:42 +0100)
commitf68bfdf62805f1f3af4330754c7f141fa521b6dd
tree640b36702c7c7ac8431c23e6891cc21d8142a23f
parent0fbe8491fc05d280a1f00bfc26dd3c3a6c63f04a
Change tarball making procedure

Since recently, OpenSSL tarballs are produced with 'make tar' rather
than 'make dist', as the latter has turned out to be more troublesome
than useful.

The next step to look at is why we would need to configure at all to
produce a Makefile just to produce a tarball.  After all, the tarball
should now only contain source files that are present even without
configuring.

Furthermore, the current method for producing tarballs is a bit
complex, and can be greatly simplified with the right tools.  Since we
have everything versioned with git, we might as well use the tool that
comes with it.

Added: util/mktar.sh, a simple script to produce OpenSSL tarballs.  It
takes the options --name to modify the prefix of the distribution, and
--tarfile tp modify the tarball file name specifically.

This also adds a few entries in .gitattributes to specify files that
should never end up in a distribution tarball.

Reviewed-by: Matt Caswell <matt@openssl.org>
(Merged from https://github.com/openssl/openssl/pull/7692)

(cherry picked from commit 8c209eeef426ded66ce99048f535f35d08b88462)
.gitattributes
util/mktar.sh [new file with mode: 0755]