1
0
forked from ports/contrib

ncmpcpp: 0.9 -> 0.9.1

This commit is contained in:
Tim Biermann 2020-12-31 11:26:30 +00:00
parent c0b5de657a
commit 5144e4723d
Signed by: tb
GPG Key ID: 42F8B4E30B673606
3 changed files with 4 additions and 30 deletions

View File

@ -1,5 +1,5 @@
untrusted comment: verify with /etc/ports/contrib.pub untrusted comment: verify with /etc/ports/contrib.pub
RWSagIOpLGJF35LZuapXFpwhOmImmT1BUw8/ZEYypMEsKpnBwfTO6bbuq8vuQb5PZ+OosjfVujJ+qE/mTwj0Vm5WSJ0W0k6xzAk= RWSagIOpLGJF3/35EexSsrGGAL7qVk2/8eOov7q8TeCRGD5juuC6ZUce01waHELcoTkivGgWaYyArybyYn9O4ZuaqbXK5E4umw0=
SHA256 (Pkgfile) = d74024b004f4636869d588375605cd5edd2c04386569ce81a63b9053210e0f50 SHA256 (Pkgfile) = bb261266f12f237f84100c93ede6ca5f18162b6ada96525caf26d7a8433b4613
SHA256 (.footprint) = 106b3c28574a9591fa92d0c5c8ee8e0bc78a394a48840175cb2ab8f71b7b0ceb SHA256 (.footprint) = 106b3c28574a9591fa92d0c5c8ee8e0bc78a394a48840175cb2ab8f71b7b0ceb
SHA256 (ncmpcpp-0.9.tar.gz) = 8fb311943abdd8aa9b7c2d0303e6be5bcfdeda0b6d2a91ef28ab8e27e403fd69 SHA256 (ncmpcpp-0.9.1.tar.gz) = 1c3c6358752062387f0625ecaf3fbe7113ef10e3e8f249978d9382546578002c

View File

@ -5,7 +5,7 @@
# Optional: mpd fftw taglib # Optional: mpd fftw taglib
name=ncmpcpp name=ncmpcpp
version=0.9 version=0.9.1
release=1 release=1
source=(https://github.com/arybczak/$name/archive/$version/$name-$version.tar.gz) source=(https://github.com/arybczak/$name/archive/$version/$name-$version.tar.gz)

View File

@ -1,26 +0,0 @@
From 399e0f47008b487df3505476c959b4f42d8bc1b1 Mon Sep 17 00:00:00 2001
From: Louis Sautier <sautier.louis@gmail.com>
Date: Sat, 9 May 2020 14:31:52 +0200
Subject: [PATCH] Fix build with GCC 10 by adding missing include
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
Fixes the following error:
./mpdpp.h:438:15: error: runtime_error is not a member of std
---
src/mpdpp.h | 1 +
1 file changed, 1 insertion(+)
diff --git a/src/mpdpp.h b/src/mpdpp.h
index a2bb79eb..abd3666c 100644
--- a/src/mpdpp.h
+++ b/src/mpdpp.h
@@ -25,6 +25,7 @@
#include <exception>
#include <random>
#include <set>
+#include <stdexcept>
#include <vector>
#include <mpd/client.h>