Skip to content

Commit

Permalink
VNC installation: Removed xorg-x11 package from the needed package li…
Browse files Browse the repository at this point in the history
…st (bsc#1172459) (#538)
  • Loading branch information
schubi2 committed Oct 12, 2020
1 parent fb943b8 commit 44b4c11
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 3 deletions.
7 changes: 7 additions & 0 deletions package/yast2-packager.changes
@@ -1,3 +1,10 @@
-------------------------------------------------------------------
Mon Oct 12 11:39:08 CEST 2020 - schubi@suse.de

- VNC installation: Removed xorg-x11 package from the needed
package list (bsc#1172459).
- 4.3.9

-------------------------------------------------------------------
Mon Sep 21 08:30:04 UTC 2020 - Ladislav Slezák <lslezak@suse.cz>

Expand Down
2 changes: 1 addition & 1 deletion package/yast2-packager.spec
Expand Up @@ -17,7 +17,7 @@


Name: yast2-packager
Version: 4.3.8
Version: 4.3.9
Release: 0
Summary: YaST2 - Package Library
License: GPL-2.0-or-later
Expand Down
2 changes: 1 addition & 1 deletion src/modules/Packages.rb
Expand Up @@ -25,7 +25,7 @@ class PackagesClass < Module
RESOLVABLE_TYPES = [:product, :patch, :package, :pattern, :language].freeze

# Minimum set of packages tags required to enable VNC server
VNC_BASE_TAGS = ["xorg-x11", "xorg-x11-Xvnc", "xorg-x11-fonts"].freeze
VNC_BASE_TAGS = ["xorg-x11-Xvnc", "xorg-x11-fonts"].freeze
# Additional packages tags needed to run second stage in graphical mode
AUTOYAST_X11_TAGS = ["libyui-qt", "yast2-x11"].freeze
# Default window manager for VNC if none is installed
Expand Down
2 changes: 1 addition & 1 deletion test/packages_test.rb
Expand Up @@ -686,7 +686,7 @@ def package(properties = {})

describe "#vnc_packages" do
let(:packages) { Yast::Packages.vnc_packages.sort.uniq }
let(:base_packages) { ["xorg-x11", "xorg-x11-Xvnc", "xorg-x11-fonts"] }
let(:base_packages) { ["xorg-x11-Xvnc", "xorg-x11-fonts"] }
let(:base_packages_and_wm) { ["icewm"] + base_packages }
let(:autoyast_x11_packages) { ["libyui-qt6", "yast2-x11"] }

Expand Down

0 comments on commit 44b4c11

Please sign in to comment.