Compare commits

...
Sign in to create a new pull request.

7 commits

Author SHA1 Message Date
LuK1337
16b8c7cd0e
Update to 4.2.2 2024-04-08 20:03:38 +02:00
LuK1337
23189ea181 Update to 4.2.1 2024-01-22 19:37:12 +01:00
LuK1337
04f0ee2d97 Update to 4.1.2 2023-12-04 15:59:30 +01:00
LuK1337
a089ea4872 Update to 4.1.1 2023-10-27 19:53:58 +02:00
LuK1337
64400c75cf Update to 4.1.0
* Reenable tests on s390x, because those work now since
  https://github.com/weechat/weechat/pull/2021
* Remove unnecessary cmake/FindPython.cmake edit
* Unset ENABLE_JAVASCRIPT (and remove v8-devel dependency) since it's
  off by default
2023-10-16 00:11:28 +02:00
LuK1337
03ca7d5984 Update to 4.0.5 2023-09-24 19:05:39 +02:00
LuK1337
8eec4f9c25 Revert "Reenable PHP plugins support"
Looks like php-embed is not working properly at the moment.

This reverts commit 1465126ece.
2023-08-24 14:57:04 +02:00
2 changed files with 4 additions and 19 deletions

View file

@ -1 +1 @@
SHA512 (weechat-4.0.4.tar.xz) = ddd150dad253cf4d9bc96122d2d3951c696b19f796a7cbf159edc258d4b18f1b2544b7b62362e7b59d6b3ff3e756de3ce4aaff83b02d3fe2d1cb614162965efd
SHA512 (weechat-4.2.2.tar.xz) = cee642ea0fd43763933bb401d40999dff0b1a5260d536d7437cb2188e31f90c8196c6836072be51fa9df7abca5f5aee91a5f99e82852c9268091347d56350032

View file

@ -1,11 +1,6 @@
%if 0%{?fedora} || 0%{?rhel} >= 8
%ifnarch s390x
%bcond_without check
%else
# some tests fail on s390x
%bcond_with check
%endif
%else
# no cpputest in EL7
%bcond_with check
%endif
@ -34,7 +29,7 @@
%endif
Name: weechat
Version: 4.0.4
Version: 4.2.2
Release: %autorelease
Summary: Portable, fast, light and extensible IRC client
Group: Applications/Communications
@ -74,8 +69,6 @@ BuildRequires: lua-devel
BuildRequires: ncurses-devel
BuildRequires: perl-ExtUtils-Embed
BuildRequires: perl-devel
BuildRequires: php-embedded
BuildRequires: php-devel
BuildRequires: pkgconfig
BuildRequires: python3-devel
BuildRequires: ruby
@ -83,13 +76,6 @@ BuildRequires: ruby-devel
BuildRequires: source-highlight
BuildRequires: tcl-devel
BuildRequires: libzstd-devel
%ifarch %{ix86} x86_64 %{arm}
# https://bugzilla.redhat.com/show_bug.cgi?id=1338728
# https://github.com/weechat/weechat/issues/360
%if 0%{?rhel} && 0%{?rhel} < 8
BuildRequires: v8-devel
%endif
%endif
BuildRequires: zlib-devel
%if 0%{?rhel}
BuildRequires: cmake3
@ -120,14 +106,13 @@ This package contains include files and pc file for weechat.
find doc/ -type f -name 'CMakeLists.txt' \
-exec sed -i -e 's#${PROJECT_NAME}#%{_doc}#g' '{}' \;
sed -i 's/NAMES python3.7/NAMES python%{python3_version}m python%{python3_version}/' cmake/FindPython.cmake
%build
%cmake3 \
-DPREFIX=%{_prefix} \
-DLIBDIR=%{_libdir} \
-DENABLE_ENCHANT=ON \
-DENABLE_PHP=OFF \
%if %{with check}
-DENABLE_TESTS=ON \
%else
@ -135,12 +120,12 @@ sed -i 's/NAMES python3.7/NAMES python%{python3_version}m python%{python3_versio
%endif
%if %{with docs}
-DENABLE_DOC=ON \
-DENABLE_DOC_INCOMPLETE=ON \
-DENABLE_MAN=ON \
%else
-DENABLE_DOC=OFF \
-DENABLE_MAN=OFF \
%endif
-DENABLE_JAVASCRIPT=OFF \
-DCA_FILE=/etc/pki/tls/certs/ca-bundle.crt \
%{nil}
%cmake3_build