Github messages for voidlinux
 help / color / mirror / Atom feed
From: amak79 <amak79@users.noreply.github.com>
To: ml@inbox.vuxu.org
Subject: Re: [PR PATCH] [Updated] upmpdcli: update to 1.5.0
Date: Fri, 20 Nov 2020 03:11:21 +0100	[thread overview]
Message-ID: <20201120021121.0bSJuclpboGIto1JBu_X4nguB1Qk8QFM6OqsmICeiuY@z> (raw)
In-Reply-To: <gh-mailinglist-notifications-41a7ca26-5023-4802-975b-f1789d68868e-void-packages-26518@inbox.vuxu.org>

[-- Attachment #1: Type: text/plain, Size: 314 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/26518

upmpdcli: update to 1.5.0


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

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

From abdc43e482e813632e7b8a96518bd621f6c606b6 Mon Sep 17 00:00:00 2001
From: amak <amak.git@outlook.com>
Date: Fri, 20 Nov 2020 12:25:26 +1100
Subject: [PATCH 1/3] libnpupnp: update to 4.0.14

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

diff --git a/srcpkgs/libnpupnp/template b/srcpkgs/libnpupnp/template
index 0c061b1c633..f1783109415 100644
--- a/srcpkgs/libnpupnp/template
+++ b/srcpkgs/libnpupnp/template
@@ -1,6 +1,6 @@
 # Template file for 'libnpupnp'
 pkgname=libnpupnp
-version=4.0.13
+version=4.0.14
 revision=1
 build_style=gnu-configure
 hostmakedepends="pkg-config"
@@ -10,7 +10,7 @@ maintainer="amak <amak.git@outlook.com>"
 license="BSD-3-Clause"
 homepage="https://www.lesbonscomptes.com/upmpdcli/npupnp-doc/libnpupnp.html"
 distfiles="https://www.lesbonscomptes.com/upmpdcli/downloads/libnpupnp-${version}.tar.gz"
-checksum=020c9c025902950e423316418eecb82ff4e70e4e63c80df6509a10b8bf34dadb
+checksum=ea5f5bf388bf8c028a25630c58e9a42762fddd357e7e2581b192856e01aad044
 
 post_install() {
 	vlicense COPYING

From cad09e25eda920608bcc15ecfbf42a151ce6b4de Mon Sep 17 00:00:00 2001
From: amak <amak.git@outlook.com>
Date: Fri, 20 Nov 2020 12:25:54 +1100
Subject: [PATCH 2/3] libupnpp: update to 0.20.0

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

diff --git a/srcpkgs/libupnpp/template b/srcpkgs/libupnpp/template
index a6eca150831..e137cc686b3 100644
--- a/srcpkgs/libupnpp/template
+++ b/srcpkgs/libupnpp/template
@@ -1,6 +1,6 @@
 # Template file for 'libupnpp'
 pkgname=libupnpp
-version=0.19.4
+version=0.20.0
 revision=1
 build_style=gnu-configure
 hostmakedepends="pkg-config"
@@ -10,7 +10,7 @@ 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=29d1d07d44c8f79573e64e093ad8f0f883b11ef9eb3642a67aa703c1dde60576
+checksum=5c75eb5d2336baec27be2342b4d53086cdd4f56a7756398a055028cb4a1eb00e
 
 libupnpp-devel_package() {
 	depends="${sourcepkg}>=${version}_${revision}"

From 1b6185fd330ec5517801d40586690a63b3f61261 Mon Sep 17 00:00:00 2001
From: amak <amak.git@outlook.com>
Date: Fri, 20 Nov 2020 12:26:29 +1100
Subject: [PATCH 3/3] upmpdcli: update to 1.5.0

---
 .../patches/musl-fix-missing-unistd-include.patch | 15 +++++++++++++++
 srcpkgs/upmpdcli/template                         |  9 +++++----
 2 files changed, 20 insertions(+), 4 deletions(-)
 create mode 100644 srcpkgs/upmpdcli/patches/musl-fix-missing-unistd-include.patch

diff --git a/srcpkgs/upmpdcli/patches/musl-fix-missing-unistd-include.patch b/srcpkgs/upmpdcli/patches/musl-fix-missing-unistd-include.patch
new file mode 100644
index 00000000000..7adb92ff2be
--- /dev/null
+++ b/srcpkgs/upmpdcli/patches/musl-fix-missing-unistd-include.patch
@@ -0,0 +1,15 @@
+Upstream: https://framagit.org/medoc92/upmpdcli/-/issues/38
+
+diff --git a/src/upmpdutils.hxx b/src/upmpdutils.hxx
+index bcb9c85f88b192ee97e3e93a9db3129841749c80..f8143985a64d92608fc36b663d4c7535025ddd49 100644
+--- a/src/upmpdutils.hxx
++++ b/src/upmpdutils.hxx
+@@ -21,6 +21,8 @@
+ #include <unordered_map>
+ #include <vector>
+ 
++#include <unistd.h>
++
+ namespace UPnPClient {
+     class UPnPDirObject;
+ };
diff --git a/srcpkgs/upmpdcli/template b/srcpkgs/upmpdcli/template
index 2a1e47ad569..7d8ea281810 100644
--- a/srcpkgs/upmpdcli/template
+++ b/srcpkgs/upmpdcli/template
@@ -1,7 +1,7 @@
-# Template file for 'upmpdcli'.
+# Template file for 'upmpdcli'
 pkgname=upmpdcli
-version=1.4.14
-revision=3
+version=1.5.0
+revision=1
 build_style=gnu-configure
 hostmakedepends="pkg-config tar"
 makedepends="jsoncpp-devel libmicrohttpd-devel libmpdclient-devel libupnpp-devel"
@@ -10,8 +10,9 @@ 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=e3d90dedee6a942acc049324ca81b7f008d217d386a3e2590a2ca5670cc9df05
+checksum=c971ed29cf00ebe70b6461f30ec4b9d58e0acaf52c6fd452876678bb6fe53009
 python_version=3
+patch_args="-Np1"
 
 system_accounts="_upmpdcli"
 _upmpdcli_homedir="/var/lib/upmpdcli"

  reply	other threads:[~2020-11-20  2:11 UTC|newest]

Thread overview: 7+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2020-11-20  1:32 [PR PATCH] " amak79
2020-11-20  2:11 ` amak79 [this message]
2020-11-22 23:11 ` [PR PATCH] [Updated] " amak79
2020-11-25  0:23 ` [PR PATCH] [Updated] upmpdcli: update to 1.5.1 amak79
2020-12-02  2:00 ` [PR PATCH] [Updated] upmpdcli: update to 1.5.2 amak79
2020-12-08 12:06 ` [PR PATCH] [Updated] upmpdcli: update to 1.5.3 amak79
2020-12-12  8:53 ` [PR PATCH] [Merged]: upmpdcli: update to 1.5.5 abenson

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=20201120021121.0bSJuclpboGIto1JBu_X4nguB1Qk8QFM6OqsmICeiuY@z \
    --to=amak79@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).