Script 'mail_helper' called by obssrc
Hello community,

here is the log from the commit of package zchunk for openSUSE:Factory checked 
in at 2021-05-21 21:49:27
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/zchunk (Old)
 and      /work/SRC/openSUSE:Factory/.zchunk.new.2988 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "zchunk"

Fri May 21 21:49:27 2021 rev:12 rq:894754 version:1.1.14

Changes:
--------
--- /work/SRC/openSUSE:Factory/zchunk/zchunk.changes    2021-05-06 
22:51:33.247015053 +0200
+++ /work/SRC/openSUSE:Factory/.zchunk.new.2988/zchunk.changes  2021-05-21 
21:49:28.478368119 +0200
@@ -1,0 +2,12 @@
+Fri May 21 04:53:18 UTC 2021 - Ismail D??nmez <ism...@i10z.com>
+
+- Update to version 1.1.14
+  * Final fixes for zstd 1.5 support
+
+-------------------------------------------------------------------
+Sat May 15 18:14:53 UTC 2021 - Ismail D??nmez <ism...@i10z.com>
+
+- Update to version 1.1.12
+  * Update testsuite for zstd 1.5
+
+-------------------------------------------------------------------

Old:
----
  zchunk-1.1.11.tar.gz

New:
----
  zchunk-1.1.14.tar.gz

++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Other differences:
------------------
++++++ zchunk.spec ++++++
--- /var/tmp/diff_new_pack.THh6Uk/_old  2021-05-21 21:49:29.602363455 +0200
+++ /var/tmp/diff_new_pack.THh6Uk/_new  2021-05-21 21:49:29.606363438 +0200
@@ -22,7 +22,7 @@
 %global devname libzck-devel
 
 Name:           zchunk
-Version:        1.1.11
+Version:        1.1.14
 Release:        0
 Summary:        Compressed file format that allows easy deltas
 License:        BSD-2-Clause AND MIT

++++++ zchunk-1.1.11.tar.gz -> zchunk-1.1.14.tar.gz ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/zchunk-1.1.11/meson.build 
new/zchunk-1.1.14/meson.build
--- old/zchunk-1.1.11/meson.build       2021-05-01 19:26:14.000000000 +0200
+++ new/zchunk-1.1.14/meson.build       2021-05-20 22:18:16.000000000 +0200
@@ -1,6 +1,6 @@
 project(
     'zck', 'c',
-    version : '1.1.11',
+    version : '1.1.14',
     meson_version : '>=0.44.0',
     default_options : ['c_std=gnu99']
 )
@@ -23,6 +23,9 @@
     zstd_dep = dependency('libzstd', required : get_option('with-zstd') == 
'enabled')
     if zstd_dep.found()
         add_project_arguments('-DZCHUNK_ZSTD', language : 'c')
+        if zstd_dep.version().version_compare('<=1.4.9')
+            add_project_arguments('-DOLD_ZSTD', language : 'c')
+        endif
     endif
 endif
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/zchunk-1.1.11/src/lib/comp/zstd/zstd.c 
new/zchunk-1.1.14/src/lib/comp/zstd/zstd.c
--- old/zchunk-1.1.11/src/lib/comp/zstd/zstd.c  2021-05-01 19:26:14.000000000 
+0200
+++ new/zchunk-1.1.14/src/lib/comp/zstd/zstd.c  2021-05-20 22:18:16.000000000 
+0200
@@ -37,16 +37,39 @@
     VALIDATE_BOOL(zck);
     ALLOCD_BOOL(zck, comp);
 
+    size_t retval = 0;
+
     comp->cctx = ZSTD_createCCtx();
+#ifndef OLD_ZSTD
+    retval = ZSTD_CCtx_setParameter(comp->cctx, ZSTD_c_compressionLevel, 
comp->level);
+    if(ZSTD_isError(retval)) {
+        set_fatal_error(zck, "Unable to set compression level to %i", 
comp->level);
+        return false;
+    }
+    // This seems to be the only way to make the compression deterministic 
across
+    // architectures with zstd 1.5.0
+    retval = ZSTD_CCtx_setParameter(comp->cctx, ZSTD_c_strategy, ZSTD_btopt);
+    if(ZSTD_isError(retval)) {
+        set_fatal_error(zck, "Unable to set compression strategy");
+        return false;
+    }
+#endif //OLD_ZSTD
     comp->dctx = ZSTD_createDCtx();
     if(comp->dict && comp->dict_size > 0) {
+#ifdef OLD_ZSTD
         comp->cdict_ctx = ZSTD_createCDict(comp->dict, comp->dict_size,
                                            comp->level);
         if(comp->cdict_ctx == NULL) {
-            set_fatal_error(zck,
-                            "Unable to create zstd compression dict context");
+            set_fatal_error(zck, "Unable to create zstd compression dict 
context");
+            return false;
+        }
+#else
+        retval = ZSTD_CCtx_loadDictionary(comp->cctx, comp->dict, 
comp->dict_size);
+        if(ZSTD_isError(retval)) {
+            set_fatal_error(zck, "Unable to add zdict to compression context");
             return false;
         }
+#endif //OLD_ZSTD
         comp->ddict_ctx = ZSTD_createDDict(comp->dict, comp->dict_size);
         if(comp->ddict_ctx == NULL) {
             set_fatal_error(zck,
@@ -115,7 +138,7 @@
     }
 
     *dst = zmalloc(max_size);
-
+#ifdef OLD_ZSTD
     /* Currently, compression isn't deterministic when using contexts in
      * zstd 1.3.5, so this works around it */
     if(use_dict && comp->cdict_ctx) {
@@ -131,6 +154,11 @@
         *dst_size = ZSTD_compress(*dst, max_size, comp->dc_data,
                                   comp->dc_data_size, comp->level);
     }
+#else
+    *dst_size = ZSTD_compress2(comp->cctx, *dst, max_size, comp->dc_data,
+                               comp->dc_data_size);
+#endif //OLD_ZSTD
+
     free(comp->dc_data);
     comp->dc_data = NULL;
     comp->dc_data_loc = 0;
Binary files old/zchunk-1.1.11/test/abi/stable/libzck.so.1.1.11 and 
new/zchunk-1.1.14/test/abi/stable/libzck.so.1.1.11 differ
Binary files old/zchunk-1.1.11/test/abi/stable/libzck.so.1.1.14 and 
new/zchunk-1.1.14/test/abi/stable/libzck.so.1.1.14 differ
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/zchunk-1.1.11/test/abi/stable/zck.h 
new/zchunk-1.1.14/test/abi/stable/zck.h
--- old/zchunk-1.1.11/test/abi/stable/zck.h     2021-05-01 19:26:14.000000000 
+0200
+++ new/zchunk-1.1.14/test/abi/stable/zck.h     2021-05-20 22:18:16.000000000 
+0200
@@ -1,7 +1,7 @@
 #ifndef ZCK_H
 #define ZCK_H
 
-#define ZCK_VERSION "1.1.11"
+#define ZCK_VERSION "1.1.14"
 
 #include <stdlib.h>
 #include <stdbool.h>
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/zchunk-1.1.11/test/compat_reports/zchunk/1.1.10_to_1.1.11/compat_report.html
 
new/zchunk-1.1.14/test/compat_reports/zchunk/1.1.10_to_1.1.11/compat_report.html
--- 
old/zchunk-1.1.11/test/compat_reports/zchunk/1.1.10_to_1.1.11/compat_report.html
    2021-05-01 19:26:14.000000000 +0200
+++ 
new/zchunk-1.1.14/test/compat_reports/zchunk/1.1.10_to_1.1.11/compat_report.html
    1970-01-01 01:00:00.000000000 +0100
@@ -1,475 +0,0 @@
-<!-- 
kind:binary;verdict:compatible;affected:0;added:0;removed:0;type_problems_high:0;type_problems_medium:0;type_problems_low:0;interface_problems_high:0;interface_problems_medium:0;interface_problems_low:0;changed_constants:0;tool_version:2.3
 -->
-<!-- 
kind:source;verdict:compatible;affected:0;added:0;removed:0;type_problems_high:0;type_problems_medium:0;type_problems_low:0;interface_problems_high:0;interface_problems_medium:0;interface_problems_low:0;changed_constants:0;tool_version:2.3
 -->
-<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" 
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd";>
-<html xmlns="http://www.w3.org/1999/xhtml"; xml:lang="en" lang="en">
-<head>
-<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
-<meta name="viewport" content="width=device-width,initial-scale=1" />
-<meta name="keywords" content="zchunk, compatibility, API, ABI, report" />
-<meta name="description" content="API/ABI compatibility report for the zchunk 
object between 1.1.10 and 1.1.11 versions" />
-<meta name="robots" content="noindex" />
-<title>zchunk: 1.1.10 to 1.1.11 compatibility report</title>
-<style type="text/css">
-body {
-    font-family:Arial, sans-serif;
-    background-color:White;
-    color:Black;
-}
-hr {
-    color:Black;
-    background-color:Black;
-    height:1px;
-    border:0;
-}
-h1 {
-    margin-bottom:0px;
-    padding-bottom:0px;
-    font-size:1.625em;
-}
-h2 {
-    margin-bottom:0px;
-    padding-bottom:0px;
-    font-size:1.25em;
-    white-space:nowrap;
-}
-span.section {
-    font-weight:bold;
-    cursor:pointer;
-    color:#003E69;
-    white-space:nowrap;
-    margin-left:0.3125em;
-}
-span.new_sign {
-    font-weight:bold;
-    margin-left:1.65em;
-    color:#003E69;
-}
-span.new_sign_lbl {
-    margin-left:3em;
-    font-size:1em;
-    color:Black;
-}
-span:hover.section {
-    color:#336699;
-}
-span.sect_aff {
-    cursor:pointer;
-    padding-left:1.55em;
-    font-size:0.875em;
-    color:#cc3300;
-}
-span.sect_info {
-    cursor:pointer;
-    padding-left:1.55em;
-    font-size:0.875em;
-    color:Black;
-}
-span.ext {
-    font-weight:normal;
-}
-span.h_name {
-    color:#cc3300;
-    font-size:0.875em;
-    font-weight:bold;
-}
-div.h_list, div.lib_list {
-    font-size:0.94em;
-    padding-left:0.4em;
-}
-span.ns {
-    color:#408080;
-    font-size:0.94em;
-}
-span.lib_name {
-    color:Green;
-    font-size:0.875em;
-    font-weight:bold;
-}
-span.iname {
-    font-weight:bold;
-    color:#003E69;
-    margin-left:0.3125em;
-}
-span.iname_b {
-    font-weight:bold;
-}
-span.iname_a {
-    color:#333333;
-    font-weight:bold;
-    font-size:0.94em;
-}
-span.sym_p {
-    font-weight:normal;
-    white-space:normal;
-}
-span.sym_pd {
-    white-space:normal;
-}
-span.sym_p span, span.sym_pd span {
-    white-space:nowrap;
-}
-div.affect {
-    padding-left:1em;
-    padding-bottom:10px;
-    font-size:0.87em;
-    font-style:italic;
-    line-height:0.9em;
-}
-div.affected {
-    padding-left:1.9em;
-    padding-top:10px;
-}
-table.ptable {
-    border-collapse:collapse;
-    border:1px outset black;
-    margin-left:0.95em;
-    margin-top:3px;
-    margin-bottom:3px;
-    width:56.25em;
-}
-table.ptable td {
-    border:1px solid gray;
-    padding:3px;
-    font-size:0.875em;
-    text-align:left;
-    vertical-align:top;
-    max-width:28em;
-    word-wrap:break-word;
-}
-table.ptable th.pn {
-    width:2%;
-}
-table.ptable th.chg {
-    width:47%;
-}
-table.vtable {
-    border-collapse:collapse;
-    border:1px outset black;
-    margin-left:1.9em;
-    margin-top:0.7em;
-}
-table.vtable td {
-    border:1px solid gray;
-    padding:3px;
-    font-size:0.875em;
-    vertical-align:top;
-    max-width:450px;
-    word-wrap:break-word;
-}
-table.ptable th, table.vtable th {
-    background-color:#eeeeee;
-    font-weight:bold;
-    color:#333333;
-    font-family:Verdana, Arial;
-    font-size:0.875em;
-    border:1px solid gray;
-    text-align:center;
-    vertical-align:top;
-    white-space:nowrap;
-    padding:3px;
-}
-table.summary {
-    border-collapse:collapse;
-    border:1px outset black;
-}
-table.summary th {
-    background-color:#eeeeee;
-    font-weight:normal;
-    text-align:left;
-    font-size:0.94em;
-    white-space:nowrap;
-    border:1px inset gray;
-    padding:3px;
-}
-table.summary td {
-    text-align:right;
-    white-space:nowrap;
-    border:1px inset gray;
-    padding:3px 5px 3px 10px;
-}
-span.mngl {
-    padding-left:1em;
-    font-size:0.875em;
-    cursor:text;
-    color:#444444;
-    font-weight:bold;
-}
-span.pleft {
-    padding-left:2.5em;
-}
-span.sym_ver {
-    color:#333333;
-    white-space:nowrap;
-    font-family:"DejaVu Sans Mono", Monospace;
-}
-span.attr {
-    color:#333333;
-    font-weight:normal;
-}
-span.color_p {
-    font-style:italic;
-    color:Brown;
-}
-span.p {
-    font-style:italic;
-}
-span.fp {
-    font-style:italic;
-    background-color:#DCDCDC;
-}
-span.ttype {
-    font-weight:normal;
-}
-span.nowrap {
-    white-space:nowrap;
-}
-span.value {
-    font-weight:bold;
-}
-.passed {
-    background-color:#CCFFCC;
-    font-weight:normal;
-}
-.warning {
-    background-color:#F4F4AF;
-    font-weight:normal;
-}
-.failed {
-    background-color:#FFCCCC;
-    font-weight:normal;
-}
-.new {
-    background-color:#C6DEFF;
-    font-weight:normal;
-}
-.compatible {
-    background-color:#CCFFCC;
-    font-weight:normal;
-}
-.almost_compatible {
-    background-color:#FFDAA3;
-    font-weight:normal;
-}
-.incompatible {
-    background-color:#FFCCCC;
-    font-weight:normal;
-}
-.gray {
-    background-color:#DCDCDC;
-    font-weight:normal;
-}
-.top_ref {
-    font-size:0.69em;
-}
-.footer {
-    font-size:0.75em;
-}
-
-.tabset {
-    float:left;
-}
-a.tab {
-    border:1px solid Black;
-    float:left;
-    margin:0px 5px -1px 0px;
-    padding:3px 5px 3px 5px;
-    position:relative;
-    font-size:0.875em;
-    background-color:#DDD;
-    text-decoration:none;
-    color:Black;
-}
-a.disabled:hover
-{
-    color:Black;
-    background:#EEE;
-}
-a.active:hover
-{
-    color:Black;
-    background:White;
-}
-a.active {
-    border-bottom-color:White;
-    background-color:White;
-}
-div.tab {
-    border-top:1px solid Black;
-    padding:0px;
-    width:100%;
-    clear:both;
-}
-</style>
-<script type="text/javascript" language="JavaScript">
-<!--
-function showContent(header, id)
-{
-    e = document.getElementById(id);
-    if(e.style.display == 'none')
-    {
-        e.style.display = 'block';
-        e.style.visibility = 'visible';
-        header.innerHTML = header.innerHTML.replace(/\[[^0-9 
]\]/gi,"[&minus;]");
-    }
-    else
-    {
-        e.style.display = 'none';
-        e.style.visibility = 'hidden';
-        header.innerHTML = header.innerHTML.replace(/\[[^0-9 ]\]/gi,"[+]");
-    }
-}
-function initTabs()
-{
-    var url = window.location.href;
-    if(url.indexOf('_Source_')!=-1 || url.indexOf('#Source')!=-1)
-    {
-        var tab1 = document.getElementById('BinaryID');
-        var tab2 = document.getElementById('SourceID');
-        tab1.className='tab disabled';
-        tab2.className='tab active';
-    }
-    var sets = document.getElementsByTagName('div');
-    for (var i = 0; i < sets.length; i++)
-    {
-        if (sets[i].className.indexOf('tabset') != -1)
-        {
-            var tabs = [];
-            var links = sets[i].getElementsByTagName('a');
-            for (var j = 0; j < links.length; j++)
-            {
-                if (links[j].className.indexOf('tab') != -1)
-                {
-                    tabs.push(links[j]);
-                    links[j].tabs = tabs;
-                    var tab = 
document.getElementById(links[j].href.substr(links[j].href.indexOf('#') + 1));
-                    //reset all tabs on start
-                    if (tab)
-                    {
-                        if (links[j].className.indexOf('active')!=-1) {
-                            tab.style.display = 'block';
-                        }
-                        else {
-                            tab.style.display = 'none';
-                        }
-                    }
-                    links[j].onclick = function()
-                    {
-                        var tab = 
document.getElementById(this.href.substr(this.href.indexOf('#') + 1));
-                        if (tab)
-                        {
-                            //reset all tabs before change
-                            for (var k = 0; k < this.tabs.length; k++)
-                            {
-                                
document.getElementById(this.tabs[k].href.substr(this.tabs[k].href.indexOf('#') 
+ 1)).style.display = 'none';
-                                this.tabs[k].className = 
this.tabs[k].className.replace('active', 'disabled');
-                            }
-                            this.className = 'tab active';
-                            tab.style.display = 'block';
-                            // window.location.hash = this.id.replace('ID', 
'');
-                            return false;
-                        }
-                    }
-                }
-            }
-        }
-    }
-    if(url.indexOf('#')!=-1) {
-        location.href=location.href;
-    }
-}
-if (window.addEventListener) window.addEventListener('load', initTabs, false);
-else if (window.attachEvent) window.attachEvent('onload', initTabs);
--->
-</script>
-</head>
-<body><a name='Source'></a><a name='Binary'></a><a name='Top'></a><h1>API 
compatibility report for the <span style='color:Blue;'>libzck.so</span> object 
between <span style='color:Red;'>1.1.10</span> and <span 
style='color:Red;'>1.1.11</span> versions on <span 
style='color:Blue;'>x86_64</span></h1>
-
-            <br/>
-            <div class='tabset'>
-            <a id='BinaryID' href='#BinaryTab' class='tab 
active'>Binary<br/>Compatibility</a>
-            <a id='SourceID' href='#SourceTab' style='margin-left:3px' 
class='tab disabled'>Source<br/>Compatibility</a>
-            </div><div id='BinaryTab' class='tab'>
-<h2>Test Info</h2><hr/>
-<table class='summary'>
-<tr><th>Module Name</th><td>zchunk</td></tr>
-<tr><th>Version #1</th><td>1.1.10</td></tr>
-<tr><th>Version #2</th><td>1.1.11</td></tr>
-<tr><th>Arch</th><td>x86_64</td></tr>
-<tr><th>GCC Version</th><td>11.1.1</td></tr>
-<tr><th>Subject</th><td width='150px'>Binary Compatibility</td></tr>
-</table>
-<h2>Test Results</h2><hr/>
-<table class='summary'><tr><th>Total Header Files</th><td><a href='#Headers' 
style='color:Blue;'>1</a></td></tr>
-<tr><th>Total Objects</th><td><a href='#Libs' 
style='color:Blue;'>1</a></td></tr>
-<tr><th>Total Symbols / Types</th><td>75 / 14</td></tr>
-<tr><th>Compatibility</th>
-<td class='compatible'>100%</td>
-</tr>
-</table>
-<h2>Problem Summary</h2><hr/>
-<table class='summary'><tr><th></th><th 
style='text-align:center;'>Severity</th><th 
style='text-align:center;'>Count</th></tr><tr><th>Added 
Symbols</th><td>-</td><td>0</td></tr>
-<tr><th>Removed Symbols</th><td>High</td><td>0</td></tr>
-<tr><th rowspan='3'>Problems with<br/>Data 
Types</th><td>High</td><td>0</td></tr>
-<tr><td>Medium</td><td>0</td></tr>
-<tr><td>Low</td><td>0</td></tr>
-<tr><th rowspan='3'>Problems with<br/>Symbols</th><td>High</td><td>0</td></tr>
-<tr><td>Medium</td><td>0</td></tr>
-<tr><td>Low</td><td>0</td></tr>
-<tr><th>Problems with<br/>Constants</th><td>Low</td><td>0</td></tr>
-</table>
-
-<a name='Headers'></a><h2>Header Files <span 
class='gray'>&nbsp;1&nbsp;</span></h2><hr/>
-<div class='h_list'>
-zck.h<br/>
-</div>
-<br/><a class='top_ref' href='#Top'>to the top</a><br/>
-<a name='Libs'></a><h2>Objects <span 
class='gray'>&nbsp;1&nbsp;</span></h2><hr/>
-<div class='lib_list'>
-libzck.so.1.1.10<br/>
-</div>
-<br/><a class='top_ref' href='#Top'>to the top</a><br/>
-<br/><br/><br/></div><div id='SourceTab' class='tab'>
-<h2>Test Info</h2><hr/>
-<table class='summary'>
-<tr><th>Module Name</th><td>zchunk</td></tr>
-<tr><th>Version #1</th><td>1.1.10</td></tr>
-<tr><th>Version #2</th><td>1.1.11</td></tr>
-<tr><th>Arch</th><td>x86_64</td></tr>
-<tr><th>Subject</th><td width='150px'>Source Compatibility</td></tr>
-</table>
-<h2>Test Results</h2><hr/>
-<table class='summary'><tr><th>Total Header Files</th><td><a href='#Headers' 
style='color:Blue;'>1</a></td></tr>
-<tr><th>Total Objects</th><td><a href='#Libs' 
style='color:Blue;'>1</a></td></tr>
-<tr><th>Total Symbols / Types</th><td>75 / 14</td></tr>
-<tr><th>Compatibility</th>
-<td class='compatible'>100%</td>
-</tr>
-</table>
-<h2>Problem Summary</h2><hr/>
-<table class='summary'><tr><th></th><th 
style='text-align:center;'>Severity</th><th 
style='text-align:center;'>Count</th></tr><tr><th>Added 
Symbols</th><td>-</td><td>0</td></tr>
-<tr><th>Removed Symbols</th><td>High</td><td>0</td></tr>
-<tr><th rowspan='3'>Problems with<br/>Data 
Types</th><td>High</td><td>0</td></tr>
-<tr><td>Medium</td><td>0</td></tr>
-<tr><td>Low</td><td>0</td></tr>
-<tr><th rowspan='3'>Problems with<br/>Symbols</th><td>High</td><td>0</td></tr>
-<tr><td>Medium</td><td>0</td></tr>
-<tr><td>Low</td><td>0</td></tr>
-<tr><th>Problems with<br/>Constants</th><td>Low</td><td>0</td></tr>
-</table>
-
-<a name='Headers'></a><h2>Header Files <span 
class='gray'>&nbsp;1&nbsp;</span></h2><hr/>
-<div class='h_list'>
-zck.h<br/>
-</div>
-<br/><a class='top_ref' href='#Top'>to the top</a><br/>
-<a name='Libs'></a><h2>Objects <span 
class='gray'>&nbsp;1&nbsp;</span></h2><hr/>
-<div class='lib_list'>
-libzck.so.1.1.10<br/>
-</div>
-<br/><a class='top_ref' href='#Top'>to the top</a><br/>
-<br/><br/><br/></div><hr/>
-<div class='footer' align='right'><i>Generated by <a 
href='https://github.com/lvc/abi-compliance-checker'>ABI Compliance Checker</a> 
2.3 &#160;</i>
-</div>
-<br/>
-
-</body></html>
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/zchunk-1.1.11/test/compat_reports/zchunk/1.1.13_to_1.1.14/compat_report.html
 
new/zchunk-1.1.14/test/compat_reports/zchunk/1.1.13_to_1.1.14/compat_report.html
--- 
old/zchunk-1.1.11/test/compat_reports/zchunk/1.1.13_to_1.1.14/compat_report.html
    1970-01-01 01:00:00.000000000 +0100
+++ 
new/zchunk-1.1.14/test/compat_reports/zchunk/1.1.13_to_1.1.14/compat_report.html
    2021-05-20 22:18:16.000000000 +0200
@@ -0,0 +1,475 @@
+<!-- 
kind:binary;verdict:compatible;affected:0;added:0;removed:0;type_problems_high:0;type_problems_medium:0;type_problems_low:0;interface_problems_high:0;interface_problems_medium:0;interface_problems_low:0;changed_constants:0;tool_version:2.3
 -->
+<!-- 
kind:source;verdict:compatible;affected:0;added:0;removed:0;type_problems_high:0;type_problems_medium:0;type_problems_low:0;interface_problems_high:0;interface_problems_medium:0;interface_problems_low:0;changed_constants:0;tool_version:2.3
 -->
+<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" 
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd";>
+<html xmlns="http://www.w3.org/1999/xhtml"; xml:lang="en" lang="en">
+<head>
+<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
+<meta name="viewport" content="width=device-width,initial-scale=1" />
+<meta name="keywords" content="zchunk, compatibility, API, ABI, report" />
+<meta name="description" content="API/ABI compatibility report for the zchunk 
object between 1.1.13 and 1.1.14 versions" />
+<meta name="robots" content="noindex" />
+<title>zchunk: 1.1.13 to 1.1.14 compatibility report</title>
+<style type="text/css">
+body {
+    font-family:Arial, sans-serif;
+    background-color:White;
+    color:Black;
+}
+hr {
+    color:Black;
+    background-color:Black;
+    height:1px;
+    border:0;
+}
+h1 {
+    margin-bottom:0px;
+    padding-bottom:0px;
+    font-size:1.625em;
+}
+h2 {
+    margin-bottom:0px;
+    padding-bottom:0px;
+    font-size:1.25em;
+    white-space:nowrap;
+}
+span.section {
+    font-weight:bold;
+    cursor:pointer;
+    color:#003E69;
+    white-space:nowrap;
+    margin-left:0.3125em;
+}
+span.new_sign {
+    font-weight:bold;
+    margin-left:1.65em;
+    color:#003E69;
+}
+span.new_sign_lbl {
+    margin-left:3em;
+    font-size:1em;
+    color:Black;
+}
+span:hover.section {
+    color:#336699;
+}
+span.sect_aff {
+    cursor:pointer;
+    padding-left:1.55em;
+    font-size:0.875em;
+    color:#cc3300;
+}
+span.sect_info {
+    cursor:pointer;
+    padding-left:1.55em;
+    font-size:0.875em;
+    color:Black;
+}
+span.ext {
+    font-weight:normal;
+}
+span.h_name {
+    color:#cc3300;
+    font-size:0.875em;
+    font-weight:bold;
+}
+div.h_list, div.lib_list {
+    font-size:0.94em;
+    padding-left:0.4em;
+}
+span.ns {
+    color:#408080;
+    font-size:0.94em;
+}
+span.lib_name {
+    color:Green;
+    font-size:0.875em;
+    font-weight:bold;
+}
+span.iname {
+    font-weight:bold;
+    color:#003E69;
+    margin-left:0.3125em;
+}
+span.iname_b {
+    font-weight:bold;
+}
+span.iname_a {
+    color:#333333;
+    font-weight:bold;
+    font-size:0.94em;
+}
+span.sym_p {
+    font-weight:normal;
+    white-space:normal;
+}
+span.sym_pd {
+    white-space:normal;
+}
+span.sym_p span, span.sym_pd span {
+    white-space:nowrap;
+}
+div.affect {
+    padding-left:1em;
+    padding-bottom:10px;
+    font-size:0.87em;
+    font-style:italic;
+    line-height:0.9em;
+}
+div.affected {
+    padding-left:1.9em;
+    padding-top:10px;
+}
+table.ptable {
+    border-collapse:collapse;
+    border:1px outset black;
+    margin-left:0.95em;
+    margin-top:3px;
+    margin-bottom:3px;
+    width:56.25em;
+}
+table.ptable td {
+    border:1px solid gray;
+    padding:3px;
+    font-size:0.875em;
+    text-align:left;
+    vertical-align:top;
+    max-width:28em;
+    word-wrap:break-word;
+}
+table.ptable th.pn {
+    width:2%;
+}
+table.ptable th.chg {
+    width:47%;
+}
+table.vtable {
+    border-collapse:collapse;
+    border:1px outset black;
+    margin-left:1.9em;
+    margin-top:0.7em;
+}
+table.vtable td {
+    border:1px solid gray;
+    padding:3px;
+    font-size:0.875em;
+    vertical-align:top;
+    max-width:450px;
+    word-wrap:break-word;
+}
+table.ptable th, table.vtable th {
+    background-color:#eeeeee;
+    font-weight:bold;
+    color:#333333;
+    font-family:Verdana, Arial;
+    font-size:0.875em;
+    border:1px solid gray;
+    text-align:center;
+    vertical-align:top;
+    white-space:nowrap;
+    padding:3px;
+}
+table.summary {
+    border-collapse:collapse;
+    border:1px outset black;
+}
+table.summary th {
+    background-color:#eeeeee;
+    font-weight:normal;
+    text-align:left;
+    font-size:0.94em;
+    white-space:nowrap;
+    border:1px inset gray;
+    padding:3px;
+}
+table.summary td {
+    text-align:right;
+    white-space:nowrap;
+    border:1px inset gray;
+    padding:3px 5px 3px 10px;
+}
+span.mngl {
+    padding-left:1em;
+    font-size:0.875em;
+    cursor:text;
+    color:#444444;
+    font-weight:bold;
+}
+span.pleft {
+    padding-left:2.5em;
+}
+span.sym_ver {
+    color:#333333;
+    white-space:nowrap;
+    font-family:"DejaVu Sans Mono", Monospace;
+}
+span.attr {
+    color:#333333;
+    font-weight:normal;
+}
+span.color_p {
+    font-style:italic;
+    color:Brown;
+}
+span.p {
+    font-style:italic;
+}
+span.fp {
+    font-style:italic;
+    background-color:#DCDCDC;
+}
+span.ttype {
+    font-weight:normal;
+}
+span.nowrap {
+    white-space:nowrap;
+}
+span.value {
+    font-weight:bold;
+}
+.passed {
+    background-color:#CCFFCC;
+    font-weight:normal;
+}
+.warning {
+    background-color:#F4F4AF;
+    font-weight:normal;
+}
+.failed {
+    background-color:#FFCCCC;
+    font-weight:normal;
+}
+.new {
+    background-color:#C6DEFF;
+    font-weight:normal;
+}
+.compatible {
+    background-color:#CCFFCC;
+    font-weight:normal;
+}
+.almost_compatible {
+    background-color:#FFDAA3;
+    font-weight:normal;
+}
+.incompatible {
+    background-color:#FFCCCC;
+    font-weight:normal;
+}
+.gray {
+    background-color:#DCDCDC;
+    font-weight:normal;
+}
+.top_ref {
+    font-size:0.69em;
+}
+.footer {
+    font-size:0.75em;
+}
+
+.tabset {
+    float:left;
+}
+a.tab {
+    border:1px solid Black;
+    float:left;
+    margin:0px 5px -1px 0px;
+    padding:3px 5px 3px 5px;
+    position:relative;
+    font-size:0.875em;
+    background-color:#DDD;
+    text-decoration:none;
+    color:Black;
+}
+a.disabled:hover
+{
+    color:Black;
+    background:#EEE;
+}
+a.active:hover
+{
+    color:Black;
+    background:White;
+}
+a.active {
+    border-bottom-color:White;
+    background-color:White;
+}
+div.tab {
+    border-top:1px solid Black;
+    padding:0px;
+    width:100%;
+    clear:both;
+}
+</style>
+<script type="text/javascript" language="JavaScript">
+<!--
+function showContent(header, id)
+{
+    e = document.getElementById(id);
+    if(e.style.display == 'none')
+    {
+        e.style.display = 'block';
+        e.style.visibility = 'visible';
+        header.innerHTML = header.innerHTML.replace(/\[[^0-9 
]\]/gi,"[&minus;]");
+    }
+    else
+    {
+        e.style.display = 'none';
+        e.style.visibility = 'hidden';
+        header.innerHTML = header.innerHTML.replace(/\[[^0-9 ]\]/gi,"[+]");
+    }
+}
+function initTabs()
+{
+    var url = window.location.href;
+    if(url.indexOf('_Source_')!=-1 || url.indexOf('#Source')!=-1)
+    {
+        var tab1 = document.getElementById('BinaryID');
+        var tab2 = document.getElementById('SourceID');
+        tab1.className='tab disabled';
+        tab2.className='tab active';
+    }
+    var sets = document.getElementsByTagName('div');
+    for (var i = 0; i < sets.length; i++)
+    {
+        if (sets[i].className.indexOf('tabset') != -1)
+        {
+            var tabs = [];
+            var links = sets[i].getElementsByTagName('a');
+            for (var j = 0; j < links.length; j++)
+            {
+                if (links[j].className.indexOf('tab') != -1)
+                {
+                    tabs.push(links[j]);
+                    links[j].tabs = tabs;
+                    var tab = 
document.getElementById(links[j].href.substr(links[j].href.indexOf('#') + 1));
+                    //reset all tabs on start
+                    if (tab)
+                    {
+                        if (links[j].className.indexOf('active')!=-1) {
+                            tab.style.display = 'block';
+                        }
+                        else {
+                            tab.style.display = 'none';
+                        }
+                    }
+                    links[j].onclick = function()
+                    {
+                        var tab = 
document.getElementById(this.href.substr(this.href.indexOf('#') + 1));
+                        if (tab)
+                        {
+                            //reset all tabs before change
+                            for (var k = 0; k < this.tabs.length; k++)
+                            {
+                                
document.getElementById(this.tabs[k].href.substr(this.tabs[k].href.indexOf('#') 
+ 1)).style.display = 'none';
+                                this.tabs[k].className = 
this.tabs[k].className.replace('active', 'disabled');
+                            }
+                            this.className = 'tab active';
+                            tab.style.display = 'block';
+                            // window.location.hash = this.id.replace('ID', 
'');
+                            return false;
+                        }
+                    }
+                }
+            }
+        }
+    }
+    if(url.indexOf('#')!=-1) {
+        location.href=location.href;
+    }
+}
+if (window.addEventListener) window.addEventListener('load', initTabs, false);
+else if (window.attachEvent) window.attachEvent('onload', initTabs);
+-->
+</script>
+</head>
+<body><a name='Source'></a><a name='Binary'></a><a name='Top'></a><h1>API 
compatibility report for the <span style='color:Blue;'>libzck.so</span> object 
between <span style='color:Red;'>1.1.13</span> and <span 
style='color:Red;'>1.1.14</span> versions on <span 
style='color:Blue;'>x86_64</span></h1>
+
+            <br/>
+            <div class='tabset'>
+            <a id='BinaryID' href='#BinaryTab' class='tab 
active'>Binary<br/>Compatibility</a>
+            <a id='SourceID' href='#SourceTab' style='margin-left:3px' 
class='tab disabled'>Source<br/>Compatibility</a>
+            </div><div id='BinaryTab' class='tab'>
+<h2>Test Info</h2><hr/>
+<table class='summary'>
+<tr><th>Module Name</th><td>zchunk</td></tr>
+<tr><th>Version #1</th><td>1.1.13</td></tr>
+<tr><th>Version #2</th><td>1.1.14</td></tr>
+<tr><th>Arch</th><td>x86_64</td></tr>
+<tr><th>GCC Version</th><td>11.1.1</td></tr>
+<tr><th>Subject</th><td width='150px'>Binary Compatibility</td></tr>
+</table>
+<h2>Test Results</h2><hr/>
+<table class='summary'><tr><th>Total Header Files</th><td><a href='#Headers' 
style='color:Blue;'>1</a></td></tr>
+<tr><th>Total Objects</th><td><a href='#Libs' 
style='color:Blue;'>1</a></td></tr>
+<tr><th>Total Symbols / Types</th><td>75 / 14</td></tr>
+<tr><th>Compatibility</th>
+<td class='compatible'>100%</td>
+</tr>
+</table>
+<h2>Problem Summary</h2><hr/>
+<table class='summary'><tr><th></th><th 
style='text-align:center;'>Severity</th><th 
style='text-align:center;'>Count</th></tr><tr><th>Added 
Symbols</th><td>-</td><td>0</td></tr>
+<tr><th>Removed Symbols</th><td>High</td><td>0</td></tr>
+<tr><th rowspan='3'>Problems with<br/>Data 
Types</th><td>High</td><td>0</td></tr>
+<tr><td>Medium</td><td>0</td></tr>
+<tr><td>Low</td><td>0</td></tr>
+<tr><th rowspan='3'>Problems with<br/>Symbols</th><td>High</td><td>0</td></tr>
+<tr><td>Medium</td><td>0</td></tr>
+<tr><td>Low</td><td>0</td></tr>
+<tr><th>Problems with<br/>Constants</th><td>Low</td><td>0</td></tr>
+</table>
+
+<a name='Headers'></a><h2>Header Files <span 
class='gray'>&nbsp;1&nbsp;</span></h2><hr/>
+<div class='h_list'>
+zck.h<br/>
+</div>
+<br/><a class='top_ref' href='#Top'>to the top</a><br/>
+<a name='Libs'></a><h2>Objects <span 
class='gray'>&nbsp;1&nbsp;</span></h2><hr/>
+<div class='lib_list'>
+libzck.so.1.1.13<br/>
+</div>
+<br/><a class='top_ref' href='#Top'>to the top</a><br/>
+<br/><br/><br/></div><div id='SourceTab' class='tab'>
+<h2>Test Info</h2><hr/>
+<table class='summary'>
+<tr><th>Module Name</th><td>zchunk</td></tr>
+<tr><th>Version #1</th><td>1.1.13</td></tr>
+<tr><th>Version #2</th><td>1.1.14</td></tr>
+<tr><th>Arch</th><td>x86_64</td></tr>
+<tr><th>Subject</th><td width='150px'>Source Compatibility</td></tr>
+</table>
+<h2>Test Results</h2><hr/>
+<table class='summary'><tr><th>Total Header Files</th><td><a href='#Headers' 
style='color:Blue;'>1</a></td></tr>
+<tr><th>Total Objects</th><td><a href='#Libs' 
style='color:Blue;'>1</a></td></tr>
+<tr><th>Total Symbols / Types</th><td>75 / 14</td></tr>
+<tr><th>Compatibility</th>
+<td class='compatible'>100%</td>
+</tr>
+</table>
+<h2>Problem Summary</h2><hr/>
+<table class='summary'><tr><th></th><th 
style='text-align:center;'>Severity</th><th 
style='text-align:center;'>Count</th></tr><tr><th>Added 
Symbols</th><td>-</td><td>0</td></tr>
+<tr><th>Removed Symbols</th><td>High</td><td>0</td></tr>
+<tr><th rowspan='3'>Problems with<br/>Data 
Types</th><td>High</td><td>0</td></tr>
+<tr><td>Medium</td><td>0</td></tr>
+<tr><td>Low</td><td>0</td></tr>
+<tr><th rowspan='3'>Problems with<br/>Symbols</th><td>High</td><td>0</td></tr>
+<tr><td>Medium</td><td>0</td></tr>
+<tr><td>Low</td><td>0</td></tr>
+<tr><th>Problems with<br/>Constants</th><td>Low</td><td>0</td></tr>
+</table>
+
+<a name='Headers'></a><h2>Header Files <span 
class='gray'>&nbsp;1&nbsp;</span></h2><hr/>
+<div class='h_list'>
+zck.h<br/>
+</div>
+<br/><a class='top_ref' href='#Top'>to the top</a><br/>
+<a name='Libs'></a><h2>Objects <span 
class='gray'>&nbsp;1&nbsp;</span></h2><hr/>
+<div class='lib_list'>
+libzck.so.1.1.13<br/>
+</div>
+<br/><a class='top_ref' href='#Top'>to the top</a><br/>
+<br/><br/><br/></div><hr/>
+<div class='footer' align='right'><i>Generated by <a 
href='https://github.com/lvc/abi-compliance-checker'>ABI Compliance Checker</a> 
2.3 &#160;</i>
+</div>
+<br/>
+
+</body></html>
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/zchunk-1.1.11/test/meson.build 
new/zchunk-1.1.14/test/meson.build
--- old/zchunk-1.1.11/test/meson.build  2021-05-01 19:26:14.000000000 +0200
+++ new/zchunk-1.1.14/test/meson.build  2021-05-20 22:18:16.000000000 +0200
@@ -214,7 +214,10 @@
 )
 
 if build_machine.endian() != 'big'
