Release 2022.5
This commit is contained in:
parent
f50fe7008c
commit
15740d042c
|
|
@ -174,9 +174,6 @@ symbol_files = $(top_srcdir)/src/libostree/libostree-released.sym
|
||||||
#if BUILDOPT_IS_DEVEL_BUILD
|
#if BUILDOPT_IS_DEVEL_BUILD
|
||||||
#symbol_files += $(top_srcdir)/src/libostree/libostree-devel.sym
|
#symbol_files += $(top_srcdir)/src/libostree/libostree-devel.sym
|
||||||
#endif
|
#endif
|
||||||
if BUILDOPT_IS_DEVEL_BUILD
|
|
||||||
symbol_files += $(top_srcdir)/src/libostree/libostree-devel.sym
|
|
||||||
endif
|
|
||||||
|
|
||||||
# http://blog.jgc.org/2007/06/escaping-comma-and-space-in-gnu-make.html
|
# http://blog.jgc.org/2007/06/escaping-comma-and-space-in-gnu-make.html
|
||||||
wl_versionscript_arg = -Wl,--version-script=
|
wl_versionscript_arg = -Wl,--version-script=
|
||||||
|
|
|
||||||
|
|
@ -4,7 +4,7 @@ m4_define([year_version], [2022])
|
||||||
m4_define([release_version], [5])
|
m4_define([release_version], [5])
|
||||||
m4_define([package_version], [year_version.release_version])
|
m4_define([package_version], [year_version.release_version])
|
||||||
AC_INIT([libostree], [package_version], [walters@verbum.org])
|
AC_INIT([libostree], [package_version], [walters@verbum.org])
|
||||||
is_release_build=no
|
is_release_build=yes
|
||||||
AC_CONFIG_HEADER([config.h])
|
AC_CONFIG_HEADER([config.h])
|
||||||
AC_CONFIG_MACRO_DIR([buildutil])
|
AC_CONFIG_MACRO_DIR([buildutil])
|
||||||
AC_CONFIG_AUX_DIR([build-aux])
|
AC_CONFIG_AUX_DIR([build-aux])
|
||||||
|
|
|
||||||
|
|
@ -20,11 +20,6 @@
|
||||||
- uncomment the include in Makefile-libostree.am
|
- uncomment the include in Makefile-libostree.am
|
||||||
*/
|
*/
|
||||||
|
|
||||||
LIBOSTREE_2022.5 {
|
|
||||||
global:
|
|
||||||
ostree_kernel_args_append_if_missing;
|
|
||||||
ostree_sysroot_deployment_set_kargs_in_place;
|
|
||||||
} LIBOSTREE_2022.4;
|
|
||||||
|
|
||||||
/* Stub section for the stable release *after* this development one; don't
|
/* Stub section for the stable release *after* this development one; don't
|
||||||
* edit this other than to update the year. This is just a copy/paste
|
* edit this other than to update the year. This is just a copy/paste
|
||||||
|
|
|
||||||
|
|
@ -683,6 +683,12 @@ global:
|
||||||
ostree_fs_get_all_xattrs_at;
|
ostree_fs_get_all_xattrs_at;
|
||||||
} LIBOSTREE_2022.2;
|
} LIBOSTREE_2022.2;
|
||||||
|
|
||||||
|
LIBOSTREE_2022.5 {
|
||||||
|
global:
|
||||||
|
ostree_kernel_args_append_if_missing;
|
||||||
|
ostree_sysroot_deployment_set_kargs_in_place;
|
||||||
|
} LIBOSTREE_2022.4;
|
||||||
|
|
||||||
/* NOTE: Only add more content here in release commits! See the
|
/* NOTE: Only add more content here in release commits! See the
|
||||||
* comments at the top of this file.
|
* comments at the top of this file.
|
||||||
*/
|
*/
|
||||||
|
|
|
||||||
|
|
@ -54,7 +54,7 @@ echo 'ok documented symbols'
|
||||||
|
|
||||||
# ONLY update this checksum in release commits!
|
# ONLY update this checksum in release commits!
|
||||||
cat > released-sha256.txt <<EOF
|
cat > released-sha256.txt <<EOF
|
||||||
34ff6c97e20242a449b210f7452a12d0bb6ac9e135638f71c2d27b2f2b583ef3 ${released_syms}
|
370e560e4044b17523d23b04e383539cd22eac7c3067b7324803129ceebd73f0 ${released_syms}
|
||||||
EOF
|
EOF
|
||||||
sha256sum -c released-sha256.txt
|
sha256sum -c released-sha256.txt
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue