Compare commits

...

10 Commits

Author SHA1 Message Date
openeuler-ci-bot
8d57d01adb
!15 Update to 1.4.5
From: @lyn1001 
Reviewed-by: @caodongxia 
Signed-off-by: @caodongxia
2024-02-23 09:22:56 +00:00
lyn1001
aafef6c4f2 Upgrade to 1.4.5 2024-02-23 14:31:47 +08:00
openeuler-ci-bot
64f047b722
!14 Update to 1.4.4
From: @starlet-dx 
Reviewed-by: @caodongxia 
Signed-off-by: @caodongxia
2023-04-13 08:09:08 +00:00
starlet-dx
8f0e9c2228 Update to 1.4.4 2023-04-12 14:46:18 +08:00
openeuler-ci-bot
97f0c2d74c !7 Execute setlocale before printing
From: @ultra_planet
Reviewed-by: @small_leek
Signed-off-by: @small_leek
2021-09-22 07:54:58 +00:00
lingsheng
bc96a25e44 Execute setlocale before printing 2021-09-22 15:43:19 +08:00
openeuler-ci-bot
f40b05bd05 !3 [sync] PR-2: fix CVE-2019-13045
From: @openeuler-sync-bot
Reviewed-by: @zhanghua1831,@small_leek
Signed-off-by: @small_leek
2021-02-07 14:03:07 +08:00
wang_yue111
c471969e48 fix CVE-2019-13045
(cherry picked from commit a5b4f0d904e134dfeff61763b7cc65be3cb55e07)
2021-02-05 17:18:08 +08:00
openeuler-ci-bot
fefc16189d !1 Package init
Merge pull request !1 from 成子晗/master
2020-06-20 11:02:04 +08:00
chengzihan2
fc2ead5e3a Package init 2020-06-19 15:03:31 +08:00
5 changed files with 66 additions and 2 deletions

Binary file not shown.

View File

@ -0,0 +1,43 @@
diff --git a/configure.ac b/configure.ac
index f03569e..53a9de6 100644
--- a/configure.ac
+++ b/configure.ac
@@ -650,6 +650,7 @@ for c in $CHAT_MODULES; do
done
FE_COMMON_LIBS="$FE_COMMON_LIBS../fe-common/core/libfe_common_core.a"
+AC_SUBST(FE_COMMON_LIBS)
dnl ** common libraries needed by frontends
COMMON_NOUI_LIBS="$CHAT_LIBS $CORE_LIBS"
diff --git a/src/fe-none/Makefile.am b/src/fe-none/Makefile.am
index bbcd63f..e8ce8d6 100644
--- a/src/fe-none/Makefile.am
+++ b/src/fe-none/Makefile.am
@@ -4,12 +4,13 @@ AM_CPPFLAGS = \
-I$(top_builddir) \
$(GLIB_CFLAGS)
-botti_DEPENDENCIES = @COMMON_NOUI_LIBS@
+botti_DEPENDENCIES = @COMMON_NOUI_LIBS@ @FE_COMMON_LIBS@
botti_LDADD = \
@COMMON_NOUI_LIBS@ \
@PERL_LINK_LIBS@ \
@PERL_LINK_FLAGS@ \
+ @FE_COMMON_LIBS@ \
@PROG_LIBS@
botti_SOURCES = \
diff --git a/src/fe-none/meson.build b/src/fe-none/meson.build
index 58df15f..8e32b94 100644
--- a/src/fe-none/meson.build
+++ b/src/fe-none/meson.build
@@ -11,6 +11,7 @@ executable('botti',
libconfig_a,
libcore_a,
libirc_a,
+ libfe_common_core_a,
],
install : true,
dependencies : dep

BIN
irssi-1.4.5.tar.xz Normal file

Binary file not shown.

View File

@ -1,3 +1,9 @@
#include <bits/wordsize.h>
#if __WORDSIZE == 32
#include "irssi-config-32.h"
#elif __WORDSIZE == 64
#include "irssi-config-64.h"
#else
#error "Unknown word size"
#endif

View File

@ -1,13 +1,15 @@
%define perl_vendorarch %(eval "`perl -V:installvendorarch`"; echo $installvendorarch)
Name: irssi
Version: 1.1.2
Release: 2
Version: 1.4.5
Release: 1
Summary: A modular char client.
License: GPLv2+
URL: http://irssi.org/
Source0: https://github.com/irssi/irssi/releases/download/%{version}/irssi-%{version}.tar.xz
Source1: irssi-config.h
Patch0: irssi-1.4.1-botti-perl-link-fix.patch
BuildRequires: ncurses-devel openssl-devel zlib-devel autoconf automake libtool
BuildRequires: pkgconfig glib2-devel perl-devel perl-generators perl(ExtUtils::Embed)
Requires: perl(:MODULE_COMPAT_%(eval "`%{__perl} -V:version`"; echo $version))
@ -57,7 +59,20 @@ chmod -R u+w $RPM_BUILD_ROOT%{perl_vendorarch}
%files devel
%{_includedir}/irssi/
%{_libdir}/pkgconfig/irssi-1.pc
%changelog
* Fri Feb 23 2024 liyanan <liyanan61@h-partners.com> - 1.4.5-1
- Update to 1.4.5
* Wed Apr 12 2023 yaoxin <yao_xin001@hoperun.com> - 1.4.4-1
- Update to 1.4.4
* Wed Sep 22 2021 lingsheng <lingsheng@huawei.com> - 1.1.2-4
- Execute setlocale before printing
* Thu Feb 04 2021 wangyue <wangyue92@huawei.com> - 1.1.2-3
- fix CVE-2019-13045
* Wed Apr 22 2020 chengzihan <chengzihan2@huawei.com> - 1.1.2-2
- Package init