Github messages for voidlinux
 help / color / mirror / Atom feed
From: voidlinux-github@inbox.vuxu.org
To: ml@inbox.vuxu.org
Subject: Re: [PR PATCH] [Updated] New package: upmpdcli-1.4.5
Date: Sat, 02 Nov 2019 07:20:58 +0100	[thread overview]
Message-ID: <20191102062058.eJhThZbNYfz3j24-z3ktgHDmLrFjkif9x5G7GiqqOXE@z> (raw)
In-Reply-To: <gh-mailinglist-notifications-41a7ca26-5023-4802-975b-f1789d68868e-void-packages-14624@inbox.vuxu.org>

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

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

https://github.com/amak79/void-packages upmpdcli
https://github.com/void-linux/void-packages/pull/14624

New package: upmpdcli-1.4.5


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

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

From 03b9e0aa0f337f1671e18a03b4a3e6e36ee40f65 Mon Sep 17 00:00:00 2001
From: amak <amak.git@outlook.com>
Date: Sat, 21 Sep 2019 19:04:30 +1000
Subject: [PATCH 1/2] New package: libupnpp-0.17.2

---
 common/shlibs             |  1 +
 srcpkgs/libupnpp-devel    |  1 +
 srcpkgs/libupnpp/template | 23 +++++++++++++++++++++++
 3 files changed, 25 insertions(+)
 create mode 120000 srcpkgs/libupnpp-devel
 create mode 100644 srcpkgs/libupnpp/template

diff --git a/common/shlibs b/common/shlibs
index a280247373a..903f0742d6b 100644
--- a/common/shlibs
+++ b/common/shlibs
@@ -1393,6 +1393,7 @@ libgpaste.so.11 libgpaste-3.28.2_1
 libthreadutil.so.6 libupnp-1.6.18_1
 libixml.so.2 libupnp-1.6.18_1
 libupnp.so.6 libupnp-1.6.18_1
+libupnpp.so.8 libupnpp-0.17.2_1
 libgeocode-glib.so.0 geocode-glib-3.10.0_1
 libzeitgeist-2.0.so.0 libzeitgeist2-0.9.14_1
 libpotrace.so.0 libpotrace-1.11_1
diff --git a/srcpkgs/libupnpp-devel b/srcpkgs/libupnpp-devel
new file mode 120000
index 00000000000..d5ca93593ba
--- /dev/null
+++ b/srcpkgs/libupnpp-devel
@@ -0,0 +1 @@
+libupnpp
\ No newline at end of file
diff --git a/srcpkgs/libupnpp/template b/srcpkgs/libupnpp/template
new file mode 100644
index 00000000000..c98b8636866
--- /dev/null
+++ b/srcpkgs/libupnpp/template
@@ -0,0 +1,23 @@
+# Template file for 'libupnpp'
+pkgname=libupnpp
+version=0.17.2
+revision=1
+build_style=gnu-configure
+hostmakedepends="pkg-config"
+makedepends="expat-devel libcurl-devel libupnp-devel"
+short_desc="C++ wrapper for libupnp"
+maintainer="amak <amak.git@outlook.com>"
+license="LGPL-2.1-or-later"
+homepage="https://www.lesbonscomptes.com/upmpdcli"
+distfiles="https://www.lesbonscomptes.com/upmpdcli/downloads/libupnpp-${version}.tar.gz"
+checksum=5abaaf353a1e9c3482d61ef2627b650285d59f27c1ee60d35b8951952261374f
+
+libupnpp-devel_package() {
+	depends="${sourcepkg}>=${version}_${revision}"
+	short_desc+=" - development files"
+	pkg_install() {
+		vmove usr/include
+		vmove usr/lib/pkgconfig
+		vmove "usr/lib/*.so"
+	}
+}

From 17fd830f5bac0376e89ea800037fc8adff68c569 Mon Sep 17 00:00:00 2001
From: amak <amak.git@outlook.com>
Date: Sat, 2 Nov 2019 17:19:59 +1100
Subject: [PATCH 2/2] New package: upmpdcli-1.4.5

---
 srcpkgs/upmpdcli/files/upmpdcli/log/run |  2 ++
 srcpkgs/upmpdcli/files/upmpdcli/run     |  3 +++
 srcpkgs/upmpdcli/template               | 23 +++++++++++++++++++++++
 3 files changed, 28 insertions(+)
 create mode 100755 srcpkgs/upmpdcli/files/upmpdcli/log/run
 create mode 100755 srcpkgs/upmpdcli/files/upmpdcli/run
 create mode 100644 srcpkgs/upmpdcli/template

diff --git a/srcpkgs/upmpdcli/files/upmpdcli/log/run b/srcpkgs/upmpdcli/files/upmpdcli/log/run
new file mode 100755
index 00000000000..aa4cc363e2c
--- /dev/null
+++ b/srcpkgs/upmpdcli/files/upmpdcli/log/run
@@ -0,0 +1,2 @@
+#!/bin/sh
+exec logger -t upmpdcli -p daemon.notice
diff --git a/srcpkgs/upmpdcli/files/upmpdcli/run b/srcpkgs/upmpdcli/files/upmpdcli/run
new file mode 100755
index 00000000000..1a6b2018657
--- /dev/null
+++ b/srcpkgs/upmpdcli/files/upmpdcli/run
@@ -0,0 +1,3 @@
+#!/bin/sh
+[ -r conf ] && . ./conf
+exec chpst -u _upmpdcli upmpdcli ${OPTS:- -c /etc/upmpdcli.conf} 2>&1
diff --git a/srcpkgs/upmpdcli/template b/srcpkgs/upmpdcli/template
new file mode 100644
index 00000000000..cc662ddcf26
--- /dev/null
+++ b/srcpkgs/upmpdcli/template
@@ -0,0 +1,23 @@
+# Template file for 'upmpdcli'
+pkgname=upmpdcli
+version=1.4.5
+revision=1
+build_style=gnu-configure
+hostmakedepends="pkg-config"
+makedepends="jsoncpp-devel libmicrohttpd-devel libmpdclient-devel libupnp-devel libupnpp-devel"
+short_desc="UPnP Media Renderer front-end for MPD"
+maintainer="amak <amak.git@outlook.com>"
+license="LGPL-2.1-or-later"
+homepage="https://www.lesbonscomptes.com/upmpdcli"
+distfiles="https://www.lesbonscomptes.com/upmpdcli/downloads/upmpdcli-${version}.tar.gz"
+checksum=af0c13b6ab8720d98451307010c33462e9a3f50178bae82c593fd2dd12e31b0e
+
+system_accounts="_upmpdcli"
+_upmpdcli_homedir="/var/lib/upmpdcli"
+make_dirs="/var/lib/upmpdcli 0750 _upmpdcli _upmpdcli"
+conf_files="/etc/upmpdcli.conf"
+
+post_install() {
+	chmod 644 ${DESTDIR}/etc/upmpdcli.conf
+	vsv upmpdcli
+}

  parent reply	other threads:[~2019-11-02  6:20 UTC|newest]

Thread overview: 23+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2019-09-21  9:13 [PR PATCH] New package: upmpdcli-1.4.4 voidlinux-github
2019-09-25  2:23 ` [PR PATCH] [Updated] " voidlinux-github
2019-09-25  2:23 ` voidlinux-github
2019-09-25  5:28 ` voidlinux-github
2019-09-25  5:28 ` voidlinux-github
2019-10-10  0:53 ` voidlinux-github
2019-10-10  0:53 ` voidlinux-github
2019-10-10  0:55 ` voidlinux-github
2019-10-10  0:55 ` voidlinux-github
2019-10-17  5:35 ` voidlinux-github
2019-10-17  5:35 ` voidlinux-github
2019-10-17  5:37 ` voidlinux-github
2019-10-17  5:37 ` voidlinux-github
2019-10-24 13:01 ` [PR PATCH] [Updated] New package: upmpdcli-1.4.5 voidlinux-github
2019-10-24 13:01 ` voidlinux-github
2019-10-31 10:20 ` voidlinux-github
2019-10-31 10:20 ` voidlinux-github
2019-11-01  6:36 ` voidlinux-github
2019-11-01  6:36 ` voidlinux-github
2019-11-02  6:20 ` voidlinux-github
2019-11-02  6:20 ` voidlinux-github [this message]
2019-11-02  6:27 ` voidlinux-github
2019-11-02 14:43 ` [PR PATCH] [Merged]: " voidlinux-github

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=20191102062058.eJhThZbNYfz3j24-z3ktgHDmLrFjkif9x5G7GiqqOXE@z \
    --to=voidlinux-github@inbox.vuxu.org \
    --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).