Merge "Deprecate this package"

This commit is contained in:
Jenkins 2015-12-29 17:27:51 +00:00 committed by Gerrit Code Review
commit 0d6fd127ea
3 changed files with 14 additions and 20 deletions

View File

@ -1,16 +1,5 @@
If you would like to contribute to the development of OpenStack,
you must follow the steps in this page:
http://docs.openstack.org/infra/manual/developers.html
python-keystoneclient-kerberos is deprecated. Contribute to keystoneauth
instead:
Once those steps have been completed, changes to OpenStack
should be submitted for review via the Gerrit tool, following
the workflow documented at:
http://docs.openstack.org/infra/manual/developers.html#development-workflow
Pull requests submitted through GitHub will be ignored.
Bugs should be filed on Launchpad, not GitHub:
https://bugs.launchpad.net/python-keystoneclient-kerberos
https://pypi.python.org/pypi/keystoneauth1/

View File

@ -2,14 +2,12 @@
python-keystoneclient-kerberos
===============================
Kerberos authentication for the OpenStack clients
python-keystoneclient-kerberos was an authentication plugin for keystoneclient
that supported Kerberos. The contents have been moved into the keystoneauth1
package at https://pypi.python.org/pypi/keystoneauth1/ , and
python-keystoneclient-kerberos will no longer be supported.
* Free software: Apache license
* Documentation: http://docs.openstack.org/developer/python-keystoneclient-kerberos
* Source: http://git.openstack.org/cgit/openstack/python-keystoneclient-kerberos
* Bugs: http://bugs.launchpad.net/python-keystoneclient
Features
--------
* TODO

View File

@ -12,10 +12,17 @@
# License for the specific language governing permissions and limitations
# under the License.
import warnings
import pbr.version
from keystoneclient_kerberos import v3
warnings.warn(
"The keystoneclient_kerberos package is deprecated in favor of "
"keystoneauth1 and will not be supported.", DeprecationWarning)
__version__ = pbr.version.VersionInfo(
'python-keystoneclient-kerberos').version_string()