summaryrefslogtreecommitdiff
path: root/www/buku/files
diff options
context:
space:
mode:
Diffstat (limited to 'www/buku/files')
-rw-r--r--www/buku/files/patch-pyproject.toml26
-rw-r--r--www/buku/files/patch-setup.py11
2 files changed, 26 insertions, 11 deletions
diff --git a/www/buku/files/patch-pyproject.toml b/www/buku/files/patch-pyproject.toml
new file mode 100644
index 000000000000..2c83fa4daa32
--- /dev/null
+++ b/www/buku/files/patch-pyproject.toml
@@ -0,0 +1,26 @@
+--- pyproject.toml.orig 2025-12-07 15:02:42 UTC
++++ pyproject.toml
+@@ -3,7 +3,7 @@ readme = "README.md"
+ description = "Bookmark manager like a text-based mini-web."
+ keywords = ["cli", "bookmarks", "tag", "utility"]
+ readme = "README.md"
+-license = "GPL-3.0-or-later"
++license = { text = "GPL-3.0-or-later" }
+ authors = [{ name = "Arun Prakash Jana", email = "engineerarun@gmail.com" }]
+ classifiers = [
+ "Development Status :: 5 - Production/Stable",
+@@ -87,7 +87,6 @@ buku = "buku:main"
+
+ [project.scripts]
+ buku = "buku:main"
+-bukuserver = "bukuserver.server:cli"
+
+ [tool.setuptools]
+ py-modules = ["buku"]
+@@ -100,5 +99,5 @@ version = { attr = "buku.__version__" }
+ version = { attr = "buku.__version__" }
+
+ [build-system]
+-requires = ["setuptools>=77.0.3"]
++requires = ["setuptools>=61"]
+ build-backend = "setuptools.build_meta"
diff --git a/www/buku/files/patch-setup.py b/www/buku/files/patch-setup.py
deleted file mode 100644
index 2b0fffa941be..000000000000
--- a/www/buku/files/patch-setup.py
+++ /dev/null
@@ -1,11 +0,0 @@
---- setup.py.orig 2022-07-01 22:29:19 UTC
-+++ setup.py
-@@ -81,7 +81,7 @@ setup(
- packages=find_packages(exclude=['tests']),
- include_package_data=True,
- entry_points={
-- 'console_scripts': ['buku=buku:main', 'bukuserver=bukuserver.server:cli']
-+ 'console_scripts': ['buku=buku:main']
- },
- extras_require={
- "ca-certificates": ["certifi"],