Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions docs/packages/siphash24.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -18,3 +18,4 @@ versions:
- filename: siphash24-1.8-cp314-cp314t-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl
sha256: ce59c95d0ec2d0b64d5fa6cad8bb1cfdb706651a7a042e003c62752bfffd6033
requires-python: '>=3.7'
- version: '1.9'
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
From d150be250f449058e6be4211b3a22e0471c97b50 Mon Sep 17 00:00:00 2001
From: Ludovic Henry <git@ludovic.dev>
Date: Fri, 18 Sep 2026 05:33:18 +0000
Subject: [PATCH] Ship the LICENSES/ texts in wheel metadata

meson-python >= 0.18.0 (this project's own build-system floor) added
support for the PEP 639 `license-files` field; without it declared,
the wheel's dist-info carries no license text at all even though the
project already maintains LICENSES/Apache-2.0.txt and
LICENSES/LGPL-2.1-or-later.txt for exactly this purpose (issue #4).

Upstream-Status: To upstream [not submitted from this automated port run; needs a pull request against dnicolodi/python-siphash24]
---
pyproject.toml | 1 +
1 file changed, 1 insertion(+)

diff --git a/pyproject.toml b/pyproject.toml
index bddd7f7..3f80cff 100644
--- a/pyproject.toml
+++ b/pyproject.toml
@@ -13,6 +13,7 @@ build-backend = "mesonpy"
name = "siphash24"
version = "1.9"
license = "Apache-2.0 OR LGPL-2.1-or-later"
+license-files = ["LICENSES/*.txt"]
description = "Streaming-capable SipHash-1-3 and SipHash-2-4 Implementation"
readme = "README.rst"
maintainers = [
Loading