Github messages for voidlinux
 help / color / mirror / Atom feed
From: jpmenil <jpmenil@users.noreply.github.com>
To: ml@inbox.vuxu.org
Subject: Re: [PR PATCH] [Updated] New package: squeezelite-1.9.7.1283
Date: Wed, 18 Nov 2020 08:48:35 +0100	[thread overview]
Message-ID: <20201118074835.U3imluSnrN6nzvrIRjv02_88v_nSzI0k0bYWR_rdwPQ@z> (raw)
In-Reply-To: <gh-mailinglist-notifications-41a7ca26-5023-4802-975b-f1789d68868e-void-packages-17022@inbox.vuxu.org>

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

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

https://github.com/jpmenil/void-packages add/squeezelite
https://github.com/void-linux/void-packages/pull/17022

New package: squeezelite-1.9.7.1283


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

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

From ebc6a2d83c5dec1d238d30965e51efeabf462b8b Mon Sep 17 00:00:00 2001
From: Jean-Philippe Menil <jpmenil@gmail.com>
Date: Mon, 2 Dec 2019 20:49:51 +0100
Subject: [PATCH 1/4] New package: squeezelite-1.9.6.1198

---
 srcpkgs/squeezelite/files/squeezelite.conf |  2 ++
 srcpkgs/squeezelite/files/squeezelite/run  |  3 +++
 srcpkgs/squeezelite/template               | 31 ++++++++++++++++++++++
 3 files changed, 36 insertions(+)
 create mode 100644 srcpkgs/squeezelite/files/squeezelite.conf
 create mode 100644 srcpkgs/squeezelite/files/squeezelite/run
 create mode 100644 srcpkgs/squeezelite/template

diff --git a/srcpkgs/squeezelite/files/squeezelite.conf b/srcpkgs/squeezelite/files/squeezelite.conf
new file mode 100644
index 00000000000..966aea8271a
--- /dev/null
+++ b/srcpkgs/squeezelite/files/squeezelite.conf
@@ -0,0 +1,2 @@
+# default squeezelite configuration
+OPTS="-f /var/log/squeezelite.log"
diff --git a/srcpkgs/squeezelite/files/squeezelite/run b/srcpkgs/squeezelite/files/squeezelite/run
new file mode 100644
index 00000000000..f8d39e96809
--- /dev/null
+++ b/srcpkgs/squeezelite/files/squeezelite/run
@@ -0,0 +1,3 @@
+#!/bin/sh
+[ -r /etc/squeezelite.conf ] && . /etc/squeezelite.conf
+exec chpst -u squeezelite:squeezelite squeezelite $OPTS 2>/dev/null
diff --git a/srcpkgs/squeezelite/template b/srcpkgs/squeezelite/template
new file mode 100644
index 00000000000..4be9016f4fa
--- /dev/null
+++ b/srcpkgs/squeezelite/template
@@ -0,0 +1,31 @@
+# Template file for 'squeezelite'
+pkgname=squeezelite
+version=1.9.6.1198
+revision=1
+_githash=1c1f429ae9494748fe0fa5807c3a22710edaa12f
+wrksrc="${pkgname}-${_githash}"
+build_style=gnu-makefile
+makedepends="alsa-lib-devel faad2-devel ffmpeg-devel libflac-devel libmad-devel libsoxr-devel libvorbis-devel mpg123-devel"
+short_desc="Lightweight headless squeezebox emulator"
+maintainer="Jean-Philippe Menil <jpmenil@gmail.com>"
+license="GPL-3.0-or-later"
+homepage="https://github.com/ralph-irving/squeezelite"
+distfiles="https://github.com/ralph-irving/squeezelite/archive/${_githash}.tar.gz"
+checksum=e8184646003cdca55ac420ab8401da848178704838353ce3954480276f2de62e
+
+system_groups="squeezelite"
+system_accounts="squeezelite"
+squeezelite_shell="/bin/false"
+squeezelite_descr="Squeezelite"
+squeezelite_groups="audio"
+
+do_build() {
+	make LDFLAGS="${LDFLAGS} -lasound -lpthread -lm -lrt" \
+		OPTS="${OPTS} -DDSD -DRESAMPLE -DVISEXPORT -DFFMPEG -DLINKALL"
+}
+
+do_install() {
+	vinstall ${FILESDIR}/squeezelite.conf 640 etc/
+	vbin squeezelite
+	vsv squeezelite
+}

From e71533bc7b3ffe1909fe7ebf9306aeae2b42635b Mon Sep 17 00:00:00 2001
From: Jean-Philippe Menil <jpmenil@gmail.com>
Date: Thu, 5 Dec 2019 18:22:45 +0100
Subject: [PATCH 2/4] need to pass audio group to chpst

---
 srcpkgs/squeezelite/files/squeezelite/run | 2 +-
 srcpkgs/squeezelite/template              | 1 -
 2 files changed, 1 insertion(+), 2 deletions(-)

diff --git a/srcpkgs/squeezelite/files/squeezelite/run b/srcpkgs/squeezelite/files/squeezelite/run
index f8d39e96809..315ef622074 100644
--- a/srcpkgs/squeezelite/files/squeezelite/run
+++ b/srcpkgs/squeezelite/files/squeezelite/run
@@ -1,3 +1,3 @@
 #!/bin/sh
 [ -r /etc/squeezelite.conf ] && . /etc/squeezelite.conf
-exec chpst -u squeezelite:squeezelite squeezelite $OPTS 2>/dev/null
+exec chpst -u squeezelite:squeezelite:audio squeezelite $OPTS 2>/dev/null
diff --git a/srcpkgs/squeezelite/template b/srcpkgs/squeezelite/template
index 4be9016f4fa..ef6a3fdd782 100644
--- a/srcpkgs/squeezelite/template
+++ b/srcpkgs/squeezelite/template
@@ -17,7 +17,6 @@ system_groups="squeezelite"
 system_accounts="squeezelite"
 squeezelite_shell="/bin/false"
 squeezelite_descr="Squeezelite"
