From fef3fae369976263052c41488b7595330b9e6edf Mon Sep 17 00:00:00 2001 From: Iustin Pop Date: Sun, 3 Dec 2006 12:43:52 +0000 Subject: [PATCH] - Update setup.py to 0.2.2 - remove posix1e from freebsd libs, as recent freebsd versions don't need it and also they don't have this lib anymore (the acls are in libc now) --- setup.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/setup.py b/setup.py index cba4fa0..95231f8 100755 --- a/setup.py +++ b/setup.py @@ -17,7 +17,6 @@ elif u_sysname == "GNU/kFreeBSD": libs.append("acl") elif u_sysname == "FreeBSD": macros.append(("HAVE_FREEBSD", None)) - libs.append("posix1e") else: raise ValueError("I don't know your system '%s'." " Please contact the author" % u_sysname) @@ -25,7 +24,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.1" +version = "0.2.2" setup(name="pylibacl", version=version, description="POSIX.1e ACLs for python", -- 2.39.2