Github messages for voidlinux
 help / color / mirror / Atom feed
From: DBLouis <DBLouis@users.noreply.github.com>
To: ml@inbox.vuxu.org
Subject: Re: [PR PATCH] [Updated] RNNoise
Date: Sat, 29 May 2021 13:59:18 +0200	[thread overview]
Message-ID: <20210529115918.RVg32ZBpHROyO-SlpC1FaIQ2drjEkjdkxDI5WViKu8M@z> (raw)
In-Reply-To: <gh-mailinglist-notifications-41a7ca26-5023-4802-975b-f1789d68868e-void-packages-31203@inbox.vuxu.org>

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

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

https://github.com/DBLouis/void-packages rnnoise
https://github.com/void-linux/void-packages/pull/31203

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

#### General
- [x] 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


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

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

From 04b21829da7c23e365733424ecf22089511fd294 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Louis=20Dupr=C3=A9=20Bertoni?=
 <louisdb@lespetitspedestres.org>
Date: Sat, 29 May 2021 12:54:14 +0300
Subject: [PATCH 1/3] New package: rnnoise-0.4.1

---
 common/shlibs            |  1 +
 srcpkgs/rnnoise-devel    |  1 +
 srcpkgs/rnnoise/template | 33 +++++++++++++++++++++++++++++++++
 3 files changed, 35 insertions(+)
 create mode 120000 srcpkgs/rnnoise-devel
 create mode 100644 srcpkgs/rnnoise/template

diff --git a/common/shlibs b/common/shlibs
index 666da46e0481..fbeedc81bfee 100644
--- a/common/shlibs
+++ b/common/shlibs
@@ -4006,3 +4006,4 @@ libbasu.so.0 basu-0.2.0_1
 libXcomp.so.3 nx-libs-3.5.99.24_1
 libXcompshad.so.3 nx-libs-3.5.99.24_1
 libNX_X11.so.6 nx-libs-3.5.99.24_1
+librnnoise.so.0 rnnoise-0.4.1_1
diff --git a/srcpkgs/rnnoise-devel b/srcpkgs/rnnoise-devel
new file mode 120000
index 000000000000..fd3349ee491f
--- /dev/null
+++ b/srcpkgs/rnnoise-devel
@@ -0,0 +1 @@
+rnnoise
\ No newline at end of file
diff --git a/srcpkgs/rnnoise/template b/srcpkgs/rnnoise/template
new file mode 100644
index 000000000000..c7c05660b933
--- /dev/null
+++ b/srcpkgs/rnnoise/template
@@ -0,0 +1,33 @@
+# Template file for 'rnnoise'
+pkgname=rnnoise
+_githash=1cbdbcf1283499bbb2230a6b0f126eb9b236defd
+version=0.4.1
+revision=1
+wrksrc="${pkgname}-${_githash}"
+build_style=gnu-configure
+hostmakedepends="automake libtool"
+short_desc="Recurrent neural network for audio noise reduction"
+maintainer="Louis Dupré Bertoni <contact@louisdb.xyz>"
+license="BSD-3-Clause"
+homepage="https://jmvalin.ca/demo/rnnoise/"
+distfiles="https://github.com/xiph/rnnoise/archive/${_githash}.tar.gz"
+checksum=68c7ab4e408426088603e19955e746bb2a412d84bb121b6f39834c60fc8068b7
+
+pre_configure() {
+	./autogen.sh
+}
+
+post_install() {
+	vlicense COPYING
+}
+
+rnnoise-devel_package() {
+	depends="${sourcepkg}>=${version}_${revision}"
+	short_desc+=" - development files"
+	pkg_install() {
+		vmove usr/include
+		vmove usr/lib/pkgconfig
+		vmove "usr/lib/*.a"
+		vmove "usr/lib/*.so"
+	}
+}

From eb616b3256b903205fb6a0ff57e44ffe5345a499 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Louis=20Dupr=C3=A9=20Bertoni?=
 <louisdb@lespetitspedestres.org>
