Skip to content

Commit 2e7bfd0

Browse files
committed
unix-ffi/uu: Add unix-ffi version of uu package.
This package reuses the code from the python-stdlib version of `uu` but requires the unix-ffi version of `os-path`. This also updates `email.message` to require this version of `uu`. Signed-off-by: Jeffery To <[email protected]>
1 parent dcce62d commit 2e7bfd0

File tree

2 files changed

+7
-1
lines changed

2 files changed

+7
-1
lines changed

unix-ffi/email.message/manifest.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
metadata(version="0.5.3")
22

33
require("re", unix_ffi=True)
4-
require("uu")
4+
require("uu", unix_ffi=True)
55
require("base64")
66
require("binascii")
77
require("email.utils", unix_ffi=True)

unix-ffi/uu/manifest.py

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
metadata(version="0.5.1")
2+
3+
require("binascii")
4+
require("os-path", unix_ffi=True)
5+
6+
module("uu.py", base_path="../../python-stdlib/uu")

0 commit comments

Comments
 (0)