Compare commits

...

5 Commits

Author SHA1 Message Date
Christian Hesse
cc0715ab15 fix typo in NEWS 2024-02-27 14:31:13 +10:00
Allan McRae
674b90b78a Update web index for release
Signed-off-by: Allan McRae <allan@archlinux.org>
2024-02-27 14:31:13 +10:00
Allan McRae
bca78a5ec8 Update meson.build for release
Signed-off-by: Allan McRae <allan@archlinux.org>
2024-02-27 14:31:13 +10:00
Allan McRae
23305f7cc7 Update NEWS for 6.1 release
Signed-off-by: Allan McRae <allan@archlinux.org>
2024-02-27 14:31:13 +10:00
Allan McRae
6c2937a74f Update README for 6.1
Signed-off-by: Allan McRae <allan@archlinux.org>
2024-02-27 14:31:13 +10:00
4 changed files with 58 additions and 2 deletions

29
NEWS
View File

@@ -1,5 +1,34 @@
VERSION DESCRIPTION
-----------------------------------------------------------------------------
6.1.0 - Add cache server support
- Improvements to --sysroot option - NOTE: targets to -U are no
longer interpreted relative to sysroot
- Add more format specifiers for --print operations
- Add extended data field for arbitrary package data
- Do not run hooks with --dbonly
- Provide more details when encoutering file conflicts or
corrupt packages
- Improved WKD support (FS#73703, FS#73534)
- Improved handling of malformed download headers (FS#73704)
- Use openssl interfaces for calculating sha256 and md5 sums
- Fix multi download bar chomps
- makepkg:
- Replace libdepends and libprovides with autodeps
- Support configuration via makepkg.conf.d drop-ins
- Add GITFLAGS environmental variable to customize checkouts
- Add -D option to change directory before building
- Implement verfiy() function for custom source verificaton
- Add checksum support for git/mercurial/bzr sources
- Improved stripping and debug package support
- Configurable LTO support
- Add source signing PGP keys to package if available
- Store "pkgtype" in xdata
- Remove md5sum from mtree files
- Document MAKEPKG_LIBRARY
- repo-add:
- Do not include package signature details in the repo. Add
the --include-sigs to revert to old behaviour.
- Do not add md5sum to the repo database
6.0.1 - Prevent download error pages ending up in package files
(FS#71083)
- Give -U downloads a random .part file name if needed

26
README
View File

@@ -697,3 +697,29 @@ API CHANGES BETWEEN 5.2 AND 6.0
- misc
- alpm_pkg_get_sig()
- callbacks add front-end provided context
API CHANGES BETWEEN 6.0 AND 6.1
===============================
[REMOVED]
- alpm_trans_t
[CHANGED]
- alpm_conflict_t - full package added as member, removing package name and name
hash members
- alpm_question_import_key_t - holds key uid and fingerprint rather than alpm_pgpkey_t
- alpm_pkgreason_t - added ALPM_PKG_REASON_UNKNOWN
- alpm_transflag_t - added ALPM_TRANS_FLAG_NOHOOKS
[ADDED]
- extensible package data type
- alpm_pkg_xdata_t
- alpm_pkg_get_xdata()
- accessor functions
- alpm_db_get_handle()
- alpm_pkg_get_handle()
- cache server support
- alpm_db_get_cache_servers()
- alpm_db_set_cache_servers()
- alpm_db_add_cache_server()

View File

@@ -77,6 +77,7 @@ Releases
[frame="topbot",grid="none",options="header,autowidth"]
!======
!Version !Date
!6.1.0 !2024-03-04
!6.0.1 !2021-09-04
!6.0.0 !2021-05-20
!6.0.0alpha1 !2020-12-04

View File

@@ -1,6 +1,6 @@
project('pacman',
'c',
version : '6.0.1',
version : '6.1.0',
license : 'GPLv2+',
default_options : [
'c_std=gnu99',
@@ -10,7 +10,7 @@ project('pacman',
],
meson_version : '>= 0.56')
libalpm_version = '13.0.1'
libalpm_version = '14.0.0'
cc = meson.get_compiler('c')