Skip to content
Closed
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
6 changes: 3 additions & 3 deletions packages/pynacl/meta.yaml
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
package:
name: pynacl
version: 1.5.0
version: 1.6.0
top-level:
- nacl
source:
url: https://files.pythonhosted.org/packages/a7/22/27582568be639dfe22ddb3902225f91f2f17ceff88ce80e4db396c8986da/PyNaCl-1.5.0.tar.gz
sha256: 8ac7448f09ab85811607bdd21ec2464495ac8b7c66d146bf545b0f08fb9220ba
url: https://files.pythonhosted.org/packages/06/c6/a3124dee667a423f2c637cfd262a54d67d8ccf3e160f3c50f622a85b7723/pynacl-1.6.0.tar.gz
sha256: cb36deafe6e2bce3b286e5d1f3e1c246e0ccdb8808ddb4550bb2792f2df298f2
patches:
- patches/0001-Don-t-check-libsodium.patch
requirements:
Expand Down
28 changes: 12 additions & 16 deletions packages/pynacl/patches/0001-Don-t-check-libsodium.patch
Original file line number Diff line number Diff line change
@@ -1,26 +1,22 @@
From bf250e6b263f8c4fddc1eb819ad5de85776b84f0 Mon Sep 17 00:00:00 2001
From: Hood Chatham <[email protected]>
Date: Mon, 23 Jan 2023 19:29:57 -0800
Subject: [PATCH] Don't check libsodium
From a82e4b5423d72d6365a31d7cd088685b1cfc406d Mon Sep 17 00:00:00 2001
From: mrfantastic <mrfantastic@local>
Date: Sun, 26 Oct 2025 21:26:02 -0400
Subject: [PATCH] Fix

---
setup.py | 3 ---
1 file changed, 3 deletions(-)

diff --git a/setup.py b/setup.py
index 505169b..de2fe67 100644
index ea87da7..779f334 100644
--- a/setup.py
+++ b/setup.py
@@ -168,9 +168,6 @@ class build_clib(_build_clib):
@@ -154,11 +154,6 @@ class build_clib(_build_clib):
# Build the library
subprocess.check_call(["make"] + make_args, cwd=build_temp)
subprocess.check_call([make_command] + make_args, cwd=build_temp)

- # Check the build library
- subprocess.check_call(["make", "check"] + make_args, cwd=build_temp)
- subprocess.check_call(
- [make_command, "check"] + make_args, cwd=build_temp
- )
-
# Install the built library
subprocess.check_call(["make", "install"] + make_args, cwd=build_temp)

--
2.25.1

subprocess.check_call(
[make_command, "install"] + make_args, cwd=build_temp
Loading