* [bug#51212] [PATCH] gnu: pipewire-0.3: Update to 0.3.38.
@ 2021-10-14 19:14 Morgan.J.Smith
2021-10-14 19:23 ` [bug#51212] [PATCH v2] " Morgan.J.Smith
2021-11-02 23:26 ` [bug#51212] Update pipewire and add wireplumber Morgan.J.Smith
0 siblings, 2 replies; 5+ messages in thread
From: Morgan.J.Smith @ 2021-10-14 19:14 UTC (permalink / raw)
To: 51212; +Cc: Morgan Smith
From: Morgan Smith <Morgan.J.Smith@outlook.com>
* gnu/packages/linux.scm (pipewire-0.3): Update to 0.3.38.
[meson] Use meson-0.55.
[phases] Don't delete shrink-runpath.
[native-inputs] Add pipewire native-inputs to enable documentation generation.
---
I installed this on my system and it works great. I also read the release notes
but none of them mention to newer meson dependency so maybe that's not a good
metric to determine if any more changes are needed :P.
gnu/packages/linux.scm | 17 ++++++++---------
1 file changed, 8 insertions(+), 9 deletions(-)
diff --git a/gnu/packages/linux.scm b/gnu/packages/linux.scm
index 0088dbad4a..ee5c78c0e1 100644
--- a/gnu/packages/linux.scm
+++ b/gnu/packages/linux.scm
@@ -80,6 +80,7 @@ (define-module (gnu packages linux)
#:use-module (gnu packages bash)
#:use-module (gnu packages bison)
#:use-module (gnu packages boost)
+ #:use-module (gnu packages build-tools)
#:use-module (gnu packages calendar)
#:use-module (gnu packages check)
#:use-module (gnu packages cpio)
@@ -8046,7 +8047,7 @@ (define-public pipewire-0.3
(package
(inherit pipewire)
(name "pipewire")
- (version "0.3.29")
+ (version "0.3.38")
(source (origin
(method git-fetch)
(uri (git-reference
@@ -8055,23 +8056,21 @@ (define-public pipewire-0.3
(file-name (git-file-name name version))
(sha256
(base32
- "16jjxcnahxqfcawz77ywx837ybhwzcivn7hgqb9cmlp1y2syy8gk"))))
+ "15alnzwdgjbjrmphyinwdbaa1bi9cqbk8gkhrb4y6akjqph76hs0"))))
(arguments
- '(#:configure-flags
+ `(#:meson ,meson-0.55
+ #:configure-flags
(list (string-append "-Dudevrulesdir=" (assoc-ref %outputs "out")
"/lib/udev/rules.d")
- "-Dsystemd=disabled")
- #:phases
- (modify-phases %standard-phases
- ;; Skip shrink-runpath, otherwise validate-runpath fails.
- (delete 'shrink-runpath))))
+ "-Dsystemd=disabled")))
(inputs
(append (package-inputs pipewire)
`(("bluez" ,bluez)
("jack" ,jack-2)
("pulseaudio" ,pulseaudio)
("vulkan-loader" ,vulkan-loader)
- ("vulkan-headers" ,vulkan-headers))))))
+ ("vulkan-headers" ,vulkan-headers))))
+ (native-inputs (package-native-inputs pipewire))))
(define-public ell
(package
--
2.33.0
^ permalink raw reply related [flat|nested] 5+ messages in thread
* [bug#51212] [PATCH v2] gnu: pipewire-0.3: Update to 0.3.38.
2021-10-14 19:14 [bug#51212] [PATCH] gnu: pipewire-0.3: Update to 0.3.38 Morgan.J.Smith
@ 2021-10-14 19:23 ` Morgan.J.Smith
2021-10-24 1:27 ` [bug#51212] [PATCH] " Morgan Smith
2021-11-02 23:26 ` [bug#51212] Update pipewire and add wireplumber Morgan.J.Smith
1 sibling, 1 reply; 5+ messages in thread
From: Morgan.J.Smith @ 2021-10-14 19:23 UTC (permalink / raw)
To: 51212; +Cc: Morgan Smith
From: Morgan Smith <Morgan.J.Smith@outlook.com>
* gnu/packages/linux.scm (pipewire-0.3): Update to 0.3.38.
[phases] Don't delete shrink-runpath.
[native-inputs] Add pkg-config and python-docutils to enable documentation generation.
---
Little mistake sorry!
gnu/packages/linux.scm | 19 ++++++++++---------
1 file changed, 10 insertions(+), 9 deletions(-)
diff --git a/gnu/packages/linux.scm b/gnu/packages/linux.scm
index 0088dbad4a..dcc919dc8a 100644
--- a/gnu/packages/linux.scm
+++ b/gnu/packages/linux.scm
@@ -80,6 +80,7 @@ (define-module (gnu packages linux)
#:use-module (gnu packages bash)
#:use-module (gnu packages bison)
#:use-module (gnu packages boost)
+ #:use-module (gnu packages build-tools)
#:use-module (gnu packages calendar)
#:use-module (gnu packages check)
#:use-module (gnu packages cpio)
@@ -8046,7 +8047,7 @@ (define-public pipewire-0.3
(package
(inherit pipewire)
(name "pipewire")
- (version "0.3.29")
+ (version "0.3.38")
(source (origin
(method git-fetch)
(uri (git-reference
@@ -8055,23 +8056,23 @@ (define-public pipewire-0.3
(file-name (git-file-name name version))
(sha256
(base32
- "16jjxcnahxqfcawz77ywx837ybhwzcivn7hgqb9cmlp1y2syy8gk"))))
+ "15alnzwdgjbjrmphyinwdbaa1bi9cqbk8gkhrb4y6akjqph76hs0"))))
(arguments
- '(#:configure-flags
+ `(#:meson ,meson-0.55
+ #:configure-flags
(list (string-append "-Dudevrulesdir=" (assoc-ref %outputs "out")
"/lib/udev/rules.d")
- "-Dsystemd=disabled")
- #:phases
- (modify-phases %standard-phases
- ;; Skip shrink-runpath, otherwise validate-runpath fails.
- (delete 'shrink-runpath))))
+ "-Dsystemd=disabled")))
(inputs
(append (package-inputs pipewire)
`(("bluez" ,bluez)
("jack" ,jack-2)
("pulseaudio" ,pulseaudio)
("vulkan-loader" ,vulkan-loader)
- ("vulkan-headers" ,vulkan-headers))))))
+ ("vulkan-headers" ,vulkan-headers))))
+ (native-inputs
+ `(("pkg-config" ,pkg-config)
+ ("python-docutils" ,python-docutils)))))
(define-public ell
(package
--
2.33.0
^ permalink raw reply related [flat|nested] 5+ messages in thread
* [bug#51212] [PATCH] gnu: pipewire-0.3: Update to 0.3.38.
2021-10-14 19:23 ` [bug#51212] [PATCH v2] " Morgan.J.Smith
@ 2021-10-24 1:27 ` Morgan Smith
0 siblings, 0 replies; 5+ messages in thread
From: Morgan Smith @ 2021-10-24 1:27 UTC (permalink / raw)
To: 51212
I just wanted to let you guys know that I've been using this package of
pipewire since I posted this patch with no issues. So it's probably
pretty good. Although they already released 0.3.39 so this patch is
already out of date :P
^ permalink raw reply [flat|nested] 5+ messages in thread
* [bug#51212] Update pipewire and add wireplumber
2021-10-14 19:14 [bug#51212] [PATCH] gnu: pipewire-0.3: Update to 0.3.38 Morgan.J.Smith
2021-10-14 19:23 ` [bug#51212] [PATCH v2] " Morgan.J.Smith
@ 2021-11-02 23:26 ` Morgan.J.Smith
2021-12-16 19:30 ` Timmy Douglas via Guix-patches via
1 sibling, 1 reply; 5+ messages in thread
From: Morgan.J.Smith @ 2021-11-02 23:26 UTC (permalink / raw)
To: 51212
The latest and greatest pipewire stopped bundling session managers into the repo so now we gotta build a session manager separately.
^ permalink raw reply [flat|nested] 5+ messages in thread
* [bug#51212] Update pipewire and add wireplumber
2021-11-02 23:26 ` [bug#51212] Update pipewire and add wireplumber Morgan.J.Smith
@ 2021-12-16 19:30 ` Timmy Douglas via Guix-patches via
0 siblings, 0 replies; 5+ messages in thread
From: Timmy Douglas via Guix-patches via @ 2021-12-16 19:30 UTC (permalink / raw)
To: Morgan.J.Smith, 51212
Morgan.J.Smith@outlook.com writes:
> The latest and greatest pipewire stopped bundling session managers
> into the repo so now we gotta build a session manager separately.
+1. I just upgraded and noticed my audio stopped working now that
pipewire-media-session is gone. I just noticed this patch set:
https://debbugs.gnu.org/cgi/bugreport.cgi?bug=52492
which also adds it and cleans a few things up.
^ permalink raw reply [flat|nested] 5+ messages in thread
end of thread, other threads:[~2021-12-16 19:31 UTC | newest]
Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2021-10-14 19:14 [bug#51212] [PATCH] gnu: pipewire-0.3: Update to 0.3.38 Morgan.J.Smith
2021-10-14 19:23 ` [bug#51212] [PATCH v2] " Morgan.J.Smith
2021-10-24 1:27 ` [bug#51212] [PATCH] " Morgan Smith
2021-11-02 23:26 ` [bug#51212] Update pipewire and add wireplumber Morgan.J.Smith
2021-12-16 19:30 ` Timmy Douglas via Guix-patches via
Code repositories for project(s) associated with this public inbox
https://git.savannah.gnu.org/cgit/guix.git
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 read-only IMAP folder(s) and NNTP newsgroup(s).