All of lore.kernel.org
 help / color / mirror / Atom feed
* [Buildroot] [PATCH 1/1] package/fail2ban: fix build with python 3.10
@ 2022-01-01 14:56 Fabrice Fontaine
  2022-01-04 16:51 ` Arnout Vandecappelle
  0 siblings, 1 reply; 2+ messages in thread
From: Fabrice Fontaine @ 2022-01-01 14:56 UTC (permalink / raw)
  To: buildroot; +Cc: Angelo Compagnucci, Fabrice Fontaine

Fix the following build failure raised since bump of python3 to version
3.10.1 in commit 25b1fc2898d68ddf2674b14c738045875fc5a2dc:

error in fail2ban setup command: use_2to3 is invalid.

Fixes:
 - http://autobuild.buildroot.org/results/6a5e91f9912f869b2b07b10b576457b432066393

Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com>
---
 ...with-error-in-fail2ban-setup-command.patch | 67 +++++++++++++++++++
 1 file changed, 67 insertions(+)
 create mode 100644 package/fail2ban/0002-fix-gh-3098-build-fails-with-error-in-fail2ban-setup-command.patch

diff --git a/package/fail2ban/0002-fix-gh-3098-build-fails-with-error-in-fail2ban-setup-command.patch b/package/fail2ban/0002-fix-gh-3098-build-fails-with-error-in-fail2ban-setup-command.patch
new file mode 100644
index 0000000000..8cb097dc38
--- /dev/null
+++ b/package/fail2ban/0002-fix-gh-3098-build-fails-with-error-in-fail2ban-setup-command.patch
@@ -0,0 +1,67 @@
+From 5ac303df8a171f748330d4c645ccbf1c2c7f3497 Mon Sep 17 00:00:00 2001
+From: sebres <info@sebres.de>
+Date: Sun, 19 Sep 2021 18:49:18 +0200
+Subject: [PATCH] fix gh-3098: build fails with error in fail2ban setup
+ command: use_2to3 is invalid (setuptools 58+)
+
+[Retrieved from:
+https://github.com/fail2ban/fail2ban/commit/5ac303df8a171f748330d4c645ccbf1c2c7f3497]
+Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com>
+---
+ setup.py | 16 +---------------
+ 1 file changed, 1 insertion(+), 15 deletions(-)
+
+diff --git a/setup.py b/setup.py
+index f4c2550f6..98413273c 100755
+--- a/setup.py
++++ b/setup.py
+@@ -48,7 +48,7 @@
+ from glob import glob
+ 
+ from fail2ban.setup import updatePyExec
+-
++from fail2ban.version import version
+ 
+ source_dir = os.path.realpath(os.path.dirname(
+ 	# __file__ seems to be overwritten sometimes on some python versions (e.g. bug of 2.6 by running under cProfile, etc.):
+@@ -112,22 +112,12 @@ def update_scripts(self, dry_run=False):
+ # Wrapper to specify fail2ban own options:
+ class install_command_f2b(install):
+ 	user_options = install.user_options + [
+-		('disable-2to3', None, 'Specify to deactivate 2to3, e.g. if the install runs from fail2ban test-cases.'),
+ 		('without-tests', None, 'without tests files installation'),
+ 	]
+ 	def initialize_options(self):
+-		self.disable_2to3 = None
+ 		self.without_tests = not with_tests
+ 		install.initialize_options(self)
+ 	def finalize_options(self):
+-		global _2to3
+-		## in the test cases 2to3 should be already done (fail2ban-2to3):
+-		if self.disable_2to3:
+-			_2to3 = False
+-		if _2to3:
+-			cmdclass = self.distribution.cmdclass
+-			cmdclass['build_py'] = build_py_2to3
+-			cmdclass['build_scripts'] = build_scripts_2to3
+ 		if self.without_tests:
+ 			self.distribution.scripts.remove('bin/fail2ban-testcases')
+ 
+@@ -178,7 +168,6 @@ def run(self):
+ if setuptools:
+ 	setup_extra = {
+ 		'test_suite': "fail2ban.tests.utils.gatherTests",
+-		'use_2to3': True,
+ 	}
+ else:
+ 	setup_extra = {}
+@@ -202,9 +191,6 @@ def run(self):
+ 		('/usr/share/doc/fail2ban', doc_files)
+ 	)
+ 
+-# Get version number, avoiding importing fail2ban.
+-# This is due to tests not functioning for python3 as 2to3 takes place later
+-exec(open(join("fail2ban", "version.py")).read())
+ 
+ setup(
+ 	name = "fail2ban",
-- 
2.33.0

_______________________________________________
buildroot mailing list
buildroot@buildroot.org
https://lists.buildroot.org/mailman/listinfo/buildroot

^ permalink raw reply related	[flat|nested] 2+ messages in thread

* Re: [Buildroot] [PATCH 1/1] package/fail2ban: fix build with python 3.10
  2022-01-01 14:56 [Buildroot] [PATCH 1/1] package/fail2ban: fix build with python 3.10 Fabrice Fontaine
@ 2022-01-04 16:51 ` Arnout Vandecappelle
  0 siblings, 0 replies; 2+ messages in thread
