1
0
mirror of https://git.FreeBSD.org/src.git synced 2024-12-24 11:29:10 +00:00
freebsd/build
Martin Matuska 6a316f322a Update libarchive's vendor dist to version 3.1.2 from release branch.
Git branch:	release
Git commit:	19f23e191f9d3e1dd2a518735046100419965804

Obtained from:	https://github.com/libarchive/libarchive.git
2013-03-21 18:59:02 +00:00
..
autoconf Update vendor libarchive dist to new "release" branch (post 3.0.3) 2012-02-08 12:53:14 +00:00
cmake Update libarchive's vendor dist to version 3.1.2 from release branch. 2013-03-21 18:59:02 +00:00
pkgconfig Update vendor libarchive dist to new "release" branch (post 3.0.3) 2012-02-08 12:53:14 +00:00
utils Update libarchive's vendor dist to version 3.0.4 from release branch. 2012-07-27 08:24:12 +00:00
autogen.sh Update libarchive's vendor dist to version 3.1.2 from release branch. 2013-03-21 18:59:02 +00:00
bump-version.sh Update libarchive's vendor dist to version 3.1.2 from release branch. 2013-03-21 18:59:02 +00:00
clean.sh Update vendor libarchive dist to new "release" branch (post 3.0.3) 2012-02-08 12:53:14 +00:00
makerelease.sh Update libarchive's vendor dist to version 3.1.2 from release branch. 2013-03-21 18:59:02 +00:00
README.txt Update libarchive's vendor dist to version 3.1.2 from release branch. 2013-03-21 18:59:02 +00:00
version Update libarchive's vendor dist to version 3.1.2 from release branch. 2013-03-21 18:59:02 +00:00

Notes on making a new release of libarchive
===========================================

The following serves as a guide for libarchive developers on the general
process to be followed when making a new release of libarchive.

* Update build/version with the version number of the release to be made.
* If the library's ABI has changed, the library's soname major version *MUST*
  be updated. Update configure.ac and CMakeLists.txt appropriately.
  - For configure.ac, the variable ARCHIVE_INTERFACE needs to be updated.
  - For CMakeLists.txt, the variable INTERFACE_VERSION needs to be updated.
* Update the entries in the NEWS file accordingly.
* Run `build/makerelease.sh` from the top source directory. Running this script
  will do the following.
  - Removes all Makefile.am development build specific CFLAGS from
    Makefile.am.
  - Update configure scripts and header files with the appropriate version
    number from build/version.
  - Rebuild the documentation directory.
  - Runs a full cmake build and test.
  - Runs a full autotools build and test.
  - Builds the .tar.gz and .zip distribution files.
* Commit all changed files into git.
  - This should be build/version, NEWS, and the files edited by running
    build/makerelease.sh.
* Tag the release appropriately. The tag should also have an appropriate
  message.
  - The git command is as follows:
    $ git tag -m "Libarchive <version>" v<version>
    Replace <version> with the version to be released.
* Copy all the generated wiki files and commit them into the libarchive.wiki
  repository. Overwrite any preexisting files with the same name (these files
  are always autogenerated from the libarchive release after every release).
* Update the libarchive.org website accordingly.
* Make an announcement to the libarchive-announce mailing list.