zutty: update to 0.14
This commit is contained in:
parent
fb189a8eb7
commit
154b231d5f
|
@ -1,48 +0,0 @@
|
||||||
Index: zutty-0.12/.waf3/waflib/ConfigSet.py
|
|
||||||
===================================================================
|
|
||||||
--- zutty-0.12.orig/.waf3/waflib/ConfigSet.py
|
|
||||||
+++ zutty-0.12/.waf3/waflib/ConfigSet.py
|
|
||||||
@@ -146,7 +146,7 @@ class ConfigSet(object):
|
|
||||||
Utils.writef(filename,''.join(buf))
|
|
||||||
def load(self,filename):
|
|
||||||
tbl=self.table
|
|
||||||
- code=Utils.readf(filename,m='rU')
|
|
||||||
+ code=Utils.readf(filename,m='r')
|
|
||||||
for m in re_imp.finditer(code):
|
|
||||||
g=m.group
|
|
||||||
tbl[g(2)]=eval(g(3))
|
|
||||||
Index: zutty-0.12/.waf3/waflib/Context.py
|
|
||||||
===================================================================
|
|
||||||
--- zutty-0.12.orig/.waf3/waflib/Context.py
|
|
||||||
+++ zutty-0.12/.waf3/waflib/Context.py
|
|
||||||
@@ -105,7 +105,7 @@ class Context(ctx):
|
|
||||||
cache[node]=True
|
|
||||||
self.pre_recurse(node)
|
|
||||||
try:
|
|
||||||
- function_code=node.read('rU',encoding)
|
|
||||||
+ function_code=node.read('r',encoding)
|
|
||||||
exec(compile(function_code,node.abspath(),'exec'),self.exec_dict)
|
|
||||||
finally:
|
|
||||||
self.post_recurse(node)
|
|
||||||
@@ -351,7 +351,7 @@ def load_module(path,encoding=None):
|
|
||||||
pass
|
|
||||||
module=imp.new_module(WSCRIPT_FILE)
|
|
||||||
try:
|
|
||||||
- code=Utils.readf(path,m='rU',encoding=encoding)
|
|
||||||
+ code=Utils.readf(path,m='r',encoding=encoding)
|
|
||||||
except EnvironmentError:
|
|
||||||
raise Errors.WafError('Could not read the file %r'%path)
|
|
||||||
module_dir=os.path.dirname(path)
|
|
||||||
Index: zutty-0.12/wscript
|
|
||||||
===================================================================
|
|
||||||
--- zutty-0.12.orig/wscript
|
|
||||||
+++ zutty-0.12/wscript
|
|
||||||
@@ -70,7 +70,7 @@ def configure(cfg):
|
|
||||||
else:
|
|
||||||
cfg.env.target = 'zutty'
|
|
||||||
cfg.env.append_value('CXXFLAGS',
|
|
||||||
- ['-Werror', '-O3', '-flto'])
|
|
||||||
+ ['-flto'])
|
|
||||||
cfg.env.append_value('LINKFLAGS',
|
|
||||||
['-flto'])
|
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
# Template file for 'zutty'
|
# Template file for 'zutty'
|
||||||
pkgname=zutty
|
pkgname=zutty
|
||||||
version=0.12
|
version=0.14
|
||||||
revision=1
|
revision=1
|
||||||
build_style=waf3
|
build_style=waf3
|
||||||
hostmakedepends="pkg-config"
|
hostmakedepends="pkg-config"
|
||||||
|
@ -10,19 +10,8 @@ short_desc="X terminal emulator rendering through OpenGL ES Compute Shaders"
|
||||||
maintainer="Javier Caballero <jacallo@protonmail.com>"
|
maintainer="Javier Caballero <jacallo@protonmail.com>"
|
||||||
license="GPL-3.0-or-later"
|
license="GPL-3.0-or-later"
|
||||||
homepage="https://tomscii.sig7.se/zutty"
|
homepage="https://tomscii.sig7.se/zutty"
|
||||||
distfiles="https://github.com/tomszilagyi/zutty/archive/refs/tags/${version}.tar.gz"
|
distfiles="https://github.com/tomscii/zutty/archive/refs/tags/${version}.tar.gz"
|
||||||
checksum=750daed8625a2486a33b872d59242efba7ee21af282ccfd4a7dbf12d21d7cee7
|
checksum=6de17d6b7a3fe6991df30ba1ca7d6a08e605369cf92247deeb19758379b5af2f
|
||||||
|
|
||||||
post_extract() {
|
|
||||||
# waf file is self extracting archive written in python
|
|
||||||
# it self extracts in top level, then runs extracted module in __main__
|
|
||||||
# importing allows to patch contents of archive
|
|
||||||
cp waf waf.py
|
|
||||||
sed -i '/__name__.*__main__/i sys.exit(0)' waf.py
|
|
||||||
python3 waf.py
|
|
||||||
ln -s .waf3-* .waf3
|
|
||||||
rm waf.py
|
|
||||||
}
|
|
||||||
|
|
||||||
post_install() {
|
post_install() {
|
||||||
# Copy icons
|
# Copy icons
|
||||||
|
|
Loading…
Reference in New Issue