-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
reforis plugins: Force distutils-based python package builds
In OpenWRT main / 23.05 the new build process chokes on the OpenWRT package names differing from the python package names. Force the use of the previous build process for now. Alternative solutions include providing a PYPI_SOURCE_NAME that contains the python package name, or renaming the OpenWRT packages to have the same name as the python package. Signed-off-by: Magnus Kessler <Magnus.Kessler@gmx.net>
- Loading branch information
Showing
14 changed files
with
56 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
30 changes: 30 additions & 0 deletions
30
web/reforis/reforis-remote-access-plugin/patches/0001-Fix-version-number-in-setup.py.patch
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,30 @@ | ||
From 3a142711c4c5ec46988af243a8cd31cf1440e1f7 Mon Sep 17 00:00:00 2001 | ||
From: Magnus Kessler <Magnus.Kessler@gmx.net> | ||
Date: Thu, 3 Aug 2023 14:23:40 +0200 | ||
Subject: [PATCH] Fix version number in setup.py | ||
|
||
The setup.py version number should be the same as the package version | ||
in the js/package*.json files. This ensures that external build systems | ||
like OpenWRT can be configured with the correct release version. | ||
|
||
Signed-off-by: Magnus Kessler <Magnus.Kessler@gmx.net> | ||
--- | ||
setup.py | 2 +- | ||
1 file changed, 1 insertion(+), 1 deletion(-) | ||
|
||
diff --git a/setup.py b/setup.py | ||
index d674cfe..9475037 100644 | ||
--- a/setup.py | ||
+++ b/setup.py | ||
@@ -32,7 +32,7 @@ class RemoteAccessBuild(build_py): | ||
|
||
setuptools.setup( | ||
name=NAME, | ||
- version='1.2.1', | ||
+ version='1.3.0', | ||
packages=setuptools.find_packages(exclude=['tests']), | ||
include_package_data=True, | ||
|
||
-- | ||
2.34.1 | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters