Skip to content

Commit

Permalink
Merge pull request #1472 from sa2ajj/fix-description
Browse files Browse the repository at this point in the history
Fix description
  • Loading branch information
Mikhail Sobolev committed Dec 31, 2014
2 parents c1b3435 + 082cecd commit c7a1676
Show file tree
Hide file tree
Showing 4 changed files with 53 additions and 78 deletions.
63 changes: 0 additions & 63 deletions master/README

This file was deleted.

50 changes: 50 additions & 0 deletions master/README.rst
@@ -0,0 +1,50 @@
Buildbot: The Continuous Integration Framework
==============================================

:Site: http://buildbot.net
:Original author: Brian Warner <warner-buildbot @ lothar . com>
:Current maintainer: Dustin J. Mitchell <dustin@buildbot.net>

.. contents::
:local:

Buildbot is an open-source continuous integration framework for automating software build, test, and release processes.

* Buildbot is easy to set up, but very extensible and customizable.
It supports arbitrary build processes, and is not limited to common build processes for particular languages (e.g., autotools or ant)
* Buildbot supports building and testing on a variety of platforms.
Developers, who do not have the facilities to test their changes everywhere before committing, will know shortly afterwards whether they have broken the build or not.
* Buildbot allows to track various metrics (warning counts, lint checks, image size, compile time, etc) over time.
* Buildbot has minimal requirements for build slaves: using virtualenv, only a Python installation is required.
* Build slaves can be run behind a NAT firewall and communicate with the master.
* Buildbot has a variety of status-reporting tools to get information about builds in front of developers in a timely manner.

Documentation
-------------

See http://buildbot.net/buildbot/docs/current for documentation of the current version of Buildbot.

Requirements
------------

See http://buildbot.net/buildbot/docs/latest/manual/installation.html

Briefly: python, Twisted, Jinja2, simplejson, and SQLite.
Simplejson and SQLite are included with recent versions of Python.

Support
-------

Please send questions, bugs, patches, etc, to the buildbot-devel mailing list reachable through http://buildbot.net/, so that everyone can see them.

Copying
-------

Buildbot is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, version 2.

This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
See the GNU General Public License for more details.

For full details, please see the file named COPYING in the top directory of the source tree.
You should have received a copy of the GNU General Public License along with this program.
If not, see <http://www.gnu.org/licenses/>.
16 changes: 2 additions & 14 deletions master/setup.py
Expand Up @@ -112,20 +112,8 @@ def define_plugin_entries(groups):
return result


long_description = """
The Buildbot is a system to automate the compile/test cycle required by
most software projects to validate code changes. By automatically
rebuilding and testing the tree each time something has changed, build
problems are pinpointed quickly, before other developers are
inconvenienced by the failure. The guilty developer can be identified
and harassed without human intervention. By running the builds on a
variety of platforms, developers who do not have the facilities to test
their changes everywhere before checkin will at least know shortly
afterwards whether they have broken the build or not. Warning counts,
lint checks, image size, compile time, and other build parameters can
be tracked over time, are more visible, and are therefore easier to
improve.
"""
with open(os.path.join(os.path.dirname(__file__), 'README.rst')) as long_d_f:
long_description = long_d_f.read()

scripts = ["bin/buildbot"]
# sdist is usually run on a non-Windows platform, but the buildslave.bat file
Expand Down
2 changes: 1 addition & 1 deletion slave/setup.py
Expand Up @@ -71,7 +71,7 @@ def make_release_tree(self, base_dir, files):
setup_args = {
'name': "buildbot-slave",
'version': version,
'description': "BuildBot Slave Daemon",
'description': "Buildbot Slave Daemon",
'long_description': "See the 'buildbot' package for details",
'author': "Brian Warner",
'author_email': "warner-buildbot@lothar.com",
Expand Down

0 comments on commit c7a1676

Please sign in to comment.