1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23
|
Description: Fix pyproject license
This patch removes the extern/*/LICENSE directory
that pyproject.toml has which causes build errors
as this location doesn't exist
.
python-boost-histogram (1.7.0-1) unstable; urgency=medium
.
* Initial release. (Closes: #1109936)
Author: Aryan Karamtoth <spaciouscoder78@disroot.org>
Forwarded: not-needed
Last-Update: 2026-01-30
--- python-boost-histogram-1.7.0.orig/pyproject.toml
+++ python-boost-histogram-1.7.0/pyproject.toml
@@ -18,7 +18,7 @@ keywords = [
]
license = "BSD-3-Clause AND BSL-1.0"
license-files = [
- "LICENSE", "extern/*/LICENSE"
+ "LICENSE"
]
classifiers = [
"Development Status :: 5 - Production/Stable",
|