/
githubmirror
/
libarchive
ОбзорДокументацияВойти
/
githubmirror
/
libarchive
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
ДокументацияПоддержка
Политика конфиденциальностиПользовательское соглашениеПолитика использования «cookies»Согласие субъекта персональных данных
2026 ©
libarchive/
build/
..
autoconf

import m4_ax_compile_check_sizeof.m4 from autoconf archive

5 лет назад
ci

build: use vcpkg for Windows-MSVC's dependencies

2 месяца назад
cmake

unzip: Add Windows port

2 месяца назад
la-lint

Merge commit '25ef914386252adbf67d07d6c5bf018dfcbe34a9' as 'build/la-lint'

месяц назад
pkgconfig

autotools: Fix static linking when openssl is enabled in windows

4 года назад
release

build: fetch config.guess/config.sub over HTTPS in release Dockerfile

2 месяца назад
utils

Add some more error checking to shell scripts (#2617)

год назад
README.txt

Update libarchive website location.

14 лет назад
autogen.sh

Add some more error checking to shell scripts (#2617)

год назад
bump-version.sh

Add some more error checking to shell scripts (#2617)

год назад
clean.sh

Add some more error checking to shell scripts (#2617)

год назад
makerelease.sh

build: fetch config.guess/config.sub over HTTPS in makerelease.sh

2 месяца назад
version

Libarchive 3.9.0dev

год назад
README.txt
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.