Release 2020.8
This commit is contained in:
parent
abbe7ea4e7
commit
3e289b1934
|
|
@ -184,9 +184,12 @@ libostree_1_la_SOURCES += \
|
||||||
endif # USE_GPGME
|
endif # USE_GPGME
|
||||||
|
|
||||||
symbol_files = $(top_srcdir)/src/libostree/libostree-released.sym
|
symbol_files = $(top_srcdir)/src/libostree/libostree-released.sym
|
||||||
if BUILDOPT_IS_DEVEL_BUILD
|
|
||||||
symbol_files += $(top_srcdir)/src/libostree/libostree-devel.sym
|
## Uncomment this include when adding new development symbols.
|
||||||
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=
|
||||||
EXTRA_DIST += \
|
EXTRA_DIST += \
|
||||||
|
|
|
||||||
|
|
@ -10,7 +10,7 @@ m4_define([year_version], [2020])
|
||||||
m4_define([release_version], [8])
|
m4_define([release_version], [8])
|
||||||
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])
|
||||||
|
|
|
||||||
|
|
@ -15,14 +15,12 @@
|
||||||
License along with this library; if not, write to the
|
License along with this library; if not, write to the
|
||||||
Free Software Foundation, Inc., 59 Temple Place - Suite 330,
|
Free Software Foundation, Inc., 59 Temple Place - Suite 330,
|
||||||
Boston, MA 02111-1307, USA.
|
Boston, MA 02111-1307, USA.
|
||||||
***/
|
|
||||||
|
|
||||||
LIBOSTREE_2020.8 {
|
How to introduce the first new symbol for a development version:
|
||||||
global:
|
- copy the stub content below to a new entry
|
||||||
ostree_repo_list_static_delta_indexes;
|
- replace templated value as noted
|
||||||
ostree_repo_static_delta_reindex;
|
- uncomment the include in Makefile-libostree.am
|
||||||
ostree_repo_gpg_sign_data;
|
*/
|
||||||
} LIBOSTREE_2020.7;
|
|
||||||
|
|
||||||
/* 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
|
||||||
|
|
|
||||||
|
|
@ -596,7 +596,6 @@ global:
|
||||||
/* No new symbols in 2020.2 */
|
/* No new symbols in 2020.2 */
|
||||||
/* No new symbols in 2020.3 */
|
/* No new symbols in 2020.3 */
|
||||||
|
|
||||||
/* Add new symbols here. Release commits should copy this section into -released.sym. */
|
|
||||||
LIBOSTREE_2020.4 {
|
LIBOSTREE_2020.4 {
|
||||||
global:
|
global:
|
||||||
ostree_repo_commit_modifier_set_sepolicy_from_commit;
|
ostree_repo_commit_modifier_set_sepolicy_from_commit;
|
||||||
|
|
@ -619,14 +618,10 @@ global:
|
||||||
} LIBOSTREE_2020.1;
|
} LIBOSTREE_2020.1;
|
||||||
|
|
||||||
/* No new symbols in 2020.5 */
|
/* No new symbols in 2020.5 */
|
||||||
|
|
||||||
/* No new symbols in 2020.6 */
|
/* No new symbols in 2020.6 */
|
||||||
|
|
||||||
LIBOSTREE_2020.7 {
|
LIBOSTREE_2020.7 {
|
||||||
global:
|
global:
|
||||||
/* Add symbols here, and uncomment the bits in
|
|
||||||
* Makefile-libostree.am to enable this too.
|
|
||||||
*/
|
|
||||||
ostree_repo_static_delta_execute_offline_with_signature;
|
ostree_repo_static_delta_execute_offline_with_signature;
|
||||||
ostree_repo_static_delta_verify_signature;
|
ostree_repo_static_delta_verify_signature;
|
||||||
ostree_bootconfig_parser_get_overlay_initrds;
|
ostree_bootconfig_parser_get_overlay_initrds;
|
||||||
|
|
@ -636,6 +631,13 @@ global:
|
||||||
ostree_sysroot_stage_overlay_initrd;
|
ostree_sysroot_stage_overlay_initrd;
|
||||||
} LIBOSTREE_2020.4;
|
} LIBOSTREE_2020.4;
|
||||||
|
|
||||||
|
LIBOSTREE_2020.8 {
|
||||||
|
global:
|
||||||
|
ostree_repo_list_static_delta_indexes;
|
||||||
|
ostree_repo_static_delta_reindex;
|
||||||
|
ostree_repo_gpg_sign_data;
|
||||||
|
} LIBOSTREE_2020.7;
|
||||||
|
|
||||||
/* 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.
|
||||||
*/
|
*/
|
||||||
|
|
|
||||||
|
|
@ -66,7 +66,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
|
||||||
540ee37ff081a8649fd1b1fa3cf1b80f7b8abb01f6ba71eead0b3b828d6cb696 ${released_syms}
|
3e677623543b7fdc57b0e3d9c66eb477105b014411259762a328c1b5e82068f0 ${released_syms}
|
||||||
EOF
|
EOF
|
||||||
sha256sum -c released-sha256.txt
|
sha256sum -c released-sha256.txt
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue