6 Commits

Author SHA256 Message Date
d658e6d69b Accepting request 1300211 from network
OBS-URL: https://build.opensuse.org/request/show/1300211
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/pan?expand=0&rev=28
2025-08-19 14:46:30 +00:00
96af831ff4 - Update to version 0.164.
- Force GCC 11 on Leap 15.6 and older for c++ filesystem support.
- Drop empty %check section.

OBS-URL: https://build.opensuse.org/package/show/network/pan?expand=0&rev=56
2025-08-19 07:28:19 +00:00
65a65e4410 Accepting request 1280970 from network
OBS-URL: https://build.opensuse.org/request/show/1280970
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/pan?expand=0&rev=27
2025-05-30 12:35:04 +00:00
efdd055d68 - Update to version 0.163:
* Fix Pan window icon in Wayland (Balló György).
  * article actions: fix match read and unread preferences
  * article rules: simplify algorithm to compute apply. This should
    fix many problems with article rules, including rules to
    remove articles.
  * README.org: add instruction to install dependencies on Fedora
  * cmake: do not check for git commit when building from tarball
  * docs: add scoring document, retrieved from old web site
  * cert-store: look for trusted certificates in system directories

OBS-URL: https://build.opensuse.org/package/show/network/pan?expand=0&rev=54
2025-05-28 17:36:55 +00:00
2d9741c237 Accepting request 1274610 from network
OBS-URL: https://build.opensuse.org/request/show/1274610
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/pan?expand=0&rev=26
2025-05-05 20:29:48 +00:00
5c5ee0dc28 Update to version 0.162.
OBS-URL: https://build.opensuse.org/package/show/network/pan?expand=0&rev=52
2025-05-05 14:11:52 +00:00
4 changed files with 49 additions and 9 deletions

View File

@@ -1,3 +0,0 @@
version https://git-lfs.github.com/spec/v1
oid sha256:4c2c34b9e4a13275b73fae4f5dbdb3f857cf6b58c4813a373dd9d67ce37779d9
size 1808938

3
pan-v0.164.tar.bz2 Normal file
View File

@@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:862609baaabbc516fe23fd9f62ae54f1a6b6481178913f3c5a6f4597d0c39244
size 2051642

View File

@@ -1,3 +1,39 @@
-------------------------------------------------------------------
Mon Aug 18 08:50:06 UTC 2025 - Atri Bhattacharya <badshah400@gmail.com>
- Update to version 0.164:
* Fix article part detection where multipart articles were
detected as many articles instaed of one article with many
parts.
* Fix crash when displaying emoticon replacement
- Force GCC 11 on Leap 15.6 and older for c++ filesystem support.
- Drop empty %check section.
-------------------------------------------------------------------
Wed May 28 14:31:56 UTC 2025 - John Paul Adrian Glaubitz <adrian.glaubitz@suse.com>
- Update to version 0.163:
* Fix Pan window icon in Wayland (Balló György).
* article actions: fix match read and unread preferences
* article rules: simplify algorithm to compute apply. This should
fix many problems with article rules, including rules to
remove articles.
* README.org: add instruction to install dependencies on Fedora
* cmake: do not check for git commit when building from tarball
* docs: add scoring document, retrieved from old web site
* cert-store: look for trusted certificates in system directories
-------------------------------------------------------------------
Fri May 2 09:30:34 UTC 2025 - Atri Bhattacharya <badshah400@gmail.com>
- Update to version 0.162:
* cmake: switch to c++17.
* bug fix: Show multipart binary article information. Now,
getting article headers (with key 'h') is easier. Most headers
contain an abuse clause that may be useful to fight abuses.
* mime-utils: fix assertion 'G_IS_OBJECT (object)' failure.
* Fixed incorrect whitespaces in manual Face wrapping.
-------------------------------------------------------------------
Sun Nov 3 15:30:09 UTC 2024 - John Paul Adrian Glaubitz <adrian.glaubitz@suse.com>

View File

@@ -1,7 +1,7 @@
#
# spec file for package pan
#
# Copyright (c) 2024 SUSE LLC
# Copyright (c) 2025 SUSE LLC and contributors
#
# All modifications and additions to the file contributed by third parties
# remain the property of their copyright owners, unless otherwise agreed
@@ -17,8 +17,12 @@
%define __builder ninja
# C++ <filesystem> support is neede, so force newer GCC on 15.6 and older
%if 0%{?suse_version} < 1600
%define gcc_ver 11
%endif
Name: pan
Version: 0.161
Version: 0.164
Release: 0
Summary: A Newsreader for GNOME
License: GPL-2.0-or-later
@@ -27,7 +31,7 @@ URL: http://pan.rebelbase.com/
Source0: https://gitlab.gnome.org/GNOME/pan/-/archive/v%{version}/%{name}-v%{version}.tar.bz2
BuildRequires: cmake
BuildRequires: fdupes
BuildRequires: gcc-c++
BuildRequires: gcc%{?gcc_ver}-c++
BuildRequires: gettext >= 0.21
BuildRequires: itstool
BuildRequires: libxml2-tools
@@ -38,8 +42,8 @@ BuildRequires: pkgconfig(enchant-2)
BuildRequires: pkgconfig(gcr-3)
BuildRequires: pkgconfig(gmime-3.0)
BuildRequires: pkgconfig(gnutls) >= 3.0.0
BuildRequires: pkgconfig(gtk+-3.0)
BuildRequires: pkgconfig(gspell-1)
BuildRequires: pkgconfig(gtk+-3.0)
BuildRequires: pkgconfig(gtkspell3-3.0) >= 2.0.16
BuildRequires: pkgconfig(libnotify) >= 0.4.1
BuildRequires: pkgconfig(libsecret-1)
@@ -57,6 +61,8 @@ handling, multiple servers, and secure connections.
%build
# Build with static libs: https://gitlab.gnome.org/GNOME/pan/-/issues/190
%cmake \
-DCMAKE_C_COMPILER=gcc%{?gcc_ver:-%{gcc_ver}} \
-DCMAKE_CXX_COMPILER=g++%{?gcc_ver:-%{gcc_ver}} \
-DBUILD_SHARED_LIBS=OFF \
-DBUILD_STATIC_LIBS=ON \
-DENABLE_MANUAL=ON \
@@ -72,8 +78,6 @@ handling, multiple servers, and secure connections.
%find_lang %{name} %{?no_lang_C}
%fdupes %{buildroot}/%{_prefix}
%check
%files
%license COPYING COPYING-DOCS
%doc AUTHORS NEWS README.org