-    check_sha = 
'eff3098803ba80f0c446d49f48188f89167d7f29cdc8a98c19f0ecfb4e2ee3c9'
+    check_sha = 
'4f07f865bb15624cf854aa369e14a3538ad9e9bf98e233036d37d2568e60b7cc'
+    if zstd_dep.found() and zstd_dep.version().version_compare('<=1.4.9')
+        check_sha = 
'eff3098803ba80f0c446d49f48188f89167d7f29cdc8a98c19f0ecfb4e2ee3c9'
+    endif
     if zstd_dep.found() and zstd_dep.version().version_compare('<=1.4.6')
         check_sha = 
'45e48c11fea129d2c434ffcec7d8fbc1720f30f33d438654cd117616121c218e'
     endif
@@ -224,7 +227,6 @@
     if zstd_dep.found() and zstd_dep.version().version_compare('<=1.3.4')
         check_sha = 
'1749c2551ef26f26a2c61919dac7a4c8801154cdfc0524ef21187cf0c263f8fe'
     endif
-
     test(
         'compress auto-chunked file - no dict',
         shacheck,
@@ -237,7 +239,10 @@
         ]
     )
 
-    check_sha = 
'b86795ca14eb04b382d1c7f94501aa5d1a2ddb05a5351c0235d00edb954e9b66'
+    check_sha = 
'4a495d993483f5f7915f0267c5ce6fc94a263b9dd58cf0bbf33aa0dbcdbb6669'
+    if zstd_dep.found() and zstd_dep.version().version_compare('<=1.4.9')
+        check_sha = 
'b86795ca14eb04b382d1c7f94501aa5d1a2ddb05a5351c0235d00edb954e9b66'
+    endif
     if zstd_dep.found() and zstd_dep.version().version_compare('<=1.4.6')
         check_sha = 
