Compare commits
10 Commits
3d6c34640c
...
8d57d01adb
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
8d57d01adb | ||
|
|
aafef6c4f2 | ||
|
|
64f047b722 | ||
|
|
8f0e9c2228 | ||
|
|
97f0c2d74c | ||
|
|
bc96a25e44 | ||
|
|
f40b05bd05 | ||
|
|
c471969e48 | ||
|
|
fefc16189d | ||
|
|
fc2ead5e3a |
Binary file not shown.
43
irssi-1.4.1-botti-perl-link-fix.patch
Normal file
43
irssi-1.4.1-botti-perl-link-fix.patch
Normal 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
BIN
irssi-1.4.5.tar.xz
Normal file
Binary file not shown.
@ -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
|
||||
|
||||
19
irssi.spec
19
irssi.spec
@ -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
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user