View | Details | Raw Unified | Return to bug 274801 | Differences between
and this patch

Collapse All | Expand All

(-)b/audio/guitarix-lv2/Makefile (-5 / +1 lines)
Lines 1-7 Link Here
1
PORTNAME=	guitarix
1
PORTNAME=	guitarix
2
DISTVERSIONPREFIX=	V
2
DISTVERSIONPREFIX=	V
3
DISTVERSION=	0.44.1
3
DISTVERSION=	0.44.1
4
PORTREVISION=	10
4
PORTREVISION=	11
5
CATEGORIES=	audio
5
CATEGORIES=	audio
6
6
7
PATCH_SITES=	https://github.com/${GH_ACCOUNT}/${GH_PROJECT}/commit/
7
PATCH_SITES=	https://github.com/${GH_ACCOUNT}/${GH_PROJECT}/commit/
Lines 14-23 WWW= https://guitarix.org/ Link Here
14
LICENSE=	GPLv2+
14
LICENSE=	GPLv2+
15
LICENSE_FILE=	${WRKSRC}/COPYING
15
LICENSE_FILE=	${WRKSRC}/COPYING
16
16
17
BROKEN=		fails to find faust version, see https://github.com/brummer10/guitarix/issues/135
18
DEPRECATED=	Broken for almost a year
19
EXPIRATION_DATE=2024-09-30
20
21
BUILD_DEPENDS=	lv2>0:audio/lv2 \
17
BUILD_DEPENDS=	lv2>0:audio/lv2 \
22
		faust:audio/faust \
18
		faust:audio/faust \
23
		${LOCALBASE}/include/fftw3.h:math/fftw3 \
19
		${LOCALBASE}/include/fftw3.h:math/fftw3 \
(-)b/audio/guitarix-lv2/files/patch-wscript (+11 lines)
Added Link Here
1
--- wscript.orig	2024-10-04 21:11:01 UTC
2
+++ wscript
3
@@ -534,7 +534,7 @@ def sub_file(task):
4
     dst_fname = task.outputs[0].abspath()
5
     lst = task.generator.sub_list
6
 
7
-    with open(src_fname, 'rU') as f:
8
+    with open(src_fname, 'r') as f:
9
         txt = f.read()
10
     for (key, val) in lst:
11
         re_pat = re.compile(key, re.M)

Return to bug 274801