#!/usr/bin/env python # # This file is part of Buildbot. 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. # # You should have received a copy of the GNU General Public License along with # this program; if not, write to the Free Software Foundation, Inc., 51 # Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. # # Copyright Buildbot Team Members """ Standard setup script. """ import glob import os import sys from buildbot import version from distutils.core import setup from distutils.command.install_data import install_data from distutils.command.sdist import sdist def include(d, e): """Generate a pair of (directory, file-list) for installation. 'd' -- A directory 'e' -- A glob pattern""" return (d, [f for f in glob.glob('%s/%s' % (d, e)) if os.path.isfile(f)]) class install_data_twisted(install_data): """make sure data files are installed in package. this is evil. copied from Twisted/setup.py. """ def finalize_options(self): self.set_undefined_options('install', ('install_lib', 'install_dir'), ) install_data.finalize_options(self) def run(self): install_data.run(self) # ensure there's a buildbot/VERSION file fn = os.path.join(self.install_dir, 'buildbot', 'VERSION') open(fn, 'w').write(version) self.outfiles.append(fn) class our_sdist(sdist): def make_release_tree(self, base_dir, files): sdist.make_release_tree(self, base_dir, files) # ensure there's a buildbot/VERSION file fn = os.path.join(base_dir, 'buildbot', 'VERSION') open(fn, 'w').write(version) # ensure that NEWS has a copy of the latest release notes, with the # proper version substituted src_fn = os.path.join('docs', 'relnotes/index.rst') src = open(src_fn).read() src = src.replace('|version|', version) dst_fn = os.path.join(base_dir, 'NEWS') open(dst_fn, 'w').write(src) def define_plugin_entry(name, module_name): """ helper to produce lines suitable for setup.py's entry_points """ if isinstance(name, tuple): entry, name = name else: entry = name return '%s = %s:%s' % (entry, module_name, name) def define_plugin_entries(groups): """ helper to all groups for plugins """ result = dict() for group, modules in groups: tempo = [] for module_name, names in modules: tempo.extend([define_plugin_entry(name, module_name) for name in names]) result[group] = tempo 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. """ scripts = ["bin/buildbot"] # sdist is usually run on a non-Windows platform, but the buildslave.bat file # still needs to get packaged. if 'sdist' in sys.argv or sys.platform == 'win32': scripts.append("contrib/windows/buildbot.bat") scripts.append("contrib/windows/buildbot_service.py") setup_args = { 'name': "buildbot", 'version': version, 'description': "BuildBot build automation system", 'long_description': long_description, 'author': "Brian Warner", 'author_email': "warner-buildbot@lothar.com", 'maintainer': "Dustin J. Mitchell", 'maintainer_email': "dustin@v.igoro.us", 'url': "http://buildbot.net/", 'license': "GNU GPL", 'classifiers': [ 'Development Status :: 5 - Production/Stable', 'Environment :: No Input/Output (Daemon)', 'Environment :: Web Environment', 'Intended Audience :: Developers', 'License :: OSI Approved :: GNU General Public License (GPL)', 'Topic :: Software Development :: Build Tools', 'Topic :: Software Development :: Testing', ], 'packages': [ "buildbot", "buildbot.buildslave", "buildbot.changes", "buildbot.clients", "buildbot.db", "buildbot.db.migrate.versions", "buildbot.db.types", "buildbot.monkeypatches", "buildbot.plugins", "buildbot.process", "buildbot.process.users", "buildbot.schedulers", "buildbot.scripts", "buildbot.status", "buildbot.status.web", "buildbot.status.web.hooks", "buildbot.steps", "buildbot.steps.package", "buildbot.steps.package.deb", "buildbot.steps.package.rpm", "buildbot.steps.source", "buildbot.test", "buildbot.test.fake", "buildbot.test.regressions", "buildbot.test.unit", "buildbot.test.util", "buildbot.util", ], 'data_files': [ ("buildbot", [ "buildbot/buildbot.png", ]), ("buildbot/db/migrate", [ "buildbot/db/migrate/migrate.cfg", ]), include("buildbot/db/migrate/versions", "*.py"), ("buildbot/clients", [ "buildbot/clients/debug.glade", ]), ("buildbot/status/web/files", [ "buildbot/status/web/files/default.css", "buildbot/status/web/files/bg_gradient.jpg", "buildbot/status/web/files/robots.txt", "buildbot/status/web/files/templates_readme.txt", "buildbot/status/web/files/favicon.ico", ]), include("buildbot/status/web/files", '*.png'), include("buildbot/status/web/templates", '*.html'), include("buildbot/status/web/templates", '*.xml'), ("buildbot/scripts", [ "buildbot/scripts/sample.cfg", "buildbot/scripts/buildbot_tac.tmpl", ]), ], 'scripts': scripts, 'cmdclass': {'install_data': install_data_twisted, 'sdist': our_sdist}, 'entry_points': define_plugin_entries([ ('buildbot.changes', [ ('buildbot.changes.mail', [ 'MaildirSource', 'CVSMaildirSource', 'SVNCommitEmailMaildirSource', 'BzrLaunchpadEmailMaildirSource']), ('buildbot.changes.bitbucket', ['BitbucketPullrequestPoller']), ('buildbot.changes.bonsaipoller', ['BonsaiPoller']), ('buildbot.changes.gerritchangesource', ['GerritChangeSource']), ('buildbot.changes.gitpoller', ['GitPoller']), ('buildbot.changes.hgpoller', ['HgPoller']), ('buildbot.changes.p4poller', ['P4Source']), ('buildbot.changes.pb', ['PBChangeSource']), ('buildbot.changes.svnpoller', ['SVNPoller']) ]), ('buildbot.schedulers', [ ('buildbot.schedulers.basic', [ 'SingleBranchScheduler', 'AnyBranchScheduler']), ('buildbot.schedulers.dependent', ['Dependent']), ('buildbot.schedulers.triggerable', ['Triggerable']), ('buildbot.schedulers.forcesched', ['ForceScheduler']), ('buildbot.schedulers.timed', [ 'Periodic', 'Nightly', 'NightlyTriggerable']), ('buildbot.schedulers.trysched', [ 'Try_Jobdir', 'Try_Userpass']) ]), ('buildbot.buildslave', [ ('buildbot.buildslave.base', ['BuildSlave']), ('buildbot.buildslave.ec2', ['EC2LatentBuildSlave']), ('buildbot.buildslave.libvirt', ['LibVirtSlave']), ('buildbot.buildslave.openstack', ['OpenStackLatentBuildSlave']) ]), ('buildbot.steps', [ ('buildbot.process.buildstep', ['BuildStep']), ('buildbot.steps.gerrit', [ 'CancelGerritRelatedBuilds', 'StopGerritRelatedBuilds']), ('buildbot.steps.http', [ 'HTTPStep', 'POST', 'GET', 'PUT', 'DELETE', 'HEAD', 'OPTIONS']), ('buildbot.steps.master', [ 'MasterShellCommand', 'SetProperty', 'LogRenderable', 'CancelRelatedBuilds', 'StopRelatedBuilds']), ('buildbot.steps.maxq', ['MaxQ']), ('buildbot.steps.mswin', ['Robocopy']), ('buildbot.steps.mtrlogobserver', ['MTR']), ('buildbot.steps.package.deb.lintian', ['DebLintian']), ('buildbot.steps.package.deb.pbuilder', [ 'DebPbuilder', 'DebCowbuilder', 'UbuPbuilder', 'UbuCowbuilder']), ('buildbot.steps.package.rpm.mock', [ 'Mock', 'MockBuildSRPM', 'MockRebuild']), ('buildbot.steps.package.rpm.rpmbuild', ['RpmBuild']), ('buildbot.steps.package.rpm.rpmspec', ['RpmSpec']), ('buildbot.steps.python', [ 'BuildEPYDoc', 'PyFlakes', 'PyLint', 'Sphinx']), ('buildbot.steps.python_twisted', [ 'HLint', 'Trial', 'RemovePYCs']), ('buildbot.steps.shell', [ 'ShellCommand', 'TreeSize', 'SetPropertyFromCommand', 'Configure', 'WarningCountingShellCommand', 'Compile', 'Test', 'PerlModuleTest']), ('buildbot.steps.shellsequence', ['ShellSequence']), ('buildbot.steps.slave', [ 'SetPropertiesFromEnv', 'FileExists', 'CopyDirectory', 'RemoveDirectory', 'MakeDirectory']), ('buildbot.steps.source.bzr', ['Bzr']), ('buildbot.steps.source.cvs', ['CVS']), ('buildbot.steps.source.darcs', ['Darcs']), ('buildbot.steps.source.git', ['Git']), ('buildbot.steps.source.mercurial', ['Mercurial']), ('buildbot.steps.source.mtn', ['Monotone']), ('buildbot.steps.source.p4', ['P4']), ('buildbot.steps.source.repo', ['Repo']), ('buildbot.steps.source.svn', ['SVN']), ('buildbot.steps.subunit', ['SubunitShellCommand']), ('buildbot.steps.transfer', [ 'FileUpload', 'DirectoryUpload', 'MultipleFileUpload', 'FileDownload', 'StringDownload', 'JSONStringDownload', 'JSONPropertiesDownload']), ('buildbot.steps.trigger', ['Trigger']), ('buildbot.steps.vstudio', [ 'VC6', 'VC7', 'VS2003', 'VC8', 'VS2005', 'VCExpress9', 'VC9', 'VS2008', 'VC10', 'VS2010', 'VC11', 'VS2012', 'VC12', 'VS2013', 'MsBuild4', 'MsBuild', 'MsBuild12']) ]), ('buildbot.status', [ ('buildbot.status.github', ['GitHubStatus']), ('buildbot.status.mail', ['MailNotifier']), ('buildbot.status.status_gerrit', ['GerritStatusPush']), ('buildbot.status.status_push', ['StatusPush', 'HttpStatusPush']), ('buildbot.status.web.baseweb', ['WebStatus']), ('buildbot.status.words', ['IRC']) ]), ('buildbot.util', [ # Connection seems to be a way too generic name, though ('buildbot.buildslave.libvirt', ['Connection']), ('buildbot.changes.filter', ['ChangeFilter']), ('buildbot.changes.gerritchangesource', ['GerritChangeFilter']), ('buildbot.changes.svnpoller', [ ('svn.split_file_projects_branches', 'split_file_projects_branches'), ('svn.split_file_branches', 'split_file_branches'), ('svn.split_file_alwaystrunk', 'split_file_alwaystrunk')]), ('buildbot.config', ['BuilderConfig']), ('buildbot.locks', ['MasterLock', 'SlaveLock']), ('buildbot.manhole', [ 'AuthorizedKeysManhole', 'PasswordManhole', 'TelnetManhole']), ('buildbot.process.builder', ['enforceChosenSlave']), ('buildbot.process.factory', [ 'BuildFactory', 'GNUAutoconf', 'CPAN', 'Distutils', 'Trial', 'BasicBuildFactory', 'QuickBuildFactory', 'BasicSVN']), ('buildbot.process.logobserver', ['LogLineObserver']), ('buildbot.process.properties', [ 'FlattenList', 'Interpolate', 'Property', 'WithProperties', 'renderer']), ('buildbot.process.properties', [ 'CommandlineUserManager']), ('buildbot.revlinks', ['RevlinkMatch']), ('buildbot.schedulers.forcesched', [ 'AnyPropertyParameter', 'BooleanParameter', 'BuildslaveChoiceParameter', 'ChoiceStringParameter', 'CodebaseParameter', 'FixedParameter', 'InheritBuildParameter', 'IntParameter', 'NestedParameter', 'ParameterGroup', 'StringParameter', 'TextParameter', 'UserNameParameter']), ('buildbot.status.client', ['PBListener']), ('buildbot.status.results', [ 'Results', 'SUCCESS', 'WARNINGS', 'FAILURE', 'SKIPPED', 'EXCEPTION', 'RETRY', 'CANCELLED']), ('buildbot.status.web.auth', [ 'BasicAuth', 'HTPasswdAprAuth', 'HTPasswdAuth', 'UsersAuth']), ('buildbot.status.web.authz', ['Authz']), ('buildbot.steps.gerrit', [ ('gerrit.pre_process', 'pre_process'), ('gerrit.is_relevant', 'is_relevant')]), ('buildbot.steps.mtrlogobserver', ['EqConnectionPool']), ('buildbot.steps.source.repo', [ ('repo.DownloadsFromChangeSource', 'RepoDownloadsFromChangeSource'), ('repo.DownloadsFromProperties', 'RepoDownloadsFromProperties')]), ('buildbot.steps.shellsequence', ['ShellArg']) ]) ]) } # set zip_safe to false to force Windows installs to always unpack eggs # into directories, which seems to work better -- # see http://buildbot.net/trac/ticket/907 if sys.platform == "win32": setup_args['zip_safe'] = False py_26 = sys.version_info[0] > 2 or (sys.version_info[0] == 2 and sys.version_info[1] >= 6) try: # If setuptools is installed, then we'll add setuptools-specific arguments # to the setup args. import setuptools # @UnusedImport except ImportError: pass else: # dependencies setup_args['install_requires'] = [] if sys.version_info[:2] >= (2, 6): setup_args['install_requires'] += [ 'twisted >= 11.0.0', 'Jinja2 >= 2.1', ] else: # Latest supported on Python 2.5 version of Twisted is 12.10, and # pip/easy_install currently can't select correct version of Twisted. # Twisted depends on zope.interface, which became incompatible with # Python 2.5 starting from 4.0.0 release. # Jinja2 dropped Python 2.5 support in 2.7 release. setup_args['install_requires'] += [ 'twisted >= 11.0.0, <= 12.1.0', 'zope.interface < 4.0.0', 'Jinja2 >= 2.1, < 2.7', ] setup_args['install_requires'] += [ # sqlalchemy-0.8 betas show issues with sqlalchemy-0.7.2, so stick to 0.7.10 'sqlalchemy >= 0.6, <= 0.7.10', # buildbot depends on sqlalchemy internals, and this is the tested # version. 'sqlalchemy-migrate==0.7.2', 'python-dateutil>=1.5', ] setup_args['tests_require'] = [ 'mock', ] # Python-2.6 and up includes json if not py_26: setup_args['install_requires'].append('simplejson') # Python-2.6 and up includes a working A sqlite (py25's is broken) if not py_26: setup_args['install_requires'].append('pysqlite') if os.getenv('NO_INSTALL_REQS'): setup_args['install_requires'] = None setup_args['tests_require'] = None setup_args['extras_require'] = { 'docs': [ 'sphinx >= 1.4.4' ] } setup(**setup_args) # Local Variables: # fill-column: 71 # End: