Renamed to jeepyb.
This commit is contained in:
parent
7f2b55cbe0
commit
674a648fcb
2
.gitignore
vendored
2
.gitignore
vendored
@ -1,7 +1,7 @@
|
|||||||
.tox
|
.tox
|
||||||
build/*
|
build/*
|
||||||
*.pyc
|
*.pyc
|
||||||
gerritx/versioninfo
|
jeepyb/versioninfo
|
||||||
AUTHORS
|
AUTHORS
|
||||||
ChangeLog
|
ChangeLog
|
||||||
dist/*
|
dist/*
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
[gerrit]
|
[gerrit]
|
||||||
host=review.openstack.org
|
host=review.openstack.org
|
||||||
port=29418
|
port=29418
|
||||||
project=openstack-ci/gerritx.git
|
project=openstack-ci/jeepyb.git
|
||||||
|
@ -8,5 +8,5 @@ the workflow documented at [http://wiki.openstack.org/GerritWorkflow](http://wik
|
|||||||
|
|
||||||
Pull requests submitted through GitHub will be ignored.
|
Pull requests submitted through GitHub will be ignored.
|
||||||
|
|
||||||
Bugs should be filed [on Launchpad](https://bugs.launchpad.net/gerritx),
|
Bugs should be filed [on Launchpad](https://bugs.launchpad.net/jeepyb),
|
||||||
not in GitHub's issue tracker.
|
not in GitHub's issue tracker.
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
include gerritx/versioninfo
|
include jeepyb/versioninfo
|
||||||
include AUTHORS
|
include AUTHORS
|
||||||
include ChangeLog
|
include ChangeLog
|
||||||
|
|
||||||
|
@ -2,6 +2,6 @@
|
|||||||
Tools to Manage Gerrit Projects
|
Tools to Manage Gerrit Projects
|
||||||
===============================
|
===============================
|
||||||
|
|
||||||
gerritx is a collection of tools which make managing a gerrit easier.
|
jeepyb is a collection of tools which make managing a gerrit easier.
|
||||||
Specifically, management of gerrit projects and their associated upstream
|
Specifically, management of gerrit projects and their associated upstream
|
||||||
integration with things like github and launchpad.
|
integration with things like github and launchpad.
|
||||||
|
@ -15,6 +15,6 @@
|
|||||||
# License for the specific language governing permissions and limitations
|
# License for the specific language governing permissions and limitations
|
||||||
# under the License.
|
# under the License.
|
||||||
|
|
||||||
from gerritx.openstack.common import version as common_version
|
from jeepyb.openstack.common import version as common_version
|
||||||
|
|
||||||
version_info = common_version.VersionInfo('gerritx')
|
version_info = common_version.VersionInfo('jeepyb')
|
@ -4,4 +4,4 @@
|
|||||||
modules=setup,version
|
modules=setup,version
|
||||||
|
|
||||||
# The base module to hold the copy of openstack.common
|
# The base module to hold the copy of openstack.common
|
||||||
base=gerritx
|
base=jeepyb
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
[nosetests]
|
[nosetests]
|
||||||
cover-package = gerritx
|
cover-package = jeepyb
|
||||||
cover-html = true
|
cover-html = true
|
||||||
cover-erase = true
|
cover-erase = true
|
||||||
cover-inclusive = true
|
cover-inclusive = true
|
||||||
|
28
setup.py
28
setup.py
@ -16,8 +16,8 @@ import os
|
|||||||
import setuptools
|
import setuptools
|
||||||
|
|
||||||
|
|
||||||
from gerritx.openstack.common import setup
|
from jeepyb.openstack.common import setup
|
||||||
from gerritx.version import version_info as version
|
from jeepyb.version import version_info as version
|
||||||
|
|
||||||
requires = setup.parse_requirements()
|
requires = setup.parse_requirements()
|
||||||
tests_require = setup.parse_requirements(['tools/test-requires'])
|
tests_require = setup.parse_requirements(['tools/test-requires'])
|
||||||
@ -29,13 +29,13 @@ def read_file(file_name):
|
|||||||
|
|
||||||
|
|
||||||
setuptools.setup(
|
setuptools.setup(
|
||||||
name="gerritx",
|
name="jeepyb",
|
||||||
version=version.canonical_version_string(always=True),
|
version=version.canonical_version_string(always=True),
|
||||||
author='Hewlett-Packard Development Company, L.P.',
|
author='Hewlett-Packard Development Company, L.P.',
|
||||||
author_email='openstack@lists.launchpad.net',
|
author_email='openstack@lists.launchpad.net',
|
||||||
description="Tools for managing gerrit projects and external sources.",
|
description="Tools for managing gerrit projects and external sources.",
|
||||||
license="Apache License, Version 2.0",
|
license="Apache License, Version 2.0",
|
||||||
url="https://github.com/openstack-ci/gerritx",
|
url="https://github.com/openstack-ci/jeepyb",
|
||||||
packages=setuptools.find_packages(exclude=['tests', 'tests.*']),
|
packages=setuptools.find_packages(exclude=['tests', 'tests.*']),
|
||||||
include_package_data=True,
|
include_package_data=True,
|
||||||
setup_requires=['setuptools_git>=0.4'],
|
setup_requires=['setuptools_git>=0.4'],
|
||||||
@ -54,16 +54,16 @@ setuptools.setup(
|
|||||||
],
|
],
|
||||||
entry_points={
|
entry_points={
|
||||||
'console_scripts': [
|
'console_scripts': [
|
||||||
'close-pull-requests=gerritx.cmd.close_pull_requests:main',
|
'close-pull-requests=jeepyb.cmd.close_pull_requests:main',
|
||||||
'expire-old-reviews=gerritx.cmd.expire_old_reviews:main',
|
'expire-old-reviews=jeepyb.cmd.expire_old_reviews:main',
|
||||||
'fetch-remotes=gerritx.cmd.fetch_remotes:main',
|
'fetch-remotes=jeepyb.cmd.fetch_remotes:main',
|
||||||
'manage-projects=gerritx.cmd.manage_projects:main',
|
'manage-projects=jeepyb.cmd.manage_projects:main',
|
||||||
'notify-impact=gerritx.cmd.notify_impact:main',
|
'notify-impact=jeepyb.cmd.notify_impact:main',
|
||||||
'process-cache=gerritx.cmd.process_cache:main',
|
'process-cache=jeepyb.cmd.process_cache:main',
|
||||||
'run-mirror=gerritx.cmd.run_mirror:main',
|
'run-mirror=jeepyb.cmd.run_mirror:main',
|
||||||
'trivial-rebase=gerritx.cmd.trivial_rebase:main',
|
'trivial-rebase=jeepyb.cmd.trivial_rebase:main',
|
||||||
'update-blueprint=gerritx.cmd.update_blueprint:main',
|
'update-blueprint=jeepyb.cmd.update_blueprint:main',
|
||||||
'update-bug=gerritx.cmd.update_bug:main',
|
'update-bug=jeepyb.cmd.update_bug:main',
|
||||||
],
|
],
|
||||||
}
|
}
|
||||||
)
|
)
|
||||||
|
Loading…
Reference in New Issue
Block a user