diff --git a/Fix-the-visibility-of-the-new-terminal-mode.patch b/Fix-the-visibility-of-the-new-terminal-mode.patch new file mode 100644 index 0000000000000000000000000000000000000000..2ae2c2d14bbe84cc4171ce10d927accccb341cdb --- /dev/null +++ b/Fix-the-visibility-of-the-new-terminal-mode.patch @@ -0,0 +1,52 @@ +From b99cbf89328d978c57a69413d76e1670316615ab Mon Sep 17 00:00:00 2001 +From: Debarshi Ray +Date: Wed, 28 Mar 2018 18:50:16 +0200 +Subject: [PATCH 07/15] prefs: Fix the visibility of the new-terminal-mode + GSetting UI + +... when the new-terminal menus are disunified. + +Since it's not possible to use DISUNIFY_NEW_TERMINAL_SECTION, it +should check the unified-menu GSetting instead. + +Fallout from 30efce621ad04276771aa311f52731b468c4adfd + +https://gitlab.gnome.org/GNOME/gnome-terminal/issues/37 +--- + src/terminal-prefs.c | 20 ++++++++++---------- + 1 file changed, 10 insertions(+), 10 deletions(-) + +diff --git a/src/terminal-prefs.c b/src/terminal-prefs.c +index 5bc7718632f2..1cccfa923dd3 100644 +--- a/src/terminal-prefs.c ++++ b/src/terminal-prefs.c +@@ -849,16 +849,16 @@ terminal_prefs_show_preferences (GSettings *profile, const char *widget_name) + gtk_widget_set_visible (theme_variant_combo, FALSE); + #endif /* GTK+ 3.19 */ + +-#ifndef DISUNIFY_NEW_TERMINAL_SECTION +- g_settings_bind (settings, +- TERMINAL_SETTING_NEW_TERMINAL_MODE_KEY, +- new_terminal_mode_combo, +- "active-id", +- G_SETTINGS_BIND_GET | G_SETTINGS_BIND_SET); +-#else +- gtk_widget_set_visible (new_terminal_mode_label, FALSE); +- gtk_widget_set_visible (new_terminal_mode_combo, FALSE); +-#endif ++ if (terminal_app_get_menu_unified (app)) { ++ g_settings_bind (settings, ++ TERMINAL_SETTING_NEW_TERMINAL_MODE_KEY, ++ new_terminal_mode_combo, ++ "active-id", ++ G_SETTINGS_BIND_GET | G_SETTINGS_BIND_SET); ++ } else { ++ gtk_widget_set_visible (new_terminal_mode_label, FALSE); ++ gtk_widget_set_visible (new_terminal_mode_combo, FALSE); ++ } + + if (shell_shows_menubar) { + gtk_widget_set_visible (disable_mnemonics_button, FALSE); +-- +2.14.4 + diff --git a/README.en.md b/README.en.md deleted file mode 100644 index ce92ace9ab5c00115830b1949277916de0957d66..0000000000000000000000000000000000000000 --- a/README.en.md +++ /dev/null @@ -1,36 +0,0 @@ -# gnome-terminal - -#### Description -{**When you're done, you can delete the content in this README and update the file with details for others getting started with your repository**} - -#### Software Architecture -Software architecture description - -#### Installation - -1. xxxx -2. xxxx -3. xxxx - -#### Instructions - -1. xxxx -2. xxxx -3. xxxx - -#### Contribution - -1. Fork the repository -2. Create Feat_xxx branch -3. Commit your code -4. Create Pull Request - - -#### Gitee Feature - -1. You can use Readme\_XXX.md to support different languages, such as Readme\_en.md, Readme\_zh.md -2. Gitee blog [blog.gitee.com](https://blog.gitee.com) -3. Explore open source project [https://gitee.com/explore](https://gitee.com/explore) -4. The most valuable open source project [GVP](https://gitee.com/gvp) -5. The manual of Gitee [https://gitee.com/help](https://gitee.com/help) -6. The most popular members [https://gitee.com/gitee-stars/](https://gitee.com/gitee-stars/) diff --git a/README.md b/README.md deleted file mode 100644 index 407992c56bfbf328019d561b289ce162be08b48f..0000000000000000000000000000000000000000 --- a/README.md +++ /dev/null @@ -1,39 +0,0 @@ -# gnome-terminal - -#### 介绍 -{**以下是码云平台说明,您可以替换此简介** -码云是 OSCHINA 推出的基于 Git 的代码托管平台(同时支持 SVN)。专为开发者提供稳定、高效、安全的云端软件开发协作平台 -无论是个人、团队、或是企业,都能够用码云实现代码托管、项目管理、协作开发。企业项目请看 [https://gitee.com/enterprises](https://gitee.com/enterprises)} - -#### 软件架构 -软件架构说明 - - -#### 安装教程 - -1. xxxx -2. xxxx -3. xxxx - -#### 使用说明 - -1. xxxx -2. xxxx -3. xxxx - -#### 参与贡献 - -1. Fork 本仓库 -2. 新建 Feat_xxx 分支 -3. 提交代码 -4. 新建 Pull Request - - -#### 码云特技 - -1. 使用 Readme\_XXX.md 来支持不同的语言,例如 Readme\_en.md, Readme\_zh.md -2. 码云官方博客 [blog.gitee.com](https://blog.gitee.com) -3. 你可以 [https://gitee.com/explore](https://gitee.com/explore) 这个地址来了解码云上的优秀开源项目 -4. [GVP](https://gitee.com/gvp) 全称是码云最有价值开源项目,是码云综合评定出的优秀开源项目 -5. 码云官方提供的使用手册 [https://gitee.com/help](https://gitee.com/help) -6. 码云封面人物是一档用来展示码云会员风采的栏目 [https://gitee.com/gitee-stars/](https://gitee.com/gitee-stars/) diff --git a/gnome-terminal-3.30.1.tar.xz b/gnome-terminal-3.30.1.tar.xz new file mode 100644 index 0000000000000000000000000000000000000000..03bc3fa670e7954db5af7f0d3f66dc7967a897c7 Binary files /dev/null and b/gnome-terminal-3.30.1.tar.xz differ diff --git a/gnome-terminal.spec b/gnome-terminal.spec new file mode 100644 index 0000000000000000000000000000000000000000..8ed9dea746512cea9b41ad1e248d2d9a582b54eb --- /dev/null +++ b/gnome-terminal.spec @@ -0,0 +1,71 @@ +Name: gnome-terminal +Version: 3.30.1 +Release: 3 +Summary: A terminal emulator for GNOME +License: GPLv3+ and GFDL and LGPLv2+ +URL: http://www.gnome.org/ +Source0: http://download.gnome.org/sources/gnome-terminal/3.30/gnome-terminal-%{version}.tar.xz + +Patch0000: Fix-the-visibility-of-the-new-terminal-mode.patch + +BuildRequires: glib2-devel gtk3-devel gsettings-desktop-schemas-devel +BuildRequires: desktop-file-utils gettext intltool gnome-common autoconf automake +BuildRequires: systemd libtool itstool dconf-devel libuuid-devel nautilus-devel +BuildRequires: gnome-shell pcre2-devel vala-devel vte291-devel + +Requires: dbus-x11 glib2%{?_isa} gsettings-desktop-schemas gtk3%{?_isa} vte291%{?_isa} + +Provides: %{name}-nautilus nautilus-open-terminal +Obsoletes: %{name}-nautilus nautilus-open-terminal + +%description +This package provides a terminal emulator application for GNOME. + +%prep +%autosetup -n %{name}-%{version} -p1 + +%build +autoreconf -f -i +%configure \ + --disable-silent-rules \ + --disable-static \ + --with-gtk=3.0 \ + --with-nautilus-extension +%make_build + +%install +%make_install + +%delete_la + +%find_lang %{name} --with-gnome + +%check +make check + +%pre + +%preun + +%post + +%postun + +%files -f %{name}.lang +%defattr(-,root,root) +%license COPYING AUTHORS +%doc NEWS +%{_bindir}/gnome-terminal +%{_datadir}/metainfo/org.gnome.Terminal.appdata.xml +%{_datadir}/applications/org.gnome.Terminal.desktop +%{_datadir}/dbus-1/services/org.gnome.Terminal.service +%{_datadir}/glib-2.0/schemas/org.gnome.Terminal.gschema.xml +%{_datadir}/gnome-shell +%{_datadir}/metainfo/org.gnome.Terminal.Nautilus.metainfo.xml +%{_libexecdir}/gnome-terminal-server +%{_libdir}/nautilus/extensions-3.0/libterminal-nautilus.so +%{_userunitdir}/gnome-terminal-server.service + +%changelog +* Mon Nov 18 2019 openEuler Buildteam - 3.30.1-3 +- Package init