From 4f4a6ad521072b08fa17b6a8a042ef484a4ec268 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=B6rg=20Frings-F=C3=BCrst?= Date: Sun, 3 Mar 2024 19:57:18 +0100 Subject: d/changelog: Change distribution to unstable, Change date and time --- debian/changelog | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/debian/changelog b/debian/changelog index 992a8170..e89315f0 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,4 +1,4 @@ -libunistring (1.2-1) UNRELEASED; urgency=medium +libunistring (1.2-1) unstable; urgency=medium * New upstrem release. - Refresh / Rebuild symbols file. @@ -6,7 +6,7 @@ libunistring (1.2-1) UNRELEASED; urgency=medium - Add 2024 to myself. - Refresh uploader copyright years. - -- Jörg Frings-Fürst Sun, 03 Mar 2024 19:12:13 +0100 + -- Jörg Frings-Fürst Sun, 03 Mar 2024 19:47:31 +0100 libunistring (1.1-2) unstable; urgency=medium -- cgit v1.2.3 From 9bd476afc160f9c7f3e2b97d1dbeb9c64ff40681 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=B6rg=20Frings-F=C3=BCrst?= Date: Sun, 3 Mar 2024 21:05:17 +0100 Subject: Remove unused patches --- debian/changelog | 2 + debian/files | 1 + debian/patches/0100-float-endian-detection.patch | 63 ------------------------ debian/patches/series | 1 - 4 files changed, 3 insertions(+), 64 deletions(-) create mode 100644 debian/files delete mode 100644 debian/patches/0100-float-endian-detection.patch diff --git a/debian/changelog b/debian/changelog index e89315f0..76175b78 100644 --- a/debian/changelog +++ b/debian/changelog @@ -5,6 +5,8 @@ libunistring (1.2-1) unstable; urgency=medium * debian/copyright: - Add 2024 to myself. - Refresh uploader copyright years. + * Remove unused patches: + - debian/patches/0100-float-endian-detection.patch. -- Jörg Frings-Fürst Sun, 03 Mar 2024 19:47:31 +0100 diff --git a/debian/files b/debian/files new file mode 100644 index 00000000..45bd9caa --- /dev/null +++ b/debian/files @@ -0,0 +1 @@ +libunistring_1.2-1_source.buildinfo libs optional diff --git a/debian/patches/0100-float-endian-detection.patch b/debian/patches/0100-float-endian-detection.patch deleted file mode 100644 index d094516e..00000000 --- a/debian/patches/0100-float-endian-detection.patch +++ /dev/null @@ -1,63 +0,0 @@ -Description: Fix detection of floating point endianness - See https://lists.gnu.org/archive/html/bug-gnulib/2013-12/msg00104.html -Author: Alan Modra -Author: Colin Watson -Forwarded: no -Last-Update: 2013-12-18 - ---- a/tests/test-isnanl.h -+++ b/tests/test-isnanl.h -@@ -24,6 +24,12 @@ - #include "nan.h" - #include "macros.h" - -+#ifdef __FLOAT_WORD_ORDER__ -+# define FLOAT_BIG_ENDIAN (__FLOAT_WORD_ORDER__ != __ORDER_LITTLE_ENDIAN__) -+#else -+# define FLOAT_BIG_ENDIAN (LDBL_EXPBIT0_WORD < NWORDS / 2) -+#endif -+ - int - main () - { -@@ -65,10 +71,10 @@ - # if LDBL_EXPBIT0_BIT > 0 - m.word[LDBL_EXPBIT0_WORD] ^= (unsigned int) 1 << (LDBL_EXPBIT0_BIT - 1); - # else -- m.word[LDBL_EXPBIT0_WORD + (LDBL_EXPBIT0_WORD < NWORDS / 2 ? 1 : - 1)] -+ m.word[LDBL_EXPBIT0_WORD + (FLOAT_BIG_ENDIAN ? 1 : - 1)] - ^= (unsigned int) 1 << (sizeof (unsigned int) * CHAR_BIT - 1); - # endif -- m.word[LDBL_EXPBIT0_WORD + (LDBL_EXPBIT0_WORD < NWORDS / 2 ? 1 : - 1)] -+ m.word[LDBL_EXPBIT0_WORD + (FLOAT_BIG_ENDIAN ? 1 : - 1)] - |= (unsigned int) 1 << LDBL_EXPBIT0_BIT; - ASSERT (isnanl (m.value)); - } ---- a/tests/test-signbit.c -+++ b/tests/test-signbit.c -@@ -36,6 +36,12 @@ - double zerod = 0.0; - long double zerol = 0.0L; - -+#ifdef __FLOAT_WORD_ORDER__ -+# define FLOAT_BIG_ENDIAN (__FLOAT_WORD_ORDER__ != __ORDER_LITTLE_ENDIAN__) -+#else -+# define FLOAT_BIG_ENDIAN (LDBL_EXPBIT0_WORD < NWORDS / 2) -+#endif -+ - static void - test_signbitf () - { -@@ -166,10 +172,10 @@ - # if LDBL_EXPBIT0_BIT > 0 - m.word[LDBL_EXPBIT0_WORD] ^= (unsigned int) 1 << (LDBL_EXPBIT0_BIT - 1); - # else -- m.word[LDBL_EXPBIT0_WORD + (LDBL_EXPBIT0_WORD < NWORDS / 2 ? 1 : - 1)] -+ m.word[LDBL_EXPBIT0_WORD + (FLOAT_BIG_ENDIAN ? 1 : - 1)] - ^= (unsigned int) 1 << (sizeof (unsigned int) * CHAR_BIT - 1); - # endif -- m.word[LDBL_EXPBIT0_WORD + (LDBL_EXPBIT0_WORD < NWORDS / 2 ? 1 : - 1)] -+ m.word[LDBL_EXPBIT0_WORD + (FLOAT_BIG_ENDIAN ? 1 : - 1)] - |= (unsigned int) 1 << LDBL_EXPBIT0_BIT; - (void) signbit (m.value); - #undef NWORDS diff --git a/debian/patches/series b/debian/patches/series index 0aa4ef9d..b1a229ac 100644 --- a/debian/patches/series +++ b/debian/patches/series @@ -1,2 +1 @@ -#0100-float-endian-detection.patch 0700-multiarch-libc.patch -- cgit v1.2.3 From 0a85b913b7e55adcb041459f28bed44a278853bc Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=B6rg=20Frings-F=C3=BCrst?= Date: Thu, 7 Mar 2024 15:41:55 +0100 Subject: d/libunistring5.symbols: remove #MISSING# placeholders for disappeared private symbols --- debian/libunistring5.symbols | 5 ----- 1 file changed, 5 deletions(-) diff --git a/debian/libunistring5.symbols b/debian/libunistring5.symbols index b97e680b..6980b8e3 100644 --- a/debian/libunistring5.symbols +++ b/debian/libunistring5.symbols @@ -191,13 +191,8 @@ libunistring.so.5 libunistring5 #MINVER# libunistring_hard_locale@Base 1.1 libunistring_iconveh_close@Base 1.1 libunistring_iconveh_open@Base 1.1 -#MISSING: 1.2# libunistring_is_basic@Base 1.1 -#MISSING: 1.2# libunistring_is_basic_table@Base 1.1 libunistring_mb_copy@Base 1.1 libunistring_mb_width_aux@Base 1.1 -#MISSING: 1.2# libunistring_mbiter_multi_copy@Base 1.1 -#MISSING: 1.2# libunistring_mbiter_multi_next@Base 1.1 -#MISSING: 1.2# libunistring_mbiter_multi_reloc@Base 1.1 libunistring_mbiterf_next@Base 1.2 libunistring_mbsnlen@Base 1.1 libunistring_mbszero@Base 1.2 -- cgit v1.2.3 From 0c5e92d03b44fade42baffa898c2e7e28b57a10c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=B6rg=20Frings-F=C3=BCrst?= Date: Sat, 9 Mar 2024 12:09:10 +0100 Subject: Merge libunistring5.symbols.hurd-i386 into libunistring5.symbols via arch conditions --- debian/changelog | 2 + debian/libunistring5.symbols | 9 +- debian/libunistring5.symbols.hurd-i386 | 720 --------------------------------- 3 files changed, 9 insertions(+), 722 deletions(-) delete mode 100644 debian/libunistring5.symbols.hurd-i386 diff --git a/debian/changelog b/debian/changelog index 76175b78..577086eb 100644 --- a/debian/changelog +++ b/debian/changelog @@ -2,6 +2,8 @@ libunistring (1.2-1) unstable; urgency=medium * New upstrem release. - Refresh / Rebuild symbols file. + + Merge libunistring5.symbols.hurd-i386 into + libunistring5.symbols via arch conditions. * debian/copyright: - Add 2024 to myself. - Refresh uploader copyright years. diff --git a/debian/libunistring5.symbols b/debian/libunistring5.symbols index 6980b8e3..01e411f5 100644 --- a/debian/libunistring5.symbols +++ b/debian/libunistring5.symbols @@ -184,10 +184,15 @@ libunistring.so.5 libunistring5 #MINVER# libunistring_gl_uninorm_decomp_chars_table@Base 1.1 libunistring_gl_uninorm_decomp_index_table@Base 1.1 libunistring_gl_uninorm_decompose_merge_sort_inplace@Base 1.1 - libunistring_glthread_once_multithreaded@Base 1.1 + (arch=!hurd-i386) libunistring_glthread_once_multithreaded@Base 1.1 libunistring_glthread_once_singlethreaded@Base 1.1 libunistring_glthread_recursive_lock_init_multithreaded@Base 1.1 - libunistring_glthread_rwlock_init_for_glibc@Base 1.1 + (arch=!hurd-any) libunistring_glthread_rwlock_init_for_glibc@Base 1.1 + (arch=hurd-any) libunistring_glthread_rwlock_destroy_multithreaded@Base 1.1 + (arch=hurd-any) libunistring_glthread_rwlock_init_multithreaded@Base 1.1 + (arch=hurd-any) libunistring_glthread_rwlock_rdlock_multithreaded@Base 1.1 + (arch=hurd-any) libunistring_glthread_rwlock_unlock_multithreaded@Base 1.1 + (arch=hurd-any) libunistring_glthread_rwlock_wrlock_multithreaded@Base 1.1 libunistring_hard_locale@Base 1.1 libunistring_iconveh_close@Base 1.1 libunistring_iconveh_open@Base 1.1 diff --git a/debian/libunistring5.symbols.hurd-i386 b/debian/libunistring5.symbols.hurd-i386 deleted file mode 100644 index 755f423b..00000000 --- a/debian/libunistring5.symbols.hurd-i386 +++ /dev/null @@ -1,720 +0,0 @@ -libunistring.so.5 libunistring5 #MINVER# -* Build-Depends-Package: libunistring-dev - UC_CATEGORY_C@Base 1.1 - UC_CATEGORY_Cc@Base 1.1 - UC_CATEGORY_Cf@Base 1.1 - UC_CATEGORY_Cn@Base 1.1 - UC_CATEGORY_Co@Base 1.1 - UC_CATEGORY_Cs@Base 1.1 - UC_CATEGORY_L@Base 1.1 - UC_CATEGORY_LC@Base 1.1 - UC_CATEGORY_Ll@Base 1.1 - UC_CATEGORY_Lm@Base 1.1 - UC_CATEGORY_Lo@Base 1.1 - UC_CATEGORY_Lt@Base 1.1 - UC_CATEGORY_Lu@Base 1.1 - UC_CATEGORY_M@Base 1.1 - UC_CATEGORY_Mc@Base 1.1 - UC_CATEGORY_Me@Base 1.1 - UC_CATEGORY_Mn@Base 1.1 - UC_CATEGORY_N@Base 1.1 - UC_CATEGORY_Nd@Base 1.1 - UC_CATEGORY_Nl@Base 1.1 - UC_CATEGORY_No@Base 1.1 - UC_CATEGORY_P@Base 1.1 - UC_CATEGORY_Pc@Base 1.1 - UC_CATEGORY_Pd@Base 1.1 - UC_CATEGORY_Pe@Base 1.1 - UC_CATEGORY_Pf@Base 1.1 - UC_CATEGORY_Pi@Base 1.1 - UC_CATEGORY_Po@Base 1.1 - UC_CATEGORY_Ps@Base 1.1 - UC_CATEGORY_S@Base 1.1 - UC_CATEGORY_Sc@Base 1.1 - UC_CATEGORY_Sk@Base 1.1 - UC_CATEGORY_Sm@Base 1.1 - UC_CATEGORY_So@Base 1.1 - UC_CATEGORY_Z@Base 1.1 - UC_CATEGORY_Zl@Base 1.1 - UC_CATEGORY_Zp@Base 1.1 - UC_CATEGORY_Zs@Base 1.1 - UC_PROPERTY_ALPHABETIC@Base 1.1 - UC_PROPERTY_ASCII_HEX_DIGIT@Base 1.1 - UC_PROPERTY_BIDI_ARABIC_DIGIT@Base 1.1 - UC_PROPERTY_BIDI_ARABIC_RIGHT_TO_LEFT@Base 1.1 - UC_PROPERTY_BIDI_BLOCK_SEPARATOR@Base 1.1 - UC_PROPERTY_BIDI_BOUNDARY_NEUTRAL@Base 1.1 - UC_PROPERTY_BIDI_COMMON_SEPARATOR@Base 1.1 - UC_PROPERTY_BIDI_CONTROL@Base 1.1 - UC_PROPERTY_BIDI_EMBEDDING_OR_OVERRIDE@Base 1.1 - UC_PROPERTY_BIDI_EUROPEAN_DIGIT@Base 1.1 - UC_PROPERTY_BIDI_EUR_NUM_SEPARATOR@Base 1.1 - UC_PROPERTY_BIDI_EUR_NUM_TERMINATOR@Base 1.1 - UC_PROPERTY_BIDI_HEBREW_RIGHT_TO_LEFT@Base 1.1 - UC_PROPERTY_BIDI_LEFT_TO_RIGHT@Base 1.1 - UC_PROPERTY_BIDI_NON_SPACING_MARK@Base 1.1 - UC_PROPERTY_BIDI_OTHER_NEUTRAL@Base 1.1 - UC_PROPERTY_BIDI_PDF@Base 1.1 - UC_PROPERTY_BIDI_SEGMENT_SEPARATOR@Base 1.1 - UC_PROPERTY_BIDI_WHITESPACE@Base 1.1 - UC_PROPERTY_CASED@Base 1.1 - UC_PROPERTY_CASE_IGNORABLE@Base 1.1 - UC_PROPERTY_CHANGES_WHEN_CASEFOLDED@Base 1.1 - UC_PROPERTY_CHANGES_WHEN_CASEMAPPED@Base 1.1 - UC_PROPERTY_CHANGES_WHEN_LOWERCASED@Base 1.1 - UC_PROPERTY_CHANGES_WHEN_TITLECASED@Base 1.1 - UC_PROPERTY_CHANGES_WHEN_UPPERCASED@Base 1.1 - UC_PROPERTY_COMBINING@Base 1.1 - UC_PROPERTY_COMPOSITE@Base 1.1 - UC_PROPERTY_CURRENCY_SYMBOL@Base 1.1 - UC_PROPERTY_DASH@Base 1.1 - UC_PROPERTY_DECIMAL_DIGIT@Base 1.1 - UC_PROPERTY_DEFAULT_IGNORABLE_CODE_POINT@Base 1.1 - UC_PROPERTY_DEPRECATED@Base 1.1 - UC_PROPERTY_DIACRITIC@Base 1.1 - UC_PROPERTY_EMOJI@Base 1.1 - UC_PROPERTY_EMOJI_COMPONENT@Base 1.1 - UC_PROPERTY_EMOJI_MODIFIER@Base 1.1 - UC_PROPERTY_EMOJI_MODIFIER_BASE@Base 1.1 - UC_PROPERTY_EMOJI_PRESENTATION@Base 1.1 - UC_PROPERTY_EXTENDED_PICTOGRAPHIC@Base 1.1 - UC_PROPERTY_EXTENDER@Base 1.1 - UC_PROPERTY_FORMAT_CONTROL@Base 1.1 - UC_PROPERTY_GRAPHEME_BASE@Base 1.1 - UC_PROPERTY_GRAPHEME_EXTEND@Base 1.1 - UC_PROPERTY_GRAPHEME_LINK@Base 1.1 - UC_PROPERTY_HEX_DIGIT@Base 1.1 - UC_PROPERTY_HYPHEN@Base 1.1 - UC_PROPERTY_IDEOGRAPHIC@Base 1.1 - UC_PROPERTY_IDS_BINARY_OPERATOR@Base 1.1 - UC_PROPERTY_IDS_TRINARY_OPERATOR@Base 1.1 - UC_PROPERTY_ID_CONTINUE@Base 1.1 - UC_PROPERTY_ID_START@Base 1.1 - UC_PROPERTY_IGNORABLE_CONTROL@Base 1.1 - UC_PROPERTY_ISO_CONTROL@Base 1.1 - UC_PROPERTY_JOIN_CONTROL@Base 1.1 - UC_PROPERTY_LEFT_OF_PAIR@Base 1.1 - UC_PROPERTY_LINE_SEPARATOR@Base 1.1 - UC_PROPERTY_LOGICAL_ORDER_EXCEPTION@Base 1.1 - UC_PROPERTY_LOWERCASE@Base 1.1 - UC_PROPERTY_MATH@Base 1.1 - UC_PROPERTY_NON_BREAK@Base 1.1 - UC_PROPERTY_NOT_A_CHARACTER@Base 1.1 - UC_PROPERTY_NUMERIC@Base 1.1 - UC_PROPERTY_OTHER_ALPHABETIC@Base 1.1 - UC_PROPERTY_OTHER_DEFAULT_IGNORABLE_CODE_POINT@Base 1.1 - UC_PROPERTY_OTHER_GRAPHEME_EXTEND@Base 1.1 - UC_PROPERTY_OTHER_ID_CONTINUE@Base 1.1 - UC_PROPERTY_OTHER_ID_START@Base 1.1 - UC_PROPERTY_OTHER_LOWERCASE@Base 1.1 - UC_PROPERTY_OTHER_MATH@Base 1.1 - UC_PROPERTY_OTHER_UPPERCASE@Base 1.1 - UC_PROPERTY_PAIRED_PUNCTUATION@Base 1.1 - UC_PROPERTY_PARAGRAPH_SEPARATOR@Base 1.1 - UC_PROPERTY_PATTERN_SYNTAX@Base 1.1 - UC_PROPERTY_PATTERN_WHITE_SPACE@Base 1.1 - UC_PROPERTY_PRIVATE_USE@Base 1.1 - UC_PROPERTY_PUNCTUATION@Base 1.1 - UC_PROPERTY_QUOTATION_MARK@Base 1.1 - UC_PROPERTY_RADICAL@Base 1.1 - UC_PROPERTY_REGIONAL_INDICATOR@Base 1.1 - UC_PROPERTY_SENTENCE_TERMINAL@Base 1.1 - UC_PROPERTY_SOFT_DOTTED@Base 1.1 - UC_PROPERTY_SPACE@Base 1.1 - UC_PROPERTY_TERMINAL_PUNCTUATION@Base 1.1 - UC_PROPERTY_TITLECASE@Base 1.1 - UC_PROPERTY_UNASSIGNED_CODE_VALUE@Base 1.1 - UC_PROPERTY_UNIFIED_IDEOGRAPH@Base 1.1 - UC_PROPERTY_UPPERCASE@Base 1.1 - UC_PROPERTY_VARIATION_SELECTOR@Base 1.1 - UC_PROPERTY_WHITE_SPACE@Base 1.1 - UC_PROPERTY_XID_CONTINUE@Base 1.1 - UC_PROPERTY_XID_START@Base 1.1 - UC_PROPERTY_ZERO_WIDTH@Base 1.1 - _UC_CATEGORY_NONE@Base 1.1 - _libunistring_version@Base 1.1 - libunistring_amemxfrm@Base 1.1 - libunistring_c_isalnum@Base 1.1 - libunistring_c_isalpha@Base 1.1 - libunistring_c_isascii@Base 1.1 - libunistring_c_isblank@Base 1.1 - libunistring_c_iscntrl@Base 1.1 - libunistring_c_isdigit@Base 1.1 - libunistring_c_isgraph@Base 1.1 - libunistring_c_islower@Base 1.1 - libunistring_c_isprint@Base 1.1 - libunistring_c_ispunct@Base 1.1 - libunistring_c_isspace@Base 1.1 - libunistring_c_isupper@Base 1.1 - libunistring_c_isxdigit@Base 1.1 - libunistring_c_strcasecmp@Base 1.1 - libunistring_c_strncasecmp@Base 1.1 - libunistring_c_tolower@Base 1.1 - libunistring_c_toupper@Base 1.1 - libunistring_freea@Base 1.1 - libunistring_fseterr@Base 1.1 - libunistring_gl_locale_name@Base 1.1 - libunistring_gl_locale_name_default@Base 1.1 - libunistring_gl_locale_name_environ@Base 1.1 - libunistring_gl_locale_name_posix@Base 1.1 - libunistring_gl_locale_name_thread@Base 1.1 - libunistring_gl_unicase_special_lookup@Base 1.1 - libunistring_gl_uninorm_decomp_chars_table@Base 1.1 - libunistring_gl_uninorm_decomp_index_table@Base 1.1 - libunistring_gl_uninorm_decompose_merge_sort_inplace@Base 1.1 -#MISSING: 1.1-1~experimental2# libunistring_glthread_once_multithreaded@Base 1.1 - libunistring_glthread_once_singlethreaded@Base 1.1 - libunistring_glthread_recursive_lock_init_multithreaded@Base 1.1 - libunistring_glthread_rwlock_destroy_multithreaded@Base 1.1-1~experimental2 -#MISSING: 1.1-1~experimental2# libunistring_glthread_rwlock_init_for_glibc@Base 1.1 - libunistring_glthread_rwlock_init_multithreaded@Base 1.1-1~experimental2 - libunistring_glthread_rwlock_rdlock_multithreaded@Base 1.1-1~experimental2 - libunistring_glthread_rwlock_unlock_multithreaded@Base 1.1-1~experimental2 - libunistring_glthread_rwlock_wrlock_multithreaded@Base 1.1-1~experimental2 - libunistring_hard_locale@Base 1.1 - libunistring_iconveh_close@Base 1.1 - libunistring_iconveh_open@Base 1.1 - libunistring_is_basic@Base 1.1 - libunistring_is_basic_table@Base 1.1 - libunistring_mb_copy@Base 1.1 - libunistring_mb_width_aux@Base 1.1 - libunistring_mbiter_multi_copy@Base 1.1 - libunistring_mbiter_multi_next@Base 1.1 - libunistring_mbiter_multi_reloc@Base 1.1 - libunistring_mbsnlen@Base 1.1 - libunistring_mem_cd_iconveh@Base 1.1 - libunistring_mem_iconveh@Base 1.1 - libunistring_mem_iconveha@Base 1.1 - libunistring_memcmp2@Base 1.1 - libunistring_mmalloca@Base 1.1 - libunistring_printf_frexp@Base 1.1 - libunistring_printf_frexpl@Base 1.1 - libunistring_rpl_mbrtowc@Base 1.1 - libunistring_setlocale_null@Base 1.1 - libunistring_setlocale_null_r@Base 1.1 - libunistring_str_cd_iconveh@Base 1.1 - libunistring_str_iconveh@Base 1.1 - libunistring_str_iconveha@Base 1.1 - libunistring_u16_casemap@Base 1.1 - libunistring_u16_is_invariant@Base 1.1 - libunistring_u16_possible_linebreaks_loop@Base 1.1 - libunistring_u16_printf_parse@Base 1.1 - libunistring_u32_casemap@Base 1.1 - libunistring_u32_is_invariant@Base 1.1 - libunistring_u32_possible_linebreaks_loop@Base 1.1 - libunistring_u32_printf_parse@Base 1.1 - libunistring_u8_casemap@Base 1.1 - libunistring_u8_is_invariant@Base 1.1 - libunistring_u8_possible_linebreaks_loop@Base 1.1 - libunistring_u8_printf_parse@Base 1.1 - libunistring_u8_width_linebreaks_internal@Base 1.1 - libunistring_u_printf_fetchargs@Base 1.1 - libunistring_uc_compat_decomposition@Base 1.1 - libunistring_uc_is_case_ignorable@Base 1.1 - libunistring_uc_is_cased@Base 1.1 - libunistring_uc_tocasefold@Base 1.1 - libunistring_ulc_printf_parse@Base 1.1 - libunistring_uniconv_register_autodetect@Base 1.1 - libunistring_unilbrk_is_all_ascii@Base 1.1 - libunistring_unilbrk_is_utf8_encoding@Base 1.1 - libunistring_unilbrk_table@Base 1.1 - libunistring_unilbrkprop@Base 1.1 - libunistring_uniwbrk_prop_index@Base 1.1 - libunistring_uniwbrk_table@Base 1.1 - libunistring_xmax@Base 1.1 - libunistring_xsum3@Base 1.1 - libunistring_xsum4@Base 1.1 - libunistring_xsum@Base 1.1 - locale_charset@Base 1.1 - u16_asnprintf@Base 1.1 - u16_asprintf@Base 1.1 - u16_casecmp@Base 1.1 - u16_casecoll@Base 1.1 - u16_casefold@Base 1.1 - u16_casexfrm@Base 1.1 - u16_casing_prefix_context@Base 1.1 - u16_casing_prefixes_context@Base 1.1 - u16_casing_suffix_context@Base 1.1 - u16_casing_suffixes_context@Base 1.1 - u16_check@Base 1.1 - u16_chr@Base 1.1 - u16_cmp2@Base 1.1 - u16_cmp@Base 1.1 - u16_conv_from_encoding@Base 1.1 - u16_conv_to_encoding@Base 1.1 - u16_cpy@Base 1.1 - u16_cpy_alloc@Base 1.1 - u16_ct_casefold@Base 1.1 - u16_ct_tolower@Base 1.1 - u16_ct_totitle@Base 1.1 - u16_ct_toupper@Base 1.1 - u16_endswith@Base 1.1 - u16_grapheme_breaks@Base 1.1 - u16_grapheme_next@Base 1.1 - u16_grapheme_prev@Base 1.1 - u16_is_cased@Base 1.1 - u16_is_casefolded@Base 1.1 - u16_is_lowercase@Base 1.1 - u16_is_titlecase@Base 1.1 - u16_is_uppercase@Base 1.1 - u16_mblen@Base 1.1 - u16_mbsnlen@Base 1.1 - u16_mbtouc@Base 1.1 - u16_mbtouc_aux@Base 1.1 - u16_mbtouc_unsafe@Base 1.1 - u16_mbtouc_unsafe_aux@Base 1.1 - u16_mbtoucr@Base 1.1 - u16_move@Base 1.1 - u16_next@Base 1.1 - u16_normalize@Base 1.1 - u16_normcmp@Base 1.1 - u16_normcoll@Base 1.1 - u16_normxfrm@Base 1.1 - u16_possible_linebreaks@Base 1.1 - u16_possible_linebreaks_v2@Base 1.1 - u16_prev@Base 1.1 - u16_set@Base 1.1 - u16_snprintf@Base 1.1 - u16_sprintf@Base 1.1 - u16_startswith@Base 1.1 - u16_stpcpy@Base 1.1 - u16_stpncpy@Base 1.1 - u16_strcat@Base 1.1 - u16_strchr@Base 1.1 - u16_strcmp@Base 1.1 - u16_strcoll@Base 1.1 - u16_strconv_from_encoding@Base 1.1 - u16_strconv_from_locale@Base 1.1 - u16_strconv_to_encoding@Base 1.1 - u16_strconv_to_locale@Base 1.1 - u16_strcpy@Base 1.1 - u16_strcspn@Base 1.1 - u16_strdup@Base 1.1 - u16_strlen@Base 1.1 - u16_strmblen@Base 1.1 - u16_strmbtouc@Base 1.1 - u16_strncat@Base 1.1 - u16_strncmp@Base 1.1 - u16_strncpy@Base 1.1 - u16_strnlen@Base 1.1 - u16_strpbrk@Base 1.1 - u16_strrchr@Base 1.1 - u16_strspn@Base 1.1 - u16_strstr@Base 1.1 - u16_strtok@Base 1.1 - u16_strwidth@Base 1.1 - u16_to_u32@Base 1.1 - u16_to_u8@Base 1.1 - u16_tolower@Base 1.1 - u16_totitle@Base 1.1 - u16_toupper@Base 1.1 - u16_u16_asnprintf@Base 1.1 - u16_u16_asprintf@Base 1.1 - u16_u16_snprintf@Base 1.1 - u16_u16_sprintf@Base 1.1 - u16_u16_vasnprintf@Base 1.1 - u16_u16_vasprintf@Base 1.1 - u16_u16_vsnprintf@Base 1.1 - u16_u16_vsprintf@Base 1.1 - u16_uctomb@Base 1.1 - u16_uctomb_aux@Base 1.1 - u16_vasnprintf@Base 1.1 - u16_vasprintf@Base 1.1 - u16_vsnprintf@Base 1.1 - u16_vsprintf@Base 1.1 - u16_width@Base 1.1 - u16_width_linebreaks@Base 1.1 - u16_width_linebreaks_v2@Base 1.1 - u16_wordbreaks@Base 1.1 - u32_asnprintf@Base 1.1 - u32_asprintf@Base 1.1 - u32_casecmp@Base 1.1 - u32_casecoll@Base 1.1 - u32_casefold@Base 1.1 - u32_casexfrm@Base 1.1 - u32_casing_prefix_context@Base 1.1 - u32_casing_prefixes_context@Base 1.1 - u32_casing_suffix_context@Base 1.1 - u32_casing_suffixes_context@Base 1.1 - u32_check@Base 1.1 - u32_chr@Base 1.1 - u32_cmp2@Base 1.1 - u32_cmp@Base 1.1 - u32_conv_from_encoding@Base 1.1 - u32_conv_to_encoding@Base 1.1 - u32_cpy@Base 1.1 - u32_cpy_alloc@Base 1.1 - u32_ct_casefold@Base 1.1 - u32_ct_tolower@Base 1.1 - u32_ct_totitle@Base 1.1 - u32_ct_toupper@Base 1.1 - u32_endswith@Base 1.1 - u32_grapheme_breaks@Base 1.1 - u32_grapheme_next@Base 1.1 - u32_grapheme_prev@Base 1.1 - u32_is_cased@Base 1.1 - u32_is_casefolded@Base 1.1 - u32_is_lowercase@Base 1.1 - u32_is_titlecase@Base 1.1 - u32_is_uppercase@Base 1.1 - u32_mblen@Base 1.1 - u32_mbsnlen@Base 1.1 - u32_mbtouc@Base 1.1 - u32_mbtouc_unsafe@Base 1.1 - u32_mbtoucr@Base 1.1 - u32_move@Base 1.1 - u32_next@Base 1.1 - u32_normalize@Base 1.1 - u32_normcmp@Base 1.1 - u32_normcoll@Base 1.1 - u32_normxfrm@Base 1.1 - u32_possible_linebreaks@Base 1.1 - u32_possible_linebreaks_v2@Base 1.1 - u32_prev@Base 1.1 - u32_set@Base 1.1 - u32_snprintf@Base 1.1 - u32_sprintf@Base 1.1 - u32_startswith@Base 1.1 - u32_stpcpy@Base 1.1 - u32_stpncpy@Base 1.1 - u32_strcat@Base 1.1 - u32_strchr@Base 1.1 - u32_strcmp@Base 1.1 - u32_strcoll@Base 1.1 - u32_strconv_from_encoding@Base 1.1 - u32_strconv_from_locale@Base 1.1 - u32_strconv_to_encoding@Base 1.1 - u32_strconv_to_locale@Base 1.1 - u32_strcpy@Base 1.1 - u32_strcspn@Base 1.1 - u32_strdup@Base 1.1 - u32_strlen@Base 1.1 - u32_strmblen@Base 1.1 - u32_strmbtouc@Base 1.1 - u32_strncat@Base 1.1 - u32_strncmp@Base 1.1 - u32_strncpy@Base 1.1 - u32_strnlen@Base 1.1 - u32_strpbrk@Base 1.1 - u32_strrchr@Base 1.1 - u32_strspn@Base 1.1 - u32_strstr@Base 1.1 - u32_strtok@Base 1.1 - u32_strwidth@Base 1.1 - u32_to_u16@Base 1.1 - u32_to_u8@Base 1.1 - u32_tolower@Base 1.1 - u32_totitle@Base 1.1 - u32_toupper@Base 1.1 - u32_u32_asnprintf@Base 1.1 - u32_u32_asprintf@Base 1.1 - u32_u32_snprintf@Base 1.1 - u32_u32_sprintf@Base 1.1 - u32_u32_vasnprintf@Base 1.1 - u32_u32_vasprintf@Base 1.1 - u32_u32_vsnprintf@Base 1.1 - u32_u32_vsprintf@Base 1.1 - u32_uctomb@Base 1.1 - u32_vasnprintf@Base 1.1 - u32_vasprintf@Base 1.1 - u32_vsnprintf@Base 1.1 - u32_vsprintf@Base 1.1 - u32_width@Base 1.1 - u32_width_linebreaks@Base 1.1 - u32_width_linebreaks_v2@Base 1.1 - u32_wordbreaks@Base 1.1 - u8_asnprintf@Base 1.1 - u8_asprintf@Base 1.1 - u8_casecmp@Base 1.1 - u8_casecoll@Base 1.1 - u8_casefold@Base 1.1 - u8_casexfrm@Base 1.1 - u8_casing_prefix_context@Base 1.1 - u8_casing_prefixes_context@Base 1.1 - u8_casing_suffix_context@Base 1.1 - u8_casing_suffixes_context@Base 1.1 - u8_check@Base 1.1 - u8_chr@Base 1.1 - u8_cmp2@Base 1.1 - u8_cmp@Base 1.1 - u8_conv_from_encoding@Base 1.1 - u8_conv_to_encoding@Base 1.1 - u8_cpy@Base 1.1 - u8_cpy_alloc@Base 1.1 - u8_ct_casefold@Base 1.1 - u8_ct_tolower@Base 1.1 - u8_ct_totitle@Base 1.1 - u8_ct_toupper@Base 1.1 - u8_endswith@Base 1.1 - u8_grapheme_breaks@Base 1.1 - u8_grapheme_next@Base 1.1 - u8_grapheme_prev@Base 1.1 - u8_is_cased@Base 1.1 - u8_is_casefolded@Base 1.1 - u8_is_lowercase@Base 1.1 - u8_is_titlecase@Base 1.1 - u8_is_uppercase@Base 1.1 - u8_mblen@Base 1.1 - u8_mbsnlen@Base 1.1 - u8_mbtouc@Base 1.1 - u8_mbtouc_aux@Base 1.1 - u8_mbtouc_unsafe@Base 1.1 - u8_mbtouc_unsafe_aux@Base 1.1 - u8_mbtoucr@Base 1.1 - u8_move@Base 1.1 - u8_next@Base 1.1 - u8_normalize@Base 1.1 - u8_normcmp@Base 1.1 - u8_normcoll@Base 1.1 - u8_normxfrm@Base 1.1 - u8_possible_linebreaks@Base 1.1 - u8_possible_linebreaks_v2@Base 1.1 - u8_prev@Base 1.1 - u8_set@Base 1.1 - u8_snprintf@Base 1.1 - u8_sprintf@Base 1.1 - u8_startswith@Base 1.1 - u8_stpcpy@Base 1.1 - u8_stpncpy@Base 1.1 - u8_strcat@Base 1.1 - u8_strchr@Base 1.1 - u8_strcmp@Base 1.1 - u8_strcoll@Base 1.1 - u8_strconv_from_encoding@Base 1.1 - u8_strconv_from_locale@Base 1.1 - u8_strconv_to_encoding@Base 1.1 - u8_strconv_to_locale@Base 1.1 - u8_strcpy@Base 1.1 - u8_strcspn@Base 1.1 - u8_strdup@Base 1.1 - u8_strlen@Base 1.1 - u8_strmblen@Base 1.1 - u8_strmbtouc@Base 1.1 - u8_strncat@Base 1.1 - u8_strncmp@Base 1.1 - u8_strncpy@Base 1.1 - u8_strnlen@Base 1.1 - u8_strpbrk@Base 1.1 - u8_strrchr@Base 1.1 - u8_strspn@Base 1.1 - u8_strstr@Base 1.1 - u8_strtok@Base 1.1 - u8_strwidth@Base 1.1 - u8_to_u16@Base 1.1 - u8_to_u32@Base 1.1 - u8_tolower@Base 1.1 - u8_totitle@Base 1.1 - u8_toupper@Base 1.1 - u8_u8_asnprintf@Base 1.1 - u8_u8_asprintf@Base 1.1 - u8_u8_snprintf@Base 1.1 - u8_u8_sprintf@Base 1.1 - u8_u8_vasnprintf@Base 1.1 - u8_u8_vasprintf@Base 1.1 - u8_u8_vsnprintf@Base 1.1 - u8_u8_vsprintf@Base 1.1 - u8_uctomb@Base 1.1 - u8_uctomb_aux@Base 1.1 - u8_vasnprintf@Base 1.1 - u8_vasprintf@Base 1.1 - u8_vsnprintf@Base 1.1 - u8_vsprintf@Base 1.1 - u8_width@Base 1.1 - u8_width_linebreaks@Base 1.1 - u8_width_linebreaks_v2@Base 1.1 - u8_wordbreaks@Base 1.1 - uc_all_blocks@Base 1.1 - uc_all_scripts@Base 1.1 - uc_bidi_category@Base 1.1 - uc_bidi_category_byname@Base 1.1 - uc_bidi_category_name@Base 1.1 - uc_bidi_class@Base 1.1 - uc_bidi_class_byname@Base 1.1 - uc_bidi_class_long_name@Base 1.1 - uc_bidi_class_name@Base 1.1 - uc_block@Base 1.1 - uc_c_ident_category@Base 1.1 - uc_canonical_decomposition@Base 1.1 - uc_combining_class@Base 1.1 - uc_combining_class_byname@Base 1.1 - uc_combining_class_long_name@Base 1.1 - uc_combining_class_name@Base 1.1 - uc_composition@Base 1.1 - uc_decimal_value@Base 1.1 - uc_decomposition@Base 1.1 - uc_digit_value@Base 1.1 - uc_general_category@Base 1.1 - uc_general_category_and@Base 1.1 - uc_general_category_and_not@Base 1.1 - uc_general_category_byname@Base 1.1 - uc_general_category_long_name@Base 1.1 - uc_general_category_name@Base 1.1 - uc_general_category_or@Base 1.1 - uc_grapheme_breaks@Base 1.1 - uc_graphemeclusterbreak_property@Base 1.1 - uc_is_alnum@Base 1.1 - uc_is_alpha@Base 1.1 - uc_is_bidi_category@Base 1.1 - uc_is_bidi_class@Base 1.1 - uc_is_blank@Base 1.1 - uc_is_block@Base 1.1 - uc_is_c_whitespace@Base 1.1 - uc_is_cntrl@Base 1.1 - uc_is_digit@Base 1.1 - uc_is_general_category@Base 1.1 - uc_is_general_category_withtable@Base 1.1 - uc_is_graph@Base 1.1 - uc_is_grapheme_break@Base 1.1 - uc_is_java_whitespace@Base 1.1 - uc_is_lower@Base 1.1 - uc_is_print@Base 1.1 - uc_is_property@Base 1.1 - uc_is_property_alphabetic@Base 1.1 - uc_is_property_ascii_hex_digit@Base 1.1 - uc_is_property_bidi_arabic_digit@Base 1.1 - uc_is_property_bidi_arabic_right_to_left@Base 1.1 - uc_is_property_bidi_block_separator@Base 1.1 - uc_is_property_bidi_boundary_neutral@Base 1.1 - uc_is_property_bidi_common_separator@Base 1.1 - uc_is_property_bidi_control@Base 1.1 - uc_is_property_bidi_embedding_or_override@Base 1.1 - uc_is_property_bidi_eur_num_separator@Base 1.1 - uc_is_property_bidi_eur_num_terminator@Base 1.1 - uc_is_property_bidi_european_digit@Base 1.1 - uc_is_property_bidi_hebrew_right_to_left@Base 1.1 - uc_is_property_bidi_left_to_right@Base 1.1 - uc_is_property_bidi_non_spacing_mark@Base 1.1 - uc_is_property_bidi_other_neutral@Base 1.1 - uc_is_property_bidi_pdf@Base 1.1 - uc_is_property_bidi_segment_separator@Base 1.1 - uc_is_property_bidi_whitespace@Base 1.1 - uc_is_property_case_ignorable@Base 1.1 - uc_is_property_cased@Base 1.1 - uc_is_property_changes_when_casefolded@Base 1.1 - uc_is_property_changes_when_casemapped@Base 1.1 - uc_is_property_changes_when_lowercased@Base 1.1 - uc_is_property_changes_when_titlecased@Base 1.1 - uc_is_property_changes_when_uppercased@Base 1.1 - uc_is_property_combining@Base 1.1 - uc_is_property_composite@Base 1.1 - uc_is_property_currency_symbol@Base 1.1 - uc_is_property_dash@Base 1.1 - uc_is_property_decimal_digit@Base 1.1 - uc_is_property_default_ignorable_code_point@Base 1.1 - uc_is_property_deprecated@Base 1.1 - uc_is_property_diacritic@Base 1.1 - uc_is_property_emoji@Base 1.1 - uc_is_property_emoji_component@Base 1.1 - uc_is_property_emoji_modifier@Base 1.1 - uc_is_property_emoji_modifier_base@Base 1.1 - uc_is_property_emoji_presentation@Base 1.1 - uc_is_property_extended_pictographic@Base 1.1 - uc_is_property_extender@Base 1.1 - uc_is_property_format_control@Base 1.1 - uc_is_property_grapheme_base@Base 1.1 - uc_is_property_grapheme_extend@Base 1.1 - uc_is_property_grapheme_link@Base 1.1 - uc_is_property_hex_digit@Base 1.1 - uc_is_property_hyphen@Base 1.1 - uc_is_property_id_continue@Base 1.1 - uc_is_property_id_start@Base 1.1 - uc_is_property_ideographic@Base 1.1 - uc_is_property_ids_binary_operator@Base 1.1 - uc_is_property_ids_trinary_operator@Base 1.1 - uc_is_property_ignorable_control@Base 1.1 - uc_is_property_iso_control@Base 1.1 - uc_is_property_join_control@Base 1.1 - uc_is_property_left_of_pair@Base 1.1 - uc_is_property_line_separator@Base 1.1 - uc_is_property_logical_order_exception@Base 1.1 - uc_is_property_lowercase@Base 1.1 - uc_is_property_math@Base 1.1 - uc_is_property_non_break@Base 1.1 - uc_is_property_not_a_character@Base 1.1 - uc_is_property_numeric@Base 1.1 - uc_is_property_other_alphabetic@Base 1.1 - uc_is_property_other_default_ignorable_code_point@Base 1.1 - uc_is_property_other_grapheme_extend@Base 1.1 - uc_is_property_other_id_continue@Base 1.1 - uc_is_property_other_id_start@Base 1.1 - uc_is_property_other_lowercase@Base 1.1 - uc_is_property_other_math@Base 1.1 - uc_is_property_other_uppercase@Base 1.1 - uc_is_property_paired_punctuation@Base 1.1 - uc_is_property_paragraph_separator@Base 1.1 - uc_is_property_pattern_syntax@Base 1.1 - uc_is_property_pattern_white_space@Base 1.1 - uc_is_property_private_use@Base 1.1 - uc_is_property_punctuation@Base 1.1 - uc_is_property_quotation_mark@Base 1.1 - uc_is_property_radical@Base 1.1 - uc_is_property_regional_indicator@Base 1.1 - uc_is_property_sentence_terminal@Base 1.1 - uc_is_property_soft_dotted@Base 1.1 - uc_is_property_space@Base 1.1 - uc_is_property_terminal_punctuation@Base 1.1 - uc_is_property_titlecase@Base 1.1 - uc_is_property_unassigned_code_value@Base 1.1 - uc_is_property_unified_ideograph@Base 1.1 - uc_is_property_uppercase@Base 1.1 - uc_is_property_variation_selector@Base 1.1 - uc_is_property_white_space@Base 1.1 - uc_is_property_xid_continue@Base 1.1 - uc_is_property_xid_start@Base 1.1 - uc_is_property_zero_width@Base 1.1 - uc_is_punct@Base 1.1 - uc_is_script@Base 1.1 - uc_is_space@Base 1.1 - uc_is_upper@Base 1.1 - uc_is_xdigit@Base 1.1 - uc_java_ident_category@Base 1.1 - uc_joining_group@Base 1.1 - uc_joining_group_byname@Base 1.1 - uc_joining_group_name@Base 1.1 - uc_joining_type@Base 1.1 - uc_joining_type_byname@Base 1.1 - uc_joining_type_long_name@Base 1.1 - uc_joining_type_name@Base 1.1 - uc_locale_language@Base 1.1 - uc_mirror_char@Base 1.1 - uc_numeric_value@Base 1.1 - uc_property_byname@Base 1.1 - uc_script@Base 1.1 - uc_script_byname@Base 1.1 - uc_tolower@Base 1.1 - uc_totitle@Base 1.1 - uc_toupper@Base 1.1 - uc_width@Base 1.1 - uc_wordbreak_property@Base 1.1 - ulc_asnprintf@Base 1.1 - ulc_asprintf@Base 1.1 - ulc_casecmp@Base 1.1 - ulc_casecoll@Base 1.1 - ulc_casexfrm@Base 1.1 - ulc_fprintf@Base 1.1 - ulc_grapheme_breaks@Base 1.1 - ulc_possible_linebreaks@Base 1.1 - ulc_possible_linebreaks_v2@Base 1.1 - ulc_snprintf@Base 1.1 - ulc_sprintf@Base 1.1 - ulc_vasnprintf@Base 1.1 - ulc_vasprintf@Base 1.1 - ulc_vfprintf@Base 1.1 - ulc_vsnprintf@Base 1.1 - ulc_vsprintf@Base 1.1 - ulc_width_linebreaks@Base 1.1 - ulc_width_linebreaks_v2@Base 1.1 - ulc_wordbreaks@Base 1.1 - unicase_empty_prefix_context@Base 1.1 - unicase_empty_suffix_context@Base 1.1 - unicode_character_name@Base 1.1 - unicode_name_character@Base 1.1 - uninorm_decomposing_form@Base 1.1 - uninorm_filter_create@Base 1.1 - uninorm_filter_flush@Base 1.1 - uninorm_filter_free@Base 1.1 - uninorm_filter_write@Base 1.1 - uninorm_nfc@Base 1.1 - uninorm_nfd@Base 1.1 - uninorm_nfkc@Base 1.1 - uninorm_nfkd@Base 1.1 -- cgit v1.2.3 From be09e631a7b164d9f3838cdf42484874125acdee Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=B6rg=20Frings-F=C3=BCrst?= Date: Sat, 9 Mar 2024 12:23:31 +0100 Subject: fix typo --- debian/files | 1 - debian/libunistring5.symbols | 14 +++++++------- 2 files changed, 7 insertions(+), 8 deletions(-) delete mode 100644 debian/files diff --git a/debian/files b/debian/files deleted file mode 100644 index 45bd9caa..00000000 --- a/debian/files +++ /dev/null @@ -1 +0,0 @@ -libunistring_1.2-1_source.buildinfo libs optional diff --git a/debian/libunistring5.symbols b/debian/libunistring5.symbols index 01e411f5..b0b04825 100644 --- a/debian/libunistring5.symbols +++ b/debian/libunistring5.symbols @@ -184,15 +184,15 @@ libunistring.so.5 libunistring5 #MINVER# libunistring_gl_uninorm_decomp_chars_table@Base 1.1 libunistring_gl_uninorm_decomp_index_table@Base 1.1 libunistring_gl_uninorm_decompose_merge_sort_inplace@Base 1.1 - (arch=!hurd-i386) libunistring_glthread_once_multithreaded@Base 1.1 + (arch=!hurd-any)libunistring_glthread_once_multithreaded@Base 1.1 libunistring_glthread_once_singlethreaded@Base 1.1 libunistring_glthread_recursive_lock_init_multithreaded@Base 1.1 - (arch=!hurd-any) libunistring_glthread_rwlock_init_for_glibc@Base 1.1 - (arch=hurd-any) libunistring_glthread_rwlock_destroy_multithreaded@Base 1.1 - (arch=hurd-any) libunistring_glthread_rwlock_init_multithreaded@Base 1.1 - (arch=hurd-any) libunistring_glthread_rwlock_rdlock_multithreaded@Base 1.1 - (arch=hurd-any) libunistring_glthread_rwlock_unlock_multithreaded@Base 1.1 - (arch=hurd-any) libunistring_glthread_rwlock_wrlock_multithreaded@Base 1.1 + (arch=!hurd-any)libunistring_glthread_rwlock_init_for_glibc@Base 1.1 + (arch=hurd-any)libunistring_glthread_rwlock_destroy_multithreaded@Base 1.1 + (arch=hurd-any)libunistring_glthread_rwlock_init_multithreaded@Base 1.1 + (arch=hurd-any)libunistring_glthread_rwlock_rdlock_multithreaded@Base 1.1 + (arch=hurd-any)libunistring_glthread_rwlock_unlock_multithreaded@Base 1.1 + (arch=hurd-any)libunistring_glthread_rwlock_wrlock_multithreaded@Base 1.1 libunistring_hard_locale@Base 1.1 libunistring_iconveh_close@Base 1.1 libunistring_iconveh_open@Base 1.1 -- cgit v1.2.3 From dd0000f7e25abe6c28d4329d324fd7fcab54094f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=B6rg=20Frings-F=C3=BCrst?= Date: Sat, 9 Mar 2024 12:26:17 +0100 Subject: d/changelog: Change date/time --- debian/changelog | 2 +- debian/files | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) create mode 100644 debian/files diff --git a/debian/changelog b/debian/changelog index 577086eb..5aefd79a 100644 --- a/debian/changelog +++ b/debian/changelog @@ -10,7 +10,7 @@ libunistring (1.2-1) unstable; urgency=medium * Remove unused patches: - debian/patches/0100-float-endian-detection.patch. - -- Jörg Frings-Fürst Sun, 03 Mar 2024 19:47:31 +0100 + -- Jörg Frings-Fürst Sat, 09 Mar 2024 12:24:06 +0100 libunistring (1.1-2) unstable; urgency=medium diff --git a/debian/files b/debian/files new file mode 100644 index 00000000..45bd9caa --- /dev/null +++ b/debian/files @@ -0,0 +1 @@ +libunistring_1.2-1_source.buildinfo libs optional -- cgit v1.2.3