View | Details | Raw Unified | Return to bug 225235
Collapse All | Expand All

(-)b/archivers/py-borgbackup/Makefile (+1 lines)
Lines 3-8 Link Here
3
3
4
PORTNAME=	borgbackup
4
PORTNAME=	borgbackup
5
DISTVERSION=	1.1.4
5
DISTVERSION=	1.1.4
6
PORTREVISION=	1
6
CATEGORIES=	archivers python
7
CATEGORIES=	archivers python
7
MASTER_SITES=	CHEESESHOP
8
MASTER_SITES=	CHEESESHOP
8
PKGNAMEPREFIX=	${PYTHON_PKGNAMEPREFIX}
9
PKGNAMEPREFIX=	${PYTHON_PKGNAMEPREFIX}
(-)b/archivers/py-borgbackup/files/patch-setup_lz4.diff (-1 / +10 lines)
Added Link Here
0
- 
1
+++ setup_lz4.py
2
@@ -24,7 +24,7 @@
3
     for prefix in prefixes:
4
         filename = os.path.join(prefix, 'include', 'lz4.h')
5
         if os.path.exists(filename):
6
-            with open(filename, 'r') as fd:
7
+            with open(filename, 'r', encoding='utf-8') as fd:
8
                 if 'LZ4_compress_default' in fd.read():  # requires lz4 >= 1.7.0 (r129)
9
                     return prefix
10
 

Return to bug 225235