Script 'mail_helper' called by obssrc
Hello community,

here is the log from the commit of package libuninameslist for openSUSE:Factory 
checked in at 2022-12-05 18:02:25
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/libuninameslist (Old)
 and      /work/SRC/openSUSE:Factory/.libuninameslist.new.1835 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "libuninameslist"

Mon Dec  5 18:02:25 2022 rev:11 rq:1040367 version:20221022

Changes:
--------
--- /work/SRC/openSUSE:Factory/libuninameslist/libuninameslist.changes  
2022-07-18 18:34:56.553844541 +0200
+++ 
/work/SRC/openSUSE:Factory/.libuninameslist.new.1835/libuninameslist.changes    
    2022-12-05 18:02:45.481090260 +0100
@@ -1,0 +2,8 @@
+Fri Dec  2 21:06:00 UTC 2022 - Dirk Müller <dmuel...@suse.com>
+
+- update to 20221022:
+  * This release contains source code to build libuninameslist (with
+    NamesList.txt 15.0), libuninameslist-fr (with ListeDesNoms 14.0), and
+    Python wrapper uninameslist.py (ver0.2). 
+
+-------------------------------------------------------------------

Old:
----
  20220701.tar.gz

New:
----
  20221022.tar.gz

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

Other differences:
------------------
++++++ libuninameslist.spec ++++++
--- /var/tmp/diff_new_pack.dcf3xH/_old  2022-12-05 18:02:45.857092308 +0100
+++ /var/tmp/diff_new_pack.dcf3xH/_new  2022-12-05 18:02:45.861092329 +0100
@@ -18,7 +18,7 @@
 
 %define somajor 1
 Name:           libuninameslist
-Version:        20220701
+Version:        20221022
 Release:        0
 Summary:        A library providing Unicode character names and annotations
 License:        BSD-3-Clause

++++++ 20220701.tar.gz -> 20221022.tar.gz ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/libuninameslist-20220701/ChangeLog 
new/libuninameslist-20221022/ChangeLog
--- old/libuninameslist-20220701/ChangeLog      2022-07-02 04:05:04.000000000 
+0200
+++ new/libuninameslist-20221022/ChangeLog      2022-10-23 13:00:37.000000000 
+0200
@@ -1,3 +1,6 @@
+- 2022-Oct-22
+    * Version 1.12, Unicode 15.0 and French version 1.5 now is at 14.0.
+
 - 2022-Jul-01
     * Unicode 15.0_Beta (Nameslist.txt 15_Beta for review until Jul12).
     * Biswapriyo Nath added Windows MSYS2 build (used by github tests),
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/libuninameslist-20220701/Makefile.am 
new/libuninameslist-20221022/Makefile.am
--- old/libuninameslist-20220701/Makefile.am    2022-07-02 04:05:04.000000000 
+0200
+++ new/libuninameslist-20221022/Makefile.am    2022-10-23 13:00:37.000000000 
+0200
@@ -28,10 +28,9 @@
        build.sh
 
 noinst_PROGRAMS = buildnameslist
-buildnameslist_SOURCES = buildnameslist.c
-buildnameslist.$(OBJEXT): buildnameslist.h
+buildnameslist_SOURCES = buildnameslist.c buildnameslist.h
 
-nodist_EXTRA_DATA = NamesList.txt ListeDesNoms.txt buildnameslist.h .git/*
+nodist_EXTRA_DATA = NamesList.txt ListeDesNoms.txt buildnameslist.h .git 
.github .appveyor.yml .travis.yml
 
 DISTCLEANFILES = libuninameslist.pc
 DISTCHECK_CONFIGURE_FLAGS = --enable-frenchlib --enable-pylib 
--disable-silent-rules
@@ -50,8 +49,8 @@
 if WANTLIBOFR
 include_HEADERS += uninameslist-fr.h
 libuninameslist_fr_la_LDFLAGS = $(AM_LDFLAGS) -version-info $(FR_VERSION)
-libuninameslist_fr_la_SOURCES = nameslist-fr.c
-libuninameslist_fr_la.$(OBJEXT): uninameslist-fr.h nameslist-dll.h 
buildnameslist.h
+libuninameslist_fr_la_SOURCES = nameslist-fr.c buildnameslist.h
+libuninameslist_fr_la.$(OBJEXT): uninameslist-fr.h nameslist-dll.h
 libuninameslist_la_LIBADD += libuninameslist-fr.la
 man_MANS += libuninameslist-fr.3
 else
@@ -59,8 +58,8 @@
 endif
 
 libuninameslist_la_LDFLAGS = $(AM_LDFLAGS) -version-info $(UN_VERSION)
-libuninameslist_la_SOURCES = nameslist.c
-libuninameslist_la.$(OBJEXT): uninameslist.h nameslist-dll.h buildnameslist.h
+libuninameslist_la_SOURCES = nameslist.c buildnameslist.h
+libuninameslist_la.$(OBJEXT): uninameslist.h nameslist-dll.h
 
 pkgconfigdir = $(libdir)/pkgconfig
 pkgconfig_DATA = libuninameslist.pc
@@ -73,7 +72,7 @@
        $(SHELL) ./config.status libtool
 
 NamesList.txt:
-       $(WGET) "http://www.unicode.org/Public/UNIDATA/NamesList.txt"; -O 
NamesList.txt
+       $(WGET) "http://www.unicode.org/Public/15.0.0/ucd/NamesList.txt"; -O 
NamesList.txt
 
 ListeDesNoms.txt:
        $(WGET) "http://hapax.qc.ca/ListeNoms-14.0.0.txt"; -O ListeDesNoms.txt
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/libuninameslist-20220701/README.md 
new/libuninameslist-20221022/README.md
--- old/libuninameslist-20220701/README.md      2022-07-02 04:05:04.000000000 
+0200
+++ new/libuninameslist-20221022/README.md      2022-10-23 13:00:37.000000000 
+0200
@@ -12,7 +12,7 @@
 Description
 -----------
 
-This library is updated for Nameslist.txt ver14.0 and ListeDesNoms.txt ver14.0
+This library is updated for Nameslist.txt ver15.0 and ListeDesNoms.txt ver14.0
 and includes python wrapper 'uninameslist.py'
 
 For latest release, see: https://github.com/fontforge/libuninameslist/releases
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/libuninameslist-20220701/configure.ac 
new/libuninameslist-20221022/configure.ac
--- old/libuninameslist-20220701/configure.ac   2022-07-02 04:05:04.000000000 
+0200
+++ new/libuninameslist-20221022/configure.ac   2022-10-23 13:00:37.000000000 
+0200
@@ -4,13 +4,13 @@
 #-------------------------------------------
 # PackageTimestamp, major version, minor version, and Nameslist.txt version
 # Libraries have a "package" version of the form major.minor.micro.
-m4_define([uninameslist_package_stamp], [20220701]) dnl yyyymmdd
-m4_define([uninameslist_major_version], [14]) dnl Nameslist.txt
-m4_define([uninameslist_minor_version], [9])
+m4_define([uninameslist_package_stamp], [20221022]) dnl yyyymmdd
+m4_define([uninameslist_major_version], [15]) dnl Nameslist.txt
+m4_define([uninameslist_minor_version], [0])
 m4_define([uninameslist_nameslist_ver], 
[uninameslist_major_version.uninameslist_minor_version])
 # Libraries have a "libtool" version of the form current:revision:age.
 m4_define([uninameslist_current], [1])
-m4_define([uninameslist_revision],[11])
+m4_define([uninameslist_revision],[12])
 m4_define([uninameslist_age],     [0])
 m4_define([uninameslist_libver],
           [uninameslist_current:uninameslist_revision:uninameslist_age])
@@ -227,18 +227,11 @@
 
 #-------------------------------------------
 # Ensure fresh timestamps if run ./configure
-echo 'const char NL_VERSION[[]] = "uninameslist_nameslist_ver";' > 
$(srcdir)/buildnameslist.h
-echo 'const char NFR_VERSION[[]] = "uninameslist_fr_nameslist_ver";' >> 
$(srcdir)/buildnameslist.h
-echo 'const char NL_VERSION[[]] = "Nameslist-Version: 
uninameslist_nameslist_ver";' > $(srcdir)/tests/call-test.h
-echo 'const char NFR_VERSION[[]] = "Nameslist-Version: 
uninameslist_fr_nameslist_ver";' >> $(srcdir)/tests/call-test.h
-
-#-------------------------------------------
-# We need to ensure the libuninameslist core
-# library is always built whenever we modify
-# parameters by running ./configure anything
-# Example: with/without "--enable-frenchlib"
-# So we touch nameslist.c to make it recent.
-${TOUCH} $(srcdir)/nameslist.c
+echo 'const char NL_VERSION[[]] = "uninameslist_nameslist_ver";' > 
buildnameslist.h
+echo 'const char NFR_VERSION[[]] = "uninameslist_fr_nameslist_ver";' >> 
buildnameslist.h
+rm -f ${top_builddir}tests/call-test.h
+echo 'const char NL_VERSION[[]] = "Nameslist-Version: 
uninameslist_nameslist_ver";' > ${top_builddir}tests/call-test.h
+echo 'const char NFR_VERSION[[]] = "Nameslist-Version: 
uninameslist_fr_nameslist_ver";' >> ${top_builddir}tests/call-test.h
 
 #-------------------------------------------
 AC_PROG_LIBTOOL
@@ -255,8 +248,8 @@
 AC_MSG_NOTICE([
 
 Configuration:
-  Source code location ${srcdir}
-  Build code location  ${builddir}
+  Source code location ${top_srcdir}
+  Build code location  ${top_builddir}
   Destination prefix   ${prefix}
   Compiler             ${CC}
   Config auto WCFLAGS  "${WCFLAGS}"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/libuninameslist-20220701/nameslist-fr.c 
new/libuninameslist-20221022/nameslist-fr.c
--- old/libuninameslist-20220701/nameslist-fr.c 2022-07-02 04:05:04.000000000 
+0200
+++ new/libuninameslist-20221022/nameslist-fr.c 2022-10-23 13:00:37.000000000 
+0200
@@ -9,14 +9,28 @@
 ; Standard Unicode 14.0 ou
 ;      Norme internationale ISO/CEI 10646
 ;
-; Ces noms français sont utilisés pour confectionner
-;      les commentaires documentant chacun des caractères
+; Liste des noms des caractères (version en langue française)
+
+; Le Consortium Unicode entretient une collaboration étroite
+;      et une liaison officielle avec le groupe de travail qui élabore
+;      la norme internationale ISO/CEI 10646. Le standard Unicode, version 
14.0,
+;      intègre 838 nouveaux caractères, dont neuf idéogrammes unifiés CJC.
+
+; Le présent fichier peut être utilisé librement. Toutefois, aucune
+;      modification n’y est autorisée ; toutes les copies doivent être
+;      rigoureusement identiques au fichier original.
+
+; Le Consortium Unicode n’est pas responsable des erreurs ou omissions
+;      dans ce fichier.
+
+; Les noms en langue française des caractères codés sont utilisés, 
notamment,
+;      pour produire les commentaires documentant chacun des caractères
 ;      dont les poids de tri sont déterminés dans la table commune
-;      de la norme internationale ISO/CEI 14651. Cette dernière table
-;      est normative. La présente liste est informative, jusqu’à ce que
-;      l’ISO/CEI 10646 ait été remise à niveau en français.
-;
-; Contributions à la version 14.0 française des noms de caractère :
+;      de la norme internationale ISO/CEI 14651. Ladite table est normative ;
+;      la présente liste est informative, jusqu’à ce que la norme
+;      ISO/CEI 10646 ait été remise à niveau en français.
+
+; Contributions à la version en langue française : 14.0
 ;      Jacques André, France
 ;      Patrick Andries, Canada (Québec)
 ;      Bernard Chauvois, France
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/libuninameslist-20220701/nameslist.c 
new/libuninameslist-20221022/nameslist.c
--- old/libuninameslist-20220701/nameslist.c    2022-07-02 04:05:04.000000000 
+0200
+++ new/libuninameslist-20221022/nameslist.c    2022-10-23 13:00:37.000000000 
+0200
@@ -67,7 +67,7 @@
 /* Retrieve Nameslist.txt version number. */
 UN_DLL_EXPORT
 const char *uniNamesList_NamesListVersion(void) {
-       return( "Nameslist-Version: 14.0" );
+       return( "Nameslist-Version: 15.0" );
 }
 
 
