From 04db7e6a0bf7115fb787c62cab961ce30745c929 Mon Sep 17 00:00:00 2001 From: Christian Schendel Date: Wed, 3 Dec 2025 12:35:03 +0000 Subject: [PATCH] upgpkg. cantata-qt6-3.4.0-1: new upstram release --- .SRCINFO | 10 ++++++---- PKGBUILD | 28 ++++++++++++++++------------ 2 files changed, 22 insertions(+), 16 deletions(-) diff --git a/.SRCINFO b/.SRCINFO index d0de257..7341f72 100644 --- a/.SRCINFO +++ b/.SRCINFO @@ -1,7 +1,7 @@ pkgbase = cantata-qt6 pkgdesc = Qt6 graphical client for Music Player Daemon (MPD), nullobsi fork - pkgver = 3.3.1 - pkgrel = 4 + pkgver = 3.4.0 + pkgrel = 1 url = https://github.com/nullobsi/cantata arch = x86_64 arch = i686 @@ -18,6 +18,8 @@ pkgbase = cantata-qt6 depends = gcc-libs depends = glibc depends = hicolor-icon-theme + depends = karchive + depends = kitemviews depends = libcddb depends = libcdio-paranoia depends = libebur128 @@ -36,8 +38,8 @@ pkgbase = cantata-qt6 depends = zlib optdepends = mpd: Playback provides = cantata - source = cantata-3.3.1::git+https://github.com/nullobsi/cantata.git#tag=v3.3.1?signed + source = cantata-3.4.0::git+https://github.com/nullobsi/cantata.git#tag=v3.4.0?signed validpgpkeys = EAAC1F701A83BED288D064DC933A1F44222C2634 - sha256sums = c282fd13610e6521696a9caaa5772952b16a9ff2a64192fdc379d9074ebdb96c + sha256sums = 0d178d7bb46ee720abc4de57d80786809d6b74391624a4d5c8c71793953b0f9e pkgname = cantata-qt6 diff --git a/PKGBUILD b/PKGBUILD index 89c99b2..d01a80f 100644 --- a/PKGBUILD +++ b/PKGBUILD @@ -5,8 +5,8 @@ pkgname=cantata-qt6 pkgdesc="Qt6 graphical client for Music Player Daemon (MPD), nullobsi fork" -pkgver=3.3.1 -pkgrel=6 +pkgver=3.4.0 +pkgrel=1 url="https://github.com/nullobsi/cantata" arch=(x86_64 i686 aarch64 armv7h) license=( @@ -25,6 +25,7 @@ depends=( gcc-libs glibc hicolor-icon-theme + karchive kitemviews libcddb libcdio-paranoia @@ -50,18 +51,21 @@ optdepends=( provides=(cantata) source=("${pkgname%-qt6}-$pkgver::git+$url.git#tag=v${pkgver}?signed") -sha256sums=('c282fd13610e6521696a9caaa5772952b16a9ff2a64192fdc379d9074ebdb96c') +sha256sums=('0d178d7bb46ee720abc4de57d80786809d6b74391624a4d5c8c71793953b0f9e') validpgpkeys=('EAAC1F701A83BED288D064DC933A1F44222C2634') # Citlali del Rey build() { - cmake \ - -B build \ - -S "${pkgname%-qt6}-$pkgver" -Wno-dev \ - -DBUNDLED_FONTAWESOME=ON \ - -DQT_DIR=/usr/lib/cmake/Qt6 \ - -DCMAKE_BUILD_TYPE=None \ - -DCMAKE_INSTALL_PREFIX=/usr \ - -DCMAKE_INSTALL_LIBEXECDIR=/usr/bin - + CXXFLAGS+=" -Wno-error=unused-result -Wno-error=deprecated-declarations -Wno-unused-result" + local cmake_options=( + -B build + -S "${pkgname%-qt6}-$pkgver" + -D CMAKE_BUILD_TYPE=None + -D CMAKE_INSTALL_PREFIX=/usr + -D CMAKE_INSTALL_LIBEXECDIR=/usr/lib + -D BUNDLED_FONTAWESOME=ON + -D QT_DIR=/usr/lib/cmake/Qt6 + -W no-dev + ) + cmake "${cmake_options[@]}" cmake --build build }