'b4805798547be62421944a87db3a90de455b4772c6013e685720b49336b8b17e'
     endif
@@ -256,62 +261,69 @@
             join_paths(file_path, 'LICENSE.fodt')
         ]
     )
-endif
 
-check_sha = 'c46929367cd3d05daaca3b44657726791b428fb2198f5e7e5367b5cc781307aa'
-if zstd_dep.found() and zstd_dep.version().version_compare('<=1.4.6')
-    check_sha = 
'9472ddc74dbd96291077bbb8d793e605824be8dba45e3e94bbc54b7de21a37a1'
-endif
-if zstd_dep.found() and zstd_dep.version().version_compare('<=1.3.5')
-    check_sha = 
'6911b50cad5b6ed3ee89322338c559afdd0e72f614d3817b47ce370df52fd6b4'
-endif
-if zstd_dep.found() and zstd_dep.version().version_compare('<=1.3.4')
-    check_sha = 
'ded0d04884b13ba23d00f9b11b2b5950f8b9670d742f67d4195707ed85e73048'
-endif
-if zstd_dep.found() and zstd_dep.version().version_compare('<=1.3.3')
-    check_sha = 
'437a0ec28def0c7f361402f6bb337cb963e6a3682bc742dd9e56171f6ece9881'
-endif
-test(
-    'compress manual file - no dict',
-    shacheck,
-    args: [
-        zck,
-        'LICENSE.manual.nodict.fodt.zck',
-        check_sha,
-        '-m',
-        '-s', '<text:',
-        '-o', 'LICENSE.manual.nodict.fodt.zck',
-        join_paths(file_path, 'LICENSE.fodt')
-    ]
-)
+    check_sha = 
'db42e903a2cf3b859835298272ff45bff6d2435d32fe7fda2bfe2815ab161994'
+    if zstd_dep.found() and zstd_dep.version().version_compare('<=1.4.9')
+        check_sha = 
'c46929367cd3d05daaca3b44657726791b428fb2198f5e7e5367b5cc781307aa'
+    endif
+    if zstd_dep.found() and zstd_dep.version().version_compare('<=1.4.6')
+        check_sha = 
'9472ddc74dbd96291077bbb8d793e605824be8dba45e3e94bbc54b7de21a37a1'
+    endif
+    if zstd_dep.found() and zstd_dep.version().version_compare('<=1.3.5')
+        check_sha = 
'6911b50cad5b6ed3ee89322338c559afdd0e72f614d3817b47ce370df52fd6b4'
+    endif
+    if zstd_dep.found() and zstd_dep.version().version_compare('<=1.3.4')
+        check_sha = 
'ded0d04884b13ba23d00f9b11b2b5950f8b9670d742f67d4195707ed85e73048'
+    endif
+    if zstd_dep.found() and zstd_dep.version().version_compare('<=1.3.3')
+        check_sha = 
'437a0ec28def0c7f361402f6bb337cb963e6a3682bc742dd9e56171f6ece9881'
+    endif
+    test(
+        'compress manual file - no dict',
+        shacheck,
+        args: [
+            zck,
+            'LICENSE.manual.nodict.fodt.zck',
+            check_sha,
+            '-m',
+            '-s', '<text:',
+            '-o', 'LICENSE.manual.nodict.fodt.zck',
+            join_paths(file_path, 'LICENSE.fodt')
+        ]
+    )
 