@@ -123,27 +123,27 @@
 /* Return count of how many names2 are found in this version of library */
 UN_DLL_EXPORT
 int uniNamesList_names2cnt(void) {
-       return( 31 );
+       return( 32 );
 }
 
 static const unsigned long unicode_name2code[] = {
-       0x01A2, 0x01A3, 0x0709, 0x0CDE, 0x0E9D, 0x0E9F, 0x0EA3, 0x0EA5,
-       0x0FD0, 0x11EC, 0x11ED, 0x11EE, 0x11EF, 0x1BBD, 0x2118, 0x2448,
-       0x2449, 0x2B7A, 0x2B7C, 0xA015, 0xAA6E, 0xFE18, 0xFEFF, 74452,
-       74453, 93782, 93783, 93814, 93815, 110593, 118981
+       0x01A2, 0x01A3, 0x0616, 0x0709, 0x0CDE, 0x0E9D, 0x0E9F, 0x0EA3,
+       0x0EA5, 0x0FD0, 0x11EC, 0x11ED, 0x11EE, 0x11EF, 0x1BBD, 0x2118,
+       0x2448, 0x2449, 0x2B7A, 0x2B7C, 0xA015, 0xAA6E, 0xFE18, 0xFEFF,
+       74452, 74453, 93782, 93783, 93814, 93815, 110593, 118981
 };
 
 static const char unicode_name2vals[] = {
-       3,24, 3,22, 3,34, 3,19, 3,17, 3,17, 3,13, 3,13,
-       3,35, 3,32, 3,37, 3,30, 3,33, 3,26, 3,29, 3,17,
-       3,16, 3,59, 3,60, 3,26, 3,25, 3,61, 3,15, 3,24,
-       3,42, 3,28, 3,29, 3,26, 3,27, 3,21, 3,52
+       3,24, 3,22, 3,47, 3,34, 3,19, 3,17, 3,17, 3,13,
+       3,13, 3,35, 3,32, 3,37, 3,30, 3,33, 3,26, 3,29,
+       3,17, 3,16, 3,59, 3,60, 3,26, 3,25, 3,61, 3,15,
+       3,24, 3,42, 3,28, 3,29, 3,26, 3,27, 3,21, 3,52
 };
 
 /* Return unicode value with names2 (0<=count<uniNamesList_names2cnt(). */
 UN_DLL_EXPORT
 long uniNamesList_names2val(int count) {
-       if ( count<0 || count>=31 ) return( -1 );
+       if ( count<0 || count>=32 ) return( -1 );
        return( (long)(unicode_name2code[count]) );
 }
 