-squeezelite_groups="audio"
 
 do_build() {
 	make LDFLAGS="${LDFLAGS} -lasound -lpthread -lm -lrt" \

From 3c5d33ff45bf11fb9453528134bd5ad0a2b12461 Mon Sep 17 00:00:00 2001
From: Jean-Philippe Menil <jpmenil@gmail.com>
Date: Sun, 15 Nov 2020 10:46:41 +0100
Subject: [PATCH 3/4] update to 1.9.7.1283

Signed-off-by: Jean-Philippe Menil <jpmenil@gmail.com>
---
 srcpkgs/squeezelite/files/squeezelite/run | 1 +
 srcpkgs/squeezelite/template              | 6 +++---
 2 files changed, 4 insertions(+), 3 deletions(-)

diff --git a/srcpkgs/squeezelite/files/squeezelite/run b/srcpkgs/squeezelite/files/squeezelite/run
index 315ef622074..456575ad01d 100644
--- a/srcpkgs/squeezelite/files/squeezelite/run
+++ b/srcpkgs/squeezelite/files/squeezelite/run
@@ -1,3 +1,4 @@
 #!/bin/sh
+
 [ -r /etc/squeezelite.conf ] && . /etc/squeezelite.conf
 exec chpst -u squeezelite:squeezelite:audio squeezelite $OPTS 2>/dev/null
diff --git a/srcpkgs/squeezelite/template b/srcpkgs/squeezelite/template
index ef6a3fdd782..823f0ff7792 100644
--- a/srcpkgs/squeezelite/template
+++ b/srcpkgs/squeezelite/template
@@ -1,8 +1,8 @@
 # Template file for 'squeezelite'
 pkgname=squeezelite
-version=1.9.6.1198
+version=1.9.7.1283f
 revision=1
-_githash=1c1f429ae9494748fe0fa5807c3a22710edaa12f
+_githash=f2eb393725fd21ef48e52431f48ae267957b6e7f
 wrksrc="${pkgname}-${_githash}"
 build_style=gnu-makefile
 makedepends="alsa-lib-devel faad2-devel ffmpeg-devel libflac-devel libmad-devel libsoxr-devel libvorbis-devel mpg123-devel"
@@ -11,7 +11,7 @@ maintainer="Jean-Philippe Menil <jpmenil@gmail.com>"
 license="GPL-3.0-or-later"
 homepage="https://github.com/ralph-irving/squeezelite"
 distfiles="https://github.com/ralph-irving/squeezelite/archive/${_githash}.tar.gz"
-checksum=e8184646003cdca55ac420ab8401da848178704838353ce3954480276f2de62e
+checksum=b1800157d27c0449df4e23a9bec4911a76850dbca63a0ceef95bd9957b5c3523
 
 system_groups="squeezelite"
 system_accounts="squeezelite"

From 67ac21ef422aec3fe3085a6ef965e150b519384a Mon Sep 17 00:00:00 2001
From: Jean-Philippe Menil <jpmenil@gmail.com>
Date: Wed, 18 Nov 2020 08:48:27 +0100
Subject: [PATCH 4/4] Update to 1.9.8.1287

Signed-off-by: Jean-Philippe Menil <jpmenil@gmail.com>
---
 srcpkgs/squeezelite/template | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/srcpkgs/squeezelite/template b/srcpkgs/squeezelite/template
index 823f0ff7792..baa458ee0a6 100644
--- a/srcpkgs/squeezelite/template
+++ b/srcpkgs/squeezelite/template
@@ -1,8 +1,8 @@
 # Template file for 'squeezelite'
 pkgname=squeezelite
-version=1.9.7.1283f
+version=1.9.8.1287
 revision=1
-_githash=f2eb393725fd21ef48e52431f48ae267957b6e7f
+_githash=cf2230bd8edb9397cafe97c94cda1836269ba7d9
 wrksrc="${pkgname}-${_githash}"
 build_style=gnu-makefile
 makedepends="alsa-lib-devel faad2-devel ffmpeg-devel libflac-devel libmad-devel libsoxr-devel libvorbis-devel mpg123-devel"
@@ -11,7 +11,7 @@ maintainer="Jean-Philippe Menil <jpmenil@gmail.com>"
 license="GPL-3.0-or-later"
 homepage="https://github.com/ralph-irving/squeezelite"
 distfiles="https://github.com/ralph-irving/squeezelite/archive/${_githash}.tar.gz"
-checksum=b1800157d27c0449df4e23a9bec4911a76850dbca63a0ceef95bd9957b5c3523
+checksum=fd1f02b802780e96ef38649e4f2c3e6dfaddefcd33b321a8dbf6f82955f903f4
 
 system_groups="squeezelite"
 system_accounts="squeezelite"

  parent reply	other threads:[~2020-11-18  7:48 UTC|newest]

Thread overview: 8+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
     [not found] <gh-mailinglist-notifications-41a7ca26-5023-4802-975b-f1789d68868e-void-packages-17022@inbox.vuxu.org>
2020-11-15 11:31 ` [PR REVIEW] " jpmenil
2020-11-18  7:48 ` jpmenil [this message]
2021-09-04  7:37 ` [PR PATCH] [Updated] New package: squeezelite-1.9.8.1287 jpmenil
2021-09-04  7:45 ` [PR PATCH] [Updated] New package: squeezelite-1.9.9.1389 jpmenil
2021-09-04  7:52 ` jpmenil
2021-09-04  8:01 ` jpmenil
2022-04-15  2:12 ` github-actions
2022-04-29  2:13 ` [PR PATCH] [Closed]: " github-actions

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=20201118074835.U3imluSnrN6nzvrIRjv02_88v_nSzI0k0bYWR_rdwPQ@z \
    --to=jpmenil@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).