mirror of
https://github.com/gryf/gryf-overlay.git
synced 2026-04-02 19:43:34 +02:00
Compare commits
2 Commits
720f445387
...
06456cbdd7
| Author | SHA1 | Date | |
|---|---|---|---|
| 06456cbdd7 | |||
| f7c832875c |
@@ -1,3 +1,3 @@
|
||||
AUX tuir-config.patch 500 BLAKE2B 6f3d1949ffb8913ea34012f4f200d0a4e4191a57d4ae6bd9856ce96b3944e807884a34a38d6f5b4fdef874c872d3f4b891a022ea56b2e003d7202f8b895f5a29 SHA512 2b5ba076bd7287fade39d563cd190da48179d1a4719fdd9da784c3aef39cf507166dfd6d5b1c3194ff9ef8c6ba2f76b82df9c3e5afe99402f5eb8daef665d841
|
||||
AUX tuir-config.patch 1107 BLAKE2B 3eb93f1747a61b7362a54dd3c9425d7b40e64162dd4aad5f4d68265f3b398e6039d18c63a6b4cf6c9deb4f5ac87a1954a419982c7080c784ae2b4b608fef1283 SHA512 0bcbdf8839d6f64df7db3f50ad15305aba96ce948bd87ea4cab4cf4ec48959fc0166b68b814e39b3caf0712fafbafd0d85effd1dd18b6b5367b7da2b867f6cd4
|
||||
DIST tuir-v1.29.0.tar.bz2 17261008 BLAKE2B bbd621c4ccbd1f257eb14956c225e1a2dc3fb594a91cf739deb32ee67b2c6c823eb8d6ec190a941384b3e230f2afd7747be26cea6f0d98edb7e4b80d2acf02a5 SHA512 a95834e569e6c4d8327ac8e7a4aa69ed47fbd2e82d7bc80f74a2f20b26ddd2ee3f4b00179c8df5ad1917f44f9c20ee39ff04189b9179b583722d6f53a15fd2b5
|
||||
EBUILD tuir-1.29.0.ebuild 640 BLAKE2B 145707edef5789e4cf8937536b90d10837b0985fadc686fb49f6f63e456685c71da9bb95b3401e00acefdac9e8ad06366fcea22415a8ee09f9f40219eb295ed7 SHA512 7ac4a080c24d0a381366c6f36ad224645a846fbf22d9c9d6dd90d8f510cea229131255a54d191b992cdca7535268b63939c6d218394836a6f3540a5be8c7388e
|
||||
|
||||
@@ -1,12 +1,24 @@
|
||||
diff -ur tuir-v1.29.0-orig/tuir/config.py tuir-v1.29.0/tuir/config.py
|
||||
diff '--color=auto' -ur tuir-v1.29.0-orig/tuir/config.py tuir-v1.29.0/tuir/config.py
|
||||
--- tuir-v1.29.0-orig/tuir/config.py 2020-04-26 09:12:09.000000000 +0200
|
||||
+++ tuir-v1.29.0/tuir/config.py 2024-06-10 09:11:01.010022758 +0200
|
||||
+++ tuir-v1.29.0/tuir/config.py 2024-06-14 11:32:12.559187415 +0200
|
||||
@@ -131,7 +131,7 @@
|
||||
config = configparser.RawConfigParser()
|
||||
if os.path.exists(filename):
|
||||
with codecs.open(filename, encoding='utf-8') as fp:
|
||||
- config.readfp(fp)
|
||||
+ config.read(fp)
|
||||
+ config.read_file(fp)
|
||||
|
||||
return cls._parse_tuir_file(config)
|
||||
|
||||
diff '--color=auto' -ur tuir-v1.29.0-orig/tuir/theme.py tuir-v1.29.0/tuir/theme.py
|
||||
--- tuir-v1.29.0-orig/tuir/theme.py 2020-04-26 09:12:09.000000000 +0200
|
||||
+++ tuir-v1.29.0/tuir/theme.py 2024-06-14 11:32:21.555329941 +0200
|
||||
@@ -399,7 +399,7 @@
|
||||
config = configparser.ConfigParser()
|
||||
config.optionxform = six.text_type # Preserve case
|
||||
with codecs.open(filename, encoding='utf-8') as fp:
|
||||
- config.readfp(fp)
|
||||
+ config.read_file(fp)
|
||||
except configparser.ParsingError as e:
|
||||
raise ConfigError(e.message)
|
||||
|
||||
|
||||
Reference in New Issue
Block a user