Github messages for voidlinux
 help / color / mirror / Atom feed
* [ISSUE] vala-panel-appmenu missing dependencies
@ 2022-05-09 17:39 sm-idk
  2022-08-26 20:24 ` glaulher
                   ` (3 more replies)
  0 siblings, 4 replies; 5+ messages in thread
From: sm-idk @ 2022-05-09 17:39 UTC (permalink / raw)
  To: ml

[-- Attachment #1: Type: text/plain, Size: 1331 bytes --]

New issue by sm-idk on void-packages repository

https://github.com/void-linux/void-packages/issues/37064

Description:
<!-- Don't request update of package. We have a script for that. https://alpha.de.repo.voidlinux.org/void-updates/void-updates.txt. However, a quality pull request may help. -->
### System

* xuname:  Void 5.15.36_1 x86_64 AuthenticAMD uptodate rrrrrmmdnFFFFFFFF
  *output of ``xuname`` (part of xtools)*
* package:  vala-panel-appmenu-0.7.6_2
  *affected package(s) including the version*: ``xbps-query -p pkgver <pkgname>``

### Expected behavior
Package should pull `libdbusmenu-gtk3`, `libdbusmenu-qt5` alongside just `libdbusmenu-glib` so all windows that want to use the appmenu functionality will work with `vala-panel-appmenu` out of the box. (possible that it needs `appmenu-gtk-module`, `appmenu-gtk3-module` and `appmenu-registrar` along with it, but i didn't test that out yet)
### Actual behavior
None of the packages are dependencies of the `vala-panel-appmenu` package, making `vala-panel` and `vala-panel-appmenu` have the same functionality
### Steps to reproduce the behavior
```sh
$ xi vala-panel-appmenu
$ vala-panel -p appmenu #This will not work
```
```sh
$ xi vala-panel-appmenu libdbusmenu-gtk3 libdbusmenu-qt5
$ vala-panel -p appmenu #This will work as intended
```

^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: vala-panel-appmenu missing dependencies
  2022-05-09 17:39 [ISSUE] vala-panel-appmenu missing dependencies sm-idk
@ 2022-08-26 20:24 ` glaulher
  2022-08-26 20:26 ` glaulher
                   ` (2 subsequent siblings)
  3 siblings, 0 replies; 5+ messages in thread
From: glaulher @ 2022-08-26 20:24 UTC (permalink / raw)
  To: ml

[-- Attachment #1: Type: text/plain, Size: 1527 bytes --]

New comment by glaulher on void-packages repository

https://github.com/void-linux/void-packages/issues/37064#issuecomment-1228910621

Comment:
appmenu doesn't work without below steps in xfce:

add in /etc/environment:

export GTK_MODULES=appmenu-gtk-module

install:

appmenu-gtk-module appmenu-gtk3-module
appmenu-register

and resolve a bug in schemes:
create org.appmenu.gtk-module.gschema.xml in

/usr/share/glib-2.0/schemas/

contents:

```javascript
<?xml version="1.0" encoding="UTF-8"?>
<schemalist>
  <schema id="org.appmenu.gtk-module" path="/org/appmenu/gtk-module/">
    <key name="blacklist" type="as">
      <summary>Application blacklist</summary>
      <description>List of applications where appmenu-gtk-module should be disabled.</description>
      <default>['anjuta','freeciv', 'freeciv-gtk2', 'freeciv-gtk3', 'glade','gwyddion']</default>
    </key>
    <key name="whitelist" type="as">
      <summary>Application whitelist</summary>
      <description>List of applications where appmenu-gtk-module should be enabled.</description>
      <default>[]</default>
    </key>
    <key name="always-show-inner-menu" type="b">
      <summary>Always show menus in application</summary>
      <description>If this is enabled, menus will not removed from applications even if registrar found. Useful for HUD-only usage.</description>
      <default>false</default>
    </key>
  </schema>
</schemalist>
```
load as root:
glib-compile-schemas  /usr/share/glib-2.0/schemas/


^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: vala-panel-appmenu missing dependencies
  2022-05-09 17:39 [ISSUE] vala-panel-appmenu missing dependencies sm-idk
  2022-08-26 20:24 ` glaulher
@ 2022-08-26 20:26 ` glaulher
  2023-12-15  6:27 ` sgn
  2023-12-15  6:27 ` [ISSUE] [CLOSED] " sgn
  3 siblings, 0 replies; 5+ messages in thread
From: glaulher @ 2022-08-26 20:26 UTC (permalink / raw)
  To: ml

[-- Attachment #1: Type: text/plain, Size: 1547 bytes --]

New comment by glaulher on void-packages repository

https://github.com/void-linux/void-packages/issues/37064#issuecomment-1228910621

Comment:
appmenu doesn't work without below steps in xfce:

add in /etc/environment:

export GTK_MODULES=appmenu-gtk-module

install:

appmenu-gtk-module appmenu-gtk3-module
appmenu-register xfce4-panel-appmenu

and resolve a bug in schemes:
create org.appmenu.gtk-module.gschema.xml in

/usr/share/glib-2.0/schemas/

contents:

```javascript
<?xml version="1.0" encoding="UTF-8"?>
<schemalist>
  <schema id="org.appmenu.gtk-module" path="/org/appmenu/gtk-module/">
    <key name="blacklist" type="as">
      <summary>Application blacklist</summary>
      <description>List of applications where appmenu-gtk-module should be disabled.</description>
      <default>['anjuta','freeciv', 'freeciv-gtk2', 'freeciv-gtk3', 'glade','gwyddion']</default>
    </key>
    <key name="whitelist" type="as">
      <summary>Application whitelist</summary>
      <description>List of applications where appmenu-gtk-module should be enabled.</description>
      <default>[]</default>
    </key>
    <key name="always-show-inner-menu" type="b">
      <summary>Always show menus in application</summary>
      <description>If this is enabled, menus will not removed from applications even if registrar found. Useful for HUD-only usage.</description>
      <default>false</default>
    </key>
  </schema>
</schemalist>
```
load as root:
glib-compile-schemas  /usr/share/glib-2.0/schemas/


^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: [ISSUE] [CLOSED] vala-panel-appmenu missing dependencies
  2022-05-09 17:39 [ISSUE] vala-panel-appmenu missing dependencies sm-idk
                   ` (2 preceding siblings ...)
  2023-12-15  6:27 ` sgn
@ 2023-12-15  6:27 ` sgn
  3 siblings, 0 replies; 5+ messages in thread
From: sgn @ 2023-12-15  6:27 UTC (permalink / raw)
  To: ml

[-- Attachment #1: Type: text/plain, Size: 1354 bytes --]

Closed issue by sm-idk on void-packages repository

https://github.com/void-linux/void-packages/issues/37064

Description:
<!-- Don't request update of package. We have a script for that. https://alpha.de.repo.voidlinux.org/void-updates/void-updates.txt. However, a quality pull request may help. -->
### System

* xuname:  Void 5.15.36_1 x86_64 AuthenticAMD uptodate rrrrrmmdnFFFFFFFF
  *output of ``xuname`` (part of xtools)*
* package:  vala-panel-appmenu-0.7.6_2
  *affected package(s) including the version*: ``xbps-query -p pkgver <pkgname>``

### Expected behavior
Package should pull `libdbusmenu-gtk3`, `libdbusmenu-qt5` alongside just `libdbusmenu-glib` so all windows that want to use the appmenu functionality will work with `vala-panel-appmenu` out of the box. (possible that it needs `appmenu-gtk-module`, `appmenu-gtk3-module` and `appmenu-registrar` along with it, but i didn't test that out yet)
### Actual behavior
None of the packages are dependencies of the `vala-panel-appmenu` package, making `vala-panel` and `vala-panel-appmenu` have the same functionality
### Steps to reproduce the behavior
```sh
# xbps-install vala-panel-appmenu
$ vala-panel -p appmenu #This will not work
```
```sh
# xbps-install vala-panel-appmenu libdbusmenu-gtk3 libdbusmenu-qt5
$ vala-panel -p appmenu #This will work as intended
```

^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: vala-panel-appmenu missing dependencies
  2022-05-09 17:39 [ISSUE] vala-panel-appmenu missing dependencies sm-idk
  2022-08-26 20:24 ` glaulher
  2022-08-26 20:26 ` glaulher
@ 2023-12-15  6:27 ` sgn
  2023-12-15  6:27 ` [ISSUE] [CLOSED] " sgn
  3 siblings, 0 replies; 5+ messages in thread
From: sgn @ 2023-12-15  6:27 UTC (permalink / raw)
  To: ml

[-- Attachment #1: Type: text/plain, Size: 156 bytes --]

New comment by sgn on void-packages repository

https://github.com/void-linux/void-packages/issues/37064#issuecomment-1857347173

Comment:
not reproducible

^ permalink raw reply	[flat|nested] 5+ messages in thread

end of thread, other threads:[~2023-12-15  6:27 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2022-05-09 17:39 [ISSUE] vala-panel-appmenu missing dependencies sm-idk
2022-08-26 20:24 ` glaulher
2022-08-26 20:26 ` glaulher
2023-12-15  6:27 ` sgn
2023-12-15  6:27 ` [ISSUE] [CLOSED] " sgn

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).