Compare commits

...

10 Commits

Author SHA1 Message Date
openeuler-ci-bot
773ce3d7ae
!17 upgrade to 1.0.13
From: @zhouwenpei 
Reviewed-by: @t_feng 
Signed-off-by: @t_feng
2023-08-02 08:56:09 +00:00
zhouwenpei
14c209d709 upgrade to 1.0.13 2023-07-19 09:05:03 +00:00
openeuler-ci-bot
53118fc455
!15 version update to 1.0.12
From: @zhouwenpei 
Reviewed-by: @t_feng 
Signed-off-by: @t_feng
2022-11-08 02:15:11 +00:00
zhouwenpei
9d934cf970 version update to 1.0.12 2022-10-29 08:53:53 +00:00
openeuler-ci-bot
660f125998
!9 fix CVE-2022-25308,CVE-2022-25309,CVE-2022-25310
From: @zhouwenpei 
Reviewed-by: @t_feng 
Signed-off-by: @t_feng
2022-09-14 07:13:32 +00:00
zhouwenpei
f06a1202ea fix CVE-2022-25308,CVE-2022-25309,CVE-2022-25310 2022-09-14 10:55:39 +08:00
openeuler-ci-bot
c3cad71cd8 !6 version update
Merge pull request !6 from yeah_wang/master
2020-07-25 19:13:27 +08:00
weiwei_150212
136c0b274c version update 2020-07-25 17:14:39 +08:00
openeuler-ci-bot
9e10c3bafe !3 add yaml file in package
Merge pull request !3 from 桐小哥/master
2020-07-21 11:21:20 +08:00
tong_1001
95297006ec add yaml file in package 2020-06-16 17:35:09 +08:00
5 changed files with 25 additions and 36 deletions

View File

@ -1,25 +0,0 @@
From 034c6e9a1d296286305f4cfd1e0072b879f52568 Mon Sep 17 00:00:00 2001
From: Dov Grobgeld <dov.grobgeld@gmail.com>
Date: Thu, 24 Oct 2019 09:37:29 +0300
Subject: [PATCH] Truncate isolate_level to FRIBIDI_BIDI_MAX_EXPLICIT_LEVEL
---
lib/fribidi-bidi.c | 4 +++-
1 file changed, 3 insertions(+), 1 deletion(-)
diff --git a/lib/fribidi-bidi.c b/lib/fribidi-bidi.c
index 6c84392..d384878 100644
--- a/lib/fribidi-bidi.c
+++ b/lib/fribidi-bidi.c
@@ -747,7 +747,9 @@ fribidi_get_par_embedding_levels_ex (
}
RL_LEVEL (pp) = level;
- RL_ISOLATE_LEVEL (pp) = isolate_level++;
+ RL_ISOLATE_LEVEL (pp) = isolate_level;
+ if (isolate_level < FRIBIDI_BIDI_MAX_EXPLICIT_LEVEL-1)
+ isolate_level++;
base_level_per_iso_level[isolate_level] = new_level;
if (!FRIBIDI_IS_NEUTRAL (override))

BIN
fribidi-1.0.13.tar.xz Normal file

Binary file not shown.

Binary file not shown.

View File

@ -1,13 +1,12 @@
Name: fribidi
Version: 1.0.5
Release: 4
Version: 1.0.13
Release: 1
Summary: Library implementing the Unicode Bidirectional Algorithm
License: LGPLv2+ and UCD
URL: https://github.com/fribidi/fribidi/
Source: https://github.com/%{name}/%{name}/releases/download/v%{version}/%{name}-%{version}.tar.bz2
Source: https://github.com/%{name}/%{name}/releases/download/v%{version}/%{name}-%{version}.tar.xz
BuildRequires: gcc automake autoconf libtool
Patch6000: CVE-2019-18397.patch
BuildRequires: gcc meson
%description
A library to handle bidirectional scripts (for example Hebrew, Arabic),
@ -23,17 +22,16 @@ Include files and libraries needed for developing applications which use FriBidi
%prep
%autosetup -n %{name}-%{version} -p1
autoreconf -i
%build
%configure --disable-static --disable-docs
%make_build
%meson -Ddocs=false
%meson_build
%check
make check
%meson_test
%install
%make_install
%meson_install
rm -f $RPM_BUILD_ROOT%{_libdir}/*.la
%post -p /sbin/ldconfig
@ -51,9 +49,21 @@ rm -f $RPM_BUILD_ROOT%{_libdir}/*.la
%{_includedir}/fribidi
%{_libdir}/libfribidi.so
%{_libdir}/pkgconfig/*.pc
%{_mandir}/man3/*.gz
#%%{_mandir}/man3/*.gz
%changelog
* Wed Jul 19 2023 zhouwenpei <zhouwenpei1@h-partners.com> - 1.0.13-1
- version update to 1.0.13
* Sat Oct 29 2022 zhouwenpei <zhouwenpei1@h-partners.com> - 1.0.12-1
- version update to 1.0.12
* Wed Sep 14 2022 zhouwenpei <zhouwenpei1@h-partners.com> - 1.0.10-2
- fix CVE-2022-25308,CVE-2022-25309,CVE-2022-25310
* Mon Jul 20 2020 wangye <wangye70@huawei.com> - 1.0.10-1
- version update to 1.0.10
* Sun Jan 12 2020 zhangrui <zhangrui182@huawei.com> - 1.0.5-4
- fix CVE-2019-18397

4
fribidi.yaml Normal file
View File

@ -0,0 +1,4 @@
version_control: github
src_repo: fribidi/fribidi
tag_prefix: ^v
seperator: .