Merge "Version handling"

This commit is contained in:
Jenkins 2014-01-03 06:11:28 +00:00 committed by Gerrit Code Review
commit 85c17554d3
4 changed files with 41 additions and 1 deletions

View File

@ -0,0 +1,18 @@
# Copyright 2012 OpenStack Foundation
#
# Licensed under the Apache License, Version 2.0 (the "License"); you may
# not use this file except in compliance with the License. You may obtain
# a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
# WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
# License for the specific language governing permissions and limitations
# under the License.
import pbr.version
__version__ = pbr.version.VersionInfo('openstack-doc-tools').version_string()

View File

@ -0,0 +1,18 @@
# Copyright 2012 OpenStack Foundation
#
# Licensed under the Apache License, Version 2.0 (the "License"); you may
# not use this file except in compliance with the License. You may obtain
# a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
# WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
# License for the specific language governing permissions and limitations
# under the License.
import pbr.version
__version__ = pbr.version.VersionInfo('openstack-doc-tools').version_string()

View File

@ -31,6 +31,8 @@ Requires:
- Maven - Maven
''' '''
import os_doc_tools
from lxml import etree from lxml import etree
import argparse import argparse
@ -863,6 +865,9 @@ def main():
parser.add_argument("--api-site", help="Special handling for " parser.add_argument("--api-site", help="Special handling for "
"api-site repository", "api-site repository",
action="store_true") action="store_true")
parser.add_argument('--version',
action='version',
version=os_doc_tools.__version__)
prog_args = parser.parse_args() prog_args = parser.parse_args()
if not prog_args.api_site: if not prog_args.api_site:

View File

@ -1,6 +1,5 @@
[metadata] [metadata]
name = openstack-doc-tools name = openstack-doc-tools
version = 0.1
summary = Tools for OpenStack Documentation summary = Tools for OpenStack Documentation
description-file = description-file =
README.rst README.rst