Compare commits
8 Commits
5efa10f691
...
8f0676b7f7
Author | SHA1 | Date | |
---|---|---|---|
8f0676b7f7 | |||
dcf0a8835b | |||
83a94b6370 | |||
ac07adda45 | |||
d11217a408 | |||
6827bc4564 | |||
d81867bb0f | |||
f3c6c059d6 |
@ -1,8 +1,7 @@
|
||||
%bcond_without qt6
|
||||
%bcond_with clang
|
||||
|
||||
Name: arqiver
|
||||
Version: 1.0.0
|
||||
Version: 1.0.1
|
||||
Release: 1%{dist}
|
||||
Summary: A simple Qt archive manager
|
||||
Group: Archiving/Other
|
||||
@ -14,21 +13,17 @@ BuildRequires: cmake
|
||||
%if %{with clang}
|
||||
BuildRequires: clang >= 15.0
|
||||
%else
|
||||
BuildRequires: gcc-c++
|
||||
BuildRequires: gcc-toolset-14-gcc-c++
|
||||
BuildRequires: gcc-toolset-14-gcc-plugin-annobin
|
||||
%endif
|
||||
%if %{without qt6}
|
||||
BuildRequires: qt5-qttools
|
||||
BuildRequires: cmake(Qt5Core) >= 5.15
|
||||
BuildRequires: cmake(Qt5Gui)
|
||||
BuildRequires: cmake(Qt5Svg)
|
||||
BuildRequires: cmake(Qt5DBus)
|
||||
%else
|
||||
|
||||
BuildRequires: cmake(Qt6Core) >= 6.6.0
|
||||
BuildRequires: cmake(Qt6Gui)
|
||||
BuildRequires: cmake(Qt6Widgets)
|
||||
BuildRequires: cmake(Qt6Svg)
|
||||
BuildRequires: cmake(Qt6DBus)
|
||||
%endif
|
||||
BuildRequires: cmake(Qt6LinguistTools)
|
||||
|
||||
Requires: bsdtar
|
||||
Requires: gzip
|
||||
Requires: p7zip
|
||||
@ -46,6 +41,8 @@ LXQt Archiver is derived from the following programs:
|
||||
%if %{with clang}
|
||||
export CC=clang
|
||||
export CXX=clang++
|
||||
%else
|
||||
%enable_devtoolset14
|
||||
%endif
|
||||
|
||||
%cmake \
|
||||
@ -66,6 +63,10 @@ export CXX=clang++
|
||||
%{_datadir}/%{name}/
|
||||
|
||||
%changelog
|
||||
* Mon Mar 10 2025 Raven <raven@sysadmins.ws> - 1.0.1-1
|
||||
- update to 1.0.1
|
||||
- drop conditional Qt5 support
|
||||
|
||||
* Mon Nov 11 2024 Raven <raven@sysadmins.ws> - 1.0.0-1
|
||||
- update to 1.0.0
|
||||
|
||||
|
12
base/claws-mail/claws-mail-4.0.0-pdf-gs-setpdfwrite.patch
Normal file
12
base/claws-mail/claws-mail-4.0.0-pdf-gs-setpdfwrite.patch
Normal file
@ -0,0 +1,12 @@
|
||||
diff -Naur claws-mail-4.0.0-orig/src/plugins/pdf_viewer/poppler_viewer.c claws-mail-4.0.0/src/plugins/pdf_viewer/poppler_viewer.c
|
||||
--- claws-mail-4.0.0-orig/src/plugins/pdf_viewer/poppler_viewer.c 2021-07-10 10:47:13.000000000 +0200
|
||||
+++ claws-mail-4.0.0/src/plugins/pdf_viewer/poppler_viewer.c 2021-07-21 00:57:53.877710072 +0200
|
||||
@@ -1339,7 +1339,7 @@
|
||||
tmpfile = get_tmp_file();
|
||||
cmdline = g_strdup_printf(
|
||||
"gs -dSAFER -dCompatibilityLevel=1.2 -q -dNOPAUSE -dBATCH "
|
||||
- "-sDEVICE=pdfwrite -sOutputFile=%s -c .setpdfwrite -f \"%s\"",
|
||||
+ "-sDEVICE=pdfwrite -sOutputFile=%s -c 3000000 setvmthreshold -f \"%s\"",
|
||||
tmpfile, viewer->filename);
|
||||
result = execute_command_line(cmdline, FALSE, NULL);
|
||||
if (result == 0) {
|
12
base/claws-mail/claws-mail-system-crypto-policies.patch
Normal file
12
base/claws-mail/claws-mail-system-crypto-policies.patch
Normal file
@ -0,0 +1,12 @@
|
||||
diff -Nur claws-mail-3.14.1-orig/src/common/ssl.c claws-mail-3.14.1/src/common/ssl.c
|
||||
--- claws-mail-3.14.1-orig/src/common/ssl.c 2016-11-06 13:01:28.000000000 +0100
|
||||
+++ claws-mail-3.14.1/src/common/ssl.c 2016-11-25 12:37:32.908929636 +0100
|
||||
@@ -408,7 +408,7 @@
|
||||
sockinfo->gnutls_priority, r);
|
||||
}
|
||||
else {
|
||||
- gnutls_priority_set_direct(session, DEFAULT_GNUTLS_PRIORITY, NULL);
|
||||
+ gnutls_set_default_priority(session);
|
||||
}
|
||||
|
||||
gnutls_record_disable_padding(session);
|
1649
base/claws-mail/claws-mail.spec
Normal file
1649
base/claws-mail/claws-mail.spec
Normal file
File diff suppressed because it is too large
Load Diff
@ -1,11 +1,10 @@
|
||||
%global github_name FeatherNotes
|
||||
|
||||
%bcond_without qt6
|
||||
%bcond_with clang
|
||||
|
||||
Name: feathernotes
|
||||
|
||||
Version: 1.3.0
|
||||
Version: 1.3.1
|
||||
Release: 1%{?dist}
|
||||
Summary: Lightweight Qt hierarchical notes-manager for Linux
|
||||
|
||||
@ -18,16 +17,14 @@ BuildRequires: desktop-file-utils
|
||||
BuildRequires: clang >= 5.0
|
||||
%else
|
||||
BuildRequires: gcc-toolset-14-gcc-c++
|
||||
BuildRequires: gcc-toolset-14-gcc-plugin-annobin
|
||||
%endif
|
||||
BuildRequires: cmake >= 3.0
|
||||
%if %{with qt6}
|
||||
BuildRequires: qt6-qtbase-devel >= 6.3.0
|
||||
BuildRequires: qt6-qtsvg-devel
|
||||
%else
|
||||
BuildRequires: qt5-qtbase-devel >= 5.15.0
|
||||
BuildRequires: qt5-qtsvg-devel
|
||||
BuildRequires: qt5-qtx11extras-devel
|
||||
%endif
|
||||
BuildRequires: qt6-qtbase-devel >= 6.3.0
|
||||
BuildRequires: qt6-qtsvg-devel
|
||||
BuildRequires: qt6-qttools-devel
|
||||
BuildRequires: libXext-devel
|
||||
BuildRequires: libX11-devel
|
||||
BuildRequires: hunspell-devel
|
||||
BuildRequires: shared-mime-info
|
||||
|
||||
@ -48,9 +45,6 @@ export CXX=clang++
|
||||
%endif
|
||||
|
||||
%cmake \
|
||||
%if %{without qt6}
|
||||
-DENABLE_QT5:BOOL=ON \
|
||||
%endif
|
||||
-DWITH_HUNSPELL:BOOL=ON
|
||||
|
||||
%cmake_build
|
||||
@ -77,6 +71,10 @@ desktop-file-validate %{buildroot}%{_datadir}/applications/%{name}.desktop
|
||||
|
||||
|
||||
%changelog
|
||||
* Mon Mar 10 2025 Raven <raven@sysadmins.ws> - 1.3.1-1
|
||||
- version update
|
||||
- drop conditional Qt5 suport
|
||||
|
||||
* Mon Jun 24 2024 Raven <raven@sysadmins.ws> - 1.3.0-1
|
||||
- version update
|
||||
|
||||
|
@ -3,7 +3,7 @@
|
||||
|
||||
|
||||
Name: featherpad
|
||||
Version: 1.6.0
|
||||
Version: 1.6.1
|
||||
Release: 1%{?dist}
|
||||
Summary: Lightweight %{_qt} Plain-Text Editor
|
||||
|
||||
@ -20,6 +20,7 @@ BuildRequires: gcc-toolset-14-gcc-c++
|
||||
%endif
|
||||
BuildRequires: qt6-qtbase-devel
|
||||
BuildRequires: qt6-qtsvg-devel
|
||||
BuildRequires: qt6-qttools-devel
|
||||
BuildRequires: pkgconfig(x11-xcb)
|
||||
BuildRequires: pkgconfig(hunspell) >= 1.6
|
||||
BuildRequires: pkgconfig(xext)
|
||||
@ -81,6 +82,9 @@ desktop-file-validate %{buildroot}%{_datadir}/applications/%{name}.desktop
|
||||
%{_datadir}/metainfo/featherpad.metainfo.xml
|
||||
|
||||
%changelog
|
||||
* Mon Mar 10 2025 Raven <raven@sysadmins.ws> - 1.6.1-1
|
||||
- update to 1.6.1
|
||||
|
||||
* Thu Jan 30 2025 Raven <raven@sysadmins.ws> - 1.6.0-1
|
||||
- update to 1.6.0
|
||||
- drop Qt5 support
|
||||
|
@ -2,7 +2,7 @@
|
||||
%global _default_patch_fuzz 2
|
||||
|
||||
Name: gitea
|
||||
Version: 1.23.4
|
||||
Version: 1.23.5
|
||||
Release: 1%{dist}
|
||||
Summary: Git with a cup of tea, painless self-hosted git service
|
||||
License: MIT
|
||||
@ -16,7 +16,7 @@ Source12: app-gitea.ini
|
||||
Patch0: make-version.patch
|
||||
Requires: git-core
|
||||
BuildRequires: git
|
||||
BuildRequires: golang >= 1.23
|
||||
BuildRequires: golang >= 1.23.6
|
||||
BuildRequires: make
|
||||
BuildRequires: pam-devel
|
||||
BuildRequires: pkgconfig(sqlite3)
|
||||
@ -97,6 +97,9 @@ cp -r options public templates %{buildroot}%{_datadir}/%{name}/web
|
||||
%{_sysusersdir}/%{name}.conf
|
||||
|
||||
%changelog
|
||||
* Mon Mar 10 2025 Raven <raven@sysadmins.ws> - 1.23.5-1
|
||||
- update to 1.23.5
|
||||
|
||||
* Fri Feb 21 2025 Raven <raven@sysadmins.ws> - 1.23.4-1
|
||||
- update to 1.23.4
|
||||
|
||||
|
@ -25,7 +25,7 @@ Name: rspamd
|
||||
Conflicts: rspamd-asan
|
||||
|
||||
Provides: rspamd
|
||||
Version: 3.11.0
|
||||
Version: 3.11.1
|
||||
Release: 1%{?dist}
|
||||
Summary: Rapid spam filtering system
|
||||
Group: System Environment/Daemons
|
||||
@ -73,7 +73,7 @@ BuildRequires: libunwind-devel
|
||||
BuildRequires: binutils-devel
|
||||
BuildRequires: file-devel
|
||||
BuildRequires: lapack-devel
|
||||
BuildRequires: pkgconfig(icu-i18n)
|
||||
BuildRequires: pkgconfig(icu-i18n) >= 58.0
|
||||
BuildRequires: pkgconfig(libsodium)
|
||||
BuildRequires: pkgconfig(libarchive) >= 3.3
|
||||
|
||||
@ -318,6 +318,9 @@ fi
|
||||
%dir %{_localstatedir}/log/rspamd
|
||||
|
||||
%changelog
|
||||
* Mon Mar 10 2025 Raven <raven@sysadmins.ws> - 3.11.1-1
|
||||
- update to 3.11.1
|
||||
|
||||
* Tue Dec 17 2024 Raven <raven@sysadmins.ws> - 3.11.0-1
|
||||
- update to 3.11.0
|
||||
|
||||
|
@ -1,576 +0,0 @@
|
||||
%global p7zip 1
|
||||
|
||||
Name: ark
|
||||
Summary: Archive manager
|
||||
Version: 22.08.0
|
||||
Release: 1%{?dist}
|
||||
|
||||
License: GPLv2+
|
||||
URL: https://www.kde.org/applications/utilities/ark/
|
||||
|
||||
%global revision %(echo %{version} | cut -d. -f3)
|
||||
%if %{revision} >= 50
|
||||
%global stable unstable
|
||||
%else
|
||||
%global stable stable
|
||||
%endif
|
||||
Source0: http://download.kde.org/%{stable}/release-service/%{version}/src/%{name}-%{version}.tar.xz
|
||||
|
||||
## upstreamable patches
|
||||
|
||||
## upstream patches
|
||||
|
||||
BuildRequires: bzip2-devel
|
||||
BuildRequires: desktop-file-utils
|
||||
|
||||
BuildRequires: extra-cmake-modules
|
||||
BuildRequires: kf5-rpm-macros
|
||||
BuildRequires: kf5-karchive-devel
|
||||
BuildRequires: kf5-kconfig-devel
|
||||
BuildRequires: kf5-kcrash-devel
|
||||
BuildRequires: kf5-kdbusaddons-devel
|
||||
BuildRequires: kf5-kdoctools-devel
|
||||
BuildRequires: kf5-khtml-devel
|
||||
BuildRequires: kf5-ki18n-devel
|
||||
BuildRequires: kf5-kiconthemes-devel
|
||||
BuildRequires: kf5-kio-devel
|
||||
BuildRequires: kf5-kpty-devel
|
||||
BuildRequires: kf5-kservice-devel
|
||||
BuildRequires: kf5-kwidgetsaddons-devel
|
||||
BuildRequires: cmake(KF5ItemModels)
|
||||
|
||||
BuildRequires: libappstream-glib
|
||||
BuildRequires: pkgconfig(libarchive) >= 3.3.3
|
||||
BuildRequires: pkgconfig(liblzma)
|
||||
BuildRequires: pkgconfig(libzip)
|
||||
BuildRequires: qt5-qtbase-devel
|
||||
BuildRequires: zlib-devel
|
||||
BuildRequires: rar(x86-64)
|
||||
|
||||
# when split occured
|
||||
Conflicts: kdeutils-common < 6:4.7.80
|
||||
|
||||
# translations moved here
|
||||
Conflicts: kde-l10n < 17.03
|
||||
|
||||
Obsoletes: kdeutils-ark < 6:4.7.80
|
||||
Provides: kdeutils-ark = 6:%{version}-%{release}
|
||||
|
||||
Requires: %{name}-libs%{?_isa} = %{version}-%{release}
|
||||
|
||||
# Dependencies for archive plugins.
|
||||
# could split .desktop like okular to support these via
|
||||
# TryExec=<foo> instead someday -- Rex
|
||||
Requires: bzip2
|
||||
Requires: gzip
|
||||
%if 0%{?p7zip}
|
||||
Requires: p7zip-plugins
|
||||
%endif
|
||||
Requires: unzip
|
||||
# optional/soft dependencies
|
||||
%if 0%{?fedora} > 23
|
||||
Suggests: lha
|
||||
Recommends: unar
|
||||
%endif
|
||||
|
||||
%description
|
||||
Ark is a program for managing various archive formats.
|
||||
|
||||
Archives can be viewed, extracted, created and modified from within Ark.
|
||||
The program can handle various formats such as tar, gzip, bzip2, zip,
|
||||
rar and lha (if appropriate command-line programs are installed).
|
||||
|
||||
%package libs
|
||||
Summary: Runtime libraries for %{name}
|
||||
# libkerfuffle is BSD, plugins are mix of BSD and GPLv2+
|
||||
License: BSD and GPLv2+
|
||||
Requires: %{name} = %{version}-%{release}
|
||||
Obsoletes: kdeutils-ark-libs < 6:4.7.80
|
||||
Provides: kdeutils-ark-libs = 6:%{version}-%{release}
|
||||
Provides: ark-part = %{version}-%{release}
|
||||
Provides: ark-part%{?_isa} = %{version}-%{release}
|
||||
%description libs
|
||||
%{summary}.
|
||||
|
||||
|
||||
%prep
|
||||
%autosetup -p1
|
||||
|
||||
|
||||
%build
|
||||
%cmake_kf5
|
||||
|
||||
%cmake_build
|
||||
|
||||
|
||||
%install
|
||||
%cmake_install
|
||||
|
||||
%find_lang %{name} --all-name --with-html --with-man
|
||||
|
||||
# unpackaged files
|
||||
rm -fv %{buildroot}%{_kf5_libdir}/libkerfuffle.so
|
||||
|
||||
|
||||
%check
|
||||
appstream-util validate-relax --nonet %{buildroot}%{_kf5_metainfodir}/org.kde.ark.appdata.xml ||:
|
||||
desktop-file-validate %{buildroot}%{_kf5_datadir}/applications/org.kde.ark.desktop
|
||||
|
||||
|
||||
%files -f %{name}.lang
|
||||
%license COPYING*
|
||||
%{_kf5_datadir}/qlogging-categories5/%{name}*
|
||||
%{_kf5_bindir}/ark
|
||||
%{_kf5_datadir}/config.kcfg/ark.kcfg
|
||||
%{_kf5_metainfodir}/org.kde.ark.appdata.xml
|
||||
%{_kf5_datadir}/applications/org.kde.ark.desktop
|
||||
%{_kf5_datadir}/icons/hicolor/*/apps/ark.*
|
||||
#{_kf5_datadir}/mime/packages/kerfuffle.xml
|
||||
%{_mandir}/man1/ark.1*
|
||||
|
||||
%ldconfig_scriptlets
|
||||
%files libs
|
||||
%{_kf5_libdir}/libkerfuffle.so.*
|
||||
%{_kf5_plugindir}/parts/arkpart.so
|
||||
%{_kf5_datadir}/kservices5/ark_part.desktop
|
||||
%{_kf5_qtplugindir}/kerfuffle/
|
||||
%{_kf5_plugindir}/kio_dnd/extracthere.so
|
||||
%{_kf5_plugindir}/kfileitemaction/compressfileitemaction.so
|
||||
%{_kf5_plugindir}/kfileitemaction/extractfileitemaction.so
|
||||
%{_kf5_datadir}/kservicetypes5/kerfufflePlugin.desktop
|
||||
|
||||
|
||||
%changelog
|
||||
* Mon Aug 29 2022 Raven <raven@sysadmins.ws> - 22.08.0-1
|
||||
- 22.08.0
|
||||
|
||||
* Wed Aug 19 2020 Raven <raven@sysadmins.ws> - 20.08.0-1
|
||||
- 20.08.0
|
||||
|
||||
* Wed Aug 12 2020 Raven <raven@sysadmins.ws> - 20.04.3-4
|
||||
- Rebuilt for el8
|
||||
|
||||
* Fri Jul 31 2020 Rex Dieter <rdieter@fedoraproject.org> - 20.04.3-3
|
||||
- backport security fix for CVE-2020-16116
|
||||
|
||||
* Mon Jul 27 2020 Fedora Release Engineering <releng@fedoraproject.org> - 20.04.3-2
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild
|
||||
|
||||
* Fri Jul 10 2020 Rex Dieter <rdieter@fedoraproject.org> - 20.04.3-1
|
||||
- 20.04.3
|
||||
|
||||
* Fri Jun 12 2020 Rex Dieter <rdieter@fedoraproject.org> - 20.04.2-1
|
||||
- 20.04.2
|
||||
|
||||
* Wed May 27 2020 Rex Dieter <rdieter@fedoraproject.org> - 20.04.1-1
|
||||
- 20.04.1
|
||||
|
||||
* Sat Mar 07 2020 Rex Dieter <rdieter@fedoraproject.org> - 19.12.3-1
|
||||
- 19.12.3
|
||||
|
||||
* Tue Feb 04 2020 Rex Dieter <rdieter@fedoraproject.org> - 19.12.2-1
|
||||
- 19.12.2
|
||||
|
||||
* Fri Jan 31 2020 Rex Dieter <rdieter@fedoraproject.org> - 19.12.1-1
|
||||
- 19.12.1
|
||||
|
||||
* Tue Jan 28 2020 Fedora Release Engineering <releng@fedoraproject.org> - 19.08.3-2
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_32_Mass_Rebuild
|
||||
|
||||
* Tue Nov 12 2019 Rex Dieter <rdieter@fedoraproject.org> - 19.08.3-1
|
||||
- 19.08.3
|
||||
|
||||
* Thu Oct 17 2019 Rex Dieter <rdieter@fedoraproject.org> - 19.08.2-1
|
||||
- 19.08.2
|
||||
|
||||
* Fri Oct 04 2019 Rex Dieter <rdieter@fedoraproject.org> - 19.08.1-1
|
||||
- 19.08.1
|
||||
|
||||
* Wed Jul 24 2019 Fedora Release Engineering <releng@fedoraproject.org> - 19.04.3-2
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_31_Mass_Rebuild
|
||||
|
||||
* Fri Jul 12 2019 Rex Dieter <rdieter@fedoraproject.org> - 19.04.3-1
|
||||
- 19.04.3
|
||||
|
||||
* Wed Jun 05 2019 Rex Dieter <rdieter@fedoraproject.org> - 19.04.2-1
|
||||
- 19.04.2
|
||||
|
||||
* Sat May 04 2019 Mattia Verga <mattia.verga@protonmail.com> - 18.12.3-2
|
||||
- Add libzip to BR for better performance with zip archives
|
||||
|
||||
* Fri Mar 08 2019 Rex Dieter <rdieter@fedoraproject.org> - 18.12.3-1
|
||||
- 18.12.3
|
||||
|
||||
* Tue Feb 05 2019 Rex Dieter <rdieter@fedoraproject.org> - 18.12.2-1
|
||||
- 18.12.2
|
||||
|
||||
* Thu Jan 31 2019 Fedora Release Engineering <releng@fedoraproject.org> - 18.12.1-2
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_30_Mass_Rebuild
|
||||
|
||||
* Tue Jan 08 2019 Rex Dieter <rdieter@fedoraproject.org> - 18.12.1-1
|
||||
- 18.12.1
|
||||
|
||||
* Mon Dec 17 2018 Rex Dieter <rdieter@fedoraproject.org> - 18.12.0-1
|
||||
- 18.12.0
|
||||
|
||||
* Tue Nov 06 2018 Rex Dieter <rdieter@fedoraproject.org> - 18.08.3-1
|
||||
- 18.08.3
|
||||
|
||||
* Wed Oct 10 2018 Rex Dieter <rdieter@fedoraproject.org> - 18.08.2-1
|
||||
- 18.08.2
|
||||
|
||||
* Fri Jul 13 2018 Rex Dieter <rdieter@fedoraproject.org> - 18.04.3-1
|
||||
- 18.04.3
|
||||
|
||||
* Thu Jul 12 2018 Fedora Release Engineering <releng@fedoraproject.org> - 18.04.2-2
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild
|
||||
|
||||
* Wed Jun 06 2018 Rex Dieter <rdieter@fedoraproject.org> - 18.04.2-1
|
||||
- 18.04.2
|
||||
|
||||
* Wed May 09 2018 Rex Dieter <rdieter@fedoraproject.org> - 18.04.1-1
|
||||
- 18.04.1
|
||||
|
||||
* Fri Apr 20 2018 Rex Dieter <rdieter@fedoraproject.org> - 18.04.0-1
|
||||
- 18.04.0
|
||||
|
||||
* Tue Mar 06 2018 Rex Dieter <rdieter@fedoraproject.org> - 17.12.3-1
|
||||
- 17.12.3
|
||||
|
||||
* Thu Feb 08 2018 Rex Dieter <rdieter@fedoraproject.org> - 17.12.2-1
|
||||
- 17.12.2
|
||||
|
||||
* Wed Feb 07 2018 Fedora Release Engineering <releng@fedoraproject.org> - 17.12.1-2
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild
|
||||
|
||||
* Thu Jan 11 2018 Rex Dieter <rdieter@fedoraproject.org> - 17.12.1-1
|
||||
- 17.12.1
|
||||
|
||||
* Sun Jan 07 2018 Igor Gnatenko <ignatenkobrain@fedoraproject.org> - 17.12.0-2
|
||||
- Remove obsolete scriptlets
|
||||
|
||||
* Fri Dec 29 2017 Rex Dieter <rdieter@fedoraproject.org> - 17.12.0-1
|
||||
- 17.12.0
|
||||
|
||||
* Thu Nov 09 2017 Rex Dieter <rdieter@fedoraproject.org> - 17.08.3-1
|
||||
- 17.08.3
|
||||
|
||||
* Fri Sep 29 2017 Rex Dieter <rdieter@fedoraproject.org> - 17.08.1-1
|
||||
- 17.08.1
|
||||
|
||||
* Thu Aug 03 2017 Rex Dieter <rdieter@fedoraproject.org> - 17.04.3-1
|
||||
- 17.04.3
|
||||
|
||||
* Wed Aug 02 2017 Fedora Release Engineering <releng@fedoraproject.org> - 17.04.2-3
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Binutils_Mass_Rebuild
|
||||
|
||||
* Wed Jul 26 2017 Fedora Release Engineering <releng@fedoraproject.org> - 17.04.2-2
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild
|
||||
|
||||
* Thu Jun 15 2017 Rex Dieter <rdieter@fedoraproject.org> - 17.04.2-1
|
||||
- 17.04.2
|
||||
|
||||
* Sat Jun 03 2017 Rex Dieter <rdieter@fedoraproject.org> - 17.04.1-1
|
||||
- 17.04.1
|
||||
|
||||
* Thu Mar 09 2017 Rex Dieter <rdieter@fedoraproject.org> - 16.12.3-1
|
||||
- 16.12.3
|
||||
|
||||
* Thu Feb 09 2017 Rex Dieter <rdieter@fedoraproject.org> - 16.12.2-1
|
||||
- 16.12.2
|
||||
|
||||
* Fri Jan 13 2017 Rex Dieter <rdieter@fedoraproject.org> - 16.12.1-1
|
||||
- 16.12.1, update URL
|
||||
|
||||
* Tue Jan 10 2017 Than Ngo <than@redhat.com> - 16.08.3-2
|
||||
- fix the security issue in ark, stop running executables when opening urls
|
||||
|
||||
* Mon Dec 05 2016 Rex Dieter <rdieter@fedoraproject.org> - 16.08.3-1
|
||||
- 16.08.3
|
||||
|
||||
* Thu Oct 13 2016 Rex Dieter <rdieter@fedoraproject.org> - 16.08.2-1
|
||||
- 16.08.2
|
||||
|
||||
* Thu Sep 15 2016 Rex Dieter <rdieter@fedoraproject.org> - 16.08.1-2
|
||||
- -libs: move Provides: ark-part here
|
||||
- soft deps: Recommends: unar, Suggests: lha
|
||||
|
||||
* Thu Sep 08 2016 Rex Dieter <rdieter@fedoraproject.org> - 16.08.1-1
|
||||
- 16.08.1
|
||||
|
||||
* Sat Aug 13 2016 Rex Dieter <rdieter@fedoraproject.org> - 16.08.0-1
|
||||
- 16.08.0
|
||||
|
||||
* Sat Aug 06 2016 Rex Dieter <rdieter@fedoraproject.org> - 16.07.90-1
|
||||
- 16.07.90
|
||||
|
||||
* Sun Jul 10 2016 Rex Dieter <rdieter@fedoraproject.org> - 16.04.3-2
|
||||
- respin
|
||||
|
||||
* Sun Jul 10 2016 Rex Dieter <rdieter@fedoraproject.org> - 16.04.3-1
|
||||
- 16.04.3
|
||||
|
||||
* Sun Jun 12 2016 Rex Dieter <rdieter@fedoraproject.org> - 16.04.2-1
|
||||
- 16.04.2
|
||||
|
||||
* Sun May 08 2016 Rex Dieter <rdieter@fedoraproject.org> - 16.04.1-1
|
||||
- 16.04.1
|
||||
|
||||
* Tue Apr 26 2016 Rex Dieter <rdieter@fedoraproject.org> - 16.04.0-1
|
||||
- 16.04.0
|
||||
|
||||
* Tue Mar 15 2016 Rex Dieter <rdieter@fedoraproject.org> - 15.12.3-1
|
||||
- 15.12.3
|
||||
|
||||
* Mon Feb 15 2016 Rex Dieter <rdieter@fedoraproject.org> - 15.12.2-1
|
||||
- 15.12.2
|
||||
|
||||
* Wed Feb 03 2016 Fedora Release Engineering <releng@fedoraproject.org> - 15.12.1-2
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild
|
||||
|
||||
* Fri Jan 22 2016 Rex Dieter <rdieter@fedoraproject.org> 15.12.1-1
|
||||
- 15.12.1, -BR: cmake
|
||||
|
||||
* Sun Dec 20 2015 Rex Dieter <rdieter@fedoraproject.org> 15.12.0-2
|
||||
- respin
|
||||
|
||||
* Tue Dec 15 2015 Rex Dieter <rdieter@fedoraproject.org> 15.12.0-1
|
||||
- 15.12.0
|
||||
|
||||
* Mon Nov 16 2015 Rex Dieter <rdieter@fedoraproject.org> 15.08.3-2
|
||||
- support kde4 ServiceMenu too
|
||||
|
||||
* Mon Nov 16 2015 Rex Dieter <rdieter@fedoraproject.org> 15.08.3-1
|
||||
- 15.08.3, .spec cosmetics, fix appdata name
|
||||
|
||||
* Thu Aug 20 2015 Than Ngo <than@redhat.com> - 15.08.0-1
|
||||
- 15.08.0
|
||||
|
||||
* Wed Jun 17 2015 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 15.04.2-2
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild
|
||||
|
||||
* Wed Jun 10 2015 Rex Dieter <rdieter@fedoraproject.org> - 15.04.2-1
|
||||
- 15.04.2
|
||||
|
||||
* Wed May 27 2015 Rex Dieter <rdieter@fedoraproject.org> - 15.04.1-1
|
||||
- 15.04.1
|
||||
|
||||
* Tue Apr 14 2015 Rex Dieter <rdieter@fedoraproject.org> - 15.04.0-1
|
||||
- 15.04.0
|
||||
|
||||
* Sun Mar 01 2015 Rex Dieter <rdieter@fedoraproject.org> - 14.12.3-1
|
||||
- 14.12.3
|
||||
|
||||
* Tue Feb 24 2015 Than Ngo <than@redhat.com> - 14.12.2-1
|
||||
- 14.12.2
|
||||
|
||||
* Sat Jan 17 2015 Rex Dieter <rdieter@fedoraproject.org> - 14.12.1-1
|
||||
- 14.12.1
|
||||
|
||||
* Tue Dec 09 2014 Rex Dieter <rdieter@fedoraproject.org> - 14.11.97-1
|
||||
- 14.11.97
|
||||
|
||||
* Mon Nov 24 2014 Rex Dieter <rdieter@fedoraproject.org> 4.14.3-3
|
||||
- backport crash fix for nested archives (kde#341187)
|
||||
|
||||
* Tue Nov 18 2014 Rex Dieter <rdieter@fedoraproject.org> 4.14.3-2
|
||||
- omit KXMLGUIClient patch, it was fixed differently upstream (kde#340991)
|
||||
|
||||
* Sat Nov 08 2014 Rex Dieter <rdieter@fedoraproject.org> - 4.14.3-1
|
||||
- 4.14.3
|
||||
|
||||
* Sun Oct 12 2014 Rex Dieter <rdieter@fedoraproject.org> - 4.14.2-1
|
||||
- 4.14.2
|
||||
|
||||
* Tue Sep 16 2014 Rex Dieter <rdieter@fedoraproject.org> - 4.14.1-1
|
||||
- 4.14.1
|
||||
|
||||
* Fri Aug 15 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 4.14.0-2
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_22_Mass_Rebuild
|
||||
|
||||
* Fri Aug 15 2014 Rex Dieter <rdieter@fedoraproject.org> - 4.14.0-1
|
||||
- 4.14.0
|
||||
|
||||
* Thu Aug 14 2014 Rex Dieter <rdieter@fedoraproject.org> 4.13.97-3
|
||||
- add unar support
|
||||
|
||||
* Fri Aug 08 2014 Rex Dieter <rdieter@fedoraproject.org> 4.13.97-2
|
||||
- new appdata validation
|
||||
|
||||
* Tue Aug 05 2014 Rex Dieter <rdieter@fedoraproject.org> - 4.13.97-1
|
||||
- 4.13.97
|
||||
|
||||
* Tue Jul 15 2014 Rex Dieter <rdieter@fedoraproject.org> - 4.13.3-1
|
||||
- 4.13.3
|
||||
|
||||
* Mon Jun 09 2014 Rex Dieter <rdieter@fedoraproject.org> - 4.13.2-1
|
||||
- 4.13.2
|
||||
|
||||
* Sat Jun 07 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 4.13.1-2
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild
|
||||
|
||||
* Sun May 11 2014 Rex Dieter <rdieter@fedoraproject.org> - 4.13.1-1
|
||||
- 4.13.1
|
||||
|
||||
* Sat Apr 12 2014 Rex Dieter <rdieter@fedoraproject.org> - 4.13.0-1
|
||||
- 4.13.0
|
||||
|
||||
* Fri Apr 04 2014 Rex Dieter <rdieter@fedoraproject.org> - 4.12.97-1
|
||||
- 4.12.97
|
||||
|
||||
* Sat Mar 22 2014 Rex Dieter <rdieter@fedoraproject.org> - 4.12.95-1
|
||||
- 4.12.95
|
||||
|
||||
* Wed Mar 19 2014 Rex Dieter <rdieter@fedoraproject.org> - 4.12.90-1
|
||||
- 4.12.90
|
||||
|
||||
* Sun Mar 02 2014 Rex Dieter <rdieter@fedoraproject.org> - 4.12.3-1
|
||||
- 4.12.3
|
||||
|
||||
* Fri Jan 31 2014 Rex Dieter <rdieter@fedoraproject.org> - 4.12.2-1
|
||||
- 4.12.2
|
||||
|
||||
* Fri Jan 10 2014 Rex Dieter <rdieter@fedoraproject.org> - 4.12.1-1
|
||||
- 4.12.1
|
||||
|
||||
* Thu Dec 19 2013 Rex Dieter <rdieter@fedoraproject.org> - 4.12.0-1
|
||||
- 4.12.0
|
||||
|
||||
* Sun Dec 01 2013 Rex Dieter <rdieter@fedoraproject.org> - 4.11.97-1
|
||||
- 4.11.97
|
||||
|
||||
* Thu Nov 21 2013 Rex Dieter <rdieter@fedoraproject.org> - 4.11.95-1
|
||||
- 4.11.95
|
||||
|
||||
* Sat Nov 16 2013 Rex Dieter <rdieter@fedoraproject.org> - 4.11.90-1
|
||||
- 4.11.90
|
||||
|
||||
* Sat Nov 02 2013 Rex Dieter <rdieter@fedoraproject.org> - 4.11.3-1
|
||||
- 4.11.3
|
||||
|
||||
* Sat Sep 28 2013 Rex Dieter <rdieter@fedoraproject.org> - 4.11.2-1
|
||||
- 4.11.2
|
||||
|
||||
* Wed Sep 04 2013 Rex Dieter <rdieter@fedoraproject.org> - 4.11.1-1
|
||||
- 4.11.1
|
||||
|
||||
* Thu Aug 08 2013 Than Ngo <than@redhat.com> - 4.11.0-1
|
||||
- 4.11.0
|
||||
|
||||
* Thu Jul 25 2013 Rex Dieter <rdieter@fedoraproject.org> - 4.10.97-1
|
||||
- 4.10.97
|
||||
|
||||
* Tue Jul 23 2013 Rex Dieter <rdieter@fedoraproject.org> - 4.10.95-1
|
||||
- 4.10.95
|
||||
|
||||
* Fri Jun 28 2013 Rex Dieter <rdieter@fedoraproject.org> - 4.10.90-1
|
||||
- 4.10.90
|
||||
|
||||
* Tue Jun 18 2013 Rex Dieter <rdieter@fedoraproject.org> 4.10.4-2
|
||||
- Requires: +bzip2,gzip,unzip
|
||||
|
||||
* Sat Jun 01 2013 Rex Dieter <rdieter@fedoraproject.org> - 4.10.4-1
|
||||
- 4.10.4
|
||||
|
||||
* Mon May 06 2013 Than Ngo <than@redhat.com> - 4.10.3-1
|
||||
- 4.10.3
|
||||
|
||||
* Wed Apr 24 2013 Than Ngo <than@redhat.com> - 4.10.2-2
|
||||
- requires p7zip only in fedora
|
||||
|
||||
* Sun Mar 31 2013 Rex Dieter <rdieter@fedoraproject.org> - 4.10.2-1
|
||||
- 4.10.2
|
||||
|
||||
* Sat Mar 02 2013 Rex Dieter <rdieter@fedoraproject.org> - 4.10.1-1
|
||||
- 4.10.1
|
||||
|
||||
* Fri Feb 01 2013 Rex Dieter <rdieter@fedoraproject.org> - 4.10.0-1
|
||||
- 4.10.0
|
||||
|
||||
* Tue Jan 22 2013 Rex Dieter <rdieter@fedoraproject.org> - 4.9.98-1
|
||||
- 4.9.98
|
||||
- respin reviewboard#107634 patch
|
||||
|
||||
* Thu Jan 17 2013 Tomas Bzatek <tbzatek@redhat.com> - 4.9.97-3
|
||||
- Rebuilt for new libarchive
|
||||
|
||||
* Sat Jan 05 2013 Rex Dieter <rdieter@fedoraproject.org> - 4.9.97-2
|
||||
- Ark needs to know about application/x-source-rpm (#885316)
|
||||
- Improve subfolder autodetection (kde review 107634)
|
||||
- Don't delete the KPart in the MainWindow destructor (kde review 107635)
|
||||
|
||||
* Fri Jan 04 2013 Rex Dieter <rdieter@fedoraproject.org> - 4.9.97-1
|
||||
- 4.9.97
|
||||
|
||||
* Thu Dec 20 2012 Rex Dieter <rdieter@fedoraproject.org> - 4.9.95-1
|
||||
- 4.9.95
|
||||
|
||||
* Tue Dec 04 2012 Rex Dieter <rdieter@fedoraproject.org> - 4.9.90-1
|
||||
- 4.9.90
|
||||
|
||||
* Mon Dec 03 2012 Than Ngo <than@redhat.com> - 4.9.4-1
|
||||
- 4.9.4
|
||||
|
||||
* Sat Nov 03 2012 Rex Dieter <rdieter@fedoraproject.org> - 4.9.3-1
|
||||
- 4.9.3
|
||||
|
||||
* Sat Sep 29 2012 Rex Dieter <rdieter@fedoraproject.org> - 4.9.2-1
|
||||
- 4.9.2
|
||||
|
||||
* Mon Sep 03 2012 Than Ngo <than@redhat.com> - 4.9.1-1
|
||||
- 4.9.1
|
||||
|
||||
* Thu Jul 26 2012 Lukas Tinkl <ltinkl@redhat.com> - 4.9.0-1
|
||||
- 4.9.0
|
||||
|
||||
* Wed Jul 18 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 4.8.97-2
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild
|
||||
|
||||
* Wed Jul 11 2012 Rex Dieter <rdieter@fedoraproject.org> - 4.8.97-1
|
||||
- 4.8.97
|
||||
|
||||
* Tue Jul 10 2012 Rex Dieter <rdieter@fedoraproject.org> 4.8.95-2
|
||||
- update builddeps
|
||||
|
||||
* Thu Jun 28 2012 Rex Dieter <rdieter@fedoraproject.org> - 4.8.95-1
|
||||
- 4.8.95
|
||||
|
||||
* Sat Jun 09 2012 Rex Dieter <rdieter@fedoraproject.org> - 4.8.90-1
|
||||
- 4.8.90
|
||||
|
||||
* Fri Jun 01 2012 Jaroslav Reznik <jreznik@redhat.com> - 4.8.80-1
|
||||
- 4.8.80
|
||||
|
||||
* Mon Apr 30 2012 Jaroslav Reznik <jreznik@redhat.com> - 4.8.3-1
|
||||
- 4.8.3
|
||||
|
||||
* Fri Mar 30 2012 Rex Dieter <rdieter@fedoraproject.org> - 4.8.2-1
|
||||
- 4.8.2
|
||||
|
||||
* Mon Mar 05 2012 Jaroslav Reznik <jreznik@redhat.com> - 4.8.1-1
|
||||
- 4.8.1
|
||||
|
||||
* Thu Jan 26 2012 Tomas Bzatek <tbzatek@redhat.com> - 4.8.0-3
|
||||
- Rebuilt for new libarchive
|
||||
|
||||
* Tue Jan 24 2012 Jaroslav Reznik <jreznik@redhat.com> - 4.8.0-2
|
||||
- respin
|
||||
|
||||
* Sun Jan 22 2012 Rex Dieter <rdieter@fedoraproject.org> - 4.8.0-1
|
||||
- 4.8.0
|
||||
|
||||
* Wed Jan 04 2012 Rex Dieter <rdieter@fedoraproject.org> - 4.7.97-1
|
||||
- 4.7.97
|
||||
|
||||
* Thu Dec 22 2011 Radek Novacek <rnovacek@redhat.com> - 4.7.95-1
|
||||
- 4.7.95
|
||||
|
||||
* Thu Dec 15 2011 Rex Dieter <rdieter@fedoraproject.org> 4.7.90-2
|
||||
- %%doc COPYING
|
||||
|
||||
* Thu Dec 08 2011 Rex Dieter <rdieter@fedoraproject.org> 4.7.90-1
|
||||
- 4.7.90
|
||||
|
||||
* Sat Nov 26 2011 Rex Dieter <rdieter@fedoraproject.org> 4.7.80-1
|
||||
- first try
|
||||
|
@ -2,7 +2,7 @@
|
||||
## (rpmautospec version 0.6.5)
|
||||
## RPMAUTOSPEC: autorelease, autochangelog
|
||||
%define autorelease(e:s:pb:n) %{?-p:0.}%{lua:
|
||||
release_number = 4;
|
||||
release_number = 1;
|
||||
base_release_number = tonumber(rpm.expand("%{?-b*}%{!?-b:1}"));
|
||||
print(release_number + base_release_number - 1);
|
||||
}%{?-e:.%{-e*}}%{?-s:.%{-s*}}%{!?-n:%{?dist}}
|
||||
@ -114,7 +114,7 @@
|
||||
%global go_api 1.23
|
||||
# Use only for prerelease versions
|
||||
#global go_prerelease rc3
|
||||
%global go_patch 1
|
||||
%global go_patch 6
|
||||
%global go_version %{go_api}%{?go_patch:.%{go_patch}}%{?go_prerelease:~%{go_prerelease}}
|
||||
%global go_source %{go_api}%{?go_patch:.%{go_patch}}%{?go_prerelease}
|
||||
# Go FIPS package release
|
||||
|
@ -1,25 +0,0 @@
|
||||
diff -up konsole-20.12.1/src/history/HistoryFile.cpp.rex konsole-20.12.1/src/history/HistoryFile.cpp
|
||||
--- konsole-20.12.1/src/history/HistoryFile.cpp.rex 2021-01-02 07:42:20.000000000 -0600
|
||||
+++ konsole-20.12.1/src/history/HistoryFile.cpp 2021-01-15 14:29:31.744493765 -0600
|
||||
@@ -64,7 +64,7 @@ HistoryFile::HistoryFile() :
|
||||
}
|
||||
|
||||
KConfigGroup configGroup = appConfig->group("FileLocation");
|
||||
- if (configGroup.readEntry("scrollbackUseCacheLocation", false)) {
|
||||
+ if (configGroup.readEntry("scrollbackUseCacheLocation", true)) {
|
||||
fileLocation = QStandardPaths::writableLocation(QStandardPaths::CacheLocation);
|
||||
} else if (configGroup.readEntry("scrollbackUseSpecifiedLocation", false)) {
|
||||
const QUrl specifiedUrl = KonsoleSettings::scrollbackUseSpecifiedLocationDirectory();
|
||||
diff -up konsole-20.12.1/src/settings/konsole.kcfg.rex konsole-20.12.1/src/settings/konsole.kcfg
|
||||
--- konsole-20.12.1/src/settings/konsole.kcfg.rex 2021-01-02 07:42:20.000000000 -0600
|
||||
+++ konsole-20.12.1/src/settings/konsole.kcfg 2021-01-15 14:27:57.757946183 -0600
|
||||
@@ -184,7 +184,7 @@
|
||||
</entry>
|
||||
<entry name="scrollbackUseCacheLocation" type="Bool">
|
||||
<label>For scrollback files, use user's specific folder location</label>
|
||||
- <default>false</default>
|
||||
+ <default>true</default>
|
||||
</entry>
|
||||
<entry name="scrollbackUseSpecifiedLocation" type="Bool">
|
||||
<label>For scrollback files, use specified folder location</label>
|
||||
diff -up konsole-20.12.1/src/settings/TemporaryFilesSettings.cpp.rex konsole-20.12.1/src/settings/TemporaryFilesSettings.cpp
|
@ -1,158 +0,0 @@
|
||||
--- konsole-23.04.1/src/characters/Character.h_orig 2023-05-06 14:09:17.000000000 +0600
|
||||
+++ konsole-23.04.1/src/characters/Character.h 2023-05-19 09:20:18.240773762 +0600
|
||||
@@ -24,7 +24,7 @@
|
||||
class LineProperty
|
||||
{
|
||||
public:
|
||||
- explicit constexpr LineProperty(quint16 f = 0, uint l = 0, uint c = 0)
|
||||
+ explicit inline LineProperty(quint16 f = 0, uint l = 0, uint c = 0)
|
||||
: flags({f})
|
||||
, length(l)
|
||||
, counter(c)
|
||||
@@ -189,21 +189,21 @@
|
||||
/**
|
||||
* returns true if the format (color, rendition flag) of the compared characters is equal
|
||||
*/
|
||||
- constexpr bool equalsFormat(const Character &other) const;
|
||||
+ bool equalsFormat(const Character &other) const;
|
||||
|
||||
/**
|
||||
* Compares two characters and returns true if they have the same unicode character value,
|
||||
* rendition and colors.
|
||||
*/
|
||||
- friend constexpr bool operator==(const Character &a, const Character &b);
|
||||
+ friend bool operator==(const Character &a, const Character &b);
|
||||
|
||||
/**
|
||||
* Compares two characters and returns true if they have different unicode character values,
|
||||
* renditions or colors.
|
||||
*/
|
||||
- friend constexpr bool operator!=(const Character &a, const Character &b);
|
||||
+ friend bool operator!=(const Character &a, const Character &b);
|
||||
|
||||
- constexpr bool isSpace() const
|
||||
+ inline bool isSpace() const
|
||||
{
|
||||
if (rendition.f.extended) {
|
||||
return false;
|
||||
@@ -212,7 +212,7 @@
|
||||
}
|
||||
}
|
||||
|
||||
- int width() const
|
||||
+ inline int width() const
|
||||
{
|
||||
return width(character);
|
||||
}
|
||||
@@ -399,21 +399,21 @@
|
||||
}
|
||||
};
|
||||
|
||||
-constexpr bool operator==(const Character &a, const Character &b)
|
||||
+inline bool operator==(const Character &a, const Character &b)
|
||||
{
|
||||
return a.character == b.character && a.equalsFormat(b);
|
||||
}
|
||||
|
||||
-constexpr bool operator!=(const Character &a, const Character &b)
|
||||
+inline bool operator!=(const Character &a, const Character &b)
|
||||
{
|
||||
return !operator==(a, b);
|
||||
}
|
||||
|
||||
-constexpr bool Character::equalsFormat(const Character &other) const
|
||||
+inline bool Character::equalsFormat(const Character &other) const
|
||||
{
|
||||
return backgroundColor == other.backgroundColor && foregroundColor == other.foregroundColor && rendition.all == other.rendition.all;
|
||||
}
|
||||
}
|
||||
-Q_DECLARE_TYPEINFO(Konsole::Character, Q_MOVABLE_TYPE);
|
||||
+Q_DECLARE_TYPEINFO(Konsole::Character, Q_PRIMITIVE_TYPE);
|
||||
|
||||
#endif // CHARACTER_H
|
||||
--- konsole-23.04.1/src/characters/CharacterColor.h_orig 2023-05-19 09:23:16.269680184 +0600
|
||||
+++ konsole-23.04.1/src/characters/CharacterColor.h 2023-05-06 14:09:17.000000000 +0600
|
||||
@@ -92,7 +92,7 @@
|
||||
|
||||
public:
|
||||
/** Constructs a new CharacterColor whose color and color space are undefined. */
|
||||
- CharacterColor()
|
||||
+ constexpr CharacterColor()
|
||||
: _colorSpace(COLOR_SPACE_UNDEFINED)
|
||||
, _u(0)
|
||||
, _v(0)
|
||||
@@ -110,7 +110,7 @@
|
||||
*
|
||||
* TODO : Add documentation about available color spaces.
|
||||
*/
|
||||
- CharacterColor(quint8 colorSpace, int co)
|
||||
+ constexpr CharacterColor(quint8 colorSpace, int co)
|
||||
: _colorSpace(colorSpace)
|
||||
, _u(0)
|
||||
, _v(0)
|
||||
@@ -137,11 +137,11 @@
|
||||
}
|
||||
}
|
||||
|
||||
- quint8 colorSpace() const
|
||||
+ constexpr quint8 colorSpace() const
|
||||
{
|
||||
return _colorSpace;
|
||||
}
|
||||
- void termColor(int *u, int *v, int *w)
|
||||
+ constexpr void termColor(int *u, int *v, int *w)
|
||||
{
|
||||
*u = _u;
|
||||
*v = _v;
|
||||
@@ -151,7 +151,7 @@
|
||||
/**
|
||||
* Returns true if this character color entry is valid.
|
||||
*/
|
||||
- bool isValid() const
|
||||
+ constexpr bool isValid() const
|
||||
{
|
||||
return _colorSpace != COLOR_SPACE_UNDEFINED;
|
||||
}
|
||||
@@ -178,13 +178,13 @@
|
||||
* The @p base is only used if this color is one of the 16 system colors, otherwise
|
||||
* it is ignored.
|
||||
*/
|
||||
- QColor color(const QColor *base) const;
|
||||
+ constexpr QColor color(const QColor *base) const;
|
||||
|
||||
/**
|
||||
* Compares two colors and returns true if they represent the same color value and
|
||||
* use the same color space.
|
||||
*/
|
||||
- friend bool operator==(const CharacterColor a, const CharacterColor b)
|
||||
+ friend constexpr bool operator==(const CharacterColor a, const CharacterColor b)
|
||||
{
|
||||
return std::tie(a._colorSpace, a._u, a._v, a._w) == std::tie(b._colorSpace, b._u, b._v, b._w);
|
||||
}
|
||||
@@ -192,7 +192,7 @@
|
||||
* Compares two colors and returns true if they represent different color values
|
||||
* or use different color spaces.
|
||||
*/
|
||||
- friend bool operator!=(const CharacterColor a, const CharacterColor b)
|
||||
+ friend constexpr bool operator!=(const CharacterColor a, const CharacterColor b)
|
||||
{
|
||||
return !operator==(a, b);
|
||||
}
|
||||
@@ -206,7 +206,7 @@
|
||||
quint8 _w;
|
||||
};
|
||||
|
||||
-inline QColor color256(quint8 u, const QColor *base)
|
||||
+constexpr QColor color256(quint8 u, const QColor *base)
|
||||
{
|
||||
// 0.. 16: system colors
|
||||
if (u < 8) {
|
||||
@@ -232,7 +232,7 @@
|
||||
return QColor(gray, gray, gray);
|
||||
}
|
||||
|
||||
-inline QColor CharacterColor::color(const QColor *base) const
|
||||
+constexpr QColor CharacterColor::color(const QColor *base) const
|
||||
{
|
||||
switch (_colorSpace) {
|
||||
case COLOR_SPACE_DEFAULT:
|
@ -1,536 +0,0 @@
|
||||
# uncomment to enable bootstrap mode
|
||||
#global bootstrap 1
|
||||
|
||||
%if !0%{?bootstrap}
|
||||
%global tests 1
|
||||
%endif
|
||||
|
||||
%global base_name konsole
|
||||
|
||||
Name: konsole5
|
||||
Summary: KDE Terminal emulator
|
||||
Version: 23.04.1
|
||||
Release: 1%{?dist}
|
||||
|
||||
# sources: MIT and LGPLv2 and LGPLv2+ and GPLv2+
|
||||
License: GPLv2 and GFDL
|
||||
URL: http://www.kde.org/applications/system/konsole/
|
||||
#URL: http://konsole.kde.org/
|
||||
|
||||
%global revision %(echo %{version} | cut -d. -f3)
|
||||
%if %{revision} >= 50
|
||||
%global stable unstable
|
||||
%else
|
||||
%global stable stable
|
||||
%endif
|
||||
Source0: http://download.kde.org/%{stable}/release-service/%{version}/src/%{base_name}-%{version}.tar.xz
|
||||
|
||||
## upstreamable patches
|
||||
|
||||
## upstream patches
|
||||
# 21.08 branch fixes
|
||||
|
||||
## downstream patches
|
||||
Patch200: konsole-history_location_default.patch
|
||||
#Patch201: konsole-revert-constexpr.patch
|
||||
# custom konsolerc that sets default to cache as well
|
||||
Source10: konsolerc
|
||||
|
||||
Obsoletes: konsole < 14.12
|
||||
Provides: konsole = %{version}-%{release}
|
||||
|
||||
%global maj_ver %(echo %{version} | cut -d. -f1)
|
||||
|
||||
BuildRequires: make clang
|
||||
BuildRequires: desktop-file-utils
|
||||
BuildRequires: gettext
|
||||
BuildRequires: pkgconfig(x11)
|
||||
BuildRequires: pkgconfig(zlib)
|
||||
|
||||
BuildRequires: extra-cmake-modules
|
||||
BuildRequires: kf5-rpm-macros
|
||||
BuildRequires: cmake(KF5Bookmarks)
|
||||
BuildRequires: cmake(KF5Completion)
|
||||
BuildRequires: cmake(KF5Config)
|
||||
BuildRequires: cmake(KF5ConfigWidgets)
|
||||
BuildRequires: cmake(KF5CoreAddons)
|
||||
BuildRequires: cmake(KF5Crash)
|
||||
BuildRequires: cmake(KF5DBusAddons)
|
||||
BuildRequires: cmake(KF5DBusAddons)
|
||||
BuildRequires: cmake(KF5DocTools)
|
||||
BuildRequires: cmake(KF5GlobalAccel)
|
||||
BuildRequires: cmake(KF5GuiAddons)
|
||||
BuildRequires: cmake(KF5I18n)
|
||||
BuildRequires: cmake(KF5IconThemes)
|
||||
BuildRequires: cmake(KF5KIO)
|
||||
BuildRequires: cmake(KF5NewStuff)
|
||||
BuildRequires: cmake(KF5NewStuffCore)
|
||||
BuildRequires: cmake(KF5Notifications)
|
||||
BuildRequires: cmake(KF5NotifyConfig)
|
||||
BuildRequires: cmake(KF5Parts)
|
||||
BuildRequires: cmake(KF5Pty)
|
||||
BuildRequires: cmake(KF5Service)
|
||||
BuildRequires: cmake(KF5TextWidgets)
|
||||
BuildRequires: cmake(KF5WidgetsAddons)
|
||||
BuildRequires: cmake(KF5WindowSystem)
|
||||
BuildRequires: cmake(KF5XmlGui)
|
||||
|
||||
BuildRequires: libappstream-glib
|
||||
BuildRequires: cmake(Qt5Core)
|
||||
BuildRequires: cmake(Qt5DBus)
|
||||
BuildRequires: cmake(Qt5PrintSupport)
|
||||
BuildRequires: cmake(Qt5Widgets)
|
||||
|
||||
%if 0%{?tests}
|
||||
BuildRequires: appstream
|
||||
BuildRequires: xorg-x11-server-Xvfb dbus-x11
|
||||
%endif
|
||||
|
||||
# translations moved here
|
||||
Conflicts: kde-l10n < 17.03
|
||||
|
||||
Requires: %{name}-part%{?_isa} = %{version}-%{release}
|
||||
Requires: keditbookmarks
|
||||
|
||||
%description
|
||||
%{summary}.
|
||||
|
||||
%package part
|
||||
Summary: Konsole5 kpart plugin
|
||||
%description part
|
||||
%{summary}.
|
||||
|
||||
|
||||
%prep
|
||||
%autosetup -n %{base_name}-%{version} -p1
|
||||
|
||||
|
||||
%build
|
||||
export CC=clang
|
||||
export CXX=clang++
|
||||
|
||||
%cmake_kf5 \
|
||||
%{?tests:-DBUILD_TESTING:BOOL=ON}
|
||||
|
||||
%cmake_build
|
||||
|
||||
|
||||
%install
|
||||
%cmake_install
|
||||
|
||||
install -m644 -p -b -D %{SOURCE10} %{buildroot}%{_kf5_sysconfdir}/xdg/konsolerc
|
||||
|
||||
%find_lang konsole --with-html
|
||||
|
||||
# add startupWMClass=konsole if not already present
|
||||
grep 'StartupWMClass=' %{buildroot}%{_kf5_datadir}/applications/org.kde.konsole.desktop >& /dev/null || \
|
||||
desktop-file-edit --set-key=StartupWMClass --set-value=konsole %{buildroot}%{_kf5_datadir}/applications/org.kde.konsole.desktop
|
||||
|
||||
|
||||
%check
|
||||
appstream-util validate-relax --nonet %{buildroot}%{_kf5_metainfodir}/org.kde.konsole.appdata.xml ||:
|
||||
desktop-file-validate %{buildroot}%{_kf5_datadir}/applications/org.kde.konsole.desktop
|
||||
%if 0%{?tests}
|
||||
test "$(xvfb-run -a %{_target_platform}/src/konsole --version)" = "konsole %{version}" ||:
|
||||
export CTEST_OUTPUT_ON_FAILURE=1
|
||||
DBUS_SESSION_BUS_ADDRESS=
|
||||
xvfb-run -a \
|
||||
make test -C %{_target_platform} ARGS="--output-on-failure --timeout 30" ||:
|
||||
%endif
|
||||
|
||||
|
||||
%files -f konsole.lang
|
||||
%dir %{_kf5_datadir}/knsrcfiles/
|
||||
%doc README*
|
||||
%{_kf5_sysconfdir}/xdg/konsolerc~
|
||||
%{_kf5_bindir}/konsole
|
||||
%{_kf5_bindir}/konsoleprofile
|
||||
%{_kf5_datadir}/applications/org.kde.konsole.desktop
|
||||
%{_kf5_datadir}/kglobalaccel/org.kde.konsole.desktop
|
||||
%{_kf5_datadir}/kconf_update/konsole.upd
|
||||
%{_kf5_datadir}/kconf_update/konsole_add_hamburgermenu_to_toolbar.sh
|
||||
%{_kf5_datadir}/kio/servicemenus/konsolerun.desktop
|
||||
%{_kf5_datadir}/knotifications5/konsole.notifyrc
|
||||
%{_kf5_datadir}/knsrcfiles/konsole.knsrc
|
||||
%{_kf5_datadir}/kservicetypes5/terminalemulator.desktop
|
||||
%{_kf5_datadir}/qlogging-categories5/konsole.*
|
||||
%{_kf5_libdir}/kconf_update_bin/konsole_globalaccel
|
||||
%{_kf5_libdir}/kconf_update_bin/konsole_show_menubar
|
||||
%{_kf5_metainfodir}/org.kde.konsole.appdata.xml
|
||||
|
||||
%ldconfig_scriptlets part
|
||||
|
||||
%files part
|
||||
%license COPYING*
|
||||
%config(noreplace) %{_kf5_sysconfdir}/xdg/konsolerc
|
||||
%{_kf5_datadir}/konsole/
|
||||
%{_kf5_libdir}/libkonsoleapp.so.*
|
||||
%{_kf5_libdir}/libkonsoleprivate.so.*
|
||||
%{_kf5_qtplugindir}/konsolepart.so
|
||||
%{_kf5_qtplugindir}/konsoleplugins/
|
||||
%{_kf5_datadir}/kservices5/konsolepart.desktop
|
||||
|
||||
|
||||
%changelog
|
||||
* Fri May 19 2023 Raven <raven@sysadmins.ws> - 23.04.1-1
|
||||
- 23.04.1
|
||||
|
||||
* Thu Aug 25 2022 Raven <raven@sysadmins.ws> - 22.08.0-2
|
||||
- build with clang due to constexpr error
|
||||
|
||||
* Fri Aug 19 2022 Marc Deop <marcdeop@fedoraproject.org> - 22.08.0-1
|
||||
- 22.08.0
|
||||
|
||||
* Thu Jul 21 2022 Fedora Release Engineering <releng@fedoraproject.org> - 22.04.3-2
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_37_Mass_Rebuild
|
||||
|
||||
* Thu Jul 07 2022 Than Ngo <than@redhat.com> - 22.04.3-1
|
||||
- Update to 22.04.3
|
||||
|
||||
* Thu Jun 23 2022 Than Ngo <than@redhat.com> - 22.04.2-1
|
||||
- Update to 22.04.2
|
||||
|
||||
* Thu May 12 2022 Justin Zobel <justin@1707.io> - 22.04.1-1
|
||||
- Update to 22.04.1
|
||||
|
||||
* Mon May 09 2022 Justin Zobel <justin@1707.io> - 22.04.0-1
|
||||
- Update to 22.04.0
|
||||
|
||||
* Wed Mar 02 2022 Marc Deop <marcdeop@fedoraproject.org> - 21.12.3-1
|
||||
- 21.12.3
|
||||
|
||||
* Wed Feb 02 2022 Rex Dieter <rdieter@fedoraproject.org> - 21.12.2-1
|
||||
- 21.12.2
|
||||
|
||||
* Thu Jan 20 2022 Fedora Release Engineering <releng@fedoraproject.org> - 21.12.1-2
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_36_Mass_Rebuild
|
||||
|
||||
* Thu Jan 06 2022 Rex Dieter <rdieter@fedoraproject.org> - 21.12.1-1
|
||||
- 21.12.1
|
||||
|
||||
* Thu Dec 09 2021 Rex Dieter <rdieter@fedoraproject.org> - 21.12.0-1
|
||||
- 21.12.0
|
||||
|
||||
* Tue Nov 02 2021 Rex Dieter <rdieter@fedoraproject.org> - 21.08.3-1
|
||||
- 21.08.3
|
||||
|
||||
* Fri Oct 15 2021 Rex Dieter <rdieter@fedoraproject.org> - 21.08.2-1
|
||||
- 21.08.2
|
||||
|
||||
* Thu Aug 19 2021 Rex Dieter <rdieter@fedoraproject.org> - 21.08.0-2
|
||||
- 21.08 branch fixes
|
||||
|
||||
* Fri Aug 06 2021 Rex Dieter <rdieter@fedoraproject.org> - 21.08.0-1
|
||||
- 21.08.0
|
||||
|
||||
* Mon Aug 02 2021 Rex Dieter <rdieter@fedoraproject.org> - 21.07.90-1
|
||||
- 21.07.90
|
||||
- backport https://invent.kde.org/utilities/konsole/-/merge_requests/447
|
||||
|
||||
* Wed Jul 28 2021 Rex Dieter <rdieter@fedoraproject.org> - 21.04.3-1
|
||||
- 21.04.3
|
||||
|
||||
* Mon Jul 26 2021 Rex Dieter <rdieter@fedoraproject.org> 21.04.2-3
|
||||
- backport fix for initial konsole size
|
||||
- fix changelog to be rhel-friendly
|
||||
|
||||
* Thu Jul 22 2021 Fedora Release Engineering <releng@fedoraproject.org> - 21.04.2-2
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_35_Mass_Rebuild
|
||||
|
||||
* Thu Jun 10 2021 Rex Dieter <rdieter@fedoraproject.org> - 21.04.2-1
|
||||
- 21.04.2
|
||||
- revert revert, causes other side-effects
|
||||
|
||||
* Wed Jun 02 2021 Rex Dieter <rdieter@fedoraproject.org> - 21.04.1-3
|
||||
- revert upstream commit causing sizing regresssion (kde#437791)
|
||||
|
||||
* Tue May 25 2021 Rex Dieter <rdieter@fedoraproject.org> - 21.04.1-2
|
||||
- pull in upstream crashfix
|
||||
|
||||
* Tue May 11 2021 Rex Dieter <rdieter@fedoraproject.org> - 21.04.1-1
|
||||
- 21.04.1
|
||||
|
||||
* Sat Apr 17 2021 Rex Dieter <rdieter@fedoraproject.org> - 21.04.0-1
|
||||
- 21.04.0
|
||||
|
||||
* Tue Mar 02 2021 Rex Dieter <rdieter@fedoraproject.org> - 20.12.3-1
|
||||
- 20.12.3
|
||||
|
||||
* Tue Feb 02 2021 Rex Dieter <rdieter@fedoraproject.org> - 20.12.2-1
|
||||
- 20.12.2
|
||||
|
||||
* Tue Jan 26 2021 Fedora Release Engineering <releng@fedoraproject.org> - 20.12.1-2
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_34_Mass_Rebuild
|
||||
|
||||
* Fri Jan 15 2021 Rex Dieter <rdieter@fedoraproject.org> - 20.12.1-1
|
||||
- 20.12.1
|
||||
|
||||
* Wed Nov 4 2020 Rex Dieter <rdieter@fedoraproject.org> - 20.08.3-1
|
||||
- 20.08.3
|
||||
|
||||
* Tue Sep 15 2020 Rex Dieter <rdieter@fedoraproject.org> - 20.08.1-1
|
||||
- 20.08.1
|
||||
|
||||
* Mon Aug 17 2020 Rex Dieter <rdieter@fedoraproject.org> - 20.08.0-1
|
||||
- 20.08.0
|
||||
|
||||
* Tue Jul 28 2020 Fedora Release Engineering <releng@fedoraproject.org> - 20.04.3-2
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild
|
||||
|
||||
* Fri Jul 10 2020 Rex Dieter <rdieter@fedoraproject.org> - 20.04.3-1
|
||||
- 20.04.3
|
||||
|
||||
* Fri Jun 12 2020 Rex Dieter <rdieter@fedoraproject.org> - 20.04.2-1
|
||||
- 20.04.2
|
||||
|
||||
* Tue May 26 2020 Rex Dieter <rdieter@fedoraproject.org> - 20.04.1-1
|
||||
- 20.04.1
|
||||
|
||||
* Thu Apr 23 2020 Rex Dieter <rdieter@fedoraproject.org> - 20.04.0-1
|
||||
- 20.04.0
|
||||
|
||||
* Thu Mar 05 2020 Rex Dieter <rdieter@fedoraproject.org> - 19.12.3-1
|
||||
- 19.12.3
|
||||
|
||||
* Tue Feb 04 2020 Rex Dieter <rdieter@fedoraproject.org> - 19.12.2-1
|
||||
- 19.12.2
|
||||
|
||||
* Wed Jan 29 2020 Fedora Release Engineering <releng@fedoraproject.org> - 19.12.1-2
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_32_Mass_Rebuild
|
||||
|
||||
* Wed Jan 08 2020 Rex Dieter <rdieter@fedoraproject.org> - 19.12.1-1
|
||||
- 19.12.1
|
||||
|
||||
* Mon Nov 11 2019 Rex Dieter <rdieter@fedoraproject.org> - 19.08.3-1
|
||||
- 19.08.3
|
||||
|
||||
* Thu Oct 17 2019 Rex Dieter <rdieter@fedoraproject.org> - 19.08.2-1
|
||||
- 19.08.2
|
||||
|
||||
* Sat Sep 28 2019 Rex Dieter <rdieter@fedoraproject.org> - 19.08.1-1
|
||||
- 19.08.1
|
||||
|
||||
* Tue Aug 13 2019 Rex Dieter <rdieter@fedoraproject.org> - 19.08.0-1
|
||||
- 19.08.0
|
||||
|
||||
* Thu Jul 25 2019 Fedora Release Engineering <releng@fedoraproject.org> - 19.04.3-2
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_31_Mass_Rebuild
|
||||
|
||||
* Thu Jul 11 2019 Rex Dieter <rdieter@fedoraproject.org> - 19.04.3-1
|
||||
- 19.04.3
|
||||
|
||||
* Tue Jun 04 2019 Rex Dieter <rdieter@fedoraproject.org> - 19.04.2-1
|
||||
- 19.04.2
|
||||
|
||||
* Tue May 07 2019 Rex Dieter <rdieter@fedoraproject.org> - 19.04.1-1
|
||||
- 19.04.1
|
||||
|
||||
* Thu Apr 11 2019 Rex Dieter <rdieter@fedoraproject.org> - 18.12.3-2
|
||||
- Crashes When Logging Out All Tabs in a Window Using "Copy Input To" Feature (#1657013,kde#405158)
|
||||
|
||||
* Thu Mar 07 2019 Rex Dieter <rdieter@fedoraproject.org> - 18.12.3-1
|
||||
- 18.12.3
|
||||
|
||||
* Tue Feb 05 2019 Rex Dieter <rdieter@fedoraproject.org> - 18.12.2-1
|
||||
- 18.12.2
|
||||
|
||||
* Fri Feb 01 2019 Fedora Release Engineering <releng@fedoraproject.org> - 18.12.1-2
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_30_Mass_Rebuild
|
||||
|
||||
* Tue Jan 08 2019 Rex Dieter <rdieter@fedoraproject.org> - 18.12.1-1
|
||||
- 18.12.1
|
||||
|
||||
* Sat Dec 08 2018 Rex Dieter <rdieter@fedoraproject.org> - 18.12.0-1
|
||||
- 18.12.0
|
||||
|
||||
* Tue Nov 06 2018 Rex Dieter <rdieter@fedoraproject.org> - 18.08.3-1
|
||||
- 18.08.3
|
||||
|
||||
* Tue Oct 30 2018 Rex Dieter <rdieter@fedoraproject.org> - 18.08.2-2
|
||||
- add StartupWMClass=konsole (kde#372441)
|
||||
|
||||
* Wed Oct 10 2018 Rex Dieter <rdieter@fedoraproject.org> - 18.08.2-1
|
||||
- 18.08.2
|
||||
|
||||
* Fri Sep 07 2018 Rex Dieter <rdieter@fedoraproject.org> - 18.08.1-1
|
||||
- 18.08.1
|
||||
|
||||
* Wed Aug 15 2018 Rex Dieter <rdieter@fedoraproject.org> - 18.08.0-1
|
||||
- 18.08.0
|
||||
|
||||
* Thu Jul 12 2018 Rex Dieter <rdieter@fedoraproject.org> - 18.04.3-1
|
||||
- 18.04.3
|
||||
|
||||
* Tue Jun 05 2018 Rex Dieter <rdieter@fedoraproject.org> - 18.04.2-1
|
||||
- 18.04.2
|
||||
|
||||
* Tue May 08 2018 Rex Dieter <rdieter@fedoraproject.org> - 18.04.1-1
|
||||
- 18.04.1
|
||||
|
||||
* Sat Apr 14 2018 Rex Dieter <rdieter@fedoraproject.org> - 18.04.0-1
|
||||
- 18.04.0
|
||||
- Requires: keditbookmarks (#1565758)
|
||||
|
||||
* Tue Mar 06 2018 Rex Dieter <rdieter@fedoraproject.org> - 17.12.3-1
|
||||
- 17.12.3
|
||||
|
||||
* Wed Feb 28 2018 Sandro Mani <manisandro@gmail.com> - 17.12.2-2
|
||||
- Add konsole_REP.patch (fixes drawing issues with ncurses applications)
|
||||
|
||||
* Tue Feb 06 2018 Rex Dieter <rdieter@fedoraproject.org> - 17.12.2-1
|
||||
- 17.12.2
|
||||
|
||||
* Thu Jan 11 2018 Rex Dieter <rdieter@fedoraproject.org> - 17.12.1-1
|
||||
- 17.12.1
|
||||
|
||||
* Tue Dec 12 2017 Rex Dieter <rdieter@fedoraproject.org> - 17.12.0-1
|
||||
- 17.12.0
|
||||
|
||||
* Wed Nov 08 2017 Rex Dieter <rdieter@fedoraproject.org> - 17.08.3-1
|
||||
- 17.08.3
|
||||
|
||||
* Wed Oct 11 2017 Rex Dieter <rdieter@fedoraproject.org> - 17.08.2-1
|
||||
- 17.08.2
|
||||
|
||||
* Sat Sep 30 2017 Rex Dieter <rdieter@fedoraproject.org> - 17.08.1-1
|
||||
- 17.08.1
|
||||
|
||||
* Sat Aug 26 2017 Rex Dieter <rdieter@fedoraproject.org> - 17.08.0-1
|
||||
- 17.08.0
|
||||
|
||||
* Fri Jul 28 2017 Rex Dieter <rdieter@fedoraproject.org> - 17.04.3-1
|
||||
- 17.04.3
|
||||
|
||||
* Wed Jul 26 2017 Fedora Release Engineering <releng@fedoraproject.org> - 17.04.2-2
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild
|
||||
|
||||
* Thu Jun 15 2017 Rex Dieter <rdieter@fedoraproject.org> - 17.04.2-1
|
||||
- 17.04.2
|
||||
|
||||
* Wed May 10 2017 Rex Dieter <rdieter@fedoraproject.org> - 17.04.1-1
|
||||
- 17.04.1
|
||||
|
||||
* Sat Apr 22 2017 Rex Dieter <rdieter@fedoraproject.org> - 17.04.0-2
|
||||
- use %%find_lang for html handbooks too
|
||||
|
||||
* Tue Apr 18 2017 Rex Dieter <rdieter@fedoraproject.org> - 17.04.0-1
|
||||
- 17.04.0
|
||||
|
||||
* Wed Mar 08 2017 Rex Dieter <rdieter@fedoraproject.org> - 16.12.3-1
|
||||
- 16.12.3
|
||||
|
||||
* Wed Feb 08 2017 Rex Dieter <rdieter@fedoraproject.org> - 16.12.2-1
|
||||
- 16.12.2
|
||||
|
||||
* Tue Jan 10 2017 Rex Dieter <rdieter@fedoraproject.org> - 16.12.1-1
|
||||
- 16.12.1
|
||||
|
||||
* Thu Dec 22 2016 Rex Dieter <rdieter@math.unl.edu> - 16.12.0-1
|
||||
- 16.12.0
|
||||
|
||||
* Wed Nov 30 2016 Rex Dieter <rdieter@fedoraproject.org> - 16.08.3-1
|
||||
- 16.08.3
|
||||
|
||||
* Thu Oct 13 2016 Rex Dieter <rdieter@fedoraproject.org> - 16.08.2-1
|
||||
- 16.08.2
|
||||
|
||||
* Tue Sep 27 2016 Rex Dieter <rdieter@fedoraproject.org> - 16.08.1-2
|
||||
- Konsole title does not update to current program or host run (#1379753)
|
||||
|
||||
* Tue Sep 06 2016 Rex Dieter <rdieter@fedoraproject.org> - 16.08.1-1
|
||||
- 16.08.1
|
||||
|
||||
* Fri Aug 12 2016 Rex Dieter <rdieter@fedoraproject.org> - 16.08.0-1
|
||||
- 16.08.0
|
||||
|
||||
* Sat Aug 06 2016 Rex Dieter <rdieter@fedoraproject.org> - 16.07.90-1
|
||||
- 16.07.90
|
||||
|
||||
* Fri Jul 29 2016 Rex Dieter <rdieter@fedoraproject.org> - 16.07.80-2
|
||||
- %%check: drop use of 'time', not needed
|
||||
|
||||
* Fri Jul 29 2016 Rex Dieter <rdieter@fedoraproject.org> - 16.07.80-1
|
||||
- 16.07.80
|
||||
|
||||
* Thu Jul 07 2016 Rex Dieter <rdieter@fedoraproject.org> 16.04.3-1
|
||||
- 16.04.3
|
||||
|
||||
* Thu Jun 16 2016 Rex Dieter <rdieter@fedoraproject.org> - 16.04.2-2
|
||||
- update URL (use www.kde.org/applications/...)
|
||||
|
||||
* Sun Jun 12 2016 Rex Dieter <rdieter@fedoraproject.org> - 16.04.2-1
|
||||
- 16.04.2
|
||||
|
||||
* Tue May 31 2016 Rex Dieter <rdieter@fedoraproject.org> - 16.04.1-2
|
||||
- backport upstream fixes
|
||||
|
||||
* Sun May 08 2016 Rex Dieter <rdieter@fedoraproject.org> - 16.04.1-1
|
||||
- 16.04.1
|
||||
|
||||
* Thu Apr 28 2016 Rex Dieter <rdieter@fedoraproject.org> - 16.04.0-2
|
||||
- enable tests, support %%base_name, %%bootstrap
|
||||
|
||||
* Mon Apr 18 2016 Rex Dieter <rdieter@fedoraproject.org> - 16.04.0-1
|
||||
- 16.04.0
|
||||
|
||||
* Fri Mar 18 2016 Rex Dieter <rdieter@fedoraproject.org> - 15.12.3-2
|
||||
- TERM=xterm-256color default (#1172329)
|
||||
|
||||
* Sun Mar 13 2016 Rex Dieter <rdieter@fedoraproject.org> - 15.12.3-1
|
||||
- 15.12.3
|
||||
|
||||
* Sun Feb 14 2016 Rex Dieter <rdieter@fedoraproject.org> - 15.12.2-1
|
||||
- 15.12.2
|
||||
|
||||
* Thu Feb 04 2016 Fedora Release Engineering <releng@fedoraproject.org> - 15.12.1-3
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild
|
||||
|
||||
* Sat Jan 30 2016 Rex Dieter <rdieter@fedoraproject.org> - 15.12.1-2
|
||||
- "Terminal Size" setting in profile ignored (#345403)
|
||||
- cleanup, validate appdata
|
||||
|
||||
* Mon Jan 18 2016 Rex Dieter <rdieter@fedoraproject.org> - 15.12.1-1
|
||||
- 15.12.1
|
||||
|
||||
* Mon Dec 14 2015 Rex Dieter <rdieter@fedoraproject.org> 15.12.0-1
|
||||
- 15.12.0
|
||||
|
||||
* Thu Nov 12 2015 Rex Dieter <rdieter@fedoraproject.org> - 15.08.3-1
|
||||
- 15.08.3
|
||||
- use %%license
|
||||
- backport support for FileLocation UI (default: cache)
|
||||
|
||||
* Wed Sep 16 2015 Rex Dieter <rdieter@fedoraproject.org> - 15.08.1-1
|
||||
- 15.08.1
|
||||
|
||||
* Wed Aug 26 2015 Daniel Vrátil <dvratil@redhat.com> - 15.08.0-1
|
||||
- 15.08.0
|
||||
|
||||
* Sat Aug 15 2015 Rex Dieter <rdieter@fedoraproject.org> - 15.04.3-2
|
||||
- fix 'konsole --version' to match reality
|
||||
- backport copy-n-paste fixes (#1235024)
|
||||
|
||||
* Tue Jun 30 2015 Rex Dieter <rdieter@fedoraproject.org> - 15.04.3-1
|
||||
- 15.04.3
|
||||
|
||||
* Wed Jun 17 2015 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 15.04.2-2
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild
|
||||
|
||||
* Wed Jun 10 2015 Rex Dieter <rdieter@fedoraproject.org> - 15.04.2-1
|
||||
- 15.04.2
|
||||
|
||||
* Mon Jun 01 2015 Rex Dieter <rdieter@fedoraproject.org> 15.04.1-2
|
||||
- +%%{?kf5_kinit_requires}
|
||||
|
||||
* Fri May 15 2015 Rex Dieter <rdieter@fedoraproject.org> 15.04.1-1
|
||||
- 15.04.1
|
||||
|
||||
* Fri May 15 2015 Rex Dieter <rdieter@fedoraproject.org> 15.04.0-2
|
||||
- store history in cachedir instead of tmp (#1222061,kde#173283)
|
||||
|
||||
* Tue Apr 14 2015 Rex Dieter <rdieter@fedoraproject.org> - 15.04.0-1
|
||||
- 15.04.0
|
||||
|
||||
* Sat Jan 31 2015 Rex Dieter <rdieter@fedoraproject.org> 14.12.1-1
|
||||
- kf5-based konsole-14.12.x
|
||||
|
@ -1,3 +0,0 @@
|
||||
[FileLocation]
|
||||
scrollbackUseCacheLocation=true
|
||||
scrollbackUseSystemLocation=false
|
@ -1,136 +0,0 @@
|
||||
--- yakuake-23.04.1/app/mainwindow.cpp_orig 2023-05-19 10:36:24.410621499 +0600
|
||||
+++ yakuake-23.04.1/app/mainwindow.cpp 2023-05-19 10:49:13.524839802 +0600
|
||||
@@ -33,7 +33,6 @@
|
||||
#include <KToggleFullScreenAction>
|
||||
#include <KWindowEffects>
|
||||
#include <KWindowSystem>
|
||||
-#include <KX11Extras>
|
||||
|
||||
#include <QApplication>
|
||||
#include <QDBusConnection>
|
||||
@@ -841,8 +840,8 @@
|
||||
|
||||
connect(settingsDialog, &QDialog::finished, [=]() {
|
||||
m_toggleLock = true;
|
||||
- KWindowSystem::activateWindow(windowHandle());
|
||||
- KX11Extras::forceActiveWindow(winId());
|
||||
+ KWindowSystem::activateWindow(winId());
|
||||
+ KWindowSystem::forceActiveWindow(winId());
|
||||
});
|
||||
|
||||
settingsDialog->show();
|
||||
@@ -940,7 +939,7 @@
|
||||
}
|
||||
#endif
|
||||
|
||||
- KX11Extras::setOnAllDesktops(winId(), Settings::showOnAllDesktops());
|
||||
+ KWindowSystem::setOnAllDesktops(winId(), Settings::showOnAllDesktops());
|
||||
KWindowEffects::enableBlurBehind(windowHandle(), m_sessionStack->wantsBlur());
|
||||
}
|
||||
|
||||
@@ -1204,11 +1203,11 @@
|
||||
// will also cause the window manager to switch to the virtual
|
||||
// desktop the window resides on.
|
||||
|
||||
- KWindowSystem::activateWindow(windowHandle());
|
||||
- KX11Extras::forceActiveWindow(winId());
|
||||
+ KWindowSystem::activateWindow(winId());
|
||||
+ KWindowSystem::forceActiveWindow(winId());
|
||||
|
||||
return;
|
||||
- } else if (!Settings::showOnAllDesktops() && KWindowInfo(winId(), NET::WMDesktop).desktop() != KX11Extras::currentDesktop()) {
|
||||
+ } else if (!Settings::showOnAllDesktops() && KWindowInfo(winId(), NET::WMDesktop).desktop() != KWindowSystem::currentDesktop()) {
|
||||
// The open/restrict action isn't set to focus the window, but
|
||||
// the window is currently on another virtual desktop (the option
|
||||
// to show it on all of them is disabled), so closing it doesn't
|
||||
@@ -1218,10 +1217,10 @@
|
||||
// switch to the virtual desktop the window currently resides on,
|
||||
// so move the window to the current desktop before doing so.
|
||||
|
||||
- KX11Extras::setOnDesktop(winId(), KX11Extras::currentDesktop());
|
||||
+ KWindowSystem::setOnDesktop(winId(), KWindowSystem::currentDesktop());
|
||||
|
||||
- KWindowSystem::activateWindow(windowHandle());
|
||||
- KX11Extras::forceActiveWindow(winId());
|
||||
+ KWindowSystem::activateWindow(winId());
|
||||
+ KWindowSystem::forceActiveWindow(winId());
|
||||
|
||||
return;
|
||||
}
|
||||
@@ -1231,7 +1230,7 @@
|
||||
if (!Settings::useWMAssist() && m_kwinAssistPropSet)
|
||||
kwinAssistPropCleanup();
|
||||
|
||||
- if (m_isX11 && Settings::useWMAssist() && KX11Extras::compositingActive())
|
||||
+ if (m_isX11 && Settings::useWMAssist() && KWindowSystem::compositingActive())
|
||||
kwinAssistToggleWindowState(visible);
|
||||
else
|
||||
#endif
|
||||
@@ -1418,7 +1417,7 @@
|
||||
void MainWindow::sharedAfterOpenWindow()
|
||||
{
|
||||
if (!Settings::firstRun())
|
||||
- KX11Extras::forceActiveWindow(winId());
|
||||
+ KWindowSystem::forceActiveWindow(winId());
|
||||
|
||||
connect(qGuiApp, &QGuiApplication::focusWindowChanged, this, &MainWindow::wmActiveWindowChanged);
|
||||
|
||||
@@ -1451,7 +1450,7 @@
|
||||
|
||||
void MainWindow::activate()
|
||||
{
|
||||
- KWindowSystem::activateWindow(windowHandle());
|
||||
+ KWindowSystem::activateWindow(winId());
|
||||
}
|
||||
|
||||
void MainWindow::toggleMousePoll(bool poll)
|
||||
@@ -1550,7 +1549,7 @@
|
||||
}
|
||||
|
||||
if (QGuiApplication::screens().count() > 1) {
|
||||
- const QList<WId> allWindows = KX11Extras::windows();
|
||||
+ const QList<WId> allWindows = KWindowSystem::windows();
|
||||
QList<WId> offScreenWindows;
|
||||
|
||||
QListIterator<WId> i(allWindows);
|
||||
@@ -1558,7 +1557,7 @@
|
||||
while (i.hasNext()) {
|
||||
WId windowId = i.next();
|
||||
|
||||
- if (KX11Extras::hasWId(windowId)) {
|
||||
+ if (KWindowSystem::hasWId(windowId)) {
|
||||
KWindowInfo windowInfo = KWindowInfo(windowId, NET::WMDesktop | NET::WMGeometry, NET::WM2ExtendedStrut);
|
||||
|
||||
// If windowInfo is valid and the window is located at the same (current)
|
||||
@@ -1597,11 +1596,11 @@
|
||||
}
|
||||
}
|
||||
|
||||
- return KX11Extras::workArea(offScreenWindows).intersected(screenGeometry);
|
||||
+ return KWindowSystem::workArea(offScreenWindows).intersected(screenGeometry);
|
||||
}
|
||||
|
||||
#if HAVE_X11
|
||||
- return KX11Extras::workArea();
|
||||
+ return KWindowSystem::workArea();
|
||||
#else
|
||||
return QRect();
|
||||
#endif
|
||||
@@ -1631,7 +1630,7 @@
|
||||
|
||||
m_firstRunDialog->deleteLater();
|
||||
|
||||
- KX11Extras::forceActiveWindow(winId());
|
||||
+ KWindowSystem::forceActiveWindow(winId());
|
||||
}
|
||||
|
||||
void MainWindow::firstRunDialogOk()
|
||||
@@ -1645,7 +1644,7 @@
|
||||
|
||||
void MainWindow::updateUseTranslucency()
|
||||
{
|
||||
- m_useTranslucency = (Settings::translucency() && (m_isX11 ? KX11Extras::compositingActive() : true));
|
||||
+ m_useTranslucency = (Settings::translucency() && KWindowSystem::compositingActive());
|
||||
}
|
||||
|
||||
void MainWindow::updateTrayTooltip()
|
@ -1,414 +0,0 @@
|
||||
|
||||
# trim changelog included in binary rpms
|
||||
%global _changelog_trimtime %(date +%s -d "1 year ago")
|
||||
|
||||
Name: yakuake
|
||||
Version: 23.04.1
|
||||
Release: 1%{?dist}
|
||||
Summary: A drop-down terminal emulator
|
||||
|
||||
# KDE e.V. may determine that future GPL versions are accepted
|
||||
License: GLv2 or GPLv3
|
||||
URL: https://kde.org/applications/system/org.kde.yakuake
|
||||
|
||||
%global revision %(echo %{version} | cut -d. -f3)
|
||||
%global majmin_ver %(echo %{version} | cut -d. -f1,2)
|
||||
%if %{revision} >= 50
|
||||
%global stable unstable
|
||||
%else
|
||||
%global stable stable
|
||||
%endif
|
||||
Source0: http://download.kde.org/%{stable}/release-service/%{version}/src/%{name}-%{version}.tar.xz
|
||||
|
||||
## upstream fixes
|
||||
Patch1: yakuake-KX11Extras-fix.patch
|
||||
|
||||
# konsolepart
|
||||
Requires: konsole5-part
|
||||
|
||||
BuildRequires: desktop-file-utils
|
||||
BuildRequires: extra-cmake-modules
|
||||
BuildRequires: gettext
|
||||
BuildRequires: kf5-rpm-macros
|
||||
BuildRequires: kf5-karchive-devel
|
||||
BuildRequires: kf5-kconfig-devel
|
||||
BuildRequires: kf5-kcoreaddons-devel
|
||||
BuildRequires: kf5-kcrash-devel
|
||||
BuildRequires: kf5-kdbusaddons-devel
|
||||
BuildRequires: kf5-kglobalaccel-devel
|
||||
BuildRequires: kf5-ki18n-devel
|
||||
BuildRequires: kf5-kiconthemes-devel
|
||||
BuildRequires: kf5-kio-devel
|
||||
BuildRequires: kf5-knewstuff-devel
|
||||
BuildRequires: kf5-knotifications-devel
|
||||
BuildRequires: kf5-knotifyconfig-devel
|
||||
BuildRequires: kf5-kparts-devel
|
||||
BuildRequires: kf5-kwidgetsaddons-devel
|
||||
BuildRequires: kf5-kwindowsystem-devel
|
||||
|
||||
BuildRequires: pkgconfig(Qt5Widgets)
|
||||
BuildRequires: pkgconfig(Qt5Svg)
|
||||
BuildRequires: pkgconfig(Qt5X11Extras)
|
||||
|
||||
BuildRequires: cmake(KF5Wayland)
|
||||
|
||||
%if 0%{?fedora}
|
||||
%global appstream_validate 1
|
||||
BuildRequires: libappstream-glib
|
||||
%endif
|
||||
|
||||
%description
|
||||
Yakuake is a drop-down terminal emulator.
|
||||
|
||||
|
||||
%prep
|
||||
%autosetup -p1
|
||||
|
||||
|
||||
%build
|
||||
%cmake_kf5
|
||||
|
||||
%cmake_build
|
||||
|
||||
|
||||
%install
|
||||
%cmake_install
|
||||
|
||||
%find_lang %{name}
|
||||
|
||||
|
||||
%check
|
||||
%if 0%{?appstream_validate}
|
||||
appstream-util validate-relax --nonet %{buildroot}%{_kf5_metainfodir}/org.kde.yakuake.appdata.xml
|
||||
%endif
|
||||
desktop-file-validate %{buildroot}%{_kf5_datadir}/applications/org.kde.yakuake.desktop
|
||||
|
||||
|
||||
%files -f %{name}.lang
|
||||
%doc AUTHORS ChangeLog TODO
|
||||
%license LICENSES/*
|
||||
%{_kf5_bindir}/yakuake
|
||||
%{_kf5_datadir}/knsrcfiles/yakuake.knsrc
|
||||
%{_kf5_metainfodir}/org.kde.yakuake.appdata.xml
|
||||
%{_kf5_datadir}/applications/org.kde.yakuake.desktop
|
||||
%{_kf5_datadir}/knotifications5/yakuake.notifyrc
|
||||
%{_kf5_datadir}/yakuake/
|
||||
%{_kf5_datadir}/icons/hicolor/*/apps/yakuake.*
|
||||
%{_kf5_datadir}/dbus-1/services/org.kde.yakuake.service
|
||||
|
||||
|
||||
%changelog
|
||||
* Sat May 13 2023 Marc Deop i Argemí <marcdeop@fedoraproject.org> - 23.04.1-1
|
||||
- 23.04.1
|
||||
|
||||
* Fri Apr 14 2023 Marc Deop i Argemí <marcdeop@fedoraproject.org> - 23.04.0-1
|
||||
- 23.04.0
|
||||
|
||||
* Fri Mar 31 2023 Marc Deop i Argemí <marcdeop@fedoraproject.org> - 23.03.90-1
|
||||
- 23.03.90
|
||||
|
||||
* Mon Mar 20 2023 Marc Deop i Argemí <marcdeop@fedoraproject.org> - 23.03.80-1
|
||||
- 23.03.80
|
||||
|
||||
* Thu Mar 02 2023 Marc Deop i Argemí <marcdeop@fedoraproject.org> - 22.12.3-1
|
||||
- 22.12.3
|
||||
|
||||
* Tue Jan 31 2023 Marc Deop <marcdeop@fedoraproject.org> - 22.12.2-1
|
||||
- 22.12.2
|
||||
|
||||
* Sat Jan 21 2023 Fedora Release Engineering <releng@fedoraproject.org> - 22.12.1-2
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_38_Mass_Rebuild
|
||||
|
||||
* Tue Jan 03 2023 Justin Zobel <justin@1707.io> - 22.12.1-1
|
||||
- Update to 22.12.1
|
||||
|
||||
* Mon Dec 19 2022 Marc Deop <marcdeop@fedoraproject.org> - 22.12.0-1
|
||||
- 22.12.0
|
||||
|
||||
* Fri Nov 04 2022 Marc Deop i Argemí (Private) <marc@marcdeop.com> - 22.08.3-1
|
||||
- 22.08.3
|
||||
|
||||
* Fri Oct 14 2022 Marc Deop <marcdeop@fedoraproject.org> - 22.08.2-1
|
||||
- 22.08.2
|
||||
|
||||
* Thu Sep 08 2022 Marc Deop <marcdeop@fedoraproject.org> - 22.08.1-1
|
||||
- 22.08.1
|
||||
|
||||
* Thu Aug 25 2022 Yaroslav Sidlovsky <zawertun@gmail.com> - 22.08.0-2
|
||||
- BR: cmake(KF5Wayland)
|
||||
|
||||
* Fri Aug 19 2022 Marc Deop <marcdeop@fedoraproject.org> - 22.08.0-1
|
||||
- 22.08.0
|
||||
|
||||
* Sat Jul 23 2022 Fedora Release Engineering <releng@fedoraproject.org> - 22.04.3-2
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_37_Mass_Rebuild
|
||||
|
||||
* Thu Jul 07 2022 Than Ngo <than@redhat.com> - 22.04.3-1
|
||||
- 22.04.3
|
||||
|
||||
* Fri Jun 24 2022 Than Ngo <than@redhat.com> - 22.04.2-1
|
||||
- 22.04.2
|
||||
|
||||
* Thu May 12 2022 Justin Zobel <justin@1707.io> - 22.04.1-1
|
||||
- Update to 22.04.1
|
||||
|
||||
* Mon May 09 2022 Justin Zobel <justin@1707.io> - 22.04.0-1
|
||||
- Update to 22.04.0
|
||||
|
||||
* Wed Mar 02 2022 Marc Deop <marcdeop@fedoraproject.org> - 21.12.3-1
|
||||
- 21.12.3
|
||||
|
||||
* Wed Feb 02 2022 Rex Dieter <rdieter@fedoraproject.org> - 21.12.2-1
|
||||
- 21.12.2
|
||||
|
||||
* Sat Jan 22 2022 Fedora Release Engineering <releng@fedoraproject.org> - 21.12.1-2
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_36_Mass_Rebuild
|
||||
|
||||
* Thu Jan 06 2022 Rex Dieter <rdieter@fedoraproject.org> - 21.12.1-1
|
||||
- 21.12.1
|
||||
|
||||
* Thu Dec 09 2021 Rex Dieter <rdieter@fedoraproject.org> - 21.12.0-1
|
||||
- 21.12.0
|
||||
|
||||
* Tue Nov 02 2021 Rex Dieter <rdieter@fedoraproject.org> - 21.08.3-1
|
||||
- 21.08.3
|
||||
|
||||
* Fri Oct 15 2021 Rex Dieter <rdieter@fedoraproject.org> - 21.08.2-1
|
||||
- 21.08.2
|
||||
|
||||
* Wed Sep 01 2021 Rex Dieter <rdieter@fedoraproject.org> - 21.08.1-1
|
||||
- 21.08.1
|
||||
|
||||
* Fri Aug 06 2021 Rex Dieter <rdieter@fedoraproject.org> - 21.08.0-1
|
||||
- 21.08.0
|
||||
|
||||
* Wed Jul 28 2021 Rex Dieter <rdieter@fedoraproject.org> - 21.04.3-1
|
||||
- 21.04.3
|
||||
|
||||
* Fri Jul 23 2021 Fedora Release Engineering <releng@fedoraproject.org> - 21.04.2-3
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_35_Mass_Rebuild
|
||||
|
||||
* Thu Jul 08 2021 Rex Dieter <rdieter@fedoraproject.org> 21.04.2-2
|
||||
- update URL (#1980317)
|
||||
|
||||
* Thu Jun 10 2021 Rex Dieter <rdieter@fedoraproject.org> - 21.04.2-1
|
||||
- 21.04.2
|
||||
|
||||
* Tue May 11 2021 Rex Dieter <rdieter@fedoraproject.org> - 21.04.1-1
|
||||
- 21.04.1
|
||||
|
||||
* Sat Apr 17 2021 Rex Dieter <rdieter@fedoraproject.org> - 21.04.0-1
|
||||
- 21.04.0
|
||||
|
||||
* Tue Mar 02 2021 Rex Dieter <rdieter@fedoraproject.org> - 20.12.3-1
|
||||
- 20.12.3
|
||||
|
||||
* Tue Feb 02 2021 Rex Dieter <rdieter@fedoraproject.org> - 20.12.2-1
|
||||
- 20.12.2
|
||||
|
||||
* Thu Jan 28 2021 Fedora Release Engineering <releng@fedoraproject.org> - 20.12.1-2
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_34_Mass_Rebuild
|
||||
|
||||
* Fri Jan 15 2021 Rex Dieter <rdieter@fedoraproject.org> - 20.12.1-1
|
||||
- 20.12.1
|
||||
|
||||
* Wed Nov 4 2020 Rex Dieter <rdieter@fedoraproject.org> - 20.08.3-1
|
||||
- 20.08.3
|
||||
|
||||
* Tue Sep 15 2020 Rex Dieter <rdieter@fedoraproject.org> - 20.08.1-1
|
||||
- 20.08.1
|
||||
|
||||
* Mon Aug 17 2020 Rex Dieter <rdieter@fedoraproject.org> - 20.08.0-1
|
||||
- 20.08.0
|
||||
|
||||
* Wed Jul 29 2020 Fedora Release Engineering <releng@fedoraproject.org> - 20.04.3-2
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild
|
||||
|
||||
* Fri Jul 10 2020 Rex Dieter <rdieter@fedoraproject.org> - 20.04.3-1
|
||||
- 20.04.3
|
||||
|
||||
* Fri Jun 12 2020 Rex Dieter <rdieter@fedoraproject.org> - 20.04.2-1
|
||||
- 20.04.2
|
||||
|
||||
* Tue May 26 2020 Rex Dieter <rdieter@fedoraproject.org> - 20.04.1-1
|
||||
- 20.04.1
|
||||
|
||||
* Thu Apr 23 2020 Rex Dieter <rdieter@fedoraproject.org> - 20.04.0-1
|
||||
- 20.04.0
|
||||
|
||||
* Thu Mar 05 2020 Rex Dieter <rdieter@fedoraproject.org> - 19.12.3-1
|
||||
- 19.12.3
|
||||
|
||||
* Tue Feb 04 2020 Rex Dieter <rdieter@fedoraproject.org> - 19.12.2-1
|
||||
- 19.12.2
|
||||
|
||||
* Fri Jan 31 2020 Fedora Release Engineering <releng@fedoraproject.org> - 19.12.1-2
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_32_Mass_Rebuild
|
||||
|
||||
* Tue Jan 14 2020 Rex Dieter <rdieter@fedoraproject.org> - 19.12.1-1
|
||||
- 19.12.1
|
||||
|
||||
* Mon Nov 11 2019 Rex Dieter <rdieter@fedoraproject.org> - 19.08.3-1
|
||||
- 19.08.3
|
||||
|
||||
* Thu Oct 17 2019 Rex Dieter <rdieter@fedoraproject.org> - 19.08.2-1
|
||||
- 19.08.2, part of kde-apps now
|
||||
|
||||
* Sat Jul 27 2019 Fedora Release Engineering <releng@fedoraproject.org> - 3.0.5-4
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_31_Mass_Rebuild
|
||||
|
||||
* Sun Feb 03 2019 Fedora Release Engineering <releng@fedoraproject.org> - 3.0.5-3
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_30_Mass_Rebuild
|
||||
|
||||
* Sat Jul 14 2018 Fedora Release Engineering <releng@fedoraproject.org> - 3.0.5-2
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild
|
||||
|
||||
* Thu Mar 29 2018 Rex Dieter <rdieter@fedoraproject.org> - 3.0.5-1
|
||||
- 3.0.5
|
||||
|
||||
* Mon Feb 12 2018 Rex Dieter <rdieter@fedoraproject.org> - 3.0.4-6
|
||||
- use %%_kf5_metainfodir
|
||||
|
||||
* Fri Feb 09 2018 Fedora Release Engineering <releng@fedoraproject.org> - 3.0.4-5
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild
|
||||
|
||||
* Tue Jan 30 2018 Igor Gnatenko <ignatenkobrain@fedoraproject.org> - 3.0.4-4
|
||||
- Remove obsolete scriptlets
|
||||
|
||||
* Thu Aug 03 2017 Fedora Release Engineering <releng@fedoraproject.org> - 3.0.4-3
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Binutils_Mass_Rebuild
|
||||
|
||||
* Thu Jul 27 2017 Fedora Release Engineering <releng@fedoraproject.org> - 3.0.4-2
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild
|
||||
|
||||
* Mon Apr 03 2017 Rex Dieter <rdieter@fedoraproject.org> - 3.0.4-1
|
||||
- yakuake-3.0.4
|
||||
|
||||
* Fri Mar 31 2017 Rex Dieter <rdieter@fedoraproject.org> - 3.0.3-2
|
||||
- rebuild
|
||||
|
||||
* Fri Mar 31 2017 Rex Dieter <rdieter@fedoraproject.org> - 3.0.3-1
|
||||
- yakuake-3.0.3
|
||||
|
||||
* Sat Feb 11 2017 Fedora Release Engineering <releng@fedoraproject.org> - 3.0.2-2
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild
|
||||
|
||||
* Thu Mar 03 2016 Rex Dieter <rdieter@fedoraproject.org> 3.0.1-0.1
|
||||
- yakuake-3.0.2, kf5 port
|
||||
|
||||
* Fri Feb 05 2016 Fedora Release Engineering <releng@fedoraproject.org> - 2.9.9-11
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild
|
||||
|
||||
* Fri Jun 19 2015 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.9.9-10
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild
|
||||
|
||||
* Wed Apr 22 2015 Rex Dieter <rdieter@fedoraproject.org> - 2.9.9-9
|
||||
- pull in upstream fixes (including appdata)
|
||||
- trim changelog
|
||||
|
||||
* Sat Apr 18 2015 Jochen Schmitt <Jochen herr-schmitt de> - 2.9.9-8
|
||||
- Fix height-handling issue (#810312)
|
||||
|
||||
* Sat Jan 31 2015 Rex Dieter <rdieter@fedoraproject.org> 2.9.9-7
|
||||
- kde-apps cleanup
|
||||
|
||||
* Mon Aug 18 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.9.9-6
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_22_Mass_Rebuild
|
||||
|
||||
* Sat Jun 07 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.9.9-5
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild
|
||||
|
||||
* Sun Aug 04 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.9.9-4
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_20_Mass_Rebuild
|
||||
|
||||
* Wed Jul 17 2013 Petr Pisar <ppisar@redhat.com> - 2.9.9-3
|
||||
- Perl 5.18 rebuild
|
||||
|
||||
* Fri Feb 15 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.9.9-2
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_19_Mass_Rebuild
|
||||
|
||||
* Fri Oct 19 2012 Rex Dieter <rdieter@fedoraproject.org> 2.9.9-1
|
||||
- yakuake-2.9.9
|
||||
|
||||
* Sun Jul 22 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.9.8-6
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild
|
||||
|
||||
* Sat Jan 14 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.9.8-5
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_17_Mass_Rebuild
|
||||
|
||||
* Tue Nov 15 2011 Rex Dieter <rdieter@fedoraproject.org> 2.9.8-4
|
||||
- Requires: konsole-part
|
||||
|
||||
* Sun Jul 24 2011 Jochen Schmitt <Jochen herr-schmitt de> 2.9.8-3
|
||||
- Rebuild to fix dependecy issues
|
||||
|
||||
* Mon Jul 18 2011 Rex Dieter <rdieter@fedoraproject.org> 2.9.8-2
|
||||
- Requires: konsole
|
||||
- drop old cruft
|
||||
|
||||
* Wed Feb 09 2011 Rex Dieter <rdieter@fedoraproject.org> 2.9.8-1
|
||||
- 2.9.8
|
||||
- License: GPLv2 or GPLv3
|
||||
|
||||
* Tue Feb 08 2011 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.9.7-3
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild
|
||||
|
||||
* Tue Jul 20 2010 Rex Dieter <rdieter@fedoraproject.org> - 2.9.7-2
|
||||
- fix kdebase4 dep
|
||||
|
||||
* Sun Jul 18 2010 Rex Dieter <rdieter@fedoraproject.org> - 2.9.7-1
|
||||
- 2.9.7
|
||||
- optimize scriptlets
|
||||
- use _kde4_ macros
|
||||
|
||||
* Mon Jul 27 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.9.6-2
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild
|
||||
|
||||
* Thu Jul 10 2009 Johan Cwiklinski <johan AT x-tnd DOT be> 2.9.6-1
|
||||
- 2.9.6
|
||||
|
||||
* Sat Apr 17 2009 Johan Cwiklinski <johan AT x-tnd DOT be> 2.9.4-3
|
||||
- Fix crash with QT 4.5
|
||||
|
||||
* Wed Feb 25 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.9.4-2
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild
|
||||
|
||||
* Thu Sep 4 2008 Johan Cwiklinski <johan AT x-tnd DOT be> - 2.9.4-1
|
||||
- 2.9.4
|
||||
- change BR from kdelibs4-devel to kdelibs-devel
|
||||
|
||||
* Fri Jun 20 2008 Johan Cwiklinski <johan AT x-tnd DOT be> - 2.9.3-1
|
||||
- 2.9.3
|
||||
- kdebase is required
|
||||
|
||||
* Sat Apr 05 2008 2008 Johan Cwiklinski <johan AT x-tnd DOT be> - 2.9.1-1
|
||||
- 2.9.1
|
||||
- use of %%{cmake_kde4} macro
|
||||
- remove no longer needeed chrpath
|
||||
|
||||
* Wed Apr 02 2008 Rex Dieter <rdieter@fedoraproject.org> - 2.9-2.beta1
|
||||
- BR: kdelibs4-devel
|
||||
- description/summary: s/for KDE//
|
||||
|
||||
* Mon Feb 11 2008 Johan Cwiklinski <johan AT x-tnd DOT be> - 2.9-1.beta1
|
||||
- upstream release for KDE4
|
||||
|
||||
* Mon Oct 30 2006 Dawid Gajownik <gajownik[AT]gmail.com> - 2.7.5-4
|
||||
- Add support for KonsoleScripts (#212862)
|
||||
|
||||
* Fri Sep 15 2006 Dawid Gajownik <gajownik[AT]gmail.com> - 2.7.5-3
|
||||
- Rebuild for FE6
|
||||
- Update e-mail address
|
||||
- Fix mixed-use-of-spaces-and-tabs rpmlint warning
|
||||
|
||||
* Sat May 20 2006 Dawid Gajownik <gajownik[AT]gmail.com> - 2.7.5-2
|
||||
- Add dist tag
|
||||
|
||||
* Sat May 20 2006 Dawid Gajownik <gajownik[AT]gmail.com> - 2.7.5-1
|
||||
- Update to 2.7.5
|
||||
- Add `--disable-dependency-tracking' and `--enable-final' options
|
||||
- Include translations
|
||||
|
||||
* Mon Oct 24 2005 Mickael <dreadyman@gmail.com>
|
||||
- initial release
|
||||
|
Loading…
x
Reference in New Issue
Block a user