summaryrefslogtreecommitdiff
path: root/dev-python/btrfs
diff options
context:
space:
mode:
authorroot <root@alpha.trunkmasters.com>2026-07-10 03:04:33 -0500
committerroot <root@alpha.trunkmasters.com>2026-07-10 03:04:33 -0500
commited2e0f29bf24219e96271574d9c99c971dff3698 (patch)
treeaa4cdcbf1a9384d5495104e034018b2d6fadcaac /dev-python/btrfs
parenta96a971c845e2cd3ffad3b8f63558c6408897f0a (diff)
downloadbaldeagleos-repo-ed2e0f29bf24219e96271574d9c99c971dff3698.tar.gz
baldeagleos-repo-ed2e0f29bf24219e96271574d9c99c971dff3698.tar.xz
baldeagleos-repo-ed2e0f29bf24219e96271574d9c99c971dff3698.zip
Adding metadata
Diffstat (limited to 'dev-python/btrfs')
-rw-r--r--dev-python/btrfs/btrfs-15.ebuild2
-rw-r--r--dev-python/btrfs/files/15-setup.patch32
2 files changed, 34 insertions, 0 deletions
diff --git a/dev-python/btrfs/btrfs-15.ebuild b/dev-python/btrfs/btrfs-15.ebuild
index e985ee0c7124..fba877e1c098 100644
--- a/dev-python/btrfs/btrfs-15.ebuild
+++ b/dev-python/btrfs/btrfs-15.ebuild
@@ -25,6 +25,8 @@ SLOT="0"
KEYWORDS="amd64"
IUSE="examples"
+PATCHES=( "${FILESDIR}"/15-setup.patch )
+
python_install_all() {
if use examples; then
# skip symlink meant for development
diff --git a/dev-python/btrfs/files/15-setup.patch b/dev-python/btrfs/files/15-setup.patch
new file mode 100644
index 000000000000..418ecbf8720f
--- /dev/null
+++ b/dev-python/btrfs/files/15-setup.patch
@@ -0,0 +1,32 @@
+https://github.com/knorrie/python-btrfs/issues/55
+https://github.com/knorrie/python-btrfs/commit/7d27aa6665bd38ad05b6eb990dd3bfd5394ee37f
+
+From: Hans van Kranenburg <hans@knorrie.org>
+Date: Sun, 10 May 2026 10:59:27 +0200
+Subject: [PATCH] setup.py: convert license classifier to SPDX
+
+setuptools >75.6.0 wants to see the license type specified differently.
+Use SPDX identifier instead of the now unused field in classifiers.
+
+Thanks Holger Hoffstätte, for reporting.
+---
+ setup.py | 2 +-
+ 1 file changed, 1 insertion(+), 1 deletion(-)
+
+diff --git a/setup.py b/setup.py
+index 744bf26..25ca48a 100644
+--- a/setup.py
++++ b/setup.py
+@@ -56,11 +56,11 @@ def get_version():
+ 'Development Status :: 5 - Production/Stable',
+ 'Intended Audience :: Developers',
+ 'Intended Audience :: System Administrators',
+- 'License :: OSI Approved :: GNU Lesser General Public License v3 (LGPLv3)',
+ 'Programming Language :: Python :: 3 :: Only',
+ 'Programming Language :: Python :: Implementation :: CPython',
+ 'Operating System :: POSIX :: Linux',
+ 'Topic :: System :: Filesystems',
+ 'Topic :: System :: Systems Administration',
+ ],
++ license='LGPL-3.0-or-later',
+ )