-check_sha = '5fc2449aeb51f6a898529fa4d53b04de6df6a352826f819dc2b39b153ddaa788'
-if zstd_dep.found() and zstd_dep.version().version_compare('<=1.4.6')
-    check_sha = 
'4e86b47410a3a5090c7d60040d24d8d390c31f16f96ea112c8f153888eaf8c6e'
-endif
-if zstd_dep.found() and zstd_dep.version().version_compare('<=1.3.5')
-    check_sha = 
'62ee66fbf41a1f18617f400383eb38905050050f0f435a6e56df4a30d1bb694d'
-endif
-if zstd_dep.found() and zstd_dep.version().version_compare('<=1.3.4')
-    check_sha = 
'd5670c6ab81bdfa9b21eb21486a1cfa691a211fd83018914ea99ed9bdf509266'
-endif
-if zstd_dep.found() and zstd_dep.version().version_compare('<=1.3.3')
-    check_sha = 
'71e6e770545df9bae2560d683d876d25df5e7f697ad20f9535b907d76db09876'
+    check_sha = 
'4d165a1412013ca38ab2195166e0b91d989137b08065ea23cd49779b7ef6fd09'
+    if zstd_dep.found() and zstd_dep.version().version_compare('<=1.4.9')
+        check_sha = 
'5fc2449aeb51f6a898529fa4d53b04de6df6a352826f819dc2b39b153ddaa788'
+    endif
+    if zstd_dep.found() and zstd_dep.version().version_compare('<=1.4.6')
+        check_sha = 
'4e86b47410a3a5090c7d60040d24d8d390c31f16f96ea112c8f153888eaf8c6e'
+    endif
+    if zstd_dep.found() and zstd_dep.version().version_compare('<=1.3.5')
+        check_sha = 
'62ee66fbf41a1f18617f400383eb38905050050f0f435a6e56df4a30d1bb694d'
+    endif
+    if zstd_dep.found() and zstd_dep.version().version_compare('<=1.3.4')
+        check_sha = 
'd5670c6ab81bdfa9b21eb21486a1cfa691a211fd83018914ea99ed9bdf509266'
+    endif
+    if zstd_dep.found() and zstd_dep.version().version_compare('<=1.3.3')
+        check_sha = 
'71e6e770545df9bae2560d683d876d25df5e7f697ad20f9535b907d76db09876'
+    endif
+    test(
+        'compress manual file - dict',
+        shacheck,
+        args: [
+            zck,
+            'LICENSE.manual.dict.fodt.zck',
+            check_sha,
+            '-D', join_paths(file_path, 'LICENSE.dict'),
+            '-m',
+            '-s', '<text:',
+            '-o', 'LICENSE.manual.dict.fodt.zck',
+            join_paths(file_path, 'LICENSE.fodt')
+        ]
+    )
 endif
-test(
-    'compress manual file - dict',
-    shacheck,
-    args: [
-        zck,
-        'LICENSE.manual.dict.fodt.zck',
-        check_sha,
-        '-D', join_paths(file_path, 'LICENSE.dict'),
-        '-m',
-        '-s', '<text:',
-        '-o', 'LICENSE.manual.dict.fodt.zck',
-        join_paths(file_path, 'LICENSE.fodt')
-    ]
-)
+
 run_target('test-abi',
            command: 'abi.sh')
 

Reply via email to