From: Arnout Vandecappelle @ 2022-01-04 16:51 UTC (permalink / raw)
  To: Fabrice Fontaine, buildroot; +Cc: Angelo Compagnucci



On 01/01/2022 15:56, Fabrice Fontaine wrote:
> Fix the following build failure raised since bump of python3 to version
> 3.10.1 in commit 25b1fc2898d68ddf2674b14c738045875fc5a2dc:
> 
> error in fail2ban setup command: use_2to3 is invalid.
> 
> Fixes:
>   - http://autobuild.buildroot.org/results/6a5e91f9912f869b2b07b10b576457b432066393
> 
> Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com>

  Applied to master, thanks.

  Regards,
  Arnout

> ---
>   ...with-error-in-fail2ban-setup-command.patch | 67 +++++++++++++++++++
>   1 file changed, 67 insertions(+)
>   create mode 100644 package/fail2ban/0002-fix-gh-3098-build-fails-with-error-in-fail2ban-setup-command.patch
> 
> diff --git a/package/fail2ban/0002-fix-gh-3098-build-fails-with-error-in-fail2ban-setup-command.patch b/package/fail2ban/0002-fix-gh-3098-build-fails-with-error-in-fail2ban-setup-command.patch
> new file mode 100644
> index 0000000000..8cb097dc38
> --- /dev/null
> +++ b/package/fail2ban/0002-fix-gh-3098-build-fails-with-error-in-fail2ban-setup-command.patch
> @@ -0,0 +1,67 @@
> +From 5ac303df8a171f748330d4c645ccbf1c2c7f3497 Mon Sep 17 00:00:00 2001
> +From: sebres <info@sebres.de>
> +Date: Sun, 19 Sep 2021 18:49:18 +0200
> +Subject: [PATCH] fix gh-3098: build fails with error in fail2ban setup
> + command: use_2to3 is invalid (setuptools 58+)
> +
> +[Retrieved from:
> +https://github.com/fail2ban/fail2ban/commit/5ac303df8a171f748330d4c645ccbf1c2c7f3497]
> +Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com>
> +---
> + setup.py | 16 +---------------
> + 1 file changed, 1 insertion(+), 15 deletions(-)
> +
> +diff --git a/setup.py b/setup.py
> +index f4c2550f6..98413273c 100755
> +--- a/setup.py
> ++++ b/setup.py
> +@@ -48,7 +48,7 @@
> + from glob import glob
> +
> + from fail2ban.setup import updatePyExec
> +-
> ++from fail2ban.version import version
> +
> + source_dir = os.path.realpath(os.path.dirname(
> + 	# __file__ seems to be overwritten sometimes on some python versions (e.g. bug of 2.6 by running under cProfile, etc.):
> +@@ -112,22 +112,12 @@ def update_scripts(self, dry_run=False):
> + # Wrapper to specify fail2ban own options:
> + class install_command_f2b(install):
> + 	user_options = install.user_options + [
> +-		('disable-2to3', None, 'Specify to deactivate 2to3, e.g. if the install runs from fail2ban test-cases.'),
> + 		('without-tests', None, 'without tests files installation'),
> + 	]
> + 	def initialize_options(self):
> +-		self.disable_2to3 = None
> + 		self.without_tests = not with_tests
> + 		install.initialize_options(self)
> + 	def finalize_options(self):
> +-		global _2to3
> +-		## in the test cases 2to3 should be already done (fail2ban-2to3):
> +-		if self.disable_2to3:
> +-			_2to3 = False
> +-		if _2to3:
> +-			cmdclass = self.distribution.cmdclass
> +-			cmdclass['build_py'] = build_py_2to3
> +-			cmdclass['build_scripts'] = build_scripts_2to3
> + 		if self.without_tests:
> + 			self.distribution.scripts.remove('bin/fail2ban-testcases')
> +
> +@@ -178,7 +168,6 @@ def run(self):
> + if setuptools:
> + 	setup_extra = {
> + 		'test_suite': "fail2ban.tests.utils.gatherTests",
> +-		'use_2to3': True,
> + 	}
> + else:
> + 	setup_extra = {}
> +@@ -202,9 +191,6 @@ def run(self):
> + 		('/usr/share/doc/fail2ban', doc_files)
> + 	)
> +
> +-# Get version number, avoiding importing fail2ban.
> +-# This is due to tests not functioning for python3 as 2to3 takes place later
> +-exec(open(join("fail2ban", "version.py")).read())
> +
> + setup(
> + 	name = "fail2ban",
> 
_______________________________________________
buildroot mailing list
buildroot@buildroot.org
https://lists.buildroot.org/mailman/listinfo/buildroot

^ permalink raw reply	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2022-01-04 16:51 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2022-01-01 14:56 [Buildroot] [PATCH 1/1] package/fail2ban: fix build with python 3.10 Fabrice Fontaine
2022-01-04 16:51 ` Arnout Vandecappelle

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.