This is an automated email from the git hooks/post-receive script.
git pushed a commit to branch master
in repository python-efl.
View the commit online.
commit 2f608ecf067e8ba1abb59dbf6cae1fcd23af682a
Author: Dave Andreoli <[email protected]>
AuthorDate: Sat Aug 30 11:46:53 2025 +0200
Modernize build: Clean implemented in Makefile
---
setup.py | 27 ---------------------------
1 file changed, 27 deletions(-)
diff --git a/setup.py b/setup.py
index 087dcdf..7312f5a 100755
--- a/setup.py
+++ b/setup.py
@@ -268,36 +268,9 @@ class Test(Command):
runner.run(suite)
-# === setup.py clean_generated_files command ===
-class CleanGenerated(Command):
- description = 'Clean C and html files generated by Cython'
- user_options = []
-
- def initialize_options(self):
- pass
-
- def finalize_options(self):
- pass
-
- def run(self):
- for lib in ('eo', 'evas', 'ecore', 'ecore_x', 'ecore_input', 'ecore_con', 'edje',
- 'emotion', 'elementary', 'ethumb', 'dbus_mainloop', 'utils'):
- lib_path = os.path.join(script_path, 'efl', lib)
- for root, _dirs, files in os.walk(lib_path):
- for fname in files:
- if fname.endswith(('.c', '.html')) and fname != 'e_dbus.c':
- self.remove(os.path.join(root, fname))
-
- @staticmethod
- def remove(fullpath):
- print('removing %s' % fullpath.replace(script_path, '').lstrip('/'))
- os.remove(fullpath)
-
-
dist = setup(
cmdclass={
'test': Test,
- 'clean_generated_files': CleanGenerated,
},
packages=packages,
ext_modules=ext_modules,
--
To stop receiving notification emails like this one, please contact
the administrator of this repository.