From 28e422dc1d368d24fde8fe06259fd848f2ee8d0a Mon Sep 17 00:00:00 2001 From: zhangrui Date: Mon, 30 Dec 2019 11:37:55 +0800 Subject: [PATCH] init --- anaconda.spec | 9 ++++++++- bugfix-fix-vender-issue.patch | 13 +++++++++++++ 2 files changed, 21 insertions(+), 1 deletion(-) create mode 100644 bugfix-fix-vender-issue.patch diff --git a/anaconda.spec b/anaconda.spec index bd6cea2..37a829b 100644 --- a/anaconda.spec +++ b/anaconda.spec @@ -3,7 +3,7 @@ Name: anaconda Version: 29.24.7 -Release: 14 +Release: 15 Summary: Graphical system installer License: GPLv2+ and MIT URL: https://fedoraproject.org/wiki/Anaconda @@ -37,6 +37,7 @@ Patch9019: anaconda-change-topbar-background-size.patch Patch9020: anaconda-hide-help-button.patch Patch9021: anaconda-add-quiet-cmdline-args-for-x86.patch Patch9022: anaconda-modify-interface-is-extended-in-Chinese-mod.patch +Patch9023: bugfix-fix-vender-issue.patch BuildRequires: audit-libs-devel libtool gettext-devel >= 0.19.8 gtk3-devel >= 3.22.17 BuildRequires: gtk-doc gtk3-devel-docs >= 3.22.17 glib2-doc gobject-introspection-devel @@ -209,6 +210,12 @@ update-desktop-database &> /dev/null || : %{_datadir}/gtk-doc %changelog +* Mon Dec 30 2019 openEuler Buildteam - 29.24.7-15 +- Type:bugfix +- ID:NA +- SUG:NA +- DESC:fix bug + * Mon Dec 23 2019 openEuler Buildteam - 29.24.7-14 - Type:bugfix - ID:NA diff --git a/bugfix-fix-vender-issue.patch b/bugfix-fix-vender-issue.patch new file mode 100644 index 0000000..7588845 --- /dev/null +++ b/bugfix-fix-vender-issue.patch @@ -0,0 +1,13 @@ +diff -uNrp a/pyanaconda/ui/gui/spokes/network.py b/pyanaconda/ui/gui/spokes/network.py +--- a/pyanaconda/ui/gui/spokes/network.py 2018-07-25 21:58:20.000000000 +0800 ++++ b/pyanaconda/ui/gui/spokes/network.py 2019-12-30 11:17:45.001615749 +0800 +@@ -878,8 +878,7 @@ class NetworkControlBox(GObject.GObject) + + if dev_cfg.device: + title += '\n%s %s' % \ +- (escape_markup(dev_cfg.device.get_vendor() or ""), +- escape_markup(dev_cfg.device.get_product() or "")) ++ (escape_markup(dev_cfg.device.get_product() or "")) + return title + + def dev_cfg(self, uuid=None, device=None, iface=None): -- Gitee