diff --git a/srcpkgs/qjackctl/patches/arm.patch b/srcpkgs/qjackctl/patches/arm.patch deleted file mode 100644 index 66d1a2c1aae..00000000000 --- a/srcpkgs/qjackctl/patches/arm.patch +++ /dev/null @@ -1,19 +0,0 @@ ---- src/qjackctlGraphForm.cpp.orig 2018-05-27 18:39:33.051174395 +0200 -+++ src/qjackctlGraphForm.cpp 2018-07-12 21:46:57.002185428 +0200 -@@ -338,11 +338,11 @@ - const QRectF& rect - = canvas->mapToScene(canvas->viewport()->rect()).boundingRect(); - const QPointF& pos = rect.center(); -- const qreal w = 0.3 * qMax(rect.width(), 800.0); -- const qreal h = 0.3 * qMax(rect.height(), 600.0); -+ const double w = 0.3 * qMax(static_cast(rect.width()), 800.0); -+ const double h = 0.3 * qMax(static_cast(rect.height()), 600.0); - -- qreal x = pos.x(); -- qreal y = pos.y(); -+ double x = pos.x(); -+ double y = pos.y(); - - switch (node->nodeMode()) { - case qjackctlGraphItem::Input: - diff --git a/srcpkgs/qjackctl/template b/srcpkgs/qjackctl/template index 06c946b08f0..81c14abc8ef 100644 --- a/srcpkgs/qjackctl/template +++ b/srcpkgs/qjackctl/template @@ -1,7 +1,7 @@ # Template file for 'qjackctl' pkgname=qjackctl -version=0.5.3 -revision=2 +version=0.5.5 +revision=1 build_style=gnu-configure configure_args="--enable-jack-version" hostmakedepends="pkg-config" @@ -12,7 +12,7 @@ maintainer="Juan RP " license="GPL-2.0-or-later" homepage="http://qjackctl.sourceforge.net" distfiles="${SOURCEFORGE_SITE}/${pkgname}/${pkgname}-${version}.tar.gz" -checksum=813be3b92442ee89a1894407980cb3c95b549e6e94b6b155f218d15291530874 +checksum=e5eb7b9249ba22f5301645f792eb34e7306b9002594eb945c9941a9586c2ffe7 if [ "${CROSS_BUILD}" ]; then hostmakedepends+=" qt5-host-tools qt5-devel qt5-x11extras-devel"