- Timestamp:
- Dec 21, 2009, 5:30:11 PM (15 years ago)
- Location:
- trunk/packages
- Files:
-
- 1 added
- 2 deleted
- 5 edited
- 1 copied
Legend:
- Unmodified
- Added
- Removed
-
trunk/packages/invirt-base/debian/changelog
r2614 r2766 1 invirt-base (0.0.28) unstable; urgency=low 2 3 * Completely remove the invirt.authz Python package - it will be 4 included in packages that Provide invirt-authz. 5 6 -- Evan Broder <broder@mit.edu> Mon, 21 Dec 2009 16:26:21 -0600 7 1 8 invirt-base (0.0.27) unstable; urgency=low 2 9 -
trunk/packages/invirt-dev/invirt-build-conf
r2638 r2766 12 12 import tempfile 13 13 14 from invirt .authz import mech asauthz14 from invirt import authz 15 15 from invirt import builder 16 16 from invirt.config import structs as config -
trunk/packages/xvm-authz-locker/debian/changelog
r2602 r2766 1 xvm-authz-locker (0.0.2) unstable; urgency=low 2 3 * Install the authz module as invirt.authz, instead of xvm.authz.locker 4 5 -- Evan Broder <broder@mit.edu> Mon, 21 Dec 2009 16:24:05 -0600 6 1 7 xvm-authz-locker (0.0.1) unstable; urgency=low 2 8 -
trunk/packages/xvm-authz-locker/debian/control
r2602 r2766 10 10 Depends: ${python:Depends}, ${misc:Depends}, invirt-base, python-afs 11 11 Provides: ${python:Provides}, invirt-authz 12 Conflicts: invirt-authz 13 Replaces: invirt-authz 12 14 XB-Python-Version: ${python:Versions} 13 15 Description: Authorization module for XVM -
trunk/packages/xvm-authz-locker/setup.py
r2602 r2766 4 4 from email.utils import parseaddr 5 5 from glob import glob 6 from setuptools import setup , find_packages6 from setuptools import setup 7 7 8 8 try: … … 24 24 maintainer_email=maintainer_email, 25 25 26 p ackages=find_packages('python'),26 py_modules = ['invirt.authz'], 27 27 package_dir = {'': 'python'}, 28 28 )
Note: See TracChangeset
for help on using the changeset viewer.