From a003330007f68db65cd8f6f3a6c702b7c2ec16a1 Mon Sep 17 00:00:00 2001 From: Iustin Pop Date: Sun, 29 Dec 2002 20:41:24 +0000 Subject: [PATCH] Release 0.2.1 --- BENCHMARK | 10 +++++----- MANIFEST.in | 1 + setup.py | 3 ++- 3 files changed, 8 insertions(+), 6 deletions(-) diff --git a/BENCHMARK b/BENCHMARK index f01e557..3c9cea1 100644 --- a/BENCHMARK +++ b/BENCHMARK @@ -1,8 +1,8 @@ On my Duron 1000, Linux 2.4, creating 1.000.000 ACLs and discarding them: -empty ACL: 4.48user 0.03system 0:04.50elapsed 100%CPU -from text: 13.87user 0.09system 0:13.97elapsed 99%CPU -XFS, from file: 14.17user 14.95system 0:29.13elapsed 99%CPU +empty ACL: 4.48user 0.03system 0:04.50elapsed 100%CPU +from text: 13.87user 0.09system 0:13.97elapsed 99%CPU +XFS, file: 14.17user 14.95system 0:29.13elapsed 99%CPU creating a list from the entries of an ACL: no entries: 3.86user 0.01system 0:03.86elapsed 100%CPU @@ -13,8 +13,8 @@ half time when creating from file was in kernel mode. In freebsd 4.6, UNDER VMWARE!!!!, same machine: -empty ACL: 3.368u 0.492s 0:03.85 100.0% 514+15436k 0+0io 0pf+0w -from text: 10.638u 1.137s 0:11.88 98.9% 516+24543k 0+0io 1pf+0w +empty ACL: 3.409u 0.432s 0:03.85 99.4% 516+15695k 0+0io 0pf+0w +from text: 10.672u 1.016s 0:11.71 99.7% 508+24230k 0+0io 0pf+0w Interesting results, it seems from text is faster here - but here the library doens't support editing, so maybe that's why. diff --git a/MANIFEST.in b/MANIFEST.in index 1174f5a..1da8d1b 100644 --- a/MANIFEST.in +++ b/MANIFEST.in @@ -1,6 +1,7 @@ include README include PLATFORMS include IMPLEMENTATION +include BENCHMARK include acl.c include os_*.c include MANIFEST diff --git a/setup.py b/setup.py index 6d45ac6..d048c6d 100644 --- a/setup.py +++ b/setup.py @@ -20,7 +20,7 @@ else: long_desc = """This is a C extension module for Python which implements POSIX ACLs manipulation. It is a wrapper on top of the systems's acl C library - see acl(5).""" -version = "0.2" +version = "0.2.1" setup(name="pylibacl", version=version, description="POSIX.1e ACLs for python", @@ -35,5 +35,6 @@ setup(name="pylibacl", )], data_files=[("/usr/share/doc/pylibacl-%s" % version, ["README","IMPLEMENTATION", "PLATFORMS", + "BENCHMARK", "posix1e.html", "posix1e.txt"])], ) -- 2.39.2