Github messages for voidlinux
 help / color / mirror / Atom feed
From: PaperMountainStudio <PaperMountainStudio@users.noreply.github.com>
To: ml@inbox.vuxu.org
Subject: Re: [PR PATCH] [Updated] [Testing needed] New package: wireplumber-0.3.0
Date: Sat, 07 Nov 2020 10:54:32 +0100	[thread overview]
Message-ID: <20201107095432.cieo_y679_SUQcH11ol63kyNgwmEQv35FKS8CAGob5I@z> (raw)
In-Reply-To: <gh-mailinglist-notifications-41a7ca26-5023-4802-975b-f1789d68868e-void-packages-26194@inbox.vuxu.org>

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

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

https://github.com/PaperMountainStudio/void-packages 0001-New-package-wireplumber-0.3.0.patch
https://github.com/void-linux/void-packages/pull/26194

[Testing needed] New package: wireplumber-0.3.0


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

[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #2: github-pr-0001-New-package-wireplumber-0.3.0.patch-26194.patch --]
[-- Type: text/x-diff, Size: 4660 bytes --]

From e9a36869743fe4c90c9af39e336be228b0cf4d1a Mon Sep 17 00:00:00 2001
From: Paper <paper@tilde.institute>
Date: Sat, 7 Nov 2020 10:53:49 +0100
Subject: [PATCH 1/2] New package: cpptoml-0.1.1

---
 srcpkgs/cpptoml/template | 15 +++++++++++++++
 1 file changed, 15 insertions(+)
 create mode 100644 srcpkgs/cpptoml/template

diff --git a/srcpkgs/cpptoml/template b/srcpkgs/cpptoml/template
new file mode 100644
index 00000000000..d71d29e8ffb
--- /dev/null
+++ b/srcpkgs/cpptoml/template
@@ -0,0 +1,15 @@
+# Template file for 'cpptoml'
+pkgname=cpptoml
+version=0.1.1
+revision=1
+build_style=cmake
+short_desc="Header-only library for parsing TOML"
+maintainer="Paper <paper@tilde.institute>"
+license="MIT"
+homepage="https://github.com/skystrife/cpptoml/"
+distfiles="https://github.com/skystrife/cpptoml/archive/v${version}.tar.gz"
+checksum=23af72468cfd4040984d46a0dd2a609538579c78ddc429d6b8fd7a10a6e24403
+
+post_install() {
+	vlicense LICENSE
+}

From 5582ec8cac80909e84b64c1fee269c09d07de3a1 Mon Sep 17 00:00:00 2001
From: Paper <paper@tilde.institute>
Date: Sat, 7 Nov 2020 10:54:03 +0100
Subject: [PATCH 2/2] New package: wireplumber-0.3.0

---
 .../wireplumber-0.3.0-devendor_cpptoml.patch  | 66 +++++++++++++++++++
 srcpkgs/wireplumber/template                  | 17 +++++
 2 files changed, 83 insertions(+)
 create mode 100644 srcpkgs/wireplumber/patches/wireplumber-0.3.0-devendor_cpptoml.patch
 create mode 100644 srcpkgs/wireplumber/template

diff --git a/srcpkgs/wireplumber/patches/wireplumber-0.3.0-devendor_cpptoml.patch b/srcpkgs/wireplumber/patches/wireplumber-0.3.0-devendor_cpptoml.patch
new file mode 100644
index 00000000000..8ba655a2d7b
--- /dev/null
+++ b/srcpkgs/wireplumber/patches/wireplumber-0.3.0-devendor_cpptoml.patch
@@ -0,0 +1,66 @@
+patch from arch linux
+diff -ruN lib/wptoml/array.cpp lib/wptoml/array.cpp
+--- lib/wptoml/array.cpp	2020-06-29 18:36:49.000000000 +0200
++++ lib/wptoml/array.cpp	2020-07-19 09:50:14.930311451 +0200
+@@ -10,7 +10,7 @@
+ #include <functional>
+ 
+ /* CPPTOML */
+-#include <include/cpptoml.h>
++#include <cpptoml.h>
+ 
+ /* TOML */
+ #include "private.h"
+diff -ruN lib/wptoml/file.cpp lib/wptoml/file.cpp
+--- lib/wptoml/file.cpp	2020-06-29 18:36:49.000000000 +0200
++++ lib/wptoml/file.cpp	2020-07-19 09:50:28.923522152 +0200
+@@ -7,7 +7,7 @@
+  */
+ 
+ /* CPPTOML */
+-#include <include/cpptoml.h>
++#include <cpptoml.h>
+ 
+ /* TOML */
+ #include "private.h"
+diff -ruN lib/wptoml/table.cpp lib/wptoml/table.cpp
+--- lib/wptoml/table.cpp	2020-06-29 18:36:49.000000000 +0200
++++ lib/wptoml/table.cpp	2020-07-19 09:50:46.786698703 +0200
+@@ -10,7 +10,7 @@
+ #include <functional>
+ 
+ /* CPPTOML */
+-#include <include/cpptoml.h>
++#include <cpptoml.h>
+ 
+ /* TOML */
+ #include "private.h"
+diff -ruN meson.build meson.build
+--- meson.build	2020-06-29 18:36:49.000000000 +0200
++++ meson.build	2020-07-19 10:17:13.288978511 +0200
+@@ -26,9 +26,13 @@
+   wireplumber_config_dir = join_paths(get_option('prefix'), get_option('sysconfdir'), 'wireplumber')
+ endif
+ 
+-cmake = import('cmake')
+-cpptoml = cmake.subproject('cpptoml')
+-cpptoml_dep = cpptoml.dependency('cpptoml')
++if get_option('wrap_mode') == 'nodownload'
++  cpptoml_dep = dependency('cpptoml')
++else
++  cmake = import('cmake')
++  cpptoml = cmake.subproject('cpptoml')
++  cpptoml_dep = cpptoml.dependency('cpptoml')
++endif
+ 
+ gobject_dep = dependency('gobject-2.0', version : '>= 2.58')
+ gmodule_dep = dependency('gmodule-2.0', version : '== ' + gobject_dep.version())
+diff -ruN subprojects/cpptoml.wrap subprojects/cpptoml.wrap
+--- subprojects/cpptoml.wrap	2020-06-29 18:36:49.000000000 +0200
++++ subprojects/cpptoml.wrap	2020-07-19 10:16:27.232734437 +0200
+@@ -1,4 +1,4 @@
+ [wrap-git]
+ directory=cpptoml
+ url=https://github.com/skystrife/cpptoml.git
+-revision=master
++revision=v0.1.1
diff --git a/srcpkgs/wireplumber/template b/srcpkgs/wireplumber/template
new file mode 100644
index 00000000000..05b8d680a84
--- /dev/null
+++ b/srcpkgs/wireplumber/template
@@ -0,0 +1,17 @@
+# Template file for 'wireplumber'
+pkgname=wireplumber
+version=0.3.0
+revision=1
+build_style=meson
+hostmakedepends="git gobject-introspection pkg-config cmake"
+makedepends="glib-devel cpptoml pipewire-devel"
+short_desc="Modular session / policy manager for PipeWire"
+maintainer="Paper <paper@tilde.institute>"
+license="MIT"
+homepage="https://gitlab.freedesktop.org/pipewire/wireplumber/"
+distfiles="https://gitlab.freedesktop.org/pipewire/wireplumber/-/archive/$version/wireplumber-$version.tar.gz"
+checksum=bb63a8cdd0b0a50a4faff4329ac2eacf986709ac1f98a7ceaaa94554534fc3c2
+
+post_install() {
+	vlicense LICENSE
+}

  reply	other threads:[~2020-11-07  9:54 UTC|newest]

Thread overview: 9+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2020-11-07  9:43 [PR PATCH] " PaperMountainStudio
2020-11-07  9:54 ` PaperMountainStudio [this message]
2020-11-07 12:49 ` ericonr
2020-11-07 15:06 ` [PR PATCH] [Updated] " PaperMountainStudio
2020-11-07 15:06 ` PaperMountainStudio
2020-11-07 17:10 ` ericonr
2020-11-07 22:37 ` ericonr
2020-11-11 23:34 ` PaperMountainStudio
2021-04-29 15:24 ` [PR PATCH] [Closed]: " paper42

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20201107095432.cieo_y679_SUQcH11ol63kyNgwmEQv35FKS8CAGob5I@z \
    --to=papermountainstudio@users.noreply.github.com \
    --cc=ml@inbox.vuxu.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
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).