Update to 3.29.92
- Rebase transparency, command-notify, custom title and translation patches - Remove upstreamed patches
This commit is contained in:
parent
c8bd62d41d
commit
8373fb3af5
1
.gitignore
vendored
1
.gitignore
vendored
@ -80,3 +80,4 @@ gnome-terminal-2.31.3.tar.bz2
|
||||
/gnome-terminal-3.27.90.tar.xz
|
||||
/gnome-terminal-3.28.1.tar.xz
|
||||
/gnome-terminal-3.28.2.tar.xz
|
||||
/gnome-terminal-3.29.92.tar.xz
|
||||
|
@ -1,28 +0,0 @@
|
||||
From 2f7053f5fa9154437b9397cd204a38e2686107bc Mon Sep 17 00:00:00 2001
|
||||
From: Christian Persch <chpe@src.gnome.org>
|
||||
Date: Tue, 29 May 2018 10:47:22 +0200
|
||||
Subject: [PATCH] client: legacy: Fix invalid free
|
||||
|
||||
Use g_free() for memory allocated with g_new().
|
||||
|
||||
https://gitlab.gnome.org/GNOME/gnome-terminal/issues/1
|
||||
---
|
||||
src/terminal-options.c | 2 +-
|
||||
1 file changed, 1 insertion(+), 1 deletion(-)
|
||||
|
||||
diff --git a/src/terminal-options.c b/src/terminal-options.c
|
||||
index d1e8a4a4ca48..83ead8909a52 100644
|
||||
--- a/src/terminal-options.c
|
||||
+++ b/src/terminal-options.c
|
||||
@@ -1277,7 +1277,7 @@ terminal_options_free (TerminalOptions *options)
|
||||
|
||||
g_clear_object (&options->profiles_list);
|
||||
|
||||
- g_slice_free (TerminalOptions, options);
|
||||
+ g_free (options);
|
||||
}
|
||||
|
||||
static GOptionContext *
|
||||
--
|
||||
2.14.3
|
||||
|
File diff suppressed because it is too large
Load Diff
@ -2,12 +2,12 @@
|
||||
|
||||
%define glib2_version 2.50.0
|
||||
%define gtk3_version 3.22.27
|
||||
%define vte_version 0.52.2
|
||||
%define vte_version 0.53.92
|
||||
%define desktop_file_utils_version 0.2.90
|
||||
|
||||
Name: gnome-terminal
|
||||
Version: 3.28.2
|
||||
Release: 4%{?dist}
|
||||
Version: 3.29.92
|
||||
Release: 1%{?dist}
|
||||
Summary: Terminal emulator for GNOME
|
||||
|
||||
License: GPLv3+ and GFDL and LGPLv2+
|
||||
@ -15,8 +15,6 @@ URL: http://www.gnome.org/
|
||||
Source0: http://download.gnome.org/sources/gnome-terminal/3.28/gnome-terminal-%{version}.tar.xz
|
||||
Source1: org.gnome.Terminal.gschema.override
|
||||
|
||||
Patch0: 0001-client-legacy-Fix-invalid-free.patch
|
||||
|
||||
Patch100: gnome-terminal-notify-open-title-transparency.patch
|
||||
Patch101: 0001-build-Don-t-treat-warnings-as-errors.patch
|
||||
|
||||
@ -61,15 +59,18 @@ option to the right-click context menu in Nautilus.
|
||||
|
||||
%prep
|
||||
%setup -q
|
||||
%patch0 -p1 -b .client-free
|
||||
%patch100 -p1 -b .notify-open-title-transparency
|
||||
%patch101 -p1 -b .warnings
|
||||
|
||||
%build
|
||||
autoreconf -f -i
|
||||
%configure --disable-static --disable-migration --with-gtk=3.0 --with-nautilus-extension
|
||||
%configure \
|
||||
--disable-silent-rules \
|
||||
--disable-static \
|
||||
--with-gtk=3.0 \
|
||||
--with-nautilus-extension
|
||||
|
||||
make %{?_smp_mflags}
|
||||
%make_build
|
||||
|
||||
%install
|
||||
%make_install
|
||||
@ -103,6 +104,11 @@ make check
|
||||
%{_datadir}/metainfo/org.gnome.Terminal.Nautilus.metainfo.xml
|
||||
|
||||
%changelog
|
||||
* Fri Oct 05 2018 Debarshi Ray <rishi@fedoraproject.org> - 3.29.92-1
|
||||
- Update to 3.29.92
|
||||
- Rebase transparency, command-notify, custom title and translation patches
|
||||
- Remove upstreamed patches
|
||||
|
||||
* Fri Jul 27 2018 Debarshi Ray <rishi@fedoraproject.org> - 3.28.2-4
|
||||
- Include LGPLv2+ in the list of licenses
|
||||
|
||||
|
2
sources
2
sources
@ -1 +1 @@
|
||||
SHA512 (gnome-terminal-3.28.2.tar.xz) = a20fe13fd2e533a90236410ce6ddd11e4da9da13f2d8952baa3cbf07379dbe253cf897b596421852084bbfc000264de11fb605c73909af8188baa93e46ddae8f
|
||||
SHA512 (gnome-terminal-3.29.92.tar.xz) = 1228c37041ce90b755c37d992ae01ef7e4354fe63da4c7e4d38d4073b7ebf30cfa6fde4a12375a67e3f18f04e41a92ce3ef0b94722c0bdc783f63baca72f589b
|
||||
|
Loading…
Reference in New Issue
Block a user