Package Details: spark-dwine-helper 5.6.3_1.1-1

Git Clone URL: https://aur.archlinux.org/spark-dwine-helper.git (read-only, click to copy)
Package Base: spark-dwine-helper
Description: Modify deepin-wine to make it perform better.修改和增强deepin-wine来提升体验.
Upstream URL: https://gitee.com/spark-store-project/spark-wine
Keywords: deepin-wine-helper
Licenses: GPL-3.0-only
Conflicts: spark-dwine-helper
Submitter: zxp19821005
Maintainer: zxp19821005
Last Packager: zxp19821005
Votes: 3
Popularity: 0.74
First Submitted: 2023-04-07 10:01 (UTC)
Last Updated: 2024-02-29 07:32 (UTC)

Latest Comments

zxp19821005 commented on 2023-12-19 03:59 (UTC)

通过namcap提示:

spark-dwine-helper E: Dependency python2 detected and not included (programs ['python2'] needed in scripts ['opt/deepinwine/tools/spark_get_tray_window'])

查看该文件:

#!/usr/bin/env python2
# vim: set ts=4 sw=4 fileencoding=utf-8:
# Luomio <nohappiness@gmail.com>
# Filename: dde-first-run.py
# Create Date: 27-03, 13

def get_tray_window():
    try:
        import gobject
        from dbus import glib
        import dbus
    except ImportError:
        return False

    gobject.threads_init()
    glib.init_threads()
    bus = dbus.SessionBus()
    traymanager = bus.get_object("com.deepin.dde.TrayManager", "/com/deepin/dde/TrayManager")

    windows = traymanager.Get("com.deepin.dde.TrayManager","TrayIcons")
    str="window_id:"
    for i in xrange(len(windows)):
        str += '{:#x} '.format(windows[i])

    print(str)

if __name__ == "__main__":
    get_tray_window()

AiCorein commented on 2023-12-18 16:30 (UTC)

在 2.5 版本中,新增了依赖项 python2。但 deb 解包结果显示并没有 python2 依赖,请问是有什么特殊情况需要 python2 吗?

zxp19821005 commented on 2023-06-27 05:57 (UTC)

@w568w 不好意思,应该是我打包后使用namcap没发现依赖,所以没有添加。目前已经补上了。谢谢反馈!

w568w commented on 2023-06-27 03:27 (UTC)

目前版本的运行/安装脚本 run.sh 调用了 7zzenity,如果 PATH 中没有这两条命令将会直接静默退出。我好奇 p7zipzenity 依赖项仅在 spark-dwine-helper-git 中存在,而不在 spark-dwine-helper 中,是否有特殊的理由?