MeanEYE / Sunflower

Small and highly customizable twin-panel file manager for Linux with support for plugins.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Launching on Void Linux doesn't do anything

reback00 opened this issue · comments

I am trying to create a package for Sunflower to be used in Void Linux. I've got to this template so far:

# Template file for 'sunflower'
pkgname=sunflower
version=0.4
revision=1
_version_append_revision="-62"
wrksrc="Sunflower-${version}${_version_append_revision}"
build_style=python3-module
make_install_args="--optimize=1 --skip-build"
hostmakedepends="libnotify python3-setuptools python3-gobject gtk+3-devel python3-chardet"
makedepends="vte3-devel"
depends="gtk+3 vte3 python3-gobject python3-chardet librsvg"
short_desc="Small, customizable dual-panel file manager with support for plugins"
maintainer="reback00 <reback00@protonmail.com>"
license="GPL-3.0-or-later"
homepage="https://sunflower-fm.org"
distfiles="https://github.com/MeanEYE/Sunflower/archive/${version}${_version_append_revision}.tar.gz"
checksum=76f6e16a8e2761a13cfde56c5ee3625afd7e7286942ef75d67eca65384214b14
python_version=3

It builds just fine. But when I install the package and launch sunflower it doesn't show anything. If I run sunflower from terminal it doesn't show any message, gets stuck. Pressing Ctrl+C doesn't even work. I have to close the terminal tab. Am I doing anything wrong? Maybe any missing dependencies?

EDIT: Having build_style=python3-module runs it through this file.

To test on Void Linux
sudo xbps-install xtools
git clone --depth 1 https://github.com/void-linux/void-packages
cd void-packages
./xbps-src binary-bootstrap
# Put the above template on "srcpkgs/sunflower/template"
./xbps-src pkg sunflower  # to generate package
xi sunflower  # to install

Can you try with development branch? 0.4 is some changes back and it might be something we've fixed already. There's no need to build, just clone directory and then run python3 -m sunflower from the directory.

Yes. It works on develop branch. python3 -m sunflower launches as expected. But when I tried an xbps build from the develop branch it raised this error:

$ sunflower 
Traceback (most recent call last):
  File "/usr/lib/python3.8/site-packages/sunflower/__main__.py", line 163, in do_activate
    self.window = MainWindow(
  File "/usr/lib/python3.8/site-packages/sunflower/gui/main_window.py", line 85, in __init__
    self._load_styles()
  File "/usr/lib/python3.8/site-packages/sunflower/gui/main_window.py", line 928, in _load_styles
    provider.load_from_file(Gio.File.new_for_path(file_name))
gi.repository.GLib.Error: gtk-css-provider-error-quark: <broken file>:1:0Failed to import: Error opening file /bin/styles/main.css: No such file or directory (2)

Tried with these changes:

diff --git a/template b/template
index 81adf03..e567231 100644
--- a/template
+++ b/template
@@ -3,7 +3,7 @@ pkgname=sunflower
 version=0.4
 revision=1
 _version_append_revision="-62"
-wrksrc="Sunflower-${version}${_version_append_revision}"
+wrksrc="Sunflower-develop"
 build_style=python3-module
 make_install_args="--optimize=1 --skip-build"
 hostmakedepends="libnotify python3-setuptools python3-gobject gtk+3-devel python3-chardet"
@@ -13,6 +13,6 @@ short_desc="Small, customizable dual-panel file manager with support for plugins
 maintainer="reback00 <reback00@protonmail.com>"
 license="GPL-3.0-or-later"
 homepage="https://sunflower-fm.org"
-distfiles="https://github.com/MeanEYE/Sunflower/archive/${version}${_version_append_revision}.tar.gz"
-checksum=76f6e16a8e2761a13cfde56c5ee3625afd7e7286942ef75d67eca65384214b14
+distfiles="https://github.com/MeanEYE/Sunflower/archive/develop.tar.gz"
+checksum=@43b8109f3cb0f4a1d8957f091d124cdee4a3a31b0e2aff74df879641f429503e
 python_version=3

There is an update about the path error I got for main.css above. I tried to apply a hardcoded change in the path to push it to the right path and it worked. I tried this patch in the patches directory (and added patch_args="-Np1" to template):

diff -Nur Sunflower-develop/sunflower/gui/main_window.py Sunflower-develop-b/sunflower/gui/main_window.py
--- Sunflower-develop/sunflower/gui/main_window.py	2020-10-03 22:31:01.000000000 +0600
+++ Sunflower-develop-b/sunflower/gui/main_window.py	2020-10-05 17:10:16.222109533 +0600
@@ -916,13 +916,13 @@
 		# try loading from zip file
 		if os.path.isfile(sys.path[0]) and sys.path[0] != '':
 			archive = zipfile.ZipFile(sys.path[0])
-			with archive.open('styles/main.css') as raw_file:
+			with archive.open('/usr/share/sunflower/styles/main.css') as raw_file:
 				provider.load_from_data(raw_file.read())
 			archive.close()
 
 		# load styles from a file
 		else:
-			file_name = os.path.join(common.get_static_assets_directory(), 'styles', 'main.css')
+			file_name = os.path.join('/usr/share/sunflower/styles/main.css')
 			provider.load_from_file(Gio.File.new_for_path(file_name))
 
 		# apply styles

With some trials I found out that if I only apply the first change, it doesn't work. I had to change it in the file_name line also. I have limited python knowledge, but maybe the common.get_static_assets_directory() is not working to return the correct path. Can you maybe give me a hint if this can be solved without the patch? I'm not sure if hardcoding the path is a good idea.

Also, Void Linux seems to only allow stable releases for their packages. Can the changes in devel be merged with master, preferably with a new release?

On my Void Linux sys.prefix returns '/usr':

$ python3
Python 3.8.6 (default, Oct  2 2020, 14:01:10) 
[GCC 9.3.0] on linux
Type "help", "copyright", "credits" or "license" for more information.
>>> import sys
>>> sys.prefix
'/usr'

Hm, so does on mine. What does that build do? Is it by any chance installing using setup.py?

Yeah. It runs setup.py. It does it through this file because we have build_style=python3-module set on the template. (Details about XBPS build system is available here in case you need it.) It's basically doing the same thing as the arch package.

I tried the original release based template from the first post again and it seems to be showing the main.css message now. The issue was about failing silently, without showing any message at all and hanging the terminal session. So that particular issue seems to be fixed.

I am not sure what happened. I did a manual install in the meanwhile, from devel and did a manual cleanup. But I think that's not it. I have a strong reason to believe that some update has fixed the issue because I tried on a second machine that I did not build sunflower before and it's showing the message too. I've updated that machine too. So I think there was some issue with some other package that was causing this.

Until this shows up again, I'm closing this issue and opening a new one for the main.css message.

Hello, I would like to provide the log that I get when building sunflower with the template I have.
Template:

# Template file for 'Sunflower'
pkgname=Sunflower
version=0.4.62
_version=0.4-62
revision=1
wrksrc="${pkgname}-${_version}"
build_style=python3-module
hostmakedepends="python3-chardet"
makedepends="python3-devel python3-gobject-devel gtk+3-devel libnotify-devel gdk-pixbuf-devel vte3-devel glib-devel pango-devel"
depends="python3 python3-gobject python-chardet gtk+3 libnotify gdk-pixbuf vte3 glib pango"
short_desc="Small and highly customizable twin-panel file manager for Linux with support for plugins"
maintainer="tuxliban <tenshalito@gmail.com>"
license="GPL-3.0"
homepage="https://sunflower-fm.org/"
distfiles="https://github.com/MeanEYE/${pkgname}/archive/${_version}.tar.gz"
checksum=76f6e16a8e2761a13cfde56c5ee3625afd7e7286942ef75d67eca65384214b14

Build log

=> xbps-src: updating repositories for host (x86_64-musl)...
[*] Updating repository `https://alpha.de.repo.voidlinux.org/current/musl/x86_64-musl-repodata' ...
[*] Updating repository `https://alpha.de.repo.voidlinux.org/current/musl/nonfree/x86_64-musl-repodata' ...
[*] Updating repository `https://alpha.de.repo.voidlinux.org/current/musl/debug/x86_64-musl-repodata' ...
=> xbps-src: updating software in / masterdir...
=> xbps-src: cleaning up / masterdir...
=> Sunflower-0.4.62_1: removing autodeps, please wait...
=> Sunflower-0.4.62_1: building [python3-module] for x86_64-musl...
   [host] python3-chardet-3.0.4_4: found (https://alpha.de.repo.voidlinux.org/current/musl)
   [target] python3-devel-3.8.6_1: found (https://alpha.de.repo.voidlinux.org/current/musl)
   [target] python3-gobject-devel-3.36.1_1: found (https://alpha.de.repo.voidlinux.org/current/musl)
   [target] gtk+3-devel-3.24.22_1: found (https://alpha.de.repo.voidlinux.org/current/musl)
   [target] libnotify-devel-0.7.9_1: found (https://alpha.de.repo.voidlinux.org/current/musl)
   [target] gdk-pixbuf-devel-2.40.0_2: found (https://alpha.de.repo.voidlinux.org/current/musl)
   [target] vte3-devel-0.62.0_1: found (https://alpha.de.repo.voidlinux.org/current/musl)
   [target] glib-devel-2.66.0_1: found (https://alpha.de.repo.voidlinux.org/current/musl)
   [target] pango-devel-1.46.1_1: found (https://alpha.de.repo.voidlinux.org/current/musl)
   [target] python3-3.8.6_1: found (https://alpha.de.repo.voidlinux.org/current/musl)
   [runtime] python3-3.8.6_1: found (https://alpha.de.repo.voidlinux.org/current/musl)
   [runtime] python3-gobject-3.36.1_1: found (https://alpha.de.repo.voidlinux.org/current/musl)
   [runtime] python-chardet-3.0.4_4: found (https://alpha.de.repo.voidlinux.org/current/musl)
   [runtime] gtk+3-3.24.22_1: found (https://alpha.de.repo.voidlinux.org/current/musl)
   [runtime] libnotify-0.7.9_1: found (https://alpha.de.repo.voidlinux.org/current/musl)
   [runtime] gdk-pixbuf-2.40.0_2: found (https://alpha.de.repo.voidlinux.org/current/musl)
   [runtime] vte3-0.62.0_1: found (https://alpha.de.repo.voidlinux.org/current/musl)
   [runtime] glib-2.66.0_1: found (https://alpha.de.repo.voidlinux.org/current/musl)
   [runtime] pango-1.46.1_1: found (https://alpha.de.repo.voidlinux.org/current/musl)
=> Sunflower-0.4.62_1: installing host dependencies: python3-chardet-3.0.4_4 ...
=> Sunflower-0.4.62_1: installing target dependencies: python3-devel-3.8.6_1 python3-gobject-devel-3.36.1_1 gtk+3-devel-3.24.22_1 libnotify-devel-0.7.9_1 gdk-pixbuf-devel-2.40.0_2 vte3-devel-0.62.0_1 glib-devel-2.66.0_1 pango-devel-1.46.1_1 python3-3.8.6_1 ...
=> Sunflower-0.4.62_1: running do-fetch hook: 00-distfiles ...
=> Sunflower-0.4.62_1: running do-extract hook: 00-distfiles ...
=> Sunflower-0.4.62_1: extracting distfile(s), please wait...
=> Sunflower-0.4.62_1: running do-patch hook: 00-patches ...
=> Sunflower-0.4.62_1: running pre-configure hook: 00-gnu-configure-asneeded ...
=> Sunflower-0.4.62_1: running pre-configure hook: 01-override-config ...
=> Sunflower-0.4.62_1: running pre-configure hook: 02-script-wrapper ...
=> Sunflower-0.4.62_1: running pre-build hook: 02-script-wrapper ...
=> Sunflower-0.4.62_1: running do_build ...
Unable to init server: Could not connect: Connection refused
Unable to init server: Could not connect: Connection refused
running build
running build_py
creating build
creating build/lib
creating build/lib/sunflower
copying sunflower/accelerator_group.py -> build/lib/sunflower
copying sunflower/accelerator_manager.py -> build/lib/sunflower
copying sunflower/toolbar.py -> build/lib/sunflower
copying sunflower/__main__.py -> build/lib/sunflower
copying sunflower/history.py -> build/lib/sunflower
copying sunflower/menus.py -> build/lib/sunflower
copying sunflower/icons.py -> build/lib/sunflower
copying sunflower/emblems.py -> build/lib/sunflower
copying sunflower/notifications.py -> build/lib/sunflower
copying sunflower/config.py -> build/lib/sunflower
copying sunflower/mounts.py -> build/lib/sunflower
copying sunflower/keyring.py -> build/lib/sunflower
copying sunflower/parameters.py -> build/lib/sunflower
copying sunflower/queue.py -> build/lib/sunflower
copying sunflower/__init__.py -> build/lib/sunflower
copying sunflower/common.py -> build/lib/sunflower
copying sunflower/associations.py -> build/lib/sunflower
copying sunflower/operation.py -> build/lib/sunflower
copying sunflower/indicator.py -> build/lib/sunflower
creating build/lib/sunflower/widgets
copying sunflower/widgets/breadcrumbs.py -> build/lib/sunflower/widgets
copying sunflower/widgets/tab_label.py -> build/lib/sunflower/widgets
copying sunflower/widgets/completion_entry.py -> build/lib/sunflower/widgets
copying sunflower/widgets/status_bar.py -> build/lib/sunflower/widgets
copying sunflower/widgets/command_row.py -> build/lib/sunflower/widgets
copying sunflower/widgets/title_bar.py -> build/lib/sunflower/widgets
copying sunflower/widgets/__init__.py -> build/lib/sunflower/widgets
copying sunflower/widgets/thumbnail_view.py -> build/lib/sunflower/widgets
copying sunflower/widgets/location_menu.py -> build/lib/sunflower/widgets
copying sunflower/widgets/context_menu.py -> build/lib/sunflower/widgets
copying sunflower/widgets/settings_page.py -> build/lib/sunflower/widgets
copying sunflower/widgets/emblems_renderer.py -> build/lib/sunflower/widgets
creating build/lib/sunflower/plugins
copying sunflower/plugins/__init__.py -> build/lib/sunflower/plugins
creating build/lib/sunflower/plugin_base
copying sunflower/plugin_base/monitor.py -> build/lib/sunflower/plugin_base
copying sunflower/plugin_base/terminal.py -> build/lib/sunflower/plugin_base
copying sunflower/plugin_base/viewer_extension.py -> build/lib/sunflower/plugin_base
copying sunflower/plugin_base/column_editor_extension.py -> build/lib/sunflower/plugin_base
copying sunflower/plugin_base/provider.py -> build/lib/sunflower/plugin_base
copying sunflower/plugin_base/plugin.py -> build/lib/sunflower/plugin_base
copying sunflower/plugin_base/__init__.py -> build/lib/sunflower/plugin_base
copying sunflower/plugin_base/toolbar_factory.py -> build/lib/sunflower/plugin_base
copying sunflower/plugin_base/mount_manager_extension.py -> build/lib/sunflower/plugin_base
copying sunflower/plugin_base/find_extension.py -> build/lib/sunflower/plugin_base
copying sunflower/plugin_base/column_extension.py -> build/lib/sunflower/plugin_base
copying sunflower/plugin_base/rename_extension.py -> build/lib/sunflower/plugin_base
copying sunflower/plugin_base/item_list.py -> build/lib/sunflower/plugin_base
creating build/lib/sunflower/tools
copying sunflower/tools/viewer.py -> build/lib/sunflower/tools
copying sunflower/tools/find_files.py -> build/lib/sunflower/tools
copying sunflower/tools/version_check.py -> build/lib/sunflower/tools
copying sunflower/tools/disk_usage.py -> build/lib/sunflower/tools
copying sunflower/tools/advanced_rename.py -> build/lib/sunflower/tools
copying sunflower/tools/__init__.py -> build/lib/sunflower/tools
creating build/lib/sunflower/gui
copying sunflower/gui/properties_window.py -> build/lib/sunflower/gui
copying sunflower/gui/error_list.py -> build/lib/sunflower/gui
copying sunflower/gui/operation_dialog.py -> build/lib/sunflower/gui
copying sunflower/gui/main_window.py -> build/lib/sunflower/gui
copying sunflower/gui/input_dialog.py -> build/lib/sunflower/gui
copying sunflower/gui/history_list.py -> build/lib/sunflower/gui
copying sunflower/gui/about_window.py -> build/lib/sunflower/gui
copying sunflower/gui/preferences_window.py -> build/lib/sunflower/gui
copying sunflower/gui/__init__.py -> build/lib/sunflower/gui
copying sunflower/gui/keyring_manager_window.py -> build/lib/sunflower/gui
creating build/lib/sunflower/plugins/default_toolbar
copying sunflower/plugins/default_toolbar/bookmark_button.py -> build/lib/sunflower/plugins/default_toolbar
copying sunflower/plugins/default_toolbar/separator.py -> build/lib/sunflower/plugins/default_toolbar
copying sunflower/plugins/default_toolbar/bookmarks_button.py -> build/lib/sunflower/plugins/default_toolbar
copying sunflower/plugins/default_toolbar/plugin.py -> build/lib/sunflower/plugins/default_toolbar
copying sunflower/plugins/default_toolbar/__init__.py -> build/lib/sunflower/plugins/default_toolbar
copying sunflower/plugins/default_toolbar/parent_directory_button.py -> build/lib/sunflower/plugins/default_toolbar
copying sunflower/plugins/default_toolbar/home_directory_button.py -> build/lib/sunflower/plugins/default_toolbar
creating build/lib/sunflower/plugins/file_list
copying sunflower/plugins/file_list/local_monitor.py -> build/lib/sunflower/plugins/file_list
copying sunflower/plugins/file_list/column_editor.py -> build/lib/sunflower/plugins/file_list
copying sunflower/plugins/file_list/local_provider.py -> build/lib/sunflower/plugins/file_list
copying sunflower/plugins/file_list/gio_provider.py -> build/lib/sunflower/plugins/file_list
copying sunflower/plugins/file_list/trash_list.py -> build/lib/sunflower/plugins/file_list
copying sunflower/plugins/file_list/plugin.py -> build/lib/sunflower/plugins/file_list
copying sunflower/plugins/file_list/gio_wrapper.py -> build/lib/sunflower/plugins/file_list
copying sunflower/plugins/file_list/file_list.py -> build/lib/sunflower/plugins/file_list
copying sunflower/plugins/file_list/__init__.py -> build/lib/sunflower/plugins/file_list
copying sunflower/plugins/file_list/dialogs.py -> build/lib/sunflower/plugins/file_list
copying sunflower/plugins/file_list/gio_extension.py -> build/lib/sunflower/plugins/file_list
creating build/lib/sunflower/plugins/system_terminal
copying sunflower/plugins/system_terminal/plugin.py -> build/lib/sunflower/plugins/system_terminal
copying sunflower/plugins/system_terminal/__init__.py -> build/lib/sunflower/plugins/system_terminal
creating build/lib/sunflower/plugins/archive_support
copying sunflower/plugins/archive_support/plugin.py -> build/lib/sunflower/plugins/archive_support
copying sunflower/plugins/archive_support/__init__.py -> build/lib/sunflower/plugins/archive_support
copying sunflower/plugins/archive_support/zip_provider.py -> build/lib/sunflower/plugins/archive_support
creating build/lib/sunflower/plugins/find_file_extensions
copying sunflower/plugins/find_file_extensions/size.py -> build/lib/sunflower/plugins/find_file_extensions
copying sunflower/plugins/find_file_extensions/contents.py -> build/lib/sunflower/plugins/find_file_extensions
copying sunflower/plugins/find_file_extensions/default.py -> build/lib/sunflower/plugins/find_file_extensions
copying sunflower/plugins/find_file_extensions/plugin.py -> build/lib/sunflower/plugins/find_file_extensions
copying sunflower/plugins/find_file_extensions/__init__.py -> build/lib/sunflower/plugins/find_file_extensions
creating build/lib/sunflower/plugins/rename_extensions
copying sunflower/plugins/rename_extensions/audio_metadata.py -> build/lib/sunflower/plugins/rename_extensions
copying sunflower/plugins/rename_extensions/default.py -> build/lib/sunflower/plugins/rename_extensions
copying sunflower/plugins/rename_extensions/plugin.py -> build/lib/sunflower/plugins/rename_extensions
copying sunflower/plugins/rename_extensions/letter_case.py -> build/lib/sunflower/plugins/rename_extensions
copying sunflower/plugins/rename_extensions/__init__.py -> build/lib/sunflower/plugins/rename_extensions
creating build/lib/sunflower/plugins/gvim_viewer
copying sunflower/plugins/gvim_viewer/plugin.py -> build/lib/sunflower/plugins/gvim_viewer
copying sunflower/plugins/gvim_viewer/__init__.py -> build/lib/sunflower/plugins/gvim_viewer
creating build/lib/sunflower/plugins/sessions
copying sunflower/plugins/sessions/plugin.py -> build/lib/sunflower/plugins/sessions
copying sunflower/plugins/sessions/__init__.py -> build/lib/sunflower/plugins/sessions
creating build/lib/sunflower/plugins/owner_column
copying sunflower/plugins/owner_column/plugin.py -> build/lib/sunflower/plugins/owner_column
copying sunflower/plugins/owner_column/__init__.py -> build/lib/sunflower/plugins/owner_column
creating build/lib/sunflower/gui/preferences
copying sunflower/gui/preferences/terminal.py -> build/lib/sunflower/gui/preferences
copying sunflower/gui/preferences/toolbar.py -> build/lib/sunflower/gui/preferences
copying sunflower/gui/preferences/bookmarks.py -> build/lib/sunflower/gui/preferences
copying sunflower/gui/preferences/plugins.py -> build/lib/sunflower/gui/preferences
copying sunflower/gui/preferences/commands.py -> build/lib/sunflower/gui/preferences
copying sunflower/gui/preferences/accelerators.py -> build/lib/sunflower/gui/preferences
copying sunflower/gui/preferences/__init__.py -> build/lib/sunflower/gui/preferences
copying sunflower/gui/preferences/display.py -> build/lib/sunflower/gui/preferences
copying sunflower/gui/preferences/associations.py -> build/lib/sunflower/gui/preferences
copying sunflower/gui/preferences/view_and_edit.py -> build/lib/sunflower/gui/preferences
copying sunflower/gui/preferences/operation.py -> build/lib/sunflower/gui/preferences
copying sunflower/gui/preferences/item_list.py -> build/lib/sunflower/gui/preferences
running egg_info
creating Sunflower.egg-info
writing Sunflower.egg-info/PKG-INFO
writing dependency_links to Sunflower.egg-info/dependency_links.txt
writing entry points to Sunflower.egg-info/entry_points.txt
writing requirements to Sunflower.egg-info/requires.txt
writing top-level names to Sunflower.egg-info/top_level.txt
writing manifest file 'Sunflower.egg-info/SOURCES.txt'
reading manifest file 'Sunflower.egg-info/SOURCES.txt'
reading manifest template 'MANIFEST.in'
writing manifest file 'Sunflower.egg-info/SOURCES.txt'
creating build/lib/sunflower/styles
copying sunflower/styles/main.css -> build/lib/sunflower/styles
=> Sunflower-0.4.62_1: skipping check (XBPS_CHECK_PKGS is disabled) ...
=> Sunflower-0.4.62_1: running pre-install hook: 00-lib32 ...
=> Sunflower-0.4.62_1: running pre-install hook: 02-script-wrapper ...
=> Sunflower-0.4.62_1: running pre-install hook: 98-fixup-gir-path ...
=> Sunflower-0.4.62_1: running do_install ...
Unable to init server: Could not connect: Connection refused
Unable to init server: Could not connect: Connection refused
running install
running build
running build_py
running egg_info
writing Sunflower.egg-info/PKG-INFO
writing dependency_links to Sunflower.egg-info/dependency_links.txt
writing entry points to Sunflower.egg-info/entry_points.txt
writing requirements to Sunflower.egg-info/requires.txt
writing top-level names to Sunflower.egg-info/top_level.txt
reading manifest file 'Sunflower.egg-info/SOURCES.txt'
reading manifest template 'MANIFEST.in'
writing manifest file 'Sunflower.egg-info/SOURCES.txt'
running install_lib
creating /destdir/Sunflower-0.4.62/usr
creating /destdir/Sunflower-0.4.62/usr/lib
creating /destdir/Sunflower-0.4.62/usr/lib/python3.8
creating /destdir/Sunflower-0.4.62/usr/lib/python3.8/site-packages
creating /destdir/Sunflower-0.4.62/usr/lib/python3.8/site-packages/sunflower
creating /destdir/Sunflower-0.4.62/usr/lib/python3.8/site-packages/sunflower/widgets
copying build/lib/sunflower/widgets/breadcrumbs.py -> /destdir//Sunflower-0.4.62/usr/lib/python3.8/site-packages/sunflower/widgets
copying build/lib/sunflower/widgets/tab_label.py -> /destdir//Sunflower-0.4.62/usr/lib/python3.8/site-packages/sunflower/widgets
copying build/lib/sunflower/widgets/completion_entry.py -> /destdir//Sunflower-0.4.62/usr/lib/python3.8/site-packages/sunflower/widgets
copying build/lib/sunflower/widgets/status_bar.py -> /destdir//Sunflower-0.4.62/usr/lib/python3.8/site-packages/sunflower/widgets
copying build/lib/sunflower/widgets/command_row.py -> /destdir//Sunflower-0.4.62/usr/lib/python3.8/site-packages/sunflower/widgets
copying build/lib/sunflower/widgets/title_bar.py -> /destdir//Sunflower-0.4.62/usr/lib/python3.8/site-packages/sunflower/widgets
copying build/lib/sunflower/widgets/__init__.py -> /destdir//Sunflower-0.4.62/usr/lib/python3.8/site-packages/sunflower/widgets
copying build/lib/sunflower/widgets/thumbnail_view.py -> /destdir//Sunflower-0.4.62/usr/lib/python3.8/site-packages/sunflower/widgets
copying build/lib/sunflower/widgets/location_menu.py -> /destdir//Sunflower-0.4.62/usr/lib/python3.8/site-packages/sunflower/widgets
copying build/lib/sunflower/widgets/context_menu.py -> /destdir//Sunflower-0.4.62/usr/lib/python3.8/site-packages/sunflower/widgets
copying build/lib/sunflower/widgets/settings_page.py -> /destdir//Sunflower-0.4.62/usr/lib/python3.8/site-packages/sunflower/widgets
copying build/lib/sunflower/widgets/emblems_renderer.py -> /destdir//Sunflower-0.4.62/usr/lib/python3.8/site-packages/sunflower/widgets
copying build/lib/sunflower/accelerator_group.py -> /destdir//Sunflower-0.4.62/usr/lib/python3.8/site-packages/sunflower
copying build/lib/sunflower/accelerator_manager.py -> /destdir//Sunflower-0.4.62/usr/lib/python3.8/site-packages/sunflower
copying build/lib/sunflower/toolbar.py -> /destdir//Sunflower-0.4.62/usr/lib/python3.8/site-packages/sunflower
copying build/lib/sunflower/__main__.py -> /destdir//Sunflower-0.4.62/usr/lib/python3.8/site-packages/sunflower
copying build/lib/sunflower/history.py -> /destdir//Sunflower-0.4.62/usr/lib/python3.8/site-packages/sunflower
copying build/lib/sunflower/menus.py -> /destdir//Sunflower-0.4.62/usr/lib/python3.8/site-packages/sunflower
copying build/lib/sunflower/icons.py -> /destdir//Sunflower-0.4.62/usr/lib/python3.8/site-packages/sunflower
copying build/lib/sunflower/emblems.py -> /destdir//Sunflower-0.4.62/usr/lib/python3.8/site-packages/sunflower
copying build/lib/sunflower/notifications.py -> /destdir//Sunflower-0.4.62/usr/lib/python3.8/site-packages/sunflower
creating /destdir/Sunflower-0.4.62/usr/lib/python3.8/site-packages/sunflower/styles
copying build/lib/sunflower/styles/main.css -> /destdir//Sunflower-0.4.62/usr/lib/python3.8/site-packages/sunflower/styles
copying build/lib/sunflower/config.py -> /destdir//Sunflower-0.4.62/usr/lib/python3.8/site-packages/sunflower
copying build/lib/sunflower/mounts.py -> /destdir//Sunflower-0.4.62/usr/lib/python3.8/site-packages/sunflower
copying build/lib/sunflower/keyring.py -> /destdir//Sunflower-0.4.62/usr/lib/python3.8/site-packages/sunflower
copying build/lib/sunflower/parameters.py -> /destdir//Sunflower-0.4.62/usr/lib/python3.8/site-packages/sunflower
copying build/lib/sunflower/queue.py -> /destdir//Sunflower-0.4.62/usr/lib/python3.8/site-packages/sunflower
creating /destdir/Sunflower-0.4.62/usr/lib/python3.8/site-packages/sunflower/plugins
creating /destdir/Sunflower-0.4.62/usr/lib/python3.8/site-packages/sunflower/plugins/default_toolbar
copying build/lib/sunflower/plugins/default_toolbar/bookmark_button.py -> /destdir//Sunflower-0.4.62/usr/lib/python3.8/site-packages/sunflower/plugins/default_toolbar
copying build/lib/sunflower/plugins/default_toolbar/separator.py -> /destdir//Sunflower-0.4.62/usr/lib/python3.8/site-packages/sunflower/plugins/default_toolbar
copying build/lib/sunflower/plugins/default_toolbar/bookmarks_button.py -> /destdir//Sunflower-0.4.62/usr/lib/python3.8/site-packages/sunflower/plugins/default_toolbar
copying build/lib/sunflower/plugins/default_toolbar/plugin.py -> /destdir//Sunflower-0.4.62/usr/lib/python3.8/site-packages/sunflower/plugins/default_toolbar
copying build/lib/sunflower/plugins/default_toolbar/__init__.py -> /destdir//Sunflower-0.4.62/usr/lib/python3.8/site-packages/sunflower/plugins/default_toolbar
copying build/lib/sunflower/plugins/default_toolbar/parent_directory_button.py -> /destdir//Sunflower-0.4.62/usr/lib/python3.8/site-packages/sunflower/plugins/default_toolbar
copying build/lib/sunflower/plugins/default_toolbar/home_directory_button.py -> /destdir//Sunflower-0.4.62/usr/lib/python3.8/site-packages/sunflower/plugins/default_toolbar
creating /destdir/Sunflower-0.4.62/usr/lib/python3.8/site-packages/sunflower/plugins/file_list
copying build/lib/sunflower/plugins/file_list/local_monitor.py -> /destdir//Sunflower-0.4.62/usr/lib/python3.8/site-packages/sunflower/plugins/file_list
copying build/lib/sunflower/plugins/file_list/column_editor.py -> /destdir//Sunflower-0.4.62/usr/lib/python3.8/site-packages/sunflower/plugins/file_list
copying build/lib/sunflower/plugins/file_list/local_provider.py -> /destdir//Sunflower-0.4.62/usr/lib/python3.8/site-packages/sunflower/plugins/file_list
copying build/lib/sunflower/plugins/file_list/gio_provider.py -> /destdir//Sunflower-0.4.62/usr/lib/python3.8/site-packages/sunflower/plugins/file_list
copying build/lib/sunflower/plugins/file_list/trash_list.py -> /destdir//Sunflower-0.4.62/usr/lib/python3.8/site-packages/sunflower/plugins/file_list
copying build/lib/sunflower/plugins/file_list/plugin.py -> /destdir//Sunflower-0.4.62/usr/lib/python3.8/site-packages/sunflower/plugins/file_list
copying build/lib/sunflower/plugins/file_list/gio_wrapper.py -> /destdir//Sunflower-0.4.62/usr/lib/python3.8/site-packages/sunflower/plugins/file_list
copying build/lib/sunflower/plugins/file_list/file_list.py -> /destdir//Sunflower-0.4.62/usr/lib/python3.8/site-packages/sunflower/plugins/file_list
copying build/lib/sunflower/plugins/file_list/__init__.py -> /destdir//Sunflower-0.4.62/usr/lib/python3.8/site-packages/sunflower/plugins/file_list
copying build/lib/sunflower/plugins/file_list/dialogs.py -> /destdir//Sunflower-0.4.62/usr/lib/python3.8/site-packages/sunflower/plugins/file_list
copying build/lib/sunflower/plugins/file_list/gio_extension.py -> /destdir//Sunflower-0.4.62/usr/lib/python3.8/site-packages/sunflower/plugins/file_list
creating /destdir/Sunflower-0.4.62/usr/lib/python3.8/site-packages/sunflower/plugins/system_terminal
copying build/lib/sunflower/plugins/system_terminal/plugin.py -> /destdir//Sunflower-0.4.62/usr/lib/python3.8/site-packages/sunflower/plugins/system_terminal
copying build/lib/sunflower/plugins/system_terminal/__init__.py -> /destdir//Sunflower-0.4.62/usr/lib/python3.8/site-packages/sunflower/plugins/system_terminal
creating /destdir/Sunflower-0.4.62/usr/lib/python3.8/site-packages/sunflower/plugins/archive_support
copying build/lib/sunflower/plugins/archive_support/plugin.py -> /destdir//Sunflower-0.4.62/usr/lib/python3.8/site-packages/sunflower/plugins/archive_support
copying build/lib/sunflower/plugins/archive_support/__init__.py -> /destdir//Sunflower-0.4.62/usr/lib/python3.8/site-packages/sunflower/plugins/archive_support
copying build/lib/sunflower/plugins/archive_support/zip_provider.py -> /destdir//Sunflower-0.4.62/usr/lib/python3.8/site-packages/sunflower/plugins/archive_support
creating /destdir/Sunflower-0.4.62/usr/lib/python3.8/site-packages/sunflower/plugins/find_file_extensions
copying build/lib/sunflower/plugins/find_file_extensions/size.py -> /destdir//Sunflower-0.4.62/usr/lib/python3.8/site-packages/sunflower/plugins/find_file_extensions
copying build/lib/sunflower/plugins/find_file_extensions/contents.py -> /destdir//Sunflower-0.4.62/usr/lib/python3.8/site-packages/sunflower/plugins/find_file_extensions
copying build/lib/sunflower/plugins/find_file_extensions/default.py -> /destdir//Sunflower-0.4.62/usr/lib/python3.8/site-packages/sunflower/plugins/find_file_extensions
copying build/lib/sunflower/plugins/find_file_extensions/plugin.py -> /destdir//Sunflower-0.4.62/usr/lib/python3.8/site-packages/sunflower/plugins/find_file_extensions
copying build/lib/sunflower/plugins/find_file_extensions/__init__.py -> /destdir//Sunflower-0.4.62/usr/lib/python3.8/site-packages/sunflower/plugins/find_file_extensions
creating /destdir/Sunflower-0.4.62/usr/lib/python3.8/site-packages/sunflower/plugins/rename_extensions
copying build/lib/sunflower/plugins/rename_extensions/audio_metadata.py -> /destdir//Sunflower-0.4.62/usr/lib/python3.8/site-packages/sunflower/plugins/rename_extensions
copying build/lib/sunflower/plugins/rename_extensions/default.py -> /destdir//Sunflower-0.4.62/usr/lib/python3.8/site-packages/sunflower/plugins/rename_extensions
copying build/lib/sunflower/plugins/rename_extensions/plugin.py -> /destdir//Sunflower-0.4.62/usr/lib/python3.8/site-packages/sunflower/plugins/rename_extensions
copying build/lib/sunflower/plugins/rename_extensions/letter_case.py -> /destdir//Sunflower-0.4.62/usr/lib/python3.8/site-packages/sunflower/plugins/rename_extensions
copying build/lib/sunflower/plugins/rename_extensions/__init__.py -> /destdir//Sunflower-0.4.62/usr/lib/python3.8/site-packages/sunflower/plugins/rename_extensions
copying build/lib/sunflower/plugins/__init__.py -> /destdir//Sunflower-0.4.62/usr/lib/python3.8/site-packages/sunflower/plugins
creating /destdir/Sunflower-0.4.62/usr/lib/python3.8/site-packages/sunflower/plugins/gvim_viewer
copying build/lib/sunflower/plugins/gvim_viewer/plugin.py -> /destdir//Sunflower-0.4.62/usr/lib/python3.8/site-packages/sunflower/plugins/gvim_viewer
copying build/lib/sunflower/plugins/gvim_viewer/__init__.py -> /destdir//Sunflower-0.4.62/usr/lib/python3.8/site-packages/sunflower/plugins/gvim_viewer
creating /destdir/Sunflower-0.4.62/usr/lib/python3.8/site-packages/sunflower/plugins/sessions
copying build/lib/sunflower/plugins/sessions/plugin.py -> /destdir//Sunflower-0.4.62/usr/lib/python3.8/site-packages/sunflower/plugins/sessions
copying build/lib/sunflower/plugins/sessions/__init__.py -> /destdir//Sunflower-0.4.62/usr/lib/python3.8/site-packages/sunflower/plugins/sessions
creating /destdir/Sunflower-0.4.62/usr/lib/python3.8/site-packages/sunflower/plugins/owner_column
copying build/lib/sunflower/plugins/owner_column/plugin.py -> /destdir//Sunflower-0.4.62/usr/lib/python3.8/site-packages/sunflower/plugins/owner_column
copying build/lib/sunflower/plugins/owner_column/__init__.py -> /destdir//Sunflower-0.4.62/usr/lib/python3.8/site-packages/sunflower/plugins/owner_column
copying build/lib/sunflower/__init__.py -> /destdir//Sunflower-0.4.62/usr/lib/python3.8/site-packages/sunflower
copying build/lib/sunflower/common.py -> /destdir//Sunflower-0.4.62/usr/lib/python3.8/site-packages/sunflower
creating /destdir/Sunflower-0.4.62/usr/lib/python3.8/site-packages/sunflower/plugin_base
copying build/lib/sunflower/plugin_base/monitor.py -> /destdir//Sunflower-0.4.62/usr/lib/python3.8/site-packages/sunflower/plugin_base
copying build/lib/sunflower/plugin_base/terminal.py -> /destdir//Sunflower-0.4.62/usr/lib/python3.8/site-packages/sunflower/plugin_base
copying build/lib/sunflower/plugin_base/viewer_extension.py -> /destdir//Sunflower-0.4.62/usr/lib/python3.8/site-packages/sunflower/plugin_base
copying build/lib/sunflower/plugin_base/column_editor_extension.py -> /destdir//Sunflower-0.4.62/usr/lib/python3.8/site-packages/sunflower/plugin_base
copying build/lib/sunflower/plugin_base/provider.py -> /destdir//Sunflower-0.4.62/usr/lib/python3.8/site-packages/sunflower/plugin_base
copying build/lib/sunflower/plugin_base/plugin.py -> /destdir//Sunflower-0.4.62/usr/lib/python3.8/site-packages/sunflower/plugin_base
copying build/lib/sunflower/plugin_base/__init__.py -> /destdir//Sunflower-0.4.62/usr/lib/python3.8/site-packages/sunflower/plugin_base
copying build/lib/sunflower/plugin_base/toolbar_factory.py -> /destdir//Sunflower-0.4.62/usr/lib/python3.8/site-packages/sunflower/plugin_base
copying build/lib/sunflower/plugin_base/mount_manager_extension.py -> /destdir//Sunflower-0.4.62/usr/lib/python3.8/site-packages/sunflower/plugin_base
copying build/lib/sunflower/plugin_base/find_extension.py -> /destdir//Sunflower-0.4.62/usr/lib/python3.8/site-packages/sunflower/plugin_base
copying build/lib/sunflower/plugin_base/column_extension.py -> /destdir//Sunflower-0.4.62/usr/lib/python3.8/site-packages/sunflower/plugin_base
copying build/lib/sunflower/plugin_base/rename_extension.py -> /destdir//Sunflower-0.4.62/usr/lib/python3.8/site-packages/sunflower/plugin_base
copying build/lib/sunflower/plugin_base/item_list.py -> /destdir//Sunflower-0.4.62/usr/lib/python3.8/site-packages/sunflower/plugin_base
copying build/lib/sunflower/associations.py -> /destdir//Sunflower-0.4.62/usr/lib/python3.8/site-packages/sunflower
creating /destdir/Sunflower-0.4.62/usr/lib/python3.8/site-packages/sunflower/tools
copying build/lib/sunflower/tools/viewer.py -> /destdir//Sunflower-0.4.62/usr/lib/python3.8/site-packages/sunflower/tools
copying build/lib/sunflower/tools/find_files.py -> /destdir//Sunflower-0.4.62/usr/lib/python3.8/site-packages/sunflower/tools
copying build/lib/sunflower/tools/version_check.py -> /destdir//Sunflower-0.4.62/usr/lib/python3.8/site-packages/sunflower/tools
copying build/lib/sunflower/tools/disk_usage.py -> /destdir//Sunflower-0.4.62/usr/lib/python3.8/site-packages/sunflower/tools
copying build/lib/sunflower/tools/advanced_rename.py -> /destdir//Sunflower-0.4.62/usr/lib/python3.8/site-packages/sunflower/tools
copying build/lib/sunflower/tools/__init__.py -> /destdir//Sunflower-0.4.62/usr/lib/python3.8/site-packages/sunflower/tools
copying build/lib/sunflower/operation.py -> /destdir//Sunflower-0.4.62/usr/lib/python3.8/site-packages/sunflower
copying build/lib/sunflower/indicator.py -> /destdir//Sunflower-0.4.62/usr/lib/python3.8/site-packages/sunflower
creating /destdir/Sunflower-0.4.62/usr/lib/python3.8/site-packages/sunflower/gui
copying build/lib/sunflower/gui/properties_window.py -> /destdir//Sunflower-0.4.62/usr/lib/python3.8/site-packages/sunflower/gui
copying build/lib/sunflower/gui/error_list.py -> /destdir//Sunflower-0.4.62/usr/lib/python3.8/site-packages/sunflower/gui
copying build/lib/sunflower/gui/operation_dialog.py -> /destdir//Sunflower-0.4.62/usr/lib/python3.8/site-packages/sunflower/gui
copying build/lib/sunflower/gui/main_window.py -> /destdir//Sunflower-0.4.62/usr/lib/python3.8/site-packages/sunflower/gui
copying build/lib/sunflower/gui/input_dialog.py -> /destdir//Sunflower-0.4.62/usr/lib/python3.8/site-packages/sunflower/gui
copying build/lib/sunflower/gui/history_list.py -> /destdir//Sunflower-0.4.62/usr/lib/python3.8/site-packages/sunflower/gui
copying build/lib/sunflower/gui/about_window.py -> /destdir//Sunflower-0.4.62/usr/lib/python3.8/site-packages/sunflower/gui
copying build/lib/sunflower/gui/preferences_window.py -> /destdir//Sunflower-0.4.62/usr/lib/python3.8/site-packages/sunflower/gui
creating /destdir/Sunflower-0.4.62/usr/lib/python3.8/site-packages/sunflower/gui/preferences
copying build/lib/sunflower/gui/preferences/terminal.py -> /destdir//Sunflower-0.4.62/usr/lib/python3.8/site-packages/sunflower/gui/preferences
copying build/lib/sunflower/gui/preferences/toolbar.py -> /destdir//Sunflower-0.4.62/usr/lib/python3.8/site-packages/sunflower/gui/preferences
copying build/lib/sunflower/gui/preferences/bookmarks.py -> /destdir//Sunflower-0.4.62/usr/lib/python3.8/site-packages/sunflower/gui/preferences
copying build/lib/sunflower/gui/preferences/plugins.py -> /destdir//Sunflower-0.4.62/usr/lib/python3.8/site-packages/sunflower/gui/preferences
copying build/lib/sunflower/gui/preferences/commands.py -> /destdir//Sunflower-0.4.62/usr/lib/python3.8/site-packages/sunflower/gui/preferences
copying build/lib/sunflower/gui/preferences/accelerators.py -> /destdir//Sunflower-0.4.62/usr/lib/python3.8/site-packages/sunflower/gui/preferences
copying build/lib/sunflower/gui/preferences/__init__.py -> /destdir//Sunflower-0.4.62/usr/lib/python3.8/site-packages/sunflower/gui/preferences
copying build/lib/sunflower/gui/preferences/display.py -> /destdir//Sunflower-0.4.62/usr/lib/python3.8/site-packages/sunflower/gui/preferences
copying build/lib/sunflower/gui/preferences/associations.py -> /destdir//Sunflower-0.4.62/usr/lib/python3.8/site-packages/sunflower/gui/preferences
copying build/lib/sunflower/gui/preferences/view_and_edit.py -> /destdir//Sunflower-0.4.62/usr/lib/python3.8/site-packages/sunflower/gui/preferences
copying build/lib/sunflower/gui/preferences/operation.py -> /destdir//Sunflower-0.4.62/usr/lib/python3.8/site-packages/sunflower/gui/preferences
copying build/lib/sunflower/gui/preferences/item_list.py -> /destdir//Sunflower-0.4.62/usr/lib/python3.8/site-packages/sunflower/gui/preferences
copying build/lib/sunflower/gui/__init__.py -> /destdir//Sunflower-0.4.62/usr/lib/python3.8/site-packages/sunflower/gui
copying build/lib/sunflower/gui/keyring_manager_window.py -> /destdir//Sunflower-0.4.62/usr/lib/python3.8/site-packages/sunflower/gui
byte-compiling /destdir//Sunflower-0.4.62/usr/lib/python3.8/site-packages/sunflower/widgets/breadcrumbs.py to breadcrumbs.cpython-38.pyc
byte-compiling /destdir//Sunflower-0.4.62/usr/lib/python3.8/site-packages/sunflower/widgets/tab_label.py to tab_label.cpython-38.pyc
byte-compiling /destdir//Sunflower-0.4.62/usr/lib/python3.8/site-packages/sunflower/widgets/completion_entry.py to completion_entry.cpython-38.pyc
byte-compiling /destdir//Sunflower-0.4.62/usr/lib/python3.8/site-packages/sunflower/widgets/status_bar.py to status_bar.cpython-38.pyc
byte-compiling /destdir//Sunflower-0.4.62/usr/lib/python3.8/site-packages/sunflower/widgets/command_row.py to command_row.cpython-38.pyc
byte-compiling /destdir//Sunflower-0.4.62/usr/lib/python3.8/site-packages/sunflower/widgets/title_bar.py to title_bar.cpython-38.pyc
byte-compiling /destdir//Sunflower-0.4.62/usr/lib/python3.8/site-packages/sunflower/widgets/__init__.py to __init__.cpython-38.pyc
byte-compiling /destdir//Sunflower-0.4.62/usr/lib/python3.8/site-packages/sunflower/widgets/thumbnail_view.py to thumbnail_view.cpython-38.pyc
byte-compiling /destdir//Sunflower-0.4.62/usr/lib/python3.8/site-packages/sunflower/widgets/location_menu.py to location_menu.cpython-38.pyc
byte-compiling /destdir//Sunflower-0.4.62/usr/lib/python3.8/site-packages/sunflower/widgets/context_menu.py to context_menu.cpython-38.pyc
byte-compiling /destdir//Sunflower-0.4.62/usr/lib/python3.8/site-packages/sunflower/widgets/settings_page.py to settings_page.cpython-38.pyc
byte-compiling /destdir//Sunflower-0.4.62/usr/lib/python3.8/site-packages/sunflower/widgets/emblems_renderer.py to emblems_renderer.cpython-38.pyc
byte-compiling /destdir//Sunflower-0.4.62/usr/lib/python3.8/site-packages/sunflower/accelerator_group.py to accelerator_group.cpython-38.pyc
byte-compiling /destdir//Sunflower-0.4.62/usr/lib/python3.8/site-packages/sunflower/accelerator_manager.py to accelerator_manager.cpython-38.pyc
byte-compiling /destdir//Sunflower-0.4.62/usr/lib/python3.8/site-packages/sunflower/toolbar.py to toolbar.cpython-38.pyc
byte-compiling /destdir//Sunflower-0.4.62/usr/lib/python3.8/site-packages/sunflower/__main__.py to __main__.cpython-38.pyc
byte-compiling /destdir//Sunflower-0.4.62/usr/lib/python3.8/site-packages/sunflower/history.py to history.cpython-38.pyc
byte-compiling /destdir//Sunflower-0.4.62/usr/lib/python3.8/site-packages/sunflower/menus.py to menus.cpython-38.pyc
byte-compiling /destdir//Sunflower-0.4.62/usr/lib/python3.8/site-packages/sunflower/icons.py to icons.cpython-38.pyc
byte-compiling /destdir//Sunflower-0.4.62/usr/lib/python3.8/site-packages/sunflower/emblems.py to emblems.cpython-38.pyc
byte-compiling /destdir//Sunflower-0.4.62/usr/lib/python3.8/site-packages/sunflower/notifications.py to notifications.cpython-38.pyc
byte-compiling /destdir//Sunflower-0.4.62/usr/lib/python3.8/site-packages/sunflower/config.py to config.cpython-38.pyc
byte-compiling /destdir//Sunflower-0.4.62/usr/lib/python3.8/site-packages/sunflower/mounts.py to mounts.cpython-38.pyc
byte-compiling /destdir//Sunflower-0.4.62/usr/lib/python3.8/site-packages/sunflower/keyring.py to keyring.cpython-38.pyc
byte-compiling /destdir//Sunflower-0.4.62/usr/lib/python3.8/site-packages/sunflower/parameters.py to parameters.cpython-38.pyc
byte-compiling /destdir//Sunflower-0.4.62/usr/lib/python3.8/site-packages/sunflower/queue.py to queue.cpython-38.pyc
byte-compiling /destdir//Sunflower-0.4.62/usr/lib/python3.8/site-packages/sunflower/plugins/default_toolbar/bookmark_button.py to bookmark_button.cpython-38.pyc
byte-compiling /destdir//Sunflower-0.4.62/usr/lib/python3.8/site-packages/sunflower/plugins/default_toolbar/separator.py to separator.cpython-38.pyc
byte-compiling /destdir//Sunflower-0.4.62/usr/lib/python3.8/site-packages/sunflower/plugins/default_toolbar/bookmarks_button.py to bookmarks_button.cpython-38.pyc
byte-compiling /destdir//Sunflower-0.4.62/usr/lib/python3.8/site-packages/sunflower/plugins/default_toolbar/plugin.py to plugin.cpython-38.pyc
byte-compiling /destdir//Sunflower-0.4.62/usr/lib/python3.8/site-packages/sunflower/plugins/default_toolbar/__init__.py to __init__.cpython-38.pyc
byte-compiling /destdir//Sunflower-0.4.62/usr/lib/python3.8/site-packages/sunflower/plugins/default_toolbar/parent_directory_button.py to parent_directory_button.cpython-38.pyc
byte-compiling /destdir//Sunflower-0.4.62/usr/lib/python3.8/site-packages/sunflower/plugins/default_toolbar/home_directory_button.py to home_directory_button.cpython-38.pyc
byte-compiling /destdir//Sunflower-0.4.62/usr/lib/python3.8/site-packages/sunflower/plugins/file_list/local_monitor.py to local_monitor.cpython-38.pyc
byte-compiling /destdir//Sunflower-0.4.62/usr/lib/python3.8/site-packages/sunflower/plugins/file_list/column_editor.py to column_editor.cpython-38.pyc
byte-compiling /destdir//Sunflower-0.4.62/usr/lib/python3.8/site-packages/sunflower/plugins/file_list/local_provider.py to local_provider.cpython-38.pyc
byte-compiling /destdir//Sunflower-0.4.62/usr/lib/python3.8/site-packages/sunflower/plugins/file_list/gio_provider.py to gio_provider.cpython-38.pyc
byte-compiling /destdir//Sunflower-0.4.62/usr/lib/python3.8/site-packages/sunflower/plugins/file_list/trash_list.py to trash_list.cpython-38.pyc
byte-compiling /destdir//Sunflower-0.4.62/usr/lib/python3.8/site-packages/sunflower/plugins/file_list/plugin.py to plugin.cpython-38.pyc
byte-compiling /destdir//Sunflower-0.4.62/usr/lib/python3.8/site-packages/sunflower/plugins/file_list/gio_wrapper.py to gio_wrapper.cpython-38.pyc
byte-compiling /destdir//Sunflower-0.4.62/usr/lib/python3.8/site-packages/sunflower/plugins/file_list/file_list.py to file_list.cpython-38.pyc
byte-compiling /destdir//Sunflower-0.4.62/usr/lib/python3.8/site-packages/sunflower/plugins/file_list/__init__.py to __init__.cpython-38.pyc
byte-compiling /destdir//Sunflower-0.4.62/usr/lib/python3.8/site-packages/sunflower/plugins/file_list/dialogs.py to dialogs.cpython-38.pyc
byte-compiling /destdir//Sunflower-0.4.62/usr/lib/python3.8/site-packages/sunflower/plugins/file_list/gio_extension.py to gio_extension.cpython-38.pyc
byte-compiling /destdir//Sunflower-0.4.62/usr/lib/python3.8/site-packages/sunflower/plugins/system_terminal/plugin.py to plugin.cpython-38.pyc
byte-compiling /destdir//Sunflower-0.4.62/usr/lib/python3.8/site-packages/sunflower/plugins/system_terminal/__init__.py to __init__.cpython-38.pyc
byte-compiling /destdir//Sunflower-0.4.62/usr/lib/python3.8/site-packages/sunflower/plugins/archive_support/plugin.py to plugin.cpython-38.pyc
byte-compiling /destdir//Sunflower-0.4.62/usr/lib/python3.8/site-packages/sunflower/plugins/archive_support/__init__.py to __init__.cpython-38.pyc
byte-compiling /destdir//Sunflower-0.4.62/usr/lib/python3.8/site-packages/sunflower/plugins/archive_support/zip_provider.py to zip_provider.cpython-38.pyc
byte-compiling /destdir//Sunflower-0.4.62/usr/lib/python3.8/site-packages/sunflower/plugins/find_file_extensions/size.py to size.cpython-38.pyc
byte-compiling /destdir//Sunflower-0.4.62/usr/lib/python3.8/site-packages/sunflower/plugins/find_file_extensions/contents.py to contents.cpython-38.pyc
byte-compiling /destdir//Sunflower-0.4.62/usr/lib/python3.8/site-packages/sunflower/plugins/find_file_extensions/default.py to default.cpython-38.pyc
byte-compiling /destdir//Sunflower-0.4.62/usr/lib/python3.8/site-packages/sunflower/plugins/find_file_extensions/plugin.py to plugin.cpython-38.pyc
byte-compiling /destdir//Sunflower-0.4.62/usr/lib/python3.8/site-packages/sunflower/plugins/find_file_extensions/__init__.py to __init__.cpython-38.pyc
byte-compiling /destdir//Sunflower-0.4.62/usr/lib/python3.8/site-packages/sunflower/plugins/rename_extensions/audio_metadata.py to audio_metadata.cpython-38.pyc
byte-compiling /destdir//Sunflower-0.4.62/usr/lib/python3.8/site-packages/sunflower/plugins/rename_extensions/default.py to default.cpython-38.pyc
byte-compiling /destdir//Sunflower-0.4.62/usr/lib/python3.8/site-packages/sunflower/plugins/rename_extensions/plugin.py to plugin.cpython-38.pyc
byte-compiling /destdir//Sunflower-0.4.62/usr/lib/python3.8/site-packages/sunflower/plugins/rename_extensions/letter_case.py to letter_case.cpython-38.pyc
byte-compiling /destdir//Sunflower-0.4.62/usr/lib/python3.8/site-packages/sunflower/plugins/rename_extensions/__init__.py to __init__.cpython-38.pyc
byte-compiling /destdir//Sunflower-0.4.62/usr/lib/python3.8/site-packages/sunflower/plugins/__init__.py to __init__.cpython-38.pyc
byte-compiling /destdir//Sunflower-0.4.62/usr/lib/python3.8/site-packages/sunflower/plugins/gvim_viewer/plugin.py to plugin.cpython-38.pyc
byte-compiling /destdir//Sunflower-0.4.62/usr/lib/python3.8/site-packages/sunflower/plugins/gvim_viewer/__init__.py to __init__.cpython-38.pyc
byte-compiling /destdir//Sunflower-0.4.62/usr/lib/python3.8/site-packages/sunflower/plugins/sessions/plugin.py to plugin.cpython-38.pyc
byte-compiling /destdir//Sunflower-0.4.62/usr/lib/python3.8/site-packages/sunflower/plugins/sessions/__init__.py to __init__.cpython-38.pyc
byte-compiling /destdir//Sunflower-0.4.62/usr/lib/python3.8/site-packages/sunflower/plugins/owner_column/plugin.py to plugin.cpython-38.pyc
byte-compiling /destdir//Sunflower-0.4.62/usr/lib/python3.8/site-packages/sunflower/plugins/owner_column/__init__.py to __init__.cpython-38.pyc
byte-compiling /destdir//Sunflower-0.4.62/usr/lib/python3.8/site-packages/sunflower/__init__.py to __init__.cpython-38.pyc
byte-compiling /destdir//Sunflower-0.4.62/usr/lib/python3.8/site-packages/sunflower/common.py to common.cpython-38.pyc
byte-compiling /destdir//Sunflower-0.4.62/usr/lib/python3.8/site-packages/sunflower/plugin_base/monitor.py to monitor.cpython-38.pyc
byte-compiling /destdir//Sunflower-0.4.62/usr/lib/python3.8/site-packages/sunflower/plugin_base/terminal.py to terminal.cpython-38.pyc
byte-compiling /destdir//Sunflower-0.4.62/usr/lib/python3.8/site-packages/sunflower/plugin_base/viewer_extension.py to viewer_extension.cpython-38.pyc
byte-compiling /destdir//Sunflower-0.4.62/usr/lib/python3.8/site-packages/sunflower/plugin_base/column_editor_extension.py to column_editor_extension.cpython-38.pyc
byte-compiling /destdir//Sunflower-0.4.62/usr/lib/python3.8/site-packages/sunflower/plugin_base/provider.py to provider.cpython-38.pyc
byte-compiling /destdir//Sunflower-0.4.62/usr/lib/python3.8/site-packages/sunflower/plugin_base/plugin.py to plugin.cpython-38.pyc
byte-compiling /destdir//Sunflower-0.4.62/usr/lib/python3.8/site-packages/sunflower/plugin_base/__init__.py to __init__.cpython-38.pyc
byte-compiling /destdir//Sunflower-0.4.62/usr/lib/python3.8/site-packages/sunflower/plugin_base/toolbar_factory.py to toolbar_factory.cpython-38.pyc
byte-compiling /destdir//Sunflower-0.4.62/usr/lib/python3.8/site-packages/sunflower/plugin_base/mount_manager_extension.py to mount_manager_extension.cpython-38.pyc
byte-compiling /destdir//Sunflower-0.4.62/usr/lib/python3.8/site-packages/sunflower/plugin_base/find_extension.py to find_extension.cpython-38.pyc
byte-compiling /destdir//Sunflower-0.4.62/usr/lib/python3.8/site-packages/sunflower/plugin_base/column_extension.py to column_extension.cpython-38.pyc
byte-compiling /destdir//Sunflower-0.4.62/usr/lib/python3.8/site-packages/sunflower/plugin_base/rename_extension.py to rename_extension.cpython-38.pyc
byte-compiling /destdir//Sunflower-0.4.62/usr/lib/python3.8/site-packages/sunflower/plugin_base/item_list.py to item_list.cpython-38.pyc
byte-compiling /destdir//Sunflower-0.4.62/usr/lib/python3.8/site-packages/sunflower/associations.py to associations.cpython-38.pyc
byte-compiling /destdir//Sunflower-0.4.62/usr/lib/python3.8/site-packages/sunflower/tools/viewer.py to viewer.cpython-38.pyc
byte-compiling /destdir//Sunflower-0.4.62/usr/lib/python3.8/site-packages/sunflower/tools/find_files.py to find_files.cpython-38.pyc
byte-compiling /destdir//Sunflower-0.4.62/usr/lib/python3.8/site-packages/sunflower/tools/version_check.py to version_check.cpython-38.pyc
byte-compiling /destdir//Sunflower-0.4.62/usr/lib/python3.8/site-packages/sunflower/tools/disk_usage.py to disk_usage.cpython-38.pyc
byte-compiling /destdir//Sunflower-0.4.62/usr/lib/python3.8/site-packages/sunflower/tools/advanced_rename.py to advanced_rename.cpython-38.pyc
byte-compiling /destdir//Sunflower-0.4.62/usr/lib/python3.8/site-packages/sunflower/tools/__init__.py to __init__.cpython-38.pyc
byte-compiling /destdir//Sunflower-0.4.62/usr/lib/python3.8/site-packages/sunflower/operation.py to operation.cpython-38.pyc
byte-compiling /destdir//Sunflower-0.4.62/usr/lib/python3.8/site-packages/sunflower/indicator.py to indicator.cpython-38.pyc
byte-compiling /destdir//Sunflower-0.4.62/usr/lib/python3.8/site-packages/sunflower/gui/properties_window.py to properties_window.cpython-38.pyc
byte-compiling /destdir//Sunflower-0.4.62/usr/lib/python3.8/site-packages/sunflower/gui/error_list.py to error_list.cpython-38.pyc
byte-compiling /destdir//Sunflower-0.4.62/usr/lib/python3.8/site-packages/sunflower/gui/operation_dialog.py to operation_dialog.cpython-38.pyc
byte-compiling /destdir//Sunflower-0.4.62/usr/lib/python3.8/site-packages/sunflower/gui/main_window.py to main_window.cpython-38.pyc
byte-compiling /destdir//Sunflower-0.4.62/usr/lib/python3.8/site-packages/sunflower/gui/input_dialog.py to input_dialog.cpython-38.pyc
byte-compiling /destdir//Sunflower-0.4.62/usr/lib/python3.8/site-packages/sunflower/gui/history_list.py to history_list.cpython-38.pyc
byte-compiling /destdir//Sunflower-0.4.62/usr/lib/python3.8/site-packages/sunflower/gui/about_window.py to about_window.cpython-38.pyc
byte-compiling /destdir//Sunflower-0.4.62/usr/lib/python3.8/site-packages/sunflower/gui/preferences_window.py to preferences_window.cpython-38.pyc
byte-compiling /destdir//Sunflower-0.4.62/usr/lib/python3.8/site-packages/sunflower/gui/preferences/terminal.py to terminal.cpython-38.pyc
byte-compiling /destdir//Sunflower-0.4.62/usr/lib/python3.8/site-packages/sunflower/gui/preferences/toolbar.py to toolbar.cpython-38.pyc
byte-compiling /destdir//Sunflower-0.4.62/usr/lib/python3.8/site-packages/sunflower/gui/preferences/bookmarks.py to bookmarks.cpython-38.pyc
byte-compiling /destdir//Sunflower-0.4.62/usr/lib/python3.8/site-packages/sunflower/gui/preferences/plugins.py to plugins.cpython-38.pyc
byte-compiling /destdir//Sunflower-0.4.62/usr/lib/python3.8/site-packages/sunflower/gui/preferences/commands.py to commands.cpython-38.pyc
byte-compiling /destdir//Sunflower-0.4.62/usr/lib/python3.8/site-packages/sunflower/gui/preferences/accelerators.py to accelerators.cpython-38.pyc
byte-compiling /destdir//Sunflower-0.4.62/usr/lib/python3.8/site-packages/sunflower/gui/preferences/__init__.py to __init__.cpython-38.pyc
byte-compiling /destdir//Sunflower-0.4.62/usr/lib/python3.8/site-packages/sunflower/gui/preferences/display.py to display.cpython-38.pyc
byte-compiling /destdir//Sunflower-0.4.62/usr/lib/python3.8/site-packages/sunflower/gui/preferences/associations.py to associations.cpython-38.pyc
byte-compiling /destdir//Sunflower-0.4.62/usr/lib/python3.8/site-packages/sunflower/gui/preferences/view_and_edit.py to view_and_edit.cpython-38.pyc
byte-compiling /destdir//Sunflower-0.4.62/usr/lib/python3.8/site-packages/sunflower/gui/preferences/operation.py to operation.cpython-38.pyc
byte-compiling /destdir//Sunflower-0.4.62/usr/lib/python3.8/site-packages/sunflower/gui/preferences/item_list.py to item_list.cpython-38.pyc
byte-compiling /destdir//Sunflower-0.4.62/usr/lib/python3.8/site-packages/sunflower/gui/__init__.py to __init__.cpython-38.pyc
byte-compiling /destdir//Sunflower-0.4.62/usr/lib/python3.8/site-packages/sunflower/gui/keyring_manager_window.py to keyring_manager_window.cpython-38.pyc
running install_data
creating /destdir/Sunflower-0.4.62/usr/share
creating /destdir/Sunflower-0.4.62/usr/share/icons
creating /destdir/Sunflower-0.4.62/usr/share/icons/hicolor
creating /destdir/Sunflower-0.4.62/usr/share/icons/hicolor/scalable
creating /destdir/Sunflower-0.4.62/usr/share/icons/hicolor/scalable/apps
copying images/sunflower.svg -> /destdir//Sunflower-0.4.62/usr/share/icons/hicolor/scalable/apps
creating /destdir/Sunflower-0.4.62/usr/share/pixmaps
creating /destdir/Sunflower-0.4.62/usr/share/pixmaps/sunflower
copying images/splash.png -> /destdir//Sunflower-0.4.62/usr/share/pixmaps/sunflower
creating /destdir/Sunflower-0.4.62/usr/share/applications
copying Sunflower.desktop -> /destdir//Sunflower-0.4.62/usr/share/applications
running install_egg_info
Copying Sunflower.egg-info to /destdir//Sunflower-0.4.62/usr/lib/python3.8/site-packages/Sunflower-0.4.62-py3.8.egg-info
running install_scripts
Installing sunflower script to /destdir//Sunflower-0.4.62/usr/bin
=> Sunflower-0.4.62_1: running post-install hook: 00-compress-info-files ...
=> Sunflower-0.4.62_1: running post-install hook: 00-lib32 ...
=> Sunflower-0.4.62_1: running post-install hook: 00-uncompress-manpages ...
=> Sunflower-0.4.62_1: running post-install hook: 01-remove-localized-manpages ...
=> Sunflower-0.4.62_1: running post-install hook: 01-remove-misc ...
=> Sunflower-0.4.62_1: running post-install hook: 02-remove-libtool-archives ...
=> Sunflower-0.4.62_1: running post-install hook: 02-remove-perl-files ...
=> Sunflower-0.4.62_1: running post-install hook: 02-remove-python-bytecode-files ...
=> Sunflower-0.4.62_1: running post-install hook: 03-remove-empty-dirs ...
=> WARNING: Sunflower-0.4.62_1: removed empty dir: /usr/lib/python3.8/site-packages/sunflower/widgets/__pycache__
=> WARNING: Sunflower-0.4.62_1: removed empty dir: /usr/lib/python3.8/site-packages/sunflower/tools/__pycache__
=> WARNING: Sunflower-0.4.62_1: removed empty dir: /usr/lib/python3.8/site-packages/sunflower/plugins/system_terminal/__pycache__
=> WARNING: Sunflower-0.4.62_1: removed empty dir: /usr/lib/python3.8/site-packages/sunflower/plugins/sessions/__pycache__
=> WARNING: Sunflower-0.4.62_1: removed empty dir: /usr/lib/python3.8/site-packages/sunflower/plugins/rename_extensions/__pycache__
=> WARNING: Sunflower-0.4.62_1: removed empty dir: /usr/lib/python3.8/site-packages/sunflower/plugins/owner_column/__pycache__
=> WARNING: Sunflower-0.4.62_1: removed empty dir: /usr/lib/python3.8/site-packages/sunflower/plugins/gvim_viewer/__pycache__
=> WARNING: Sunflower-0.4.62_1: removed empty dir: /usr/lib/python3.8/site-packages/sunflower/plugins/find_file_extensions/__pycache__
=> WARNING: Sunflower-0.4.62_1: removed empty dir: /usr/lib/python3.8/site-packages/sunflower/plugins/file_list/__pycache__
=> WARNING: Sunflower-0.4.62_1: removed empty dir: /usr/lib/python3.8/site-packages/sunflower/plugins/default_toolbar/__pycache__
=> WARNING: Sunflower-0.4.62_1: removed empty dir: /usr/lib/python3.8/site-packages/sunflower/plugins/archive_support/__pycache__
=> WARNING: Sunflower-0.4.62_1: removed empty dir: /usr/lib/python3.8/site-packages/sunflower/plugins/__pycache__
=> WARNING: Sunflower-0.4.62_1: removed empty dir: /usr/lib/python3.8/site-packages/sunflower/plugin_base/__pycache__
=> WARNING: Sunflower-0.4.62_1: removed empty dir: /usr/lib/python3.8/site-packages/sunflower/gui/preferences/__pycache__
=> WARNING: Sunflower-0.4.62_1: removed empty dir: /usr/lib/python3.8/site-packages/sunflower/gui/__pycache__
=> WARNING: Sunflower-0.4.62_1: removed empty dir: /usr/lib/python3.8/site-packages/sunflower/__pycache__
=> Sunflower-0.4.62_1: running post-install hook: 04-create-xbps-metadata-scripts ...
   Added trigger 'gtk-icon-cache' for the 'INSTALL' script.
   Added trigger 'update-desktopdb' for the 'INSTALL' script.
   Added trigger 'pycompile' for the 'INSTALL' script.
   Added trigger 'gtk-icon-cache' for the 'REMOVE' script.
   Added trigger 'update-desktopdb' for the 'REMOVE' script.
   Added trigger 'pycompile' for the 'REMOVE' script.
=> Sunflower-0.4.62_1: running post-install hook: 05-generate-gitrevs ...
=> Sunflower-0.4.62_1: running post-install hook: 06-strip-and-debug-pkgs ...
=> Sunflower-0.4.62_1: running post-install hook: 10-pkglint-devel-paths ...
=> Sunflower-0.4.62_1: running post-install hook: 11-pkglint-elf-in-usrshare ...
=> Sunflower-0.4.62_1: running post-install hook: 12-rename-python3-c-bindings ...
=> Sunflower-0.4.62_1: running post-install hook: 13-pkg-config-clean-xbps-cross-base-ref ...
=> Sunflower-0.4.62_1: running post-install hook: 99-pkglint-warn-cross-cruft ...
=> Sunflower-0.4.62_1: running pre-pkg hook: 03-rewrite-python-shebang ...
   Shebang converted to '#!/usr/bin/python3': /usr/bin/sunflower
   Shebang converted to '#!/usr/bin/python3': /usr/lib/python3.8/site-packages/sunflower/__main__.py
   Shebang converted to '#!/usr/bin/python3': /usr/share/applications/Sunflower.desktop
=> Sunflower-0.4.62_1: running pre-pkg hook: 04-generate-runtime-deps ...
=> Sunflower-0.4.62_1: running pre-pkg hook: 05-prepare-32bit ...
=> Sunflower-0.4.62_1: running pre-pkg hook: 06-shlib-provides ...
=> Sunflower-0.4.62_1: running pre-pkg hook: 90-set-timestamps ...
=> Sunflower-0.4.62_1: setting mtimes to Tue Oct  6 02:49:41 CDT 2020
=> Sunflower-0.4.62_1: running pre-pkg hook: 99-pkglint-subpkgs ...
=> Sunflower-0.4.62_1: running pre-pkg hook: 99-pkglint ...
=> Sunflower-0.4.62_1: running pre-pkg hook: 999-collected-rdeps ...
   python3>=0 python3-gobject>=0 python-chardet>=0 gtk+3>=0 libnotify>=0 gdk-pixbuf>=0 vte3>=0 glib>=0 pango>=0 
=> Sunflower-0.4.62_1: running do-pkg hook: 00-gen-pkg ...
=> Creating Sunflower-0.4.62_1.x86_64-musl.xbps for repository /host/binpkgs/pruebas ...
=> Sunflower-0.4.62_1: running post-pkg hook: 00-register-pkg ...
=> Registering new packages to /host/binpkgs/pruebas
index: added `Sunflower-0.4.62_1' (x86_64-musl).
index: 1 packages registered.
=> Sunflower-0.4.62_1: removing autodeps, please wait...
=> Sunflower-0.4.62_1: cleaning build directory...
=> Sunflower: removing files from destdir...

When executing the binary the same thing happens to me as to reback00 and I get the following:

sunflower
(Sunflower:20086): Gtk-WARNING **: 03:04:38.329: Theme parsing error: gtk.css:3611:22: 'none' is not a valid color name
Traceback (most recent call last):
  File "/usr/lib/python3.8/site-packages/sunflower/__main__.py", line 163, in do_activate
    self.window = MainWindow(
  File "/usr/lib/python3.8/site-packages/sunflower/gui/main_window.py", line 85, in __init__
    self._load_styles()
  File "/usr/lib/python3.8/site-packages/sunflower/gui/main_window.py", line 928, in _load_styles
    provider.load_from_file(Gio.File.new_for_path(file_name))
gi.repository.GLib.Error: gtk-css-provider-error-quark: <broken file>:1:0Failed to import: Error al abrir el archivo /bin/styles/main.css: No such file or directory (2)
^CTraceback (most recent call last):
  File "/bin/sunflower", line 33, in <module>
    sys.exit(load_entry_point('Sunflower==0.4.62', 'console_scripts', 'sunflower')())
  File "/bin/sunflower", line 25, in importlib_load_entry_point
    return next(matches).load()
  File "/usr/lib/python3.8/importlib/metadata.py", line 77, in load
    module = import_module(match.group('module'))
  File "/usr/lib/python3.8/importlib/__init__.py", line 127, in import_module
    return _bootstrap._gcd_import(name[level:], package, level)
  File "<frozen importlib._bootstrap>", line 1014, in _gcd_import
  File "<frozen importlib._bootstrap>", line 991, in _find_and_load
  File "<frozen importlib._bootstrap>", line 975, in _find_and_load_unlocked
  File "<frozen importlib._bootstrap>", line 671, in _load_unlocked
  File "<frozen importlib._bootstrap_external>", line 783, in exec_module
  File "<frozen importlib._bootstrap>", line 219, in _call_with_frames_removed
  File "/usr/lib/python3.8/site-packages/sunflower/__main__.py", line 224, in <module>
    exit_status = application.run(sys.argv)
  File "/usr/lib/python3.8/site-packages/gi/overrides/Gio.py", line 44, in run
    return Gio.Application.run(self, *args, **kwargs)
  File "/usr/lib/python3.8/contextlib.py", line 120, in __exit__
    next(self.gen)
  File "/usr/lib/python3.8/site-packages/gi/_ossighelper.py", line 251, in register_sigint_fallback
    signal.default_int_handler(signal.SIGINT, None)
KeyboardInterrupt

Thanks for posting this. So the main.css path issue is confirmed.

This issue was for not showing any message and hanging silently on terminal. It seems to have fixed by itself. So I have opened a separate issue for this main.css message specifically: #457 Hope we can get some progress there.

It wasn't fixed by itself. Few days ago I pushed few patches which are addressing locations of static assets. Those are affecting this for sure. Setup.py was and is our weak spot. I mangled up the first version from what I could find online, then few community members contributed and few PRs finished it off. In other words, Setup.py is not reliable nor should be used if I have any saying in this. Making a dedicated installation script or package is far smarter idea.

That style, splash image for about window, window icons, etc. All reside in different directories as static assets and I didn't manage to find a standardized and proper way of installing those through setup.py. If you folks have any tips for me, I'd be more than willing to try and make it right, but right now it seems fixing setup.py for one system breaks it in other 2.

It wasn't fixed by itself. ... I mangled up the first version from what I could find online, then few community members contributed and few PRs finished it off.

But I thought I tried with a release archive for 0.4-62. As far as I know, once a release gets out it stays like that (I mean it does not automatically update from master). My logic tells me it should result in the hang behavior because the checksum is also the same as before.

That style, splash image for about window, window icons, etc. All reside in different directories as static assets and I didn't manage to find a standardized and proper way of installing those through setup.py.

Then maybe I should try to apply a patch to hardcode the path until #457 is fixed.