Date: Sat, 29 May 2021 13:11:50 +0300
Subject: [PATCH 2/3] Add support for RNNoise to PulseEffects

---
 srcpkgs/pulseeffects/template | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/srcpkgs/pulseeffects/template b/srcpkgs/pulseeffects/template
index 3b94e3dc873b..7bfce52ceba8 100644
--- a/srcpkgs/pulseeffects/template
+++ b/srcpkgs/pulseeffects/template
@@ -1,13 +1,13 @@
 # Template file for 'pulseeffects'
 pkgname=pulseeffects
 version=5.0.3
-revision=1
+revision=2
 build_style=meson
 hostmakedepends="itstool pkg-config gettext"
 makedepends="boost-devel glib-devel gsettings-desktop-schemas-devel
  gst-plugins-bad1-devel gtkmm-devel libebur128-devel lilv-devel
  pipewire-devel python3-gobject-devel sratom-devel zita-convolver-devel
- libsndfile-devel libbs2b-devel"
+ libsndfile-devel libbs2b-devel rnnoise-devel"
 depends="calf gsettings-desktop-schemas gst-plugins-bad1
  gst-plugins-good1 pipewire python3-gobject python3-scipy zita-convolver
  gstreamer1-pipewire"

From 7c1a6e3cf7c901fcc140a7bb8a55bf4c08f09ccc Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Louis=20Dupr=C3=A9=20Bertoni?=
 <louisdb@lespetitspedestres.org>
Date: Sat, 29 May 2021 13:12:14 +0300
Subject: [PATCH 3/3] Add support for RNNoise to PulseEffects (legacy)

---
 srcpkgs/pulseeffects-legacy/template | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/srcpkgs/pulseeffects-legacy/template b/srcpkgs/pulseeffects-legacy/template
index c38c8ef2d9ef..15c30aa3622f 100644
--- a/srcpkgs/pulseeffects-legacy/template
+++ b/srcpkgs/pulseeffects-legacy/template
@@ -1,14 +1,14 @@
 # Template file for 'pulseeffects-legacy'
 pkgname=pulseeffects-legacy
 version=4.8.5
-revision=1
+revision=2
 wrksrc="pulseeffects-${version}"
 build_style=meson
 hostmakedepends="itstool pkg-config gettext"
 makedepends="boost-devel glib-devel gsettings-desktop-schemas-devel
  gst-plugins-bad1-devel gtkmm-devel libebur128-devel lilv-devel
  pulseaudio-devel python3-gobject-devel sratom-devel
- libsndfile-devel"
+ libsndfile-devel rnnoise-devel"
 depends="calf gsettings-desktop-schemas gst-plugins-bad1
  gst-plugins-good1 pulseaudio python3-gobject python3-scipy"
 short_desc="Sound effects for systems using PulseAudio (legacy)"

  parent reply	other threads:[~2021-05-29 11:59 UTC|newest]

Thread overview: 14+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2021-05-29 10:14 [PR PATCH] RNNoise DBLouis
2021-05-29 10:17 ` [PR PATCH] [Updated] RNNoise DBLouis
2021-05-29 11:32 ` [PR REVIEW] RNNoise paper42
2021-05-29 11:57 ` DBLouis
2021-05-29 11:59 ` DBLouis [this message]
2021-05-29 13:26 ` ericonr
2021-05-29 17:13 ` DBLouis
2021-06-26  0:54 ` Logarithmus
2021-06-26  0:55 ` Logarithmus
2021-06-26  0:55 ` Logarithmus
2021-06-26  0:56 ` Logarithmus
2021-07-02 20:53 ` [PR PATCH] [Closed]: RNNoise Johnnynator
2021-07-03  6:34 ` RNNoise DBLouis
2021-07-03  6:40 ` RNNoise FollieHiyuki

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=20210529115918.RVg32ZBpHROyO-SlpC1FaIQ2drjEkjdkxDI5WViKu8M@z \
    --to=dblouis@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).