Github messages for voidlinux
 help / color / mirror / Atom feed
* [PR PATCH] pulseaudio: enable glib schema installation
@ 2021-10-01 18:18 zdykstra
  2021-10-01 18:27 ` [PR REVIEW] " ericonr
                   ` (3 more replies)
  0 siblings, 4 replies; 5+ messages in thread
From: zdykstra @ 2021-10-01 18:18 UTC (permalink / raw)
  To: ml

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

There is a new pull request by zdykstra against master on the void-packages repository

https://github.com/zdykstra/void-packages pulseaudio-gsettings
https://github.com/void-linux/void-packages/pull/33219

pulseaudio: enable glib schema installation
<!-- Mark items with [x] where applicable -->

#### General
- [ ] This is a new package and it conforms to the [quality requirements](https://github.com/void-linux/void-packages/blob/master/Manual.md#quality-requirements)

#### Have the results of the proposed changes been tested?
- [x] I use the packages affected by the proposed changes on a regular basis and confirm this PR works for me
- [ ] I generally don't use the affected packages but briefly tested this PR

<!--
If GitHub CI cannot be used to validate the build result (for example, if the
build is likely to take several hours), make sure to
[skip CI](https://github.com/void-linux/void-packages/blob/master/CONTRIBUTING.md#continuous-integration).
When skipping CI, uncomment and fill out the following section.
Note: for builds that are likely to complete in less than 2 hours, it is not
acceptable to skip CI.
-->
<!-- 
#### Does it build and run successfully? 
(Please choose at least one native build and, if supported, at least one cross build. More are better.)
- [ ] I built this PR locally for my native architecture, (ARCH-LIBC)
- [ ] I built this PR locally for these architectures (if supported. mark crossbuilds):
  - [ ] aarch64-musl
  - [ ] armv7l
  - [ ] armv6l-musl
-->


`paprefs` relies on `org.freedesktop.pulseaudio.gschema.xml` being installed / compiled into `/usr/share/glib-2.0/schemas/` . 

```
(paprefs:8700): GLib-GIO-ERROR **: 13:13:47.730: Settings schema 'org.freedesktop.pulseaudio.module-group' is not installed
fish: Job 1, 'paprefs' terminated by signal SIGTRAP (Trace or breakpoint trap)
```


A patch file from https://github.com/void-linux/void-packages/pull/33219.patch is attached

[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #2: github-pr-pulseaudio-gsettings-33219.patch --]
[-- Type: text/x-diff, Size: 1118 bytes --]

From 87450d5b14355f914963915692cd90979fd7e8f3 Mon Sep 17 00:00:00 2001
From: Zach Dykstra <dykstra.zachary@gmail.com>
Date: Fri, 1 Oct 2021 13:15:39 -0500
Subject: [PATCH] pulseaudio: enable glib schema

---
 srcpkgs/pulseaudio/template | 5 +++--
 1 file changed, 3 insertions(+), 2 deletions(-)

diff --git a/srcpkgs/pulseaudio/template b/srcpkgs/pulseaudio/template
index ac2205d76f4b..8f2c0fabc201 100644
--- a/srcpkgs/pulseaudio/template
+++ b/srcpkgs/pulseaudio/template
@@ -1,11 +1,12 @@
 # Template file for 'pulseaudio'
 pkgname=pulseaudio
 version=15.0
-revision=1
+revision=2
 build_style=meson
 configure_args="-Djack=enabled -Dlirc=disabled -Dhal-compat=false -Dorc=enabled
  -Dgtk=disabled -Dsystemd=disabled -Dwebrtc-aec=enabled
- -Dbluez5=enabled -Dbluez5-ofono-headset=false -Dbluez5-native-headset=true
+ -Dbluez5=enabled -Dgsettings=enabled
+ -Dbluez5-ofono-headset=false -Dbluez5-native-headset=true
  -Delogind=enabled -Dudevrulesdir=/usr/lib/udev/rules.d
  -Dbashcompletiondir=/usr/share/bash-completion/completions"
 hostmakedepends="cmake m4 gettext libtool orc-devel perl-XML-Parser pkg-config

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

* Re: [PR REVIEW] pulseaudio: enable glib schema installation
  2021-10-01 18:18 [PR PATCH] pulseaudio: enable glib schema installation zdykstra
@ 2021-10-01 18:27 ` ericonr
  2021-10-01 18:29 ` [PR PATCH] [Updated] " zdykstra
                   ` (2 subsequent siblings)
  3 siblings, 0 replies; 5+ messages in thread
From: ericonr @ 2021-10-01 18:27 UTC (permalink / raw)
  To: ml

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

New review comment by ericonr on void-packages repository

https://github.com/void-linux/void-packages/pull/33219#discussion_r720458658

Comment:
Please put `gsettings` before `bluez5` here.

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

* Re: [PR PATCH] [Updated] pulseaudio: enable glib schema installation
  2021-10-01 18:18 [PR PATCH] pulseaudio: enable glib schema installation zdykstra
  2021-10-01 18:27 ` [PR REVIEW] " ericonr
@ 2021-10-01 18:29 ` zdykstra
  2021-10-01 18:30 ` [PR PATCH] [Merged]: " ericonr
  2021-10-01 18:30 ` [PR REVIEW] " zdykstra
  3 siblings, 0 replies; 5+ messages in thread
From: zdykstra @ 2021-10-01 18:29 UTC (permalink / raw)
  To: ml

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

There is an updated pull request by zdykstra against master on the void-packages repository

https://github.com/zdykstra/void-packages pulseaudio-gsettings
https://github.com/void-linux/void-packages/pull/33219

pulseaudio: enable glib schema installation
<!-- Mark items with [x] where applicable -->

#### General
- [ ] This is a new package and it conforms to the [quality requirements](https://github.com/void-linux/void-packages/blob/master/Manual.md#quality-requirements)

#### Have the results of the proposed changes been tested?
- [x] I use the packages affected by the proposed changes on a regular basis and confirm this PR works for me
- [ ] I generally don't use the affected packages but briefly tested this PR

<!--
If GitHub CI cannot be used to validate the build result (for example, if the
build is likely to take several hours), make sure to
[skip CI](https://github.com/void-linux/void-packages/blob/master/CONTRIBUTING.md#continuous-integration).
When skipping CI, uncomment and fill out the following section.
Note: for builds that are likely to complete in less than 2 hours, it is not
acceptable to skip CI.
-->
<!-- 
#### Does it build and run successfully? 
(Please choose at least one native build and, if supported, at least one cross build. More are better.)
- [ ] I built this PR locally for my native architecture, (ARCH-LIBC)
- [ ] I built this PR locally for these architectures (if supported. mark crossbuilds):
  - [ ] aarch64-musl
  - [ ] armv7l
  - [ ] armv6l-musl
-->


`paprefs` relies on `org.freedesktop.pulseaudio.gschema.xml` being installed / compiled into `/usr/share/glib-2.0/schemas/` . 

```
(paprefs:8700): GLib-GIO-ERROR **: 13:13:47.730: Settings schema 'org.freedesktop.pulseaudio.module-group' is not installed
fish: Job 1, 'paprefs' terminated by signal SIGTRAP (Trace or breakpoint trap)
```


A patch file from https://github.com/void-linux/void-packages/pull/33219.patch is attached

[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #2: github-pr-pulseaudio-gsettings-33219.patch --]
[-- Type: text/x-diff, Size: 1131 bytes --]

From 96643764b9e0eab19284fd0d9ba6b9e320636223 Mon Sep 17 00:00:00 2001
From: Zach Dykstra <dykstra.zachary@gmail.com>
Date: Fri, 1 Oct 2021 13:15:39 -0500
Subject: [PATCH] pulseaudio: enable glib schema installation

---
 srcpkgs/pulseaudio/template | 5 +++--
 1 file changed, 3 insertions(+), 2 deletions(-)

diff --git a/srcpkgs/pulseaudio/template b/srcpkgs/pulseaudio/template
index ac2205d76f4b..f1f88d7fb08a 100644
--- a/srcpkgs/pulseaudio/template
+++ b/srcpkgs/pulseaudio/template
@@ -1,11 +1,12 @@
 # Template file for 'pulseaudio'
 pkgname=pulseaudio
 version=15.0
-revision=1
+revision=2
 build_style=meson
 configure_args="-Djack=enabled -Dlirc=disabled -Dhal-compat=false -Dorc=enabled
  -Dgtk=disabled -Dsystemd=disabled -Dwebrtc-aec=enabled
- -Dbluez5=enabled -Dbluez5-ofono-headset=false -Dbluez5-native-headset=true
+ -Dgsettings=enabled -Dbluez5=enabled
+ -Dbluez5-ofono-headset=false -Dbluez5-native-headset=true
  -Delogind=enabled -Dudevrulesdir=/usr/lib/udev/rules.d
  -Dbashcompletiondir=/usr/share/bash-completion/completions"
 hostmakedepends="cmake m4 gettext libtool orc-devel perl-XML-Parser pkg-config

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

* Re: [PR PATCH] [Merged]: pulseaudio: enable glib schema installation
  2021-10-01 18:18 [PR PATCH] pulseaudio: enable glib schema installation zdykstra
  2021-10-01 18:27 ` [PR REVIEW] " ericonr
  2021-10-01 18:29 ` [PR PATCH] [Updated] " zdykstra
@ 2021-10-01 18:30 ` ericonr
  2021-10-01 18:30 ` [PR REVIEW] " zdykstra
  3 siblings, 0 replies; 5+ messages in thread
From: ericonr @ 2021-10-01 18:30 UTC (permalink / raw)
  To: ml

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

There's a merged pull request on the void-packages repository

pulseaudio: enable glib schema installation
https://github.com/void-linux/void-packages/pull/33219

Description:
<!-- Mark items with [x] where applicable -->

#### General
- [ ] This is a new package and it conforms to the [quality requirements](https://github.com/void-linux/void-packages/blob/master/Manual.md#quality-requirements)

#### Have the results of the proposed changes been tested?
- [x] I use the packages affected by the proposed changes on a regular basis and confirm this PR works for me
- [ ] I generally don't use the affected packages but briefly tested this PR

<!--
If GitHub CI cannot be used to validate the build result (for example, if the
build is likely to take several hours), make sure to
[skip CI](https://github.com/void-linux/void-packages/blob/master/CONTRIBUTING.md#continuous-integration).
When skipping CI, uncomment and fill out the following section.
Note: for builds that are likely to complete in less than 2 hours, it is not
acceptable to skip CI.
-->
<!-- 
#### Does it build and run successfully? 
(Please choose at least one native build and, if supported, at least one cross build. More are better.)
- [ ] I built this PR locally for my native architecture, (ARCH-LIBC)
- [ ] I built this PR locally for these architectures (if supported. mark crossbuilds):
  - [ ] aarch64-musl
  - [ ] armv7l
  - [ ] armv6l-musl
-->


`paprefs` relies on `org.freedesktop.pulseaudio.gschema.xml` being installed / compiled into `/usr/share/glib-2.0/schemas/` . 

```
(paprefs:8700): GLib-GIO-ERROR **: 13:13:47.730: Settings schema 'org.freedesktop.pulseaudio.module-group' is not installed
fish: Job 1, 'paprefs' terminated by signal SIGTRAP (Trace or breakpoint trap)
```


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

* Re: [PR REVIEW] pulseaudio: enable glib schema installation
  2021-10-01 18:18 [PR PATCH] pulseaudio: enable glib schema installation zdykstra
                   ` (2 preceding siblings ...)
  2021-10-01 18:30 ` [PR PATCH] [Merged]: " ericonr
@ 2021-10-01 18:30 ` zdykstra
  3 siblings, 0 replies; 5+ messages in thread
From: zdykstra @ 2021-10-01 18:30 UTC (permalink / raw)
  To: ml

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

New review comment by zdykstra on void-packages repository

https://github.com/void-linux/void-packages/pull/33219#discussion_r720460421

Comment:
done!

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

end of thread, other threads:[~2021-10-01 18:30 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2021-10-01 18:18 [PR PATCH] pulseaudio: enable glib schema installation zdykstra
2021-10-01 18:27 ` [PR REVIEW] " ericonr
2021-10-01 18:29 ` [PR PATCH] [Updated] " zdykstra
2021-10-01 18:30 ` [PR PATCH] [Merged]: " ericonr
2021-10-01 18:30 ` [PR REVIEW] " zdykstra

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).