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

(-)b/benchmarks/glmark2/Makefile (-1 / +1 lines)
Lines 1-5 Link Here
1
PORTNAME=	glmark2
1
PORTNAME=	glmark2
2
PORTVERSION=	2021.12
2
PORTVERSION=	2023.01
3
CATEGORIES=	benchmarks
3
CATEGORIES=	benchmarks
4
4
5
MAINTAINER=	danfe@FreeBSD.org
5
MAINTAINER=	danfe@FreeBSD.org
(-)b/benchmarks/glmark2/distinfo (-3 / +3 lines)
Lines 1-3 Link Here
1
TIMESTAMP = 1640270771
1
TIMESTAMP = 1677154637
2
SHA256 (glmark2-glmark2-2021.12_GH0.tar.gz) = 9f111284b2ef1d3fce91928e249e6ca00796a036831b063a549a0f3b03557a95
2
SHA256 (glmark2-glmark2-2023.01_GH0.tar.gz) = 8fece3fc323b643644a525be163dc4931a4189971eda1de8ad4c1712c5db3d67
3
SIZE (glmark2-glmark2-2021.12_GH0.tar.gz) = 9360052
3
SIZE (glmark2-glmark2-2023.01_GH0.tar.gz) = 9366116
(-)a/benchmarks/glmark2/files/patch-python311 (-33 lines)
Removed Link Here
1
https://gitlab.com/ita1024/waf/-/commit/68997828c850
2
3
--- waflib/ConfigSet.py.orig	2021-12-23 14:46:11 UTC
4
+++ waflib/ConfigSet.py
5
@@ -140,7 +140,7 @@ class ConfigSet(object):
6
 		Utils.writef(filename,''.join(buf))
7
 	def load(self,filename):
8
 		tbl=self.table
9
-		code=Utils.readf(filename,m='rU')
10
+		code=Utils.readf(filename,m='r')
11
 		for m in re_imp.finditer(code):
12
 			g=m.group
13
 			tbl[g(2)]=eval(g(3))
14
--- waflib/Context.py.orig	2021-12-23 14:46:11 UTC
15
+++ waflib/Context.py
16
@@ -109,7 +109,7 @@ class Context(ctx):
17
 				cache[node]=True
18
 				self.pre_recurse(node)
19
 				try:
20
-					function_code=node.read('rU',encoding)
21
+					function_code=node.read('r',encoding)
22
 					exec(compile(function_code,node.abspath(),'exec'),self.exec_dict)
23
 				finally:
24
 					self.post_recurse(node)
25
@@ -340,7 +340,7 @@ def load_module(path,encoding=None):
26
 		pass
27
 	module=imp.new_module(WSCRIPT_FILE)
28
 	try:
29
-		code=Utils.readf(path,m='rU',encoding=encoding)
30
+		code=Utils.readf(path,m='r',encoding=encoding)
31
 	except EnvironmentError:
32
 		raise Errors.WafError('Could not read the file %r'%path)
33
 	module_dir=os.path.dirname(path)

Return to bug 269776