@@ -152,7 +152,7 @@
 int uniNamesList_names2getU(unsigned long uni) {
        int i;
 
-       if ( uni<0x110000 ) for ( i=0; i<31; ++i ) {
+       if ( uni<0x110000 ) for ( i=0; i<32; ++i ) {
                if ( uni==unicode_name2code[i] ) return( i );
                if ( uni<unicode_name2code[i] ) break;
        }
@@ -162,7 +162,7 @@
 /* Stringlength of names2. Use this if you want to truncate annotations */
 UN_DLL_EXPORT
 int uniNamesList_names2lnC(int count) {
-       if ( count<0 || count>=31 ) return( -1 );
+       if ( count<0 || count>=32 ) return( -1 );
        return( (int)(unicode_name2vals[(count<<1)+1]) );
 }
 
@@ -177,7 +177,7 @@
        int c;
        const char *pt;
 
-       if ( count<0 || count>=31 ) return( NULL );
+       if ( count<0 || count>=32 ) return( NULL );
        c = unicode_name2vals[count<<1];
        pt = uniNamesList_annot((unsigned long)(uniNamesList_names2val(count)));
        while ( --c>=0 ) ++pt;
@@ -3615,7 +3615,8 @@
 /* 0614 */ { "ARABIC SIGN TAKHALLUS"," * sign placed over the name or 
nom-de-plume of a poet, or in some writings used to mark all proper names"},
 /* 0615 */ { "ARABIC SMALL HIGH TAH"," * marks a recommended pause position in 
some Qurans published in Iran and Pakistan\n"
        "       * should not be confused with the small TAH sign used as a 
diacritic for some letters such as 0679"},
-/* 0616 */ { "ARABIC SMALL HIGH LIGATURE ALEF WITH LAM WITH YEH","     * early 
Persian"},
+/* 0616 */ { "ARABIC SMALL HIGH LIGATURE ALEF WITH LAM WITH YEH","     % 
ARABIC SMALL HIGH LIGATURE ALEF WITH YEH BARREE\n"
+       "       * early Persian"},
 /* 0617 */ { "ARABIC SMALL HIGH ZAIN",NULL},
 /* 0618 */ { "ARABIC SMALL FATHA","    * should not be confused with 064E 
FATHA"},
 /* 0619 */ { "ARABIC SMALL DAMMA","    * should not be confused with 064F 
DAMMA"},
@@ -3809,7 +3810,7 @@
        "       x (arabic letter keheh with dot above - 0762)"},
 /* 06AD */ { "ARABIC LETTER NG","      * Uyghur, Kazakh, Moroccan Arabic, 
early Jawi, early Persian, ..."},
 /* 06AE */ { "ARABIC LETTER KAF WITH THREE DOTS BELOW","       * Berber, early 
Persian\n"
-       "       * Pegon alternative for 068A"},
+       "       * Pegon alternative for 08B4"},
 /* 06AF */ { "ARABIC LETTER GAF","     * Persian, Urdu, ..."},
 /* 06B0 */ { "ARABIC LETTER GAF WITH RING","   * Lahnda"},
 /* 06B1 */ { "ARABIC LETTER NGOEH","   * Sindhi"},
@@ -9001,12 +9002,12 @@
 /* 19B2 */ { "NEW TAI LUE VOWEL SIGN II",NULL},
 /* 19B3 */ { "NEW TAI LUE VOWEL SIGN U",NULL},
 /* 19B4 */ { "NEW TAI LUE VOWEL SIGN UU",NULL},
-/* 19B5 */ { "NEW TAI LUE VOWEL SIGN E",NULL},
-/* 19B6 */ { "NEW TAI LUE VOWEL SIGN AE",NULL},
-/* 19B7 */ { "NEW TAI LUE VOWEL SIGN O",NULL},
+/* 19B5 */ { "NEW TAI LUE VOWEL SIGN E","      * precedes consonant in visual 
order"},
+/* 19B6 */ { "NEW TAI LUE VOWEL SIGN AE","     * precedes consonant in visual 
order"},
+/* 19B7 */ { "NEW TAI LUE VOWEL SIGN O","      * precedes consonant in visual 
order"},
 /* 19B8 */ { "NEW TAI LUE VOWEL SIGN OA",NULL},
 /* 19B9 */ { "NEW TAI LUE VOWEL SIGN UE",NULL},
-/* 19BA */ { "NEW TAI LUE VOWEL SIGN AY",NULL},
+/* 19BA */ { "NEW TAI LUE VOWEL SIGN AY","     * precedes consonant in visual 
order"},
 /* 19BB */ { "NEW TAI LUE VOWEL SIGN AAY",NULL},
 /* 19BC */ { "NEW TAI LUE VOWEL SIGN UY",NULL},
 /* 19BD */ { "NEW TAI LUE VOWEL SIGN OY",NULL},
@@ -10966,7 +10967,7 @@
 /* 204D */ { "BLACK RIGHTWARDS BULLET",NULL},
 /* 204E */ { "LOW ASTERISK","  x (asterisk - 002A)\n"
        "       x (combining asterisk below - 0359)"},
-/* 204F */ { "REVERSED SEMICOLON","    * also used in Sindhi\n"
+/* 204F */ { "REVERSED SEMICOLON","    * used occasionally in Sindhi when 
Sindhi is written in the Arabic script\n"
        "       x (semicolon - 003B)\n"
        "       x (arabic semicolon - 061B)"},
 /* 2050 */ { "CLOSE UP","      * editing mark\n"
@@ -11223,7 +11224,7 @@
        "       # 0061 002F 0073"},
 /* 2102 */ { "DOUBLE-STRUCK CAPITAL C","       = the set of complex numbers\n"
        "       # <font> 0043 latin capital letter c"},
-/* 2103 */ { "DEGREE CELSIUS","        = degrees Centigrade\n"
+/* 2103 */ { "DEGREE CELSIUS","        = degrees centigrade\n"
        "       # 00B0 0043"},
 /* 2104 */ { "CENTRE LINE SYMBOL","    = clone"},
 /* 2105 */ { "CARE OF","       # 0063 002F 006F"},
@@ -15437,7 +15438,8 @@
        "       x (double oblique hyphen - 2E17)\n"
        "       x (katakana-hiragana double hyphen - 30A0)\n"
        "       x (modifier letter short equals sign - A78A)"},
-/* 2E41 */ { "REVERSED COMMA","        * also used in Sindhi\n"
+/* 2E41 */ { "REVERSED COMMA","        * Old Hungarian\n"
+       "       * used occasionally in Sindhi when Sindhi is written in the 
Arabic script\n"
        "       x (comma - 002C)\n"
        "       x (arabic comma - 060C)"},
 /* 2E42 */ { "DOUBLE LOW-REVERSED-9 QUOTATION MARK","  x (double low-9 
quotation mark - 201E)"},
@@ -15461,7 +15463,7 @@
        "       x (reversed pilcrow sign - 204B)\n"
        "       x (paragraphos - 2E0F)\n"
        "       x (capitulum - 2E3F)"},
-/* 2E4E */ { "PUNCTUS ELEVATUS MARK","         This mark indicates a major 
intermediate pause where the sensus is complete but the sentence is not; this 
is similar in some regards to the modern use of a semicolon."},
+/* 2E4E */ { "PUNCTUS ELEVATUS MARK","         * This mark indicates a major 
intermediate pause where the sensus is complete but the sentence is not; this 
is similar in some regards to the modern use of a semicolon."},
 /* 2E4F */ { "CORNISH VERSE DIVIDER",NULL},
 /* 2E50 */ { "CROSS PATTY WITH RIGHT CROSSBAR","       x (maltese cross - 
2720)\n"
        "       x (latin capital letter half h - 2C75)"},
@@ -20497,7 +20499,7 @@
 /* AB2D */ { "ETHIOPIC SYLLABLE BBE",NULL},
 /* AB2E */ { "ETHIOPIC SYLLABLE BBO",NULL},
 /* AB2F */ { NULL,NULL},
-/* AB30 */ { "LATIN SMALL LETTER BARRED ALPHA",NULL},
+/* AB30 */ { "LATIN SMALL LETTER BARRED ALPHA","               * This letter 
is a Latin alpha with a horizontal strikethrough bar. In some font designs, the 
bar might not extend beyond the edge of the letter, and in such cases, the 
letter should not be confused with a ligature of epsilon and iota."},
 /* AB31 */ { "LATIN SMALL LETTER A REVERSED-SCHWA",NULL},
 /* AB32 */ { "LATIN SMALL LETTER BLACKLETTER E",NULL},
 /* AB33 */ { "LATIN SMALL LETTER BARRED E",NULL},
@@ -31179,7 +31181,7 @@
 /* 11F3D */ { NULL,NULL},
 /* 11F3E */ { "KAWI VOWEL SIGN E",NULL},
 /* 11F3F */ { "KAWI VOWEL SIGN AI",NULL},
-/* 11F40 */ { "KAWI VOWEL SIGN EU","   * represents schwa [ǝ]"},
+/* 11F40 */ { "KAWI VOWEL SIGN EU","   * represents schwa [ə]"},
 /* 11F41 */ { "KAWI SIGN KILLER","     * vowel killer, always rendered 
visibly"},
 /* 11F42 */ { "KAWI CONJOINER","       * used for producing below-base and 
post-base conjunct forms"},
 /* 11F43 */ { "KAWI DANDA",NULL},
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/libuninameslist-20220701/tests/Makefile.am 
new/libuninameslist-20221022/tests/Makefile.am
--- old/libuninameslist-20220701/tests/Makefile.am      2022-07-02 
04:05:04.000000000 +0200
+++ new/libuninameslist-20221022/tests/Makefile.am      2022-10-23 
13:00:37.000000000 +0200
@@ -1,7 +1,7 @@
 # Common CPPFLAGS
-AM_CPPFLAGS = -I$(top_srcdir) -I$(top_builddir)
+AM_CPPFLAGS = -I$(builddir) -I$(top_builddir) -I$(top_srcdir) -I$(srcdir)
 
-AM_CFLAGS = -I$(top_srcdir) -I$(top_builddir) $(DEP_CFLAGS) $(BABL_CFLAGS) -lm
+AM_CFLAGS = -I$(builddir) -I$(top_builddir) -I$(srcdir) -I$(top_srcdir) 
$(DEP_CFLAGS) $(BABL_CFLAGS) -lm
 
 #DEPS = $(top_builddir)/libuninameslist.la
 
@@ -17,34 +17,34 @@
 # The tests
 noinst_PROGRAMS = call-test0 call-test1 call-test2
 
-call_test0_SOURCES = call-test0.c
+call_test0_SOURCES = call-test0.c call-test.h
 call-test0.$(OBJEXT): call-test.h call-test.c
 call_test0_LDADD = $(LDADDS)
 
-call_test1_SOURCES = call-test1.c
+call_test1_SOURCES = call-test1.c call-test.h
 call-test1.$(OBJEXT): call-test.h call-test.c
 call_test1_LDADD = $(LDADDS)
 
-call_test2_SOURCES = call-test2.c
+call_test2_SOURCES = call-test2.c call-test.h
 call-test2.$(OBJEXT): call-test.h call-test.c
 call_test2_LDADD = $(LDADDS)
 
 if WANTLIBOFR
 LDADDF = $(top_builddir)/libuninameslist-fr.la
 
-call_test3_SOURCES = call-test3.c
+call_test3_SOURCES = call-test3.c call-test.h
 call-test3.$(OBJEXT): call-test.h call-test.c
 call_test3_LDADD = $(LDADDF)
 
-call_test4_SOURCES = call-test4.c
+call_test4_SOURCES = call-test4.c call-test.h
 call-test4.$(OBJEXT): call-test.h call-test.c
 call_test4_LDADD = $(LDADDF)
 
-call_test5_SOURCES = call-test5.c
+call_test5_SOURCES = call-test5.c call-test.h
 call-test5.$(OBJEXT): call-test.h call-test.c
 call_test5_LDADD = $(LDADDS) $(LDADDF)
 
-call_test7_SOURCES = call-test7.c
+call_test7_SOURCES = call-test7.c call-test.h
 call-test7.$(OBJEXT): call-test.h call-test.c
 call_test7_LDADD = $(LDADDS)
 
@@ -54,7 +54,7 @@
 EXTRA_DIST += call-test3.c call-test4.c call-test5.c call-test7.c
 endif
 
-call_test6_SOURCES = call-test6.c
+call_test6_SOURCES = call-test6.c call-test.h
 call-test6.$(OBJEXT): call-test.h call-test.c
 call_test6_LDADD = $(LDADDS)
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/libuninameslist-20220701/uninameslist.h 
new/libuninameslist-20221022/uninameslist.h
--- old/libuninameslist-20220701/uninameslist.h 2022-07-02 04:05:04.000000000 
+0200
+++ new/libuninameslist-20221022/uninameslist.h 2022-10-23 13:00:37.000000000 
+0200
@@ -58,9 +58,9 @@
 
 /* Version information for this <uninameslist.h> include file */
 #define LIBUNINAMESLIST_MAJOR  1
-#define LIBUNINAMESLIST_MINOR  10
+#define LIBUNINAMESLIST_MINOR  12
 
-/* Return number of blocks in this NamesList (Version 14.0). */
+/* Return number of blocks in this NamesList (Version 15.0). */
 int uniNamesList_blockCount(void);
 
 /* Return block number for this unicode value (-1 if bad unicode value) */

Reply via email to