commit
2b6f506f70
|
|
@ -171,9 +171,9 @@ endif # USE_GPGME
|
||||||
symbol_files = $(top_srcdir)/src/libostree/libostree-released.sym
|
symbol_files = $(top_srcdir)/src/libostree/libostree-released.sym
|
||||||
|
|
||||||
# Uncomment this include when adding new development symbols.
|
# Uncomment this include when adding new development symbols.
|
||||||
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
|
||||||
|
|
||||||
# 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=
|
||||||
|
|
|
||||||
|
|
@ -1,7 +1,7 @@
|
||||||
AC_PREREQ([2.63])
|
AC_PREREQ([2.63])
|
||||||
dnl To perform a release, follow the instructions in `docs/CONTRIBUTING.md`.
|
dnl To perform a release, follow the instructions in `docs/CONTRIBUTING.md`.
|
||||||
m4_define([year_version], [2022])
|
m4_define([year_version], [2022])
|
||||||
m4_define([release_version], [4])
|
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=no
|
||||||
|
|
|
||||||
|
|
@ -20,11 +20,6 @@
|
||||||
- uncomment the include in Makefile-libostree.am
|
- uncomment the include in Makefile-libostree.am
|
||||||
*/
|
*/
|
||||||
|
|
||||||
LIBOSTREE_2022.4 {
|
|
||||||
global:
|
|
||||||
ostree_fs_get_all_xattrs;
|
|
||||||
ostree_fs_get_all_xattrs_at;
|
|
||||||
} LIBOSTREE_2021.5;
|
|
||||||
|
|
||||||
/* 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
|
||||||
|
|
|
||||||
|
|
@ -677,6 +677,12 @@ global:
|
||||||
ostree_repo_traverse_commit_with_flags;
|
ostree_repo_traverse_commit_with_flags;
|
||||||
} LIBOSTREE_2021.5;
|
} LIBOSTREE_2021.5;
|
||||||
|
|
||||||
|
LIBOSTREE_2022.4 {
|
||||||
|
global:
|
||||||
|
ostree_fs_get_all_xattrs;
|
||||||
|
ostree_fs_get_all_xattrs_at;
|
||||||
|
} LIBOSTREE_2021.5;
|
||||||
|
|
||||||
/* 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
|
||||||
4f0600ad7af4ba937f463dc0bdc38aef6f53b154e88730b935552330c6a19a3f ${released_syms}
|
fb66f84d9af5270ed34fdf9f70f97e59394336a9559f493917704bdffa19027d ${released_syms}
|
||||||
EOF
|
EOF
|
||||||
sha256sum -c released-sha256.txt
|
sha256sum -c released-sha256.txt
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue