SHA256
1
0
forked from pool/ansifilter

Compare commits

...

No commits in common. "factory" and "factory" have entirely different histories.

7 changed files with 23 additions and 31 deletions

1
.gitignore vendored
View File

@ -1 +0,0 @@
.osc

3
ansifilter-2.20.tar.bz2 Normal file
View File

@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:35ec9d71a7f4e5601337937c7734b32a6e346c0f054f4d316376823cfe679067
size 439551

View File

@ -0,0 +1,11 @@
-----BEGIN PGP SIGNATURE-----
iQEzBAABCAAdFiEEuMVVdBh/SRgO3HY3UP4CedgFp8cFAmSN+wcACgkQUP4CedgF
p8dJKwgAvg6mafX7mgGHmVZp0Asjr7yUURjqWX4miTkCQxEm0ARoDg8pXhFbdsAV
TjbSPa2lFuQHMHGYYg1ev68MTSAwHOIktgOJ0TpeRYPhrPEq9xg6T0IpksTo88tg
YsMqDN9Njh3TCgAcmeO91xY/7W7NnU6gmtycmQ3tUO6Ya6WoPI+ddPwJ9hivi6ZN
iibQg3Ro0dEw7BSevI72r3yryu6bTwRNtm00cDhOxFmxkWNi3IVKGFdh7IR2eie1
NN/SYUY19gnpHtWEqvqhbcRuDjWbt36PBkmvWlwiNH1aBCemPvmfpCKt414W5G9R
hwwz3RNfbHoDUIzyG/a5v4HBwyh5tQ==
=iR3P
-----END PGP SIGNATURE-----

View File

@ -1,3 +0,0 @@
version https://git-lfs.github.com/spec/v1
oid sha256:5ea7cfdfd0752d5a169259da005c18b9037628036fd89d8b82624bacec9c1390
size 434994

View File

@ -1,11 +0,0 @@
-----BEGIN PGP SIGNATURE-----
iQEzBAABCAAdFiEEuMVVdBh/SRgO3HY3UP4CedgFp8cFAmbaCm8ACgkQUP4CedgF
p8fpZggAmdMmnLRJWcvOGXk9BljC7GlOzthUtwYUYxz3Wr1+NT5Ob2lTOVIkxu2B
12cXKHzirN6BY8g23cj971JfubtAwjwW+OLxz6LY69xeagQgXa1QcNMlkcNtTGhD
3uWLKb76piySd71WkckiCh3O/wGRRbxGhL6Hh85IHkLF3zaIN2K0If7X5ZjMIqLs
mwOuHMnYAu410PbBlZx5nn61d85JffTnj6xx9klTrML28c3gg+4jPY9gXZp2veEA
W1NvN9WIV9HkpugYsS29xRzDAIrbvEi8IQc7SHLdIe+K6rSVYmijBb4+gDGAt9jh
IfPjfw1SdPdi3mZE/FY/9dM6w3BBug==
=nU2V
-----END PGP SIGNATURE-----

View File

@ -1,16 +1,3 @@
-------------------------------------------------------------------
Mon Sep 9 06:41:55 UTC 2024 - ming li <mli@suse.com>
- Update to version 2.21:
* removed `using namespace std;` in header files
* src/makefile: added `-std=c++17` to enable modern C++ features
* added cmake build script
* fix open span tag with CR as opening sequence
(https://gitlab.com/saalen/ansifilter/-/issues/43)
* adapted TCL extension for C++17 compilation
(https://gitlab.com/saalen/ansifilter/-/issues/42)
- Remove the judgment line about GUI from the spec file
-------------------------------------------------------------------
Sat Jun 17 18:38:15 UTC 2023 - antoine.belvire@opensuse.org

View File

@ -1,7 +1,7 @@
#
# spec file for package ansifilter
#
# Copyright (c) 2024 SUSE LLC
# Copyright (c) 2023 SUSE LLC
# Copyright (c) 2013 Pascal Bleser.
#
# All modifications and additions to the file contributed by third parties
@ -19,7 +19,7 @@
%bcond_without gui
Name: ansifilter
Version: 2.21
Version: 2.20
Release: 0
Summary: ANSI Terminal Escape Code Converter
License: GPL-3.0-or-later
@ -81,11 +81,17 @@ This package provides Zsh command-line completion support for %{name}.
%prep
%setup -q
%if %{with gui}
# Remove generated files which may cause errors when building with
# a version of Qt different from the one used to generate the files.
rm -v src/qt-gui/moc_*.cpp
rm -v src/qt-gui/ui_ansifilter.h
%endif
%build
make \
CFLAGS="%{optflags} -fPIC" \
CXXFLAGS="%{optflags} -std=c++17 -fPIC" \
CXXFLAGS="%{optflags} -std=c++11 -fPIC" \
QMAKE="qmake-qt5" \
all \
%if %{with gui}