Changeset 2766


Ignore:
Timestamp:
Dec 21, 2009, 5:30:11 PM (14 years ago)
Author:
broder
Message:

Have authz providers use an invirt.authz module.

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.

Location:
trunk/packages
Files:
1 added
2 deleted
5 edited
1 copied

Legend:

Unmodified
Added
Removed
  • trunk/packages/invirt-base/debian/changelog

    r2614 r2766  
     1invirt-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
    18invirt-base (0.0.27) unstable; urgency=low
    29
  • trunk/packages/invirt-dev/invirt-build-conf

    r2638 r2766  
    1212import tempfile
    1313
    14 from invirt.authz import mech as authz
     14from invirt import authz
    1515from invirt import builder
    1616from invirt.config import structs as config
  • trunk/packages/xvm-authz-locker/debian/changelog

    r2602 r2766  
     1xvm-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
    17xvm-authz-locker (0.0.1) unstable; urgency=low
    28
  • trunk/packages/xvm-authz-locker/debian/control

    r2602 r2766  
    1010Depends: ${python:Depends}, ${misc:Depends}, invirt-base, python-afs
    1111Provides: ${python:Provides}, invirt-authz
     12Conflicts: invirt-authz
     13Replaces: invirt-authz
    1214XB-Python-Version: ${python:Versions}
    1315Description: Authorization module for XVM
  • trunk/packages/xvm-authz-locker/setup.py

    r2602 r2766  
    44from email.utils import parseaddr
    55from glob import glob
    6 from setuptools import setup, find_packages
     6from setuptools import setup
    77
    88try:
     
    2424    maintainer_email=maintainer_email,
    2525   
    26     packages=find_packages('python'),
     26    py_modules = ['invirt.authz'],
    2727    package_dir = {'': 'python'},
    2828)
Note: See TracChangeset for help on using the changeset viewer.