Deprecate pyshaker-agent package

Change-Id: I5860cc0f29df1651b3b7d7b294af5045c8dba453
This commit is contained in:
Ilya Shakhat 2017-03-01 13:40:04 +04:00
parent c1a4260e1a
commit 68cdd8dce2
4 changed files with 0 additions and 68 deletions

@ -1,9 +0,0 @@
# The order of packages is significant, because pip processes them in the order
# of appearance. Changing the order has an impact on the overall integration
# process, which may cause wedges in the gate later.
oslo.config>=3.9.0 # Apache-2.0
oslo.log>=1.14.0 # Apache-2.0
sphinx!=1.2.0,!=1.3b1,<1.3,>=1.1.2 # BSD
sphinxcontrib-httpdomain # BSD
sphinx_rtd_theme

@ -1,12 +0,0 @@
# The order of packages is significant, because pip processes them in the order
# of appearance. Changing the order has an impact on the overall integration
# process, which may cause wedges in the gate later.
pbr>=1.8 # Apache-2.0
oslo.concurrency>=3.8.0 # Apache-2.0
oslo.config!=3.18.0,>=3.14.0 # Apache-2.0
oslo.i18n>=2.1.0 # Apache-2.0
oslo.log>=3.11.0 # Apache-2.0
pyzmq>=16.0 # LGPL+BSD
PyYAML>=3.1.0

@ -1,27 +0,0 @@
[metadata]
name = pyshaker-agent
summary = Shaker Agent
description-file =
README.rst
author = OpenStack
author-email = openstack-dev@lists.openstack.org
home-page = http://www.openstack.org/
classifier =
Environment :: OpenStack
Intended Audience :: Developers
Intended Audience :: Information Technology
License :: OSI Approved :: Apache Software License
Operating System :: POSIX :: Linux
Programming Language :: Python
Programming Language :: Python :: 2
Programming Language :: Python :: 2.7
Programming Language :: Python :: 3
Programming Language :: Python :: 3.5
[files]
packages =
shaker
[entry_points]
console_scripts =
shaker-agent = shaker.agent.agent:main

@ -1,20 +0,0 @@
#!/bin/bash
TEMP_DIR="$(mktemp -d)"
cp -r shaker ${TEMP_DIR}/
cp -r .git ${TEMP_DIR}/
cp requirements-agent.txt ${TEMP_DIR}/requirements.txt
cp setup-agent.cfg ${TEMP_DIR}/setup.cfg
cp setup.py ${TEMP_DIR}/
cp README.rst ${TEMP_DIR}/
cp LICENSE ${TEMP_DIR}/
export PBR_VERSION="$(git describe --exact-match)"
cd ${TEMP_DIR}
echo "Building pyshaker-agent version ${PBR_VERSION}"
python setup.py sdist
twine upload -s dist/*
cd -
rm -rf ${TEMP_DIR}