Accepting request 1112408 from GNOME:Factory
Forwarded request #1112343 from jengelh - Let the description point out details distinguishing this terminal emulator from others. OBS-URL: https://build.opensuse.org/request/show/1112408 OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/gnome-terminal?expand=0&rev=153
This commit is contained in:
commit
a8fc3d817e
4
_service
4
_service
@ -5,12 +5,12 @@
|
||||
<param name="scm">git</param>
|
||||
<param name="versionformat">@PARENT_TAG@</param>
|
||||
<param name="changesgenerate">enable</param>
|
||||
<param name="revision">refs/tags/3.48.2</param>
|
||||
<param name="revision">refs/tags/3.50.0</param>
|
||||
</service>
|
||||
<service name="tar" mode="buildtime" />
|
||||
<service name="recompress" mode="buildtime">
|
||||
<param name="file">*.tar</param>
|
||||
<param name="compression">xz</param>
|
||||
<param name="compression">zst</param>
|
||||
</service>
|
||||
<service name="set_version" mode="manual"/>
|
||||
</services>
|
||||
|
@ -1,4 +1,4 @@
|
||||
<servicedata>
|
||||
<service name="tar_scm">
|
||||
<param name="url">https://gitlab.gnome.org/GNOME/gnome-terminal.git</param>
|
||||
<param name="changesrevision">34572eea23a99f1572808d7d2b42af4c8b8b396c</param></service></servicedata>
|
||||
<param name="changesrevision">f474a6fc149feabbb7e8e4d9587233e258bcc76f</param></service></servicedata>
|
@ -1,3 +0,0 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:aa42963756db04ba5bbb627b628485f45227b8cb2e6e6c0f9448799135a31521
|
||||
size 14275085
|
3
gnome-terminal-3.50.0.obscpio
Normal file
3
gnome-terminal-3.50.0.obscpio
Normal file
@ -0,0 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:7e4094dd27025afc380ca23ed41d8f9ded46060e195a7647939f5150ae7f28f7
|
||||
size 14359053
|
@ -1,3 +1,46 @@
|
||||
-------------------------------------------------------------------
|
||||
Tue Sep 19 16:21:52 UTC 2023 - Jan Engelhardt <jengelh@inai.de>
|
||||
|
||||
- Let the description point out details distinguishing this
|
||||
terminal emulator from others.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Sun Sep 17 18:19:16 UTC 2023 - bjorn.lie@gmail.com
|
||||
|
||||
- Update to version 3.50.0:
|
||||
* search: Mark search provider as no autostart
|
||||
* Revert "screen: Use clean env when creating new tab"
|
||||
* Updated translations.
|
||||
- Change compression in service and tarball produced to zst.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Sun Sep 03 12:52:50 UTC 2023 - bjorn.lie@gmail.com
|
||||
|
||||
- Update to version 3.49.99:
|
||||
* search: Mark search provider as no autostart
|
||||
* Revert "screen: Use clean env when creating new tab"
|
||||
* Updated translations.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Tue Aug 29 06:46:00 UTC 2023 - bjorn.lie@gmail.com
|
||||
|
||||
- Update to version 3.49.92:
|
||||
+ build:
|
||||
- Bump vte req version
|
||||
- More detailed version info
|
||||
+ debug: Move debug print to right branch
|
||||
+ docs: Document new color schemes
|
||||
+ help: Add help translation for TR locale
|
||||
+ prefs: Update theme variant names
|
||||
+ server:
|
||||
- Add theme style support
|
||||
- Block pk-gtk module
|
||||
- More env var sanitisation
|
||||
+ util: Also check /usr/etc for xdg-terminal-exec configuration
|
||||
+ window: Add a11y labels to the headerbar buttons
|
||||
+ Updated translations.
|
||||
- Add pkgconfig(libhandy-1) BuildRequires: New dependency.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Sun Aug 06 16:03:51 UTC 2023 - bjorn.lie@gmail.com
|
||||
|
||||
|
@ -1,4 +1,4 @@
|
||||
name: gnome-terminal
|
||||
version: 3.48.2
|
||||
mtime: 1687254723
|
||||
commit: 34572eea23a99f1572808d7d2b42af4c8b8b396c
|
||||
version: 3.50.0
|
||||
mtime: 1694535448
|
||||
commit: f474a6fc149feabbb7e8e4d9587233e258bcc76f
|
||||
|
@ -18,13 +18,13 @@
|
||||
|
||||
%bcond_without nautilus_extension
|
||||
Name: gnome-terminal
|
||||
Version: 3.48.2
|
||||
Version: 3.50.0
|
||||
Release: 0
|
||||
Summary: GNOME Terminal
|
||||
License: GPL-3.0-or-later AND LGPL-2.1-or-later
|
||||
Group: System/X11/Terminals
|
||||
URL: https://wiki.gnome.org/Apps/Terminal
|
||||
Source0: %{name}-%{version}.tar.xz
|
||||
Source0: %{name}-%{version}.tar.zst
|
||||
|
||||
BuildRequires: appstream-glib
|
||||
BuildRequires: desktop-file-utils
|
||||
@ -35,16 +35,17 @@ BuildRequires: gcc-c++
|
||||
# we have to take this up with upstream, or just provide search
|
||||
# provider interface definition file as source.
|
||||
BuildRequires: gnome-shell
|
||||
BuildRequires: meson
|
||||
BuildRequires: meson >= 0.62.0
|
||||
BuildRequires: pkgconfig
|
||||
BuildRequires: update-desktop-files
|
||||
BuildRequires: yelp-tools
|
||||
BuildRequires: pkgconfig(dconf) >= 0.14.0
|
||||
BuildRequires: pkgconfig(gio-2.0) >= 2.34.0
|
||||
BuildRequires: pkgconfig(gio-2.0) >= 2.52.0
|
||||
BuildRequires: pkgconfig(gio-unix-2.0)
|
||||
BuildRequires: pkgconfig(glib-2.0) >= 2.50
|
||||
BuildRequires: pkgconfig(glib-2.0) >= 2.52
|
||||
BuildRequires: pkgconfig(gsettings-desktop-schemas) >= 0.1.0
|
||||
BuildRequires: pkgconfig(gtk+-3.0) >= 3.18
|
||||
BuildRequires: pkgconfig(libhandy-1)
|
||||
%if %{with nautilus_extension}
|
||||
BuildRequires: pkgconfig(libnautilus-extension-4)
|
||||
%endif
|
||||
@ -57,8 +58,12 @@ Requires(pre): filesystem
|
||||
%description
|
||||
This package provides the GNOME terminal emulator application.
|
||||
|
||||
GNOME Terminal uses an architecture with a background process
|
||||
managing all open terminal windows, which is beneficial to
|
||||
memory consumption.
|
||||
|
||||
%package -n gnome-shell-search-provider-gnome-terminal
|
||||
Summary: GNOME Terminal -- Search Provider for GNOME Shell
|
||||
Summary: GNOME Terminal Search Provider for GNOME Shell
|
||||
Group: System/X11/Terminals
|
||||
Requires: %{name} = %{version}
|
||||
Supplements: (gnome-shell and %{name})
|
||||
@ -69,7 +74,7 @@ This package contains a search provider to enable GNOME Shell to get
|
||||
search results from GNOME Terminal.
|
||||
|
||||
%package -n nautilus-extension-terminal
|
||||
Summary: Nautilus Extension to Open Terminal in Folders
|
||||
Summary: Nautilus extension adding "Open Terminal" as folder action
|
||||
Group: System/GUI/GNOME
|
||||
Supplements: (nautilus and %{name})
|
||||
# nautilus-open-terminal was merged into gnome-terminal source during 3.9 development.
|
||||
|
Loading…
Reference in New Issue
Block a user