summary |
shortlog |
log |
commit | commitdiff |
tree
raw |
patch |
inline | side by side (from parent 1:
5d59bd7)
xvm-authz-locker now includes an invirt.authz module instead of
xvm.authz.locker. All authz providers conflict with each other, and
provide invirt-authz.
svn path=/trunk/packages/xvm-authz-locker/; revision=2766
+xvm-authz-locker (0.0.2) unstable; urgency=low
+
+ * Install the authz module as invirt.authz, instead of xvm.authz.locker
+
+ -- Evan Broder <broder@mit.edu> Mon, 21 Dec 2009 16:24:05 -0600
+
xvm-authz-locker (0.0.1) unstable; urgency=low
* Initial release.
xvm-authz-locker (0.0.1) unstable; urgency=low
* Initial release.
Architecture: all
Depends: ${python:Depends}, ${misc:Depends}, invirt-base, python-afs
Provides: ${python:Provides}, invirt-authz
Architecture: all
Depends: ${python:Depends}, ${misc:Depends}, invirt-base, python-afs
Provides: ${python:Provides}, invirt-authz
+Conflicts: invirt-authz
+Replaces: invirt-authz
XB-Python-Version: ${python:Versions}
Description: Authorization module for XVM
This package contains an authorization module for XVM. It supports
XB-Python-Version: ${python:Versions}
Description: Authorization module for XVM
This package contains an authorization module for XVM. It supports
from os import path
from email.utils import parseaddr
from glob import glob
from os import path
from email.utils import parseaddr
from glob import glob
-from setuptools import setup, find_packages
+from setuptools import setup
try:
from debian_bundle.changelog import Changelog
try:
from debian_bundle.changelog import Changelog
maintainer=maintainer,
maintainer_email=maintainer_email,
maintainer=maintainer,
maintainer_email=maintainer_email,
- packages=find_packages('python'),
+ py_modules = ['invirt.authz'],
package_dir = {'': 'python'},
)
package_dir = {'': 'python'},
)