Script 'mail_helper' called by obssrc Hello community, here is the log from the commit of package terminology for openSUSE:Factory checked in at 2022-02-25 21:24:53 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/terminology (Old) and /work/SRC/openSUSE:Factory/.terminology.new.1958 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "terminology" Fri Feb 25 21:24:53 2022 rev:24 rq:957190 version:1.12.1 Changes: -------- --- /work/SRC/openSUSE:Factory/terminology/terminology.changes 2021-02-15 23:21:43.239881549 +0100 +++ /work/SRC/openSUSE:Factory/.terminology.new.1958/terminology.changes 2022-02-25 21:25:07.619638897 +0100 @@ -2 +2,22 @@ -Tue Nov 17 06:11:34 UTC 2020 - Simon Lees <simonf.l...@suse.com> +Thu Feb 17 12:30:29 UTC 2022 - Simon Lees <sfl...@suse.de> + +- The default theme is now Flat, Dark will come back in a new package +- openSUSE Branding now has a colorscheme so use that as the default +- Fix colorscheme loading + * fix-colorscheme-name-typo.patch + +------------------------------------------------------------------- +Thu Feb 17 00:40:19 UTC 2022 - Simon Lees <sfl...@suse.de> + +- Update to 1.12.1 + * New Deafult theme (Not the default in openSUSE) + * Colorschemes generate their own configuration file, allowing + for easy management of outside contributions + +------------------------------------------------------------------- +Fri Nov 19 17:56:29 UTC 2021 - Tomas Cech <sleep_wal...@opensuse.org> + +- bump to 1.11.0 + +------------------------------------------------------------------- +Tue Nov 17 06:11:34 UTC 2020 - Simon Lees <sfl...@suse.de> Old: ---- terminology-1.8.1.tar.xz New: ---- fix-colorscheme-name-typo.patch terminology-1.12.1.tar.xz ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ terminology.spec ++++++ --- /var/tmp/diff_new_pack.vuh80d/_old 2022-02-25 21:25:08.267639012 +0100 +++ /var/tmp/diff_new_pack.vuh80d/_new 2022-02-25 21:25:08.271639014 +0100 @@ -1,7 +1,7 @@ # # spec file for package terminology # -# Copyright (c) 2020 SUSE LLC +# Copyright (c) 2022 SUSE LLC # # All modifications and additions to the file contributed by third parties # remain the property of their copyright owners, unless otherwise agreed @@ -23,7 +23,7 @@ %define e_branding_version 0.1 %endif Name: terminology -Version: 1.8.1 +Version: 1.12.1 Release: 0 Summary: EFL based terminal emulator License: BSD-2-Clause AND OFL-1.1 @@ -31,6 +31,7 @@ URL: http://enlightenment.org Source: https://download.enlightenment.org/rel/apps/terminology/%{name}-%{version}.tar.xz Patch0: fix-desktop.patch +Patch1: fix-colorscheme-name-typo.patch BuildRequires: ImageMagick BuildRequires: hicolor-icon-theme BuildRequires: meson >= 0.40.1 @@ -58,6 +59,7 @@ Conflicts: evas-generic-loaders < 1.8.0 %if 0%{?suse_version} Recommends: evas-generic-loaders >= 1.8.0 +Recommends: terminology-theme-Flat Recommends: terminology-theme-dark Recommends: terminology-theme-misc Recommends: terminology-theme-openSUSE @@ -87,12 +89,12 @@ Use the Dark theme instead. -%package theme-dark -Summary: Default terminology theme(Dark) +%package theme-Flat +Summary: Default terminology theme(Flat) Group: System/X11/Terminals Provides: terminology-theme -%description theme-dark +%description theme-Flat The default theme for terminology install when using openSUSE branding. %package theme-misc @@ -121,7 +123,8 @@ sed -i 's/.png[[:blank:]]*$//' %{buildroot}%{_datadir}/applications/%{name}.desktop # make 2 copys of default for branding -cp %{buildroot}%{_datadir}/%{name}/themes/default.edj %{buildroot}%{_datadir}/%{name}/themes/dark.edj +cp %{buildroot}%{_datadir}/%{name}/themes/default.edj %{buildroot}%{_datadir}/%{name}/themes/Flat.edj +cp %{buildroot}%{_datadir}/%{name}/colorschemes/Default.eet %{buildroot}%{_datadir}/%{name}/colorschemes/Flat.eet %find_lang %{name} %if 0%{?suse_version} @@ -151,16 +154,19 @@ %{_mandir}/man?/terminology*.?z %{_mandir}/man?/ty*.?z %exclude %{_datadir}/%{name}/themes/* +%exclude %{_datadir}/%{name}/colorschemes/* %files theme-upstream %{_datadir}/%{name}/themes/default.edj +%{_datadir}/%{name}/colorschemes/Default.eet -%files theme-dark -%{_datadir}/%{name}/themes/dark.edj +%files theme-Flat +%{_datadir}/%{name}/themes/Flat.edj +%{_datadir}/%{name}/colorschemes/Flat.eet %files theme-misc %{_datadir}/%{name}/themes/* -%exclude %{_datadir}/%{name}/themes/dark.edj +%exclude %{_datadir}/%{name}/themes/Flat.edj %exclude %{_datadir}/%{name}/themes/default.edj %{?suse_version:%files lang -f %{name}.lang} ++++++ fix-colorscheme-name-typo.patch ++++++ commit e66e254e0accb6479d447548492a1db322473cbb Author: Boris Faure <bill...@gmail.com> Date: Thu Jan 13 20:37:57 2022 +0100 colors: fix typo diff --git a/src/bin/colors.c b/src/bin/colors.c index 01037eb1..5001741c 100644 --- a/src/bin/colors.c +++ b/src/bin/colors.c @@ -748,7 +748,7 @@ color_scheme_list(void) /* Search homedir first, so color classes there get used */ snprintf(buf, sizeof(buf) - 1, - "%s/terminology/colorchemes", + "%s/terminology/colorschemes", efreet_config_home_get()); search_paths = eina_list_append(search_paths, eina_stringshare_add(buf)); snprintf(buf, sizeof(buf) - 1, ++++++ fix-desktop.patch ++++++ --- /var/tmp/diff_new_pack.vuh80d/_old 2022-02-25 21:25:08.299639018 +0100 +++ /var/tmp/diff_new_pack.vuh80d/_new 2022-02-25 21:25:08.299639018 +0100 @@ -1,8 +1,8 @@ -Index: terminology-1.8.1/data/desktop/terminology.desktop.in +Index: terminology-1.11.0/data/desktop/terminology.desktop =================================================================== ---- terminology-1.8.1.orig/data/desktop/terminology.desktop.in -+++ terminology-1.8.1/data/desktop/terminology.desktop.in -@@ -3,11 +3,11 @@ +--- terminology-1.11.0.orig/data/desktop/terminology.desktop ++++ terminology-1.11.0/data/desktop/terminology.desktop +@@ -3,10 +3,10 @@ Type=Application Name=Terminology Name[ko]=??????????????? @@ -10,21 +10,11 @@ -#GenericName[eo]=Terminalo -#GenericName[it]=Terminale -#GenericName[ru]=???????????????? --#GenericName[ko]=????????? +GenericName=Terminal +GenericName[eo]=Terminalo +GenericName[it]=Terminale +GenericName[ru]=???????????????? -+GenericName[ko]=????????? + #GenericName[ko]=????????? Comment=Terminal emulator Comment[da]=Terminalemulator - Comment[eo]=Terminalimitilo -@@ -20,6 +20,6 @@ Comment[ru]=???????????????? ??????????? - Comment[ko]=????????? ??????????????? - Keywords=shell;prompt;command;commandline; - Exec=terminology --Icon=%ICON_PATH%/terminology.png -+Icon=terminology - Categories=System;TerminalEmulator; - StartupWMClass=terminology ++++++ terminology-1.8.1.tar.xz -> terminology-1.12.1.tar.xz ++++++ ++++ 78525 lines of diff (skipped)