forked from jralls/gtk-osx-build
-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
cryptography: fix build due to missing setup.py.
*** Building python3-cryptography *** [79/137] python3 setup.py build --build-base /Users/catalinp/.cache/jhbuild/build/cryptography-42.0.2 python3: can't open file '/Users/catalinp/gtk/source/cryptography-42.0.2/setup.py': [Errno 2] No such file or directory
- Loading branch information
Showing
2 changed files
with
19 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
commit 61401d62c557246600b45d09d471450e97b8c6f0 | ||
Author: Catalin Patulea <[email protected]> | ||
Date: Sat Jan 27 11:32:52 2024 +0000 | ||
|
||
Add skeleton setup.py. | ||
|
||
diff --git a/setup.py b/setup.py | ||
new file mode 100755 | ||
index 0000000..851cb3f | ||
--- /dev/null | ||
+++ b/setup.py | ||
@@ -0,0 +1,3 @@ | ||
+#!/usr/bin/env python3 | ||
+from setuptools import setup | ||
+setup() | ||
\ No newline at